aarch64.isa (12523:11d2f59d3b27) aarch64.isa (12531:3141027bd11a)
1// Copyright (c) 2011-2016 ARM Limited
1// Copyright (c) 2011-2018 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
9// terms below provided that you ensure that this notice is replicated

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

251 return new Svc64(machInst);
252 case 0x02:
253 return new Hvc64(machInst);
254 case 0x03:
255 return new Smc64(machInst);
256 case 0x04:
257 return new Brk64(machInst);
258 case 0x08:
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
9// terms below provided that you ensure that this notice is replicated

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

251 return new Svc64(machInst);
252 case 0x02:
253 return new Hvc64(machInst);
254 case 0x03:
255 return new Smc64(machInst);
256 case 0x04:
257 return new Brk64(machInst);
258 case 0x08:
259 return new FailUnimplemented("hlt", machInst);
259 return new Hlt64(machInst);
260 case 0x15:
261 return new FailUnimplemented("dcps1", machInst);
262 case 0x16:
263 return new FailUnimplemented("dcps2", machInst);
264 case 0x17:
265 return new FailUnimplemented("dcps3", machInst);
266 default:
267 return new Unknown64(machInst);

--- 1829 unchanged lines hidden ---
260 case 0x15:
261 return new FailUnimplemented("dcps1", machInst);
262 case 0x16:
263 return new FailUnimplemented("dcps2", machInst);
264 case 0x17:
265 return new FailUnimplemented("dcps3", machInst);
266 default:
267 return new Unknown64(machInst);

--- 1829 unchanged lines hidden ---