Deleted Added
sdiff udiff text old ( 7431:703b34269edf ) new ( 7615:50f6494d9b55 )
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

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

89 uint8_t imm;
90
91 MicroIntOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
92 RegIndex _ura, RegIndex _urb, uint8_t _imm)
93 : MicroOp(mnem, machInst, __opClass),
94 ura(_ura), urb(_urb), imm(_imm)
95 {
96 }
97};
98
99/**
100 * Memory microops which use IntReg + Imm addressing
101 */
102class MicroMemOp : public MicroIntOp
103{
104 protected:
105 bool up;
106 unsigned memAccessFlags;
107
108 MicroMemOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
109 RegIndex _ura, RegIndex _urb, bool _up, uint8_t _imm)
110 : MicroIntOp(mnem, machInst, __opClass, _ura, _urb, _imm),
111 up(_up), memAccessFlags(TLB::MustBeOne | TLB::AlignWord)
112 {
113 }
114};
115
116/**
117 * Base class for microcoded integer memory instructions.
118 */
119class MacroMemOp : public PredMacroOp
120{
121 protected:

--- 19 unchanged lines hidden ---