summaryrefslogtreecommitdiff
path: root/src/arch/arm/insts/mem.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:01 -0500
committerGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:01 -0500
commitdeb6e8f805e162dd6a33b154e6a635acc0d7c132 (patch)
tree3dd73c54340ddea754e978de596a9f19dee77e2a /src/arch/arm/insts/mem.hh
parent190502476681b972f65697a7d2b3e3da35d40cd1 (diff)
downloadgem5-deb6e8f805e162dd6a33b154e6a635acc0d7c132.tar.xz
ARM: Eliminate the old memory formats which are no longer used.
Diffstat (limited to 'src/arch/arm/insts/mem.hh')
-rw-r--r--src/arch/arm/insts/mem.hh103
1 files changed, 0 insertions, 103 deletions
diff --git a/src/arch/arm/insts/mem.hh b/src/arch/arm/insts/mem.hh
index 3c7a50505..dd6526fe1 100644
--- a/src/arch/arm/insts/mem.hh
+++ b/src/arch/arm/insts/mem.hh
@@ -229,109 +229,6 @@ class MemoryNewPostIndex : public Base
return ss.str();
}
};
-
-/**
- * Base class for general Arm memory-format instructions.
- */
-class Memory : public PredOp
-{
- protected:
-
- /// Memory request flags. See mem_req_base.hh.
- unsigned memAccessFlags;
-
- /// Displacement for EA calculation (signed).
- int32_t disp;
- int32_t disp8;
- int32_t up;
- int32_t hilo,
- shift_size,
- shift;
-
- /// Constructor
- Memory(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
- : PredOp(mnem, _machInst, __opClass),
- memAccessFlags(0),
- disp(machInst.immed11_0),
- disp8(machInst.immed7_0 << 2),
- up(machInst.puswl.up),
- hilo((machInst.immedHi11_8 << 4) | machInst.immedLo3_0),
- shift_size(machInst.shiftSize), shift(machInst.shift)
- {
- }
-
- std::string
- generateDisassembly(Addr pc, const SymbolTable *symtab) const;
-
- virtual void
- printOffset(std::ostream &os) const
- {}
-};
-
-class MemoryDisp : public Memory
-{
- protected:
- /// Constructor
- MemoryDisp(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
- : Memory(mnem, _machInst, __opClass)
- {
- }
-
- void
- printOffset(std::ostream &os) const
- {
- ccprintf(os, "#%#x", (machInst.puswl.up ? disp : -disp));
- }
-};
-
-class MemoryHilo : public Memory
-{
- protected:
- /// Constructor
- MemoryHilo(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
- : Memory(mnem, _machInst, __opClass)
- {
- }
-
- void
- printOffset(std::ostream &os) const
- {
- ccprintf(os, "#%#x", (machInst.puswl.up ? hilo : -hilo));
- }
-};
-
-class MemoryShift : public Memory
-{
- protected:
- /// Constructor
- MemoryShift(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
- : Memory(mnem, _machInst, __opClass)
- {
- }
-
- void
- printOffset(std::ostream &os) const
- {
- printShiftOperand(os);
- }
-};
-
-class MemoryReg : public Memory
-{
- protected:
- /// Constructor
- MemoryReg(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
- : Memory(mnem, _machInst, __opClass)
- {
- }
-
- void
- printOffset(std::ostream &os) const
- {
- os << (machInst.puswl.up ? "+ " : "- ");
- printReg(os, machInst.rm);
- }
-};
}
#endif //__ARCH_ARM_INSTS_MEM_HH__