summaryrefslogtreecommitdiff
path: root/src/arch/arm/vtophys.hh
diff options
context:
space:
mode:
authorWilliam Wang <William.Wang@ARM.com>2010-08-25 19:10:43 -0500
committerWilliam Wang <William.Wang@ARM.com>2010-08-25 19:10:43 -0500
commit8376f7bca3814844ab9cc592ff8f32c702a18629 (patch)
treed0e7f2aefdaa659d20ce3277000172797823afe7 /src/arch/arm/vtophys.hh
parentc0b54f579ccccd805ccc1f0b2c41b0b10899eecd (diff)
downloadgem5-8376f7bca3814844ab9cc592ff8f32c702a18629.tar.xz
ARM: Remove ALPHA KSeg functions.
These were erronously copied years ago into the ARM directory.
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);
};