fp.isa (7365:a7a6cc5f6a89) fp.isa (7366:4efa4733e66e)
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

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

549 vd = (bits(machInst, 22) << 5) |
550 (bits(machInst, 15, 12) << 1);
551 vm = (bits(machInst, 5) << 5) |
552 (bits(machInst, 3, 0) << 1);
553 return new VmovRegD(machInst,
554 (IntRegIndex)vd, (IntRegIndex)vm);
555 }
556 } else {
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

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

549 vd = (bits(machInst, 22) << 5) |
550 (bits(machInst, 15, 12) << 1);
551 vm = (bits(machInst, 5) << 5) |
552 (bits(machInst, 3, 0) << 1);
553 return new VmovRegD(machInst,
554 (IntRegIndex)vd, (IntRegIndex)vm);
555 }
556 } else {
557 return new WarnUnimplemented("vabs", machInst);
557 uint32_t vd;
558 uint32_t vm;
559 if (bits(machInst, 8) == 0) {
560 vd = bits(machInst, 22) | (bits(machInst, 15, 12) << 1);
561 vm = bits(machInst, 5) | (bits(machInst, 3, 0) << 1);
562 return new VabsS(machInst,
563 (IntRegIndex)vd, (IntRegIndex)vm);
564 } else {
565 vd = (bits(machInst, 22) << 5) |
566 (bits(machInst, 15, 12) << 1);
567 vm = (bits(machInst, 5) << 5) |
568 (bits(machInst, 3, 0) << 1);
569 return new VabsD(machInst,
570 (IntRegIndex)vd, (IntRegIndex)vm);
571 }
558 }
559 case 0x1:
560 if (opc3 == 1) {
561 uint32_t vd;
562 uint32_t vm;
563 if (bits(machInst, 8) == 0) {
564 vd = bits(machInst, 22) | (bits(machInst, 15, 12) << 1);
565 vm = bits(machInst, 5) | (bits(machInst, 3, 0) << 1);

--- 54 unchanged lines hidden ---
572 }
573 case 0x1:
574 if (opc3 == 1) {
575 uint32_t vd;
576 uint32_t vm;
577 if (bits(machInst, 8) == 0) {
578 vd = bits(machInst, 22) | (bits(machInst, 15, 12) << 1);
579 vm = bits(machInst, 5) | (bits(machInst, 3, 0) << 1);

--- 54 unchanged lines hidden ---