Deleted Added
sdiff udiff text old ( 7312:03016344f54e ) new ( 7428:eea9a618c882 )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 232 unchanged lines hidden (view full) ---

241 MemoryReg(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
242 IntRegIndex _dest, IntRegIndex _base, bool _add,
243 int32_t _shiftAmt, ArmShiftType _shiftType,
244 IntRegIndex _index)
245 : Memory(mnem, _machInst, __opClass, _dest, _base, _add),
246 shiftAmt(_shiftAmt), shiftType(_shiftType), index(_index)
247 {}
248
249 void printOffset(std::ostream &os) const;
250};
251
252class MemoryDReg : public MemoryReg
253{
254 protected:
255 IntRegIndex dest2;
256
257 MemoryDReg(const char *mnem, ExtMachInst _machInst, OpClass __opClass,

--- 170 unchanged lines hidden ---