Deleted Added
sdiff udiff text old ( 7373:65786254fdd1 ) new ( 7374:9a80d013b955 )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 ARM Limited
4// All rights reserved
5//
6// The license below extends only to copyright in the software and shall
7// not be construed as granting a license to any other intellectual
8// property including but not limited to intellectual property relating

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

611 case 0x3:
612 // Between half and single precision.
613 return new WarnUnimplemented("vcvtb, vcvtt", machInst);
614 case 0x4:
615 case 0x5:
616 return new WarnUnimplemented("vcmp, vcmpe", machInst);
617 case 0x7:
618 if (opc3 == 0x3) {
619 // Between double and single precision.
620 return new WarnUnimplemented("vcvt", machInst);
621 }
622 break;
623 case 0x8:
624 if (bits(machInst, 7) == 0) {
625 if (single) {
626 return new VcvtUIntFpS(machInst, vd, vm);
627 } else {
628 vm = (IntRegIndex)(bits(machInst, 5) |

--- 49 unchanged lines hidden ---