diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-11-02 01:08:59 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-11-02 01:08:59 -0500 |
commit | 1cd3757db92528bf1805fabe59db45f6359ab5b9 (patch) | |
tree | 9c6ef518edadfb4538c4c4126e0b39bb6a547063 /util/m5/m5op.s | |
parent | a800d6abf71ea14f05e2e7a895e43d0ca8f8f553 (diff) | |
download | gem5-1cd3757db92528bf1805fabe59db45f6359ab5b9.tar.xz |
add several new functions that can be called from the guest
to tell the simulator to do something.
exit -> exit_old (deprecated
exit now takes an optional parameter that tells it to execute at a
specified time in the future
The next four functions have two optional parameters. The first
specifies a delay for how long to wait to issue the instruction.
The second will tell the simulator to repeat that command
at the specified interval.
checkpoint will trigger a checkpoint
dumpstats will cause the simulator to dump stats
resetstats will cause all stats to be reset
dumpreset will dump and reset stats
all times are in nanoseconds
util/m5/Makefile:
Clean up to make it a bit easier to muck with
util/m5/m5.c:
Add a bunch of new commands and clean up the command parsing path
Convert atoi to strtoul so that we can use 64bit numbers and even
hex if we want to. (this runs on alpha, so a long is 64bit)
util/m5/m5op.h:
add prototypes for new m5 instructions
use uint64_t since it's nicer
--HG--
extra : convert_revision : 664ff00f0f0dfc5263c4e873d82fd9996a4521e9
Diffstat (limited to 'util/m5/m5op.s')
-rw-r--r-- | util/m5/m5op.s | 51 |
1 files changed, 39 insertions, 12 deletions
diff --git a/util/m5/m5op.s b/util/m5/m5op.s index 18efbc959..8004e66c6 100644 --- a/util/m5/m5op.s +++ b/util/m5/m5op.s @@ -30,13 +30,18 @@ #include <regdef.h> #define m5_op 0x01 + #define arm_func 0x00 #define quiesce_func 0x01 #define ivlb_func 0x10 #define ivle_func 0x11 -#define m5exit_func 0x20 +#define exit_old_func 0x20 // deprectated! +#define exit_func 0x21 #define initparam_func 0x30 #define resetstats_func 0x40 +#define dumpstats_func 0x41 +#define dumprststats_func 0x42 +#define ckpt_func 0x43 #define INST(op, ra, rb, func) \ .long (((op) << 26) | ((ra) << 21) | ((rb) << 16) | (func)) @@ -45,9 +50,12 @@ #define QUIESCE() INST(m5_op, 0, 0, quiesce_func) #define IVLB(reg) INST(m5_op, reg, 0, ivlb_func) #define IVLE(reg) INST(m5_op, reg, 0, ivle_func) -#define M5_EXIT() INST(m5_op, 0, 0, m5exit_func) +#define M5EXIT(reg) INST(m5_op, reg, 0, exit_func) #define INITPARAM(reg) INST(m5_op, reg, 0, initparam_func) -#define RESETSTATS() INST(m5_op, 0, 0, resetstats_func) +#define RESET_STATS(r1, r2) INST(m5_op, r1, r2, resetstats_func) +#define DUMP_STATS(r1, r2) INST(m5_op, r1, r2, dumpstats_func) +#define DUMPRST_STATS(r1, r2) INST(m5_op, r1, r2, dumprststats_func) +#define CHECKPOINT(r1, r2) INST(m5_op, r1, r2, ckpt_func) .set noreorder @@ -77,18 +85,37 @@ END(ivle) .align 4 LEAF(m5exit) - M5_EXIT() + M5EXIT(16) RET END(m5exit) - .align 4 + .align 4 LEAF(initparam) - INITPARAM(0) - RET + INITPARAM(0) + RET END(initparam) - .align 4 -LEAF(resetstats) - RESETSTATS() - RET -END(resetstats) + .align 4 +LEAF(reset_stats) + RESET_STATS(16, 17) + RET +END(reset_stats) + + .align 4 +LEAF(dump_stats) + DUMP_STATS(16, 17) + RET +END(dump_stats) + + .align 4 +LEAF(dumpreset_stats) + DUMPRST_STATS(16, 17) + RET +END(dumpreset_stats) + + .align 4 +LEAF(checkpoint) + CHECKPOINT(16, 17) + RET +END(checkpoint) + |