pred.isa (7597:063f160e8b50) pred.isa (7646:a444dbee8c07)
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

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

141 if (fault == NoFault)
142 {
143 %(op_wb)s;
144 }
145 } else {
146 xc->setPredicate(false);
147 }
148
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

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

141 if (fault == NoFault)
142 {
143 %(op_wb)s;
144 }
145 } else {
146 xc->setPredicate(false);
147 }
148
149 if (fault == NoFault && machInst.itstateMask != 0) {
149 if (fault == NoFault && machInst.itstateMask != 0&&
150 (!isMicroop() || isLastMicroop())) {
150 xc->setMiscReg(MISCREG_ITSTATE, machInst.newItstate);
151 }
152
153 return fault;
154 }
155}};
156
157def template DataDecode {{

--- 19 unchanged lines hidden ---
151 xc->setMiscReg(MISCREG_ITSTATE, machInst.newItstate);
152 }
153
154 return fault;
155 }
156}};
157
158def template DataDecode {{

--- 19 unchanged lines hidden ---