summaryrefslogtreecommitdiff
path: root/src/arch/mips/linux
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2019-10-09 17:47:19 -0700
committerGabe Black <gabeblack@google.com>2019-10-25 22:42:31 +0000
commit7bd57d5a94acbdcb64b4927ea6a673cae18adcc0 (patch)
tree1171079d0af63c62336bc1036e089fff95888e6a /src/arch/mips/linux
parent69930afa9b63c25baab86ff5fbe632fc02ce5369 (diff)
downloadgem5-7bd57d5a94acbdcb64b4927ea6a673cae18adcc0.tar.xz
cpu: Create a PCEventScope class to abstract the scope of PCEvents.
This abstraction will allow scheduling PCEvents for a particular ThreadContext, all contexts on a CPU, all contexts in a system, etc., and delegates scheduling and removing events to each particular scope. Right now the PCEventQueue is the only implementor of the PCEventSCope interface. Change-Id: I8fb62931511136229915c2e19d36aae7ffdec9df Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/22099 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Maintainer: Andreas Sandberg <andreas.sandberg@arm.com> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/arch/mips/linux')
-rw-r--r--src/arch/mips/linux/system.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/mips/linux/system.hh b/src/arch/mips/linux/system.hh
index 55e47bbb2..2b8526b63 100644
--- a/src/arch/mips/linux/system.hh
+++ b/src/arch/mips/linux/system.hh
@@ -54,16 +54,16 @@ class LinuxMipsSystem : public MipsSystem
class SkipDelayLoopEvent : public SkipFuncEvent
{
public:
- SkipDelayLoopEvent(PCEventQueue *q, const std::string &desc, Addr addr)
- : SkipFuncEvent(q, desc, addr) {}
+ SkipDelayLoopEvent(PCEventScope *s, const std::string &desc, Addr addr)
+ : SkipFuncEvent(s, desc, addr) {}
virtual void process(ThreadContext *tc);
};
class PrintThreadInfo : public PCEvent
{
public:
- PrintThreadInfo(PCEventQueue *q, const std::string &desc, Addr addr)
- : PCEvent(q, desc, addr) {}
+ PrintThreadInfo(PCEventScope *s, const std::string &desc, Addr addr)
+ : PCEvent(s, desc, addr) {}
virtual void process(ThreadContext *tc);
};