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);
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 ---