Deleted Added
sdiff udiff text old ( 14091:090449e74135 ) new ( 14106:293e3f4b1321 )
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

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

3118 decodeSveContigNTLoadSS(ExtMachInst machInst)
3119 {
3120 return new Unknown64(machInst);
3121 } // decodeSveContigNTLoadSS
3122
3123 StaticInstPtr
3124 decodeSveLoadStructsSS(ExtMachInst machInst)
3125 {
3126 return new Unknown64(machInst);
3127 } // decodeSveLoadStructsSS
3128
3129 StaticInstPtr
3130 decodeSveContigNTLoadSI(ExtMachInst machInst)
3131 {
3132 return new Unknown64(machInst);
3133 } // decodeSveContigNTLoadSI
3134
3135 StaticInstPtr
3136 decodeSveLoadStructsSI(ExtMachInst machInst)
3137 {
3138 return new Unknown64(machInst);
3139 } // decodeSveLoadStructsSI
3140
3141 StaticInstPtr
3142 decodeSveMemContigLoad(ExtMachInst machInst)
3143 {
3144 switch (bits(machInst, 15, 13)) {
3145 case 0x0:

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

3326 decodeSveContigNTStoreSI(ExtMachInst machInst)
3327 {
3328 return new Unknown64(machInst);
3329 } // decodeSveContigNTStoreSI
3330
3331 StaticInstPtr
3332 decodeSveStoreStructsSS(ExtMachInst machInst)
3333 {
3334 return new Unknown64(machInst);
3335 } // decodeSveStoreStructsSS
3336
3337 StaticInstPtr
3338 decodeSveStoreStructsSI(ExtMachInst machInst)
3339 {
3340 return new Unknown64(machInst);
3341 } // decodeSveStoreStructsSI
3342
3343 StaticInstPtr
3344 decodeSveMemStore(ExtMachInst machInst)
3345 {
3346 switch (bits(machInst, 15, 13)) {
3347 case 0x0:

--- 159 unchanged lines hidden ---