diff options
author | Gabe Black <gabeblack@google.com> | 2018-01-04 01:22:49 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-01-19 20:20:57 +0000 |
commit | 372adea6879ac549df4a415b5913d28b6683d535 (patch) | |
tree | 2319ce7ae4f5cbdd381038cea4f7f9ce33d3c835 /src/sim/process.hh | |
parent | d76798c3e5611a9673bd1da9589a0081610cef5b (diff) | |
download | gem5-372adea6879ac549df4a415b5913d28b6683d535.tar.xz |
arch, mem, sim: Consolidate and rename the SE mode page table classes.
Now that Nothing inherits from PageTableBase directly, it can be
merged into FuncPageTable. This change also takes the opportunity to
rename the combined class to EmulationPageTable which lets you know
that it's specifically for SE mode.
Also remove the page table entry cache since it doesn't seem to
actually improve performance. The TLBs likely absorb the majority of
the locality, essentially acting like a cache like they would in real
hardware.
Change-Id: If1bcb91aed08686603bf7bee37298c0eee826e13
Reviewed-on: https://gem5-review.googlesource.com/7342
Reviewed-by: Brandon Potter <Brandon.Potter@amd.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/sim/process.hh')
-rw-r--r-- | src/sim/process.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sim/process.hh b/src/sim/process.hh index 6d465aca9..cb2a3e2be 100644 --- a/src/sim/process.hh +++ b/src/sim/process.hh @@ -54,7 +54,7 @@ struct ProcessParams; class EmulatedDriver; class ObjectFile; -class PageTableBase; +class EmulationPageTable; class SyscallDesc; class SyscallReturn; class System; @@ -63,7 +63,7 @@ class ThreadContext; class Process : public SimObject { public: - Process(ProcessParams *params, PageTableBase *pTable, + Process(ProcessParams *params, EmulationPageTable *pTable, ObjectFile *obj_file); void serialize(CheckpointOut &cp) const override; @@ -176,7 +176,7 @@ class Process : public SimObject bool useArchPT; // flag for using architecture specific page table bool kvmInSE; // running KVM requires special initialization - PageTableBase* pTable; + EmulationPageTable *pTable; SETranslatingPortProxy initVirtMem; // memory proxy for initial image load |