data.isa (7243:d503503b3966) data.isa (7248:f5563135de40)
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

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

1038 }
1039 case 0xe:
1040 return new WarnUnimplemented("bkpt", machInst);
1041 case 0xf:
1042 if (bits(machInst, 3, 0) != 0)
1043 return new WarnUnimplemented("it", machInst);
1044 switch (bits(machInst, 7, 4)) {
1045 case 0x0:
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

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

1038 }
1039 case 0xe:
1040 return new WarnUnimplemented("bkpt", machInst);
1041 case 0xf:
1042 if (bits(machInst, 3, 0) != 0)
1043 return new WarnUnimplemented("it", machInst);
1044 switch (bits(machInst, 7, 4)) {
1045 case 0x0:
1046 return new WarnUnimplemented("nop", machInst);
1046 return new NopInst(machInst);
1047 case 0x1:
1048 return new WarnUnimplemented("yield", machInst);
1049 case 0x2:
1050 return new WarnUnimplemented("wfe", machInst);
1051 case 0x3:
1052 return new WarnUnimplemented("wfi", machInst);
1053 case 0x4:
1054 return new WarnUnimplemented("sev", machInst);

--- 295 unchanged lines hidden ---
1047 case 0x1:
1048 return new WarnUnimplemented("yield", machInst);
1049 case 0x2:
1050 return new WarnUnimplemented("wfe", machInst);
1051 case 0x3:
1052 return new WarnUnimplemented("wfi", machInst);
1053 case 0x4:
1054 return new WarnUnimplemented("sev", machInst);

--- 295 unchanged lines hidden ---