Deleted Added
sdiff udiff text old ( 7372:66dffab79795 ) new ( 7373:65786254fdd1 )
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

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

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 // Between FP and int.
625 return new WarnUnimplemented("vcvt, vcvtr", machInst);
626 case 0xa:
627 case 0xb:
628 // Between FP and fixed point.
629 return new WarnUnimplemented("vcvt", machInst);
630 case 0xc:
631 case 0xd:
632 // Between FP and int.
633 return new WarnUnimplemented("vcvt, vcvtr", machInst);
634 case 0xe:
635 case 0xf:
636 // Between FP and fixed point.
637 return new WarnUnimplemented("vcvt", machInst);
638 }
639 break;
640 }
641 return new Unknown(machInst);
642 }
643 '''
644}};
645
646def format VfpData() {{
647 decode_block = '''
648 return decodeVfpData(machInst);
649 '''
650}};