summaryrefslogtreecommitdiff
path: root/src/mem/multi_level_page_table.hh
diff options
context:
space:
mode:
authorAlexandru Dutu <alexandru.dutu@amd.com>2019-04-15 23:36:36 -0400
committerAlexandru Duțu <alexandru.dutu@amd.com>2019-04-22 23:11:31 +0000
commitc5b3db6da28611280c291d9e0540f087cf55a54e (patch)
tree71506b9c6f2f6b0fc5d4a3361ee2e247cf518805 /src/mem/multi_level_page_table.hh
parent382263c6706296fee2548f74fd4b811553106dba (diff)
downloadgem5-c5b3db6da28611280c291d9e0540f087cf55a54e.tar.xz
sim-se: Enhance clone for X86KvmCPU
This changeset enables clone to work with X86KvmCPU model, which will allow running multi-threaded applications at near hardware speeds. Even though the application is multi-threaded, the KvmCPU model uses one event queue, therefore, only one hardware thread will be used, through KVM, to simulate multiple application threads. Change-Id: I2b2a7b1edb1c56eeb9c4fa0553cd236029cd53f8 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18268 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com> Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/mem/multi_level_page_table.hh')
-rw-r--r--src/mem/multi_level_page_table.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mem/multi_level_page_table.hh b/src/mem/multi_level_page_table.hh
index bd40d37c1..f517eafe8 100644
--- a/src/mem/multi_level_page_table.hh
+++ b/src/mem/multi_level_page_table.hh
@@ -204,6 +204,9 @@ public:
void
initState(ThreadContext* tc) override
{
+ if (shared)
+ return;
+
_basePtr = prepTopTable<EntryTypes...>(system, pageSize);
}