summaryrefslogtreecommitdiff
path: root/util/m5/m5op.h
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2003-11-02 01:08:59 -0500
committerNathan Binkert <binkertn@umich.edu>2003-11-02 01:08:59 -0500
commit1cd3757db92528bf1805fabe59db45f6359ab5b9 (patch)
tree9c6ef518edadfb4538c4c4126e0b39bb6a547063 /util/m5/m5op.h
parenta800d6abf71ea14f05e2e7a895e43d0ca8f8f553 (diff)
downloadgem5-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.h')
-rw-r--r--util/m5/m5op.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/util/m5/m5op.h b/util/m5/m5op.h
index ee24f6948..266460ce9 100644
--- a/util/m5/m5op.h
+++ b/util/m5/m5op.h
@@ -29,11 +29,17 @@
#ifndef __M5OP_H__
#define __M5OP_H__
-void arm(unsigned long address);
+#include <inttypes.h>
+
+void arm(uint64_t address);
void quiesce();
-void ivlb(unsigned long interval);
-void ivle(unsigned long interval);
-void m5exit();
-unsigned long initparam();
+void ivlb(uint64_t interval);
+void ivle(uint64_t interval);
+void m5exit(uint64_t ns_delay);
+uint64_t initparam();
+void checkpoint(uint64_t ns_delay, uint64_t ns_period);
+void reset_stats(uint64_t ns_delay, uint64_t ns_period);
+void dump_stats(uint64_t ns_delay, uint64_t ns_period);
+void dumpreset_stats(uint64_t ns_delay, uint64_t ns_period);
#endif // __M5OP_H__