uncond.isa (7357:0c08f7a95f19) uncond.isa (7359:c1ed3d411971)
1// Copyright (c) 2010 ARM Limited
2// All rights reserved
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

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

260 return new WarnUnimplemented("mcrr, mcrrc", machInst);
261 }
262 }
263 break;
264 case 0x3:
265 {
266 if (CPNUM == 0xa || CPNUM == 0xb) {
267 return decodeShortFpTransfer(machInst);
1// Copyright (c) 2010 ARM Limited
2// All rights reserved
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

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

260 return new WarnUnimplemented("mcrr, mcrrc", machInst);
261 }
262 }
263 break;
264 case 0x3:
265 {
266 if (CPNUM == 0xa || CPNUM == 0xb) {
267 return decodeShortFpTransfer(machInst);
268 } else if (CPNUM == 0xf) {
269 return decodeMcrMrc15(machInst);
268 }
269 const bool op = bits(machInst, 4);
270 if (op) {
271 if (bits(op1, 0)) {
272 return new WarnUnimplemented(
273 "mrc, mrc2", machInst);
274 } else {
275 return new WarnUnimplemented(

--- 42 unchanged lines hidden ---
270 }
271 const bool op = bits(machInst, 4);
272 if (op) {
273 if (bits(op1, 0)) {
274 return new WarnUnimplemented(
275 "mrc, mrc2", machInst);
276 } else {
277 return new WarnUnimplemented(

--- 42 unchanged lines hidden ---