gem5/base
Nathan Binkert 3ece6ab029 New and improved configuration mechanism. No more writing of
wierd ini files.  The ini files are still used as an intermediate step,
but a sophisticated python library exists to help build them more
easily.

SConscript:
    add the new embedded file stuff
    remove all of the old object description junk
base/inifile.cc:
base/inifile.hh:
    get rid of findDefault and findAppend since they were the source
    of much evil.
base/trace.cc:
    For now, if we don't have the dprintf_stream set up, dump
    to standard out.  We probably want a command line option
    for this.
dev/alpha_console.cc:
    PioDevice now takes a platform parameter.
    All PioDevices must have a pio_latency parameter.  We stick
    a dummy parameter in here for now until we get rid of the
    builder stuff.
dev/alpha_console.hh:
    don't need Platform anymore
dev/baddev.cc:
    PioDevice now takes a platform parameter.
    All PioDevices must have a pio_latency parameter.  We stick
    a dummy parameter in here for now until we get rid of the
    builder stuff. Same for the platform parameter, though we just
    pass the PioDevice a null parameter since it isn't used by
    this device and it's quicker.
dev/baddev.hh:
    fix #include guards
dev/etherlink.cc:
    rename parameters.
dev/ethertap.cc:
    rename parameters
dev/ide_ctrl.cc:
    All devices need an address even if it will get overwritten later.
dev/ide_disk.cc:
    use an enum for the drive ID stuff.
    rename disk_delay -> delay
    Actually, I think that we should implement "cable select" and
    have the controller tell the drive what it is.
dev/io_device.cc:
dev/io_device.hh:
    All IO devices take a Platform *
dev/ns_gige.cc:
    all devices need an io_bus.  rename header_bus to io_bus
    We don't need stuff for the interrupt controller since
    it's all in the platform now.
dev/ns_gige.hh:
    We don't need stuff for the interrupt controller now since
    it's all in the platform.
dev/pciconfigall.cc:
    Pass a dummy NULL to the PioDevice for the platform since
    we don't need one.
dev/pcidev.cc:
    Move a bunch of common functionality into the PciDev
dev/platform.hh:
    remove unneeded code
dev/tsunami.cc:
    remove unused param
dev/tsunami_cchip.cc:
    pass platform pointer
dev/tsunami_io.cc:
dev/tsunami_pchip.cc:
dev/uart.cc:
    pass platform variable
dev/uart.hh:
    don't need to keep a platform pointer.  it's in the base class
kern/linux/linux_system.cc:
kern/tru64/tru64_system.cc:
    rename some parameters
sim/builder.cc:
    clean up builder code. use more parameters from the
    config node.  all sections with a type= are now created,
    the old mechanisms no longer work
sim/builder.hh:
    remove some extra variables since they are found in the ConfigNode
sim/main.cc:
    add a quick hack command line argument -X to dump out the
    embedded files.  (probably should be fixed up a little.)
    accept .mpy files
    printing to the streams has to happen after the hierarchy
    is built since we're moving away from param contexts
sim/param.cc:
    add parsing support for ranges
sim/process.cc:
    isValid isn't very useful anymore.  interpret the names
    stdout, stderr, cout, cerr for the file descriptors
sim/pyconfig/SConscript:
    Add Action handlers for creating an embedded python file
    and for creating an embedded C file.

    use these action handlers to embed all objects found in the objects
    tree into the binary along with the importer and the m5config stuff
sim/pyconfig/m5config.py:
    Major changes to the original configuration file generator.  These
    changes largely involve implementing copy-on-write like semantics
    for all of the SimObjects.  Real documentation must be written.
sim/universe.cc:
    Universe becomes a SimObject since we don't really have the notion of
    param contexts in the python code.

--HG--
rename : sim/pyconfig/m5configbase.py => sim/pyconfig/m5config.py
extra : convert_revision : c353453e5beb91c37f15755998fc0d8858c6829a
2005-01-15 04:12:25 -05:00
..
compression make stuff compile on openbsd again 2004-10-23 12:31:24 -04:00
loader Minor fixes. 2004-11-18 10:52:56 -05:00
stats make stuff compile on openbsd again 2004-10-23 12:31:24 -04:00
bitfield.hh make stuff compile on openbsd again 2004-10-23 12:31:24 -04:00
callback.hh Add support for sampled PC profiling to FullCPU. 2004-11-15 01:56:40 -05:00
circlebuf.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
circlebuf.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
cprintf.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
cprintf.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
cprintf_formats.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
crc.cc Clean up network header stuff and make it more generic. Use 2004-09-20 10:43:53 -04:00
crc.hh Clean up network header stuff and make it more generic. Use 2004-09-20 10:43:53 -04:00
date.cc Import changeset 2003-10-07 10:41:54 -04:00
dbl_list.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
endian.hh Import changeset 2003-10-07 10:41:54 -04:00
fast_alloc.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
fast_alloc.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
fifo_buffer.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
fifo_buffer.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
hashmap.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
hostinfo.cc Add support for getting the hostname 2003-12-15 18:24:02 -05:00
hostinfo.hh Add support for getting the hostname 2003-12-15 18:24:02 -05:00
hybrid_pred.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
hybrid_pred.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
inet.cc flesh out the TCP/IP/Ethernet support 2004-10-23 16:18:44 -04:00
inet.hh fix udp checksums 2004-11-15 15:40:35 -05:00
inifile.cc New and improved configuration mechanism. No more writing of 2005-01-15 04:12:25 -05:00
inifile.hh New and improved configuration mechanism. No more writing of 2005-01-15 04:12:25 -05:00
intmath.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
intmath.hh Fixes for bigendian platforms 2004-10-16 19:10:51 -05:00
kgdb.h Remote debugging cleanup and internal debugging support 2004-02-03 10:50:04 -05:00
match.cc Move all of the object matching code to a shared file so it can 2004-07-30 10:47:53 -04:00
match.hh Move all of the object matching code to a shared file so it can 2004-07-30 10:47:53 -04:00
misc.cc pull from head before pushing linux tree 2004-06-22 13:48:49 -04:00
misc.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
mod_num.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
mysql.cc Move the query function to the cc file and make trace stuff work 2004-07-26 13:03:27 -04:00
mysql.hh Move the query function to the cc file and make trace stuff work 2004-07-26 13:03:27 -04:00
pollevent.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
pollevent.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
predictor.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
random.cc Fix up the random number stuff. 2004-12-13 12:55:13 -05:00
random.hh Fix up the random number stuff. 2004-12-13 12:55:13 -05:00
range.cc Clean up the Range class and associated usages. The code was 2004-10-22 01:34:40 -04:00
range.hh Clean up the Range class and associated usages. The code was 2004-10-22 01:34:40 -04:00
refcnt.hh flesh out the TCP/IP/Ethernet support 2004-10-23 16:18:44 -04:00
remote_gdb.cc Macros are nasty, so let's get rid of them. Convert all 2004-11-13 14:01:38 -05:00
remote_gdb.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
res_list.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
sat_counter.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
sat_counter.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
sched_list.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
socket.cc Add support for Tsunami with 64 processors 2004-12-06 12:06:16 -05:00
socket.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
statistics.cc more initial checking of stats 2004-07-22 21:31:35 -04:00
statistics.hh Make binning work with stuff other than FS_MEASURE 2004-07-06 19:22:39 -04:00
str.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
str.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
time.cc Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
time.hh Updated Copyright with information in bitkeeper changelogs 2004-06-08 13:37:27 -04:00
trace.cc New and improved configuration mechanism. No more writing of 2005-01-15 04:12:25 -05:00
trace.hh - Clean up and factor out all of the binning code into a 2004-08-20 11:35:31 -04:00
traceflags.py Added code using VPtr to be able to extract info from linux thread 2004-08-18 23:06:51 -04:00
userinfo.cc Function for getting username 2004-05-04 12:23:57 -04:00
userinfo.hh Function for getting username 2004-05-04 12:23:57 -04:00