Deleted Added
sdiff udiff text old ( 7367:8c3ec534f022 ) new ( 7368:3053e3587124 )
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

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

525 vm = (bits(machInst, 5) << 5) |
526 (bits(machInst, 3, 0) << 1);
527 vn = (bits(machInst, 7) << 5) |
528 (bits(machInst, 19, 16) << 1);
529 return new VaddD(machInst, (IntRegIndex)vd,
530 (IntRegIndex)vn, (IntRegIndex)vm);
531 }
532 } else {
533 return new WarnUnimplemented("vsub", machInst);
534 }
535 case 0x8:
536 if ((opc3 & 0x1) == 0) {
537 return new WarnUnimplemented("vdiv", machInst);
538 }
539 break;
540 case 0xb:
541 if ((opc3 & 0x1) == 0) {

--- 110 unchanged lines hidden ---