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

--- 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);
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 ---