diff options
author | Gabe Black <gabeblack@google.com> | 2019-05-02 01:33:31 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2019-05-30 14:20:03 +0000 |
commit | 39896bd265cfab20ab512cf4bceed7b38eca9d91 (patch) | |
tree | 425121810f14f44e12a899a9308cc3a63dd37cf3 /src/cpu/checker | |
parent | f349b0845cb235504c3b3613e828403f1a3fa208 (diff) | |
download | gem5-39896bd265cfab20ab512cf4bceed7b38eca9d91.tar.xz |
cpu, sim: Return PortProxy &s from all the proxy accessors.
This is a step towards merging the accessors for SE and FS modes.
Change-Id: I76818ab88b97097ac363e243be9cc1911b283090
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18579
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Brandon Potter <Brandon.Potter@amd.com>
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/cpu/checker')
-rw-r--r-- | src/cpu/checker/thread_context.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/checker/thread_context.hh b/src/cpu/checker/thread_context.hh index ed8add662..46ade24bb 100644 --- a/src/cpu/checker/thread_context.hh +++ b/src/cpu/checker/thread_context.hh @@ -146,7 +146,7 @@ class CheckerThreadContext : public ThreadContext PortProxy &getPhysProxy() override { return actualTC->getPhysProxy(); } - FSTranslatingPortProxy & + PortProxy & getVirtProxy() override { return actualTC->getVirtProxy(); @@ -164,7 +164,7 @@ class CheckerThreadContext : public ThreadContext actualTC->connectMemPorts(tc); } - SETranslatingPortProxy & + PortProxy & getMemProxy() override { return actualTC->getMemProxy(); |