data.isa (7250:40b0a5327df8) data.isa (7252:bba68021edca)
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

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

798 break;
799 case 0x2:
800 if (op2 == 0) {
801 return new Sel(machInst, rd, rn, rm);
802 }
803 break;
804 case 0x3:
805 if (op2 == 0) {
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

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

798 break;
799 case 0x2:
800 if (op2 == 0) {
801 return new Sel(machInst, rd, rn, rm);
802 }
803 break;
804 case 0x3:
805 if (op2 == 0) {
806 return new WarnUnimplemented("clz", machInst);
806 return new Clz(machInst, rd, rm);
807 }
808 }
809 }
810 return new Unknown(machInst);
811 }
812 }
813 '''
814}};

--- 535 unchanged lines hidden ---
807 }
808 }
809 }
810 return new Unknown(machInst);
811 }
812 }
813 '''
814}};

--- 535 unchanged lines hidden ---