Deleted Added
sdiff udiff text old ( 7370:6fa1e296585d ) new ( 7371:83612101a826 )
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

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

519 vm = (bits(machInst, 5) << 5) |
520 (bits(machInst, 3, 0) << 1);
521 vn = (bits(machInst, 7) << 5) |
522 (bits(machInst, 19, 16) << 1);
523 return new VmlsD(machInst, (IntRegIndex)vd,
524 (IntRegIndex)vn, (IntRegIndex)vm);
525 }
526 }
527 case 0x2:
528 if ((opc3 & 0x1) == 0) {
529 uint32_t vd;
530 uint32_t vm;
531 uint32_t vn;
532 if (bits(machInst, 8) == 0) {
533 vd = bits(machInst, 22) | (bits(machInst, 15, 12) << 1);
534 vm = bits(machInst, 5) | (bits(machInst, 3, 0) << 1);

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

540 (bits(machInst, 15, 12) << 1);
541 vm = (bits(machInst, 5) << 5) |
542 (bits(machInst, 3, 0) << 1);
543 vn = (bits(machInst, 7) << 5) |
544 (bits(machInst, 19, 16) << 1);
545 return new VmulD(machInst, (IntRegIndex)vd,
546 (IntRegIndex)vn, (IntRegIndex)vm);
547 }
548 }
549 case 0x1:
550 return new WarnUnimplemented("vnmla, vnmls, vnmul", machInst);
551 case 0x3:
552 if ((opc3 & 0x1) == 0) {
553 uint32_t vd;
554 uint32_t vm;
555 uint32_t vn;
556 if (bits(machInst, 8) == 0) {
557 vd = bits(machInst, 22) | (bits(machInst, 15, 12) << 1);
558 vm = bits(machInst, 5) | (bits(machInst, 3, 0) << 1);

--- 183 unchanged lines hidden ---