Deleted Added
sdiff udiff text old ( 7154:1fa6d1db1f32 ) new ( 7157:788dfd6e2d0e )
full compact
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

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

474 "adc" : decInst("Adc"),
475 "sbc" : decInst("Sbc"),
476 "cmp" : decInst("Cmp", dest="INTREG_ZERO"),
477 "sub" : decInst("Sub"),
478 "rsb" : decInst("Rsb")
479 }
480}};
481
482def format Thumb32DataProcShiftReg() {{
483
484 def decInst(mnem, dest="rd", op1="rn"):
485 return '''
486 if (s) {
487 return new %(mnem)sRegCc(machInst, %(dest)s,
488 %(op1)s, rm, amt, type);
489 } else {

--- 85 unchanged lines hidden ---