diff options
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/utility.cc | 9 | ||||
-rw-r--r-- | src/arch/x86/utility.hh | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/src/arch/x86/utility.cc b/src/arch/x86/utility.cc index 50574bcde..d74bb74b6 100644 --- a/src/arch/x86/utility.cc +++ b/src/arch/x86/utility.cc @@ -52,7 +52,7 @@ namespace X86ISA { -uint64_t getArgument(ThreadContext *tc, int number, bool fp) { +uint64_t getArgument(ThreadContext *tc, int &number, uint8_t size, bool fp) { #if FULL_SYSTEM panic("getArgument() not implemented for x86!\n"); #else @@ -233,4 +233,11 @@ copyRegs(ThreadContext *src, ThreadContext *dest) dest->setNextPC(src->readNextPC()); } +void +skipFunction(ThreadContext *tc) +{ + panic("Not implemented for x86\n"); +} + + } //namespace X86_ISA diff --git a/src/arch/x86/utility.hh b/src/arch/x86/utility.hh index bfa102529..fd9ac59fd 100644 --- a/src/arch/x86/utility.hh +++ b/src/arch/x86/utility.hh @@ -52,7 +52,7 @@ class ThreadContext; namespace X86ISA { - uint64_t getArgument(ThreadContext *tc, int number, bool fp); + uint64_t getArgument(ThreadContext *tc, int &number, uint8_t size, bool fp); static inline bool inUserMode(ThreadContext *tc) @@ -83,6 +83,8 @@ namespace X86ISA void copyRegs(ThreadContext *src, ThreadContext *dest); void copyMiscRegs(ThreadContext *src, ThreadContext *dest); + + void skipFunction(ThreadContext *tc); }; #endif // __ARCH_X86_UTILITY_HH__ |