aarch64.isa (12359:8fb4630c444f) aarch64.isa (12523:11d2f59d3b27)
1// Copyright (c) 2011-2016 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

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

249 switch (decVal) {
250 case 0x01:
251 return new Svc64(machInst);
252 case 0x02:
253 return new Hvc64(machInst);
254 case 0x03:
255 return new Smc64(machInst);
256 case 0x04:
1// Copyright (c) 2011-2016 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

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

249 switch (decVal) {
250 case 0x01:
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 FailUnimplemented("brk", machInst);
257 return new Brk64(machInst);
258 case 0x08:
259 return new FailUnimplemented("hlt", 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);

--- 1831 unchanged lines hidden ---
258 case 0x08:
259 return new FailUnimplemented("hlt", 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);

--- 1831 unchanged lines hidden ---