Adding what was tracedump but is now statetrace to the tree. Let me know if statetrac...
authorGabe Black <gblack@eecs.umich.edu>
Sun, 17 Sep 2006 07:46:30 +0000 (03:46 -0400)
committerGabe Black <gblack@eecs.umich.edu>
Sun, 17 Sep 2006 07:46:30 +0000 (03:46 -0400)
commitb7d03951268d352254b918fbe1464954828ee8fd
treeaf01deb1cf631837b8d0428b8ff198cc49dc8a58
parent30b87e90f8e3f6ffa16026f7776c6609fe3ada24
Adding what was tracedump but is now statetrace to the tree. Let me know if statetrace is also already taken.

util/statetrace/Makefile:
    Makefile to build statetrace. Targets are:

    statetrace: alias to build using the "native" compiler
    statetrace-native: use the native compiler
    statetrace-sparc: use the sparc cross compiler

    I'll make this a little more fancy and capable later.
util/statetrace/arch/tracechild_i386.cc:
    Implementation of i386 support
util/statetrace/arch/tracechild_i386.hh:
    Declaration of i386 support
util/statetrace/arch/tracechild_sparc.cc:
    implementation of SPARC support
util/statetrace/arch/tracechild_sparc.hh:
    declaration of SPARC support
util/statetrace/printer.cc:
    Implementation of the "Printer" objects which parse and output the state of the process after each instruction. There are currently two types of printers, nested ones and register ones. These are called NestingPrinter and RegPrinter respectively.
util/statetrace/printer.hh:
    Declaration of "Printer" objects
util/statetrace/refcnt.hh:
    This is copied from m5. I should use the one already in the tree, but I'll do that later.
util/statetrace/regstate.hh:
    Interface for accessing registers.
util/statetrace/statetrace.cc:
    Main file with argument parsing and the "main" function which contains the tracing loop.
util/statetrace/tracechild.cc:
    Implementation of the base tracechild class.
util/statetrace/tracechild.hh:
    Declaration of the base tracechild class.
util/statetrace/tracechild_arch.cc:
    This file hooks in support for the appropriate architecture. Just the implementation is brought in, since the main program should ideally not have to know anything at all about an architecture other than it's interface.
util/statetrace/x86.format:
    An example output template for x86. A few example SPARC templates will be added later.

--HG--
extra : convert_revision : 7c8bf8230907aba42ed1e707b9ca2d6da0d4e6d4
14 files changed:
util/statetrace/Makefile [new file with mode: 0644]
util/statetrace/arch/tracechild_i386.cc [new file with mode: 0644]
util/statetrace/arch/tracechild_i386.hh [new file with mode: 0644]
util/statetrace/arch/tracechild_sparc.cc [new file with mode: 0644]
util/statetrace/arch/tracechild_sparc.hh [new file with mode: 0644]
util/statetrace/printer.cc [new file with mode: 0644]
util/statetrace/printer.hh [new file with mode: 0644]
util/statetrace/refcnt.hh [new file with mode: 0644]
util/statetrace/regstate.hh [new file with mode: 0644]
util/statetrace/statetrace.cc [new file with mode: 0644]
util/statetrace/tracechild.cc [new file with mode: 0644]
util/statetrace/tracechild.hh [new file with mode: 0644]
util/statetrace/tracechild_arch.cc [new file with mode: 0644]
util/statetrace/x86.format [new file with mode: 0644]