Deleted Added
sdiff udiff text old ( 14107:2420e71b150d ) new ( 14108:881e7d85baf7 )
full compact
1// Copyright (c) 2017-2019 ARM Limited
2// All rights reserved
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

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

3044 }
3045 }
3046 return new Unknown64(machInst);
3047 } // decodeSveMemGather32
3048
3049 StaticInstPtr
3050 decodeSveLoadBcastQuadSS(ExtMachInst machInst)
3051 {
3052 return new Unknown64(machInst);
3053 } // decodeSveLoadBcastQuadSS
3054
3055 StaticInstPtr
3056 decodeSveLoadBcastQuadSI(ExtMachInst machInst)
3057 {
3058 return new Unknown64(machInst);
3059 } // decodeSveLoadBcastQuadSI
3060
3061 StaticInstPtr
3062 decodeSveContigLoadSS(ExtMachInst machInst)
3063 {
3064 IntRegIndex zt = (IntRegIndex) (uint8_t) bits(machInst, 4, 0);
3065 IntRegIndex rn = makeSP((IntRegIndex) (uint8_t) bits(machInst, 9, 5));

--- 498 unchanged lines hidden ---