Deleted Added
sdiff udiff text old ( 7646:a444dbee8c07 ) new ( 7848:cc5e64f8423f )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 ARM Limited
4// All rights reserved
5//
6// The license below extends only to copyright in the software and shall
7// not be construed as granting a license to any other intellectual
8// property including but not limited to intellectual property relating

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

66 IntRegIndex _dest,
67 IntRegIndex _op1,
68 uint32_t _imm,
69 bool _rotC)
70 : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
71 _dest, _op1, _imm, _rotC)
72 {
73 %(constructor)s;
74 }
75}};
76
77def template DataRegDeclare {{
78class %(class_name)s : public %(base_class)s
79{
80 public:
81 // Constructor

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

92 IntRegIndex _op1,
93 IntRegIndex _op2,
94 int32_t _shiftAmt,
95 ArmShiftType _shiftType)
96 : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
97 _dest, _op1, _op2, _shiftAmt, _shiftType)
98 {
99 %(constructor)s;
100 }
101}};
102
103def template DataRegRegDeclare {{
104class %(class_name)s : public %(base_class)s
105{
106 public:
107 // Constructor

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

118 IntRegIndex _op1,
119 IntRegIndex _op2,
120 IntRegIndex _shift,
121 ArmShiftType _shiftType)
122 : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
123 _dest, _op1, _op2, _shift, _shiftType)
124 {
125 %(constructor)s;
126 }
127}};
128
129def template PredOpExecute {{
130 Fault %(class_name)s::execute(%(CPU_exec_context)s *xc, Trace::InstRecord *traceData) const
131 {
132 Fault fault = NoFault;
133 uint64_t resTemp = 0;

--- 44 unchanged lines hidden ---