summaryrefslogtreecommitdiff
path: root/src/cpu/minor
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2019-10-14 15:31:26 -0700
committerGabe Black <gabeblack@google.com>2019-10-25 22:42:31 +0000
commita2a8dac5c2a26e91432415f409b55f04cff9c2e4 (patch)
tree5cdd34c965e349953d361582923f6467fb209382 /src/cpu/minor
parentfd030fd9f5893e1ce198bf760ab4a7f2704d921b (diff)
downloadgem5-a2a8dac5c2a26e91432415f409b55f04cff9c2e4.tar.xz
cpu: Access inst events through ThreadContext instead of the CPU.
Also delete the CPU interface. Change-Id: I62a6b0a9a303d672f4083bdedf393f9f6d07331f Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/22109 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/cpu/minor')
-rw-r--r--src/cpu/minor/execute.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/minor/execute.cc b/src/cpu/minor/execute.cc
index 9317f61f4..0e83db3cb 100644
--- a/src/cpu/minor/execute.cc
+++ b/src/cpu/minor/execute.cc
@@ -870,7 +870,8 @@ Execute::doInstCommitAccounting(MinorDynInstPtr inst)
cpu.system->totalNumInsts++;
/* Act on events related to instruction counts */
- cpu.serviceInstCountEvents(inst->id.threadId, thread->numInst);
+ cpu.getContext(inst->id.threadId)->
+ serviceInstCountEvents(thread->numInst);
}
thread->numOp++;
thread->numOps++;