diff options
author | Ali Saidi <Ali.Saidi@ARM.com> | 2015-01-25 07:22:26 -0500 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@ARM.com> | 2015-01-25 07:22:26 -0500 |
commit | f6742ea26e1a1cac21b486c7c5adad6fb6304e92 (patch) | |
tree | 416505359d690d558ba4f579123b5aba43da68d9 /src/cpu/thread_context.hh | |
parent | 0bd986015b2de741dc741f10e5afeaf5d8890ba1 (diff) | |
download | gem5-f6742ea26e1a1cac21b486c7c5adad6fb6304e92.tar.xz |
cpu: Remove all notion that we know when the cpu is misspeculating.
We have no way of knowing if a CPU model is on the wrong path with
our execute-in-execute CPU models. Don't pretend that we do.
Diffstat (limited to 'src/cpu/thread_context.hh')
-rw-r--r-- | src/cpu/thread_context.hh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cpu/thread_context.hh b/src/cpu/thread_context.hh index 95d89dcc5..850ff9468 100644 --- a/src/cpu/thread_context.hh +++ b/src/cpu/thread_context.hh @@ -255,9 +255,6 @@ class ThreadContext virtual void setStCondFailures(unsigned sc_failures) = 0; - // Only really makes sense for old CPU model. Still could be useful though. - virtual bool misspeculating() = 0; - // Same with st cond failures. virtual Counter readFuncExeInst() = 0; @@ -462,9 +459,6 @@ class ProxyThreadContext : public ThreadContext void setStCondFailures(unsigned sc_failures) { actualTC->setStCondFailures(sc_failures); } - // @todo: Fix this! - bool misspeculating() { return actualTC->misspeculating(); } - void syscall(int64_t callnum) { actualTC->syscall(callnum); } |