Deleted Added
sdiff udiff text old ( 7366:4efa4733e66e ) new ( 7367:8c3ec534f022 )
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

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

505 return new VmulD(machInst, (IntRegIndex)vd,
506 (IntRegIndex)vn, (IntRegIndex)vm);
507 }
508 }
509 case 0x1:
510 return new WarnUnimplemented("vnmla, vnmls, vnmul", machInst);
511 case 0x3:
512 if ((opc3 & 0x1) == 0) {
513 return new WarnUnimplemented("vadd", machInst);
514 } else {
515 return new WarnUnimplemented("vsub", machInst);
516 }
517 case 0x8:
518 if ((opc3 & 0x1) == 0) {
519 return new WarnUnimplemented("vdiv", machInst);
520 }
521 break;

--- 112 unchanged lines hidden ---