Deleted Added
sdiff udiff text old ( 7343:26c00092d9f3 ) new ( 7431:703b34269edf )
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

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

55 for (int i = 0; i < 32; i++ )
56 {
57 if ( val & (1<<i) )
58 ones++;
59 }
60 return ones;
61}
62
63class MicroOp : public PredOp
64{
65 protected:
66 MicroOp(const char *mnem, ExtMachInst machInst, OpClass __opClass)
67 : PredOp(mnem, machInst, __opClass)
68 {
69 }
70

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

105 MicroMemOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
106 RegIndex _ura, RegIndex _urb, bool _up, uint8_t _imm)
107 : MicroIntOp(mnem, machInst, __opClass, _ura, _urb, _imm),
108 up(_up), memAccessFlags(TLB::MustBeOne | TLB::AlignWord)
109 {
110 }
111};
112
113class MacroMemOp : public PredMacroOp
114{
115 protected:
116 MacroMemOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
117 IntRegIndex rn, bool index, bool up, bool user,
118 bool writeback, bool load, uint32_t reglist);
119};
120
121class MacroVFPMemOp : public PredMacroOp
122{
123 protected:
124 MacroVFPMemOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
125 IntRegIndex rn, RegIndex vd, bool single, bool up,
126 bool writeback, bool load, uint32_t offset);
127};
128
129}
130
131#endif //__ARCH_ARM_INSTS_MACROMEM_HH__