Deleted Added
sdiff udiff text old ( 7376:3b781776b2d9 ) new ( 7377:ce388054b481 )
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

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

635 machInst, vd, vm, true);
636 }
637 }
638 case 0x2:
639 case 0x3:
640 // Between half and single precision.
641 return new WarnUnimplemented("vcvtb, vcvtt", machInst);
642 case 0x4:
643 case 0x5:
644 return new WarnUnimplemented("vcmp, vcmpe", machInst);
645 case 0x7:
646 if (opc3 == 0x3) {
647 if (single) {
648 vm = (IntRegIndex)(bits(machInst, 5) |
649 (bits(machInst, 3, 0) << 1));
650 return new VcvtFpSFpD(machInst, vd, vm);
651 } else {
652 vd = (IntRegIndex)(bits(machInst, 22) |

--- 60 unchanged lines hidden ---