diff options
author | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2015-02-11 10:23:27 -0500 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2015-02-11 10:23:27 -0500 |
commit | 550c31849024a2184887df87aae39617ebfe0d6a (patch) | |
tree | 53cc5e91d0961b0215c614141fdc380b30c76951 /src/cpu | |
parent | 9e6f803254cbf3f5f491775debdc6593c3329da8 (diff) | |
download | gem5-550c31849024a2184887df87aae39617ebfe0d6a.tar.xz |
sim: Move the BaseTLB to src/arch/generic/
The TLB-related code is generally architecture dependent and should
live in the arch directory to signify that.
--HG--
rename : src/sim/BaseTLB.py => src/arch/generic/BaseTLB.py
rename : src/sim/tlb.cc => src/arch/generic/tlb.cc
rename : src/sim/tlb.hh => src/arch/generic/tlb.hh
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/base_dyn_inst.hh | 2 | ||||
-rw-r--r-- | src/cpu/checker/cpu.cc | 2 | ||||
-rw-r--r-- | src/cpu/translation.hh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/cpu/base_dyn_inst.hh b/src/cpu/base_dyn_inst.hh index 108b799e1..ab275369f 100644 --- a/src/cpu/base_dyn_inst.hh +++ b/src/cpu/base_dyn_inst.hh @@ -51,6 +51,7 @@ #include <string> #include <queue> +#include "arch/generic/tlb.hh" #include "arch/utility.hh" #include "base/trace.hh" #include "config/the_isa.hh" @@ -65,7 +66,6 @@ #include "mem/packet.hh" #include "sim/byteswap.hh" #include "sim/system.hh" -#include "sim/tlb.hh" /** * @file diff --git a/src/cpu/checker/cpu.cc b/src/cpu/checker/cpu.cc index d6a8bd032..229066fcc 100644 --- a/src/cpu/checker/cpu.cc +++ b/src/cpu/checker/cpu.cc @@ -44,6 +44,7 @@ #include <list> #include <string> +#include "arch/generic/tlb.hh" #include "arch/kernel_stats.hh" #include "arch/vtophys.hh" #include "cpu/checker/cpu.hh" @@ -53,7 +54,6 @@ #include "cpu/thread_context.hh" #include "params/CheckerCPU.hh" #include "sim/full_system.hh" -#include "sim/tlb.hh" using namespace std; using namespace TheISA; diff --git a/src/cpu/translation.hh b/src/cpu/translation.hh index f870a9c11..4ff75546a 100644 --- a/src/cpu/translation.hh +++ b/src/cpu/translation.hh @@ -45,8 +45,8 @@ #ifndef __CPU_TRANSLATION_HH__ #define __CPU_TRANSLATION_HH__ +#include "arch/generic/tlb.hh" #include "sim/faults.hh" -#include "sim/tlb.hh" /** * This class captures the state of an address translation. A translation |