neon.isa (8072:128afe2b3a35) neon.isa (8205:7ecbffb674aa)
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

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

224 if (fault == NoFault)
225 {
226 %(op_wb)s;
227 }
228 } else {
229 xc->setPredicate(false);
230 }
231
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

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

224 if (fault == NoFault)
225 {
226 %(op_wb)s;
227 }
228 } else {
229 xc->setPredicate(false);
230 }
231
232 if (fault == NoFault && machInst.itstateMask != 0) {
233 xc->setMiscReg(MISCREG_ITSTATE, machInst.newItstate);
234 }
235
236 return fault;
237 }
238}};
239
240output header {{
241 uint16_t nextBiggerType(uint8_t);
242 uint32_t nextBiggerType(uint16_t);
243 uint64_t nextBiggerType(uint32_t);

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

276 if (fault == NoFault)
277 {
278 %(op_wb)s;
279 }
280 } else {
281 xc->setPredicate(false);
282 }
283
232 return fault;
233 }
234}};
235
236output header {{
237 uint16_t nextBiggerType(uint8_t);
238 uint32_t nextBiggerType(uint16_t);
239 uint64_t nextBiggerType(uint32_t);

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

272 if (fault == NoFault)
273 {
274 %(op_wb)s;
275 }
276 } else {
277 xc->setPredicate(false);
278 }
279
284 if (fault == NoFault && machInst.itstateMask != 0) {
285 xc->setMiscReg(MISCREG_ITSTATE, machInst.newItstate);
286 }
287
288 return fault;
289 }
290}};
280 return fault;
281 }
282}};