summaryrefslogtreecommitdiff
path: root/src/arch/arm/vtophys.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/vtophys.hh')
-rw-r--r--src/arch/arm/vtophys.hh7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/arch/arm/vtophys.hh b/src/arch/arm/vtophys.hh
index edd21558f..16d8c7ceb 100644
--- a/src/arch/arm/vtophys.hh
+++ b/src/arch/arm/vtophys.hh
@@ -44,13 +44,6 @@ class FunctionalPort;
namespace ArmISA {
inline Addr PteAddr(Addr a) { return (a & PteMask) << PteShift; }
- // User Virtual
- inline bool IsUSeg(Addr a) { return USegBase <= a && a <= USegEnd; }
-
- inline bool IsKSeg0(Addr a) { return KSeg0Base <= a && a <= KSeg0End; }
-
- inline Addr KSeg02Phys(Addr addr) { return addr & KSeg0Mask; }
-
Addr vtophys(Addr vaddr);
Addr vtophys(ThreadContext *tc, Addr vaddr);
};