diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-08-01 15:12:07 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-08-01 15:12:07 -0700 |
commit | 8da3e0548e76795f74af5ff8f4ffadf3d0b5191b (patch) | |
tree | fb80d3ba61318edbc1484c70f524133a64981618 /src/arch/mips/utility.hh | |
parent | c4c8a121863fcbde7ba67823f06a3f7564c27cba (diff) | |
parent | 84cd78e96f892f52a715cfe10d9405987f5e9ba1 (diff) | |
download | gem5-8da3e0548e76795f74af5ff8f4ffadf3d0b5191b.tar.xz |
Merge with head.
--HG--
extra : convert_revision : 444901221e9a0b991213fbcd555f2f5cca67e91b
Diffstat (limited to 'src/arch/mips/utility.hh')
-rw-r--r-- | src/arch/mips/utility.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/arch/mips/utility.hh b/src/arch/mips/utility.hh index e3fd9daa8..300761c93 100644 --- a/src/arch/mips/utility.hh +++ b/src/arch/mips/utility.hh @@ -48,6 +48,10 @@ class ThreadContext; namespace MipsISA { + uint64_t getArgument(ThreadContext *tc, bool fp) { + panic("getArgument() not implemented for MIPS\n"); + } + //Floating Point Utility Functions uint64_t fpConvert(ConvertType cvt_type, double fp_val); double roundFP(double val, int digits); @@ -70,8 +74,6 @@ namespace MipsISA { void startupCPU(ThreadContext *tc, int cpuId); - void copyRegs(ThreadContext *src, ThreadContext *dest); - // Instruction address compression hooks static inline Addr realPCToFetchPC(const Addr &addr) { return addr; |