diff options
author | Lisa Hsu <hsul@eecs.umich.edu> | 2006-12-15 13:05:46 -0500 |
---|---|---|
committer | Lisa Hsu <hsul@eecs.umich.edu> | 2006-12-15 13:05:46 -0500 |
commit | 573d59441e420f02fd7cf3e31158258f5eee3ab1 (patch) | |
tree | c7482a9e1efe17597333dbd84b7439b87c4c6118 /src/arch/mips | |
parent | fbc796b3479abdf86b8f8fe7197f6280cf7ce453 (diff) | |
download | gem5-573d59441e420f02fd7cf3e31158258f5eee3ab1.tar.xz |
some small general fixes to make everythign work nicely with other ISAs, now we can merge back with newmem.
exetrace.cc:
wrap this variable between FULL_SYSTEM #ifs
mmaped_ipr.hh:
fix for build
miscregfile.cc:
fixes for HPSTATE access during SE mode
src/arch/sparc/miscregfile.cc:
fixes for HPSTATE access during SE mode
src/arch/mips/mmaped_ipr.hh:
fix for build
src/cpu/exetrace.cc:
wrap this variable between FULL_SYSTEM #ifs
--HG--
extra : convert_revision : c5b9d56ab99018a91d04de47ba1d5ca7768590bb
Diffstat (limited to 'src/arch/mips')
-rw-r--r-- | src/arch/mips/mmaped_ipr.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/mips/mmaped_ipr.hh b/src/arch/mips/mmaped_ipr.hh index 041c76fdc..fa82a645c 100644 --- a/src/arch/mips/mmaped_ipr.hh +++ b/src/arch/mips/mmaped_ipr.hh @@ -37,8 +37,10 @@ * ISA-specific helper functions for memory mapped IPR accesses. */ +#include "base/misc.hh" #include "mem/packet.hh" +class ThreadContext; namespace MipsISA { @@ -48,7 +50,6 @@ handleIprRead(ThreadContext *xc, Packet *pkt) panic("No implementation for handleIprRead in MIPS\n"); } - inline Tick handleIprWrite(ThreadContext *xc, Packet *pkt) { |