/external/llvm/test/MC/ARM/ |
invalid-crc32.s | 11 @ CHECK: error: instruction 'crc32cb' is not predicable, but condition code specified 12 @ CHECK: error: instruction 'crc32b' is not predicable, but condition code specified 13 @ CHECK: error: instruction 'crc32ch' is not predicable, but condition code specified 14 @ CHECK: error: instruction 'crc32h' is not predicable, but condition code specified 15 @ CHECK: error: instruction 'crc32cw' is not predicable, but condition code specified 16 @ CHECK: error: instruction 'crc32w' is not predicable, but condition code specified
|
thumb-invalid-crypto.txt | 5 @ CHECK: error: instruction 'aesd' is not predicable, but condition code specified 7 @ CHECK: error: instruction 'aesimc' is not predicable, but condition code specified 9 @ CHECK: error: instruction 'aesmc' is not predicable, but condition code specified 11 @ CHECK: error: instruction 'aese' is not predicable, but condition code specified 15 @ CHECK: error: instruction 'sha1h' is not predicable, but condition code specified 17 @ CHECK: error: instruction 'sha1su1' is not predicable, but condition code specified 19 @ CHECK: error: instruction 'sha256su0' is not predicable, but condition code specified 23 @ CHECK: error: instruction 'sha1c' is not predicable, but condition code specified 25 @ CHECK: error: instruction 'sha1m' is not predicable, but condition code specified 27 @ CHECK: error: instruction 'sha1p' is not predicable, but condition code specifie [all...] |
udf-arm-diagnostics.s | 10 @ CHECK: error: instruction 'udf' is not predicable, but condition code specified
|
invalid-neon-v8.s | 8 @ CHECK: error: instruction 'vmaxnm' is not predicable, but condition code specified 17 @ CHECK: error: instruction 'vcvtp' is not predicable, but condition code specified 26 @ CHECK: error: instruction 'vrintm' is not predicable, but condition code specified 37 @ CHECK: error: instruction 'aesd' is not predicable, but condition code specified 46 @ CHECK: error: instruction 'sha1h' is not predicable, but condition code specified 63 @ CHECK: error: instruction 'sha256su1' is not predicable, but condition code specified 70 @ CHECK: error: instruction 'vmull' is not predicable, but condition code specified
|
udf-thumb-2-diagnostics.s | 10 @ CHECK: error: instruction 'udf' is not predicable, but condition code specified
|
invalid-fp-armv8.s | 55 @ CHECK: error: instruction 'vmaxnm' is not predicable, but condition code specified 66 @ V8: error: instruction 'vcvtn' is not predicable, but condition code specified 89 @ V8: error: instruction 'vrintm' is not predicable, but condition code specified
|
diagnostics.s | 111 @CHECK-ERRORS: error: instruction 'hlt' is not predicable, but condition code specified 114 @CHECK-ERRORS: error: instruction 'hlt' is not predicable, but condition code specified 223 @ CHECK-ERRORS: error: instruction 'setend' is not predicable, but condition code specified 435 @ CHECK-ERRORS: error: instruction 'dmb' is not predicable, but condition code specified 436 @ CHECK-ERRORS: error: instruction 'dsb' is not predicable, but condition code specified 437 @ CHECK-ERRORS: error: instruction 'isb' is not predicable, but condition code specified 442 @ CHECK-ERRORS: error: instruction 'dmb' is not predicable, but condition code specified 443 @ CHECK-ERRORS: error: instruction 'dsb' is not predicable, but condition code specified 444 @ CHECK-ERRORS: error: instruction 'isb' is not predicable, but condition code specified 451 @ CHECK-ERRORS: error: instruction 'mcr2' is not predicable, but condition code specifie [all...] |
thumb2-diagnostics.s | 22 @ CHECK-ERRORS: error: instructions in IT block must be predicable 57 @ CHECK-ERRORS: error: instruction 'bkpt' is not predicable, but condition code specified
|
basic-arm-instructions-v8.1a.s | 204 //CHECK-THUMB-ERROR: error: instruction 'setpan' is not predicable, but condition code specified
|
/external/llvm/lib/Target/Hexagon/ |
HexagonPeephole.cpp | 252 // (most cases of predicable instructions).
|
HexagonEarlyIfConv.cpp | 267 // A block is predicable if it has one predecessor (it must be B), and 274 // If neither is predicable, there is nothing interesting. 485 // If both sides are predicable, convert them if they join, and the [all...] |
HexagonExpandCondsets.cpp | 28 // definitions are predicable, then in the second step, the conditional [all...] |
/external/llvm/lib/CodeGen/ |
IfConversion.cpp | 90 /// diamond shape), its size, whether it's predicable, and whether any 640 /// the block is predicable. In most cases, that means all the instructions 643 /// If so, the block is not predicable unless it's the last instruction. 684 // A conditional branch is not predicable, but it may be eliminated. 713 // still potentially predicable. [all...] |
EarlyIfConversion.cpp | 11 // predicable instructions. The goal is to eliminate conditional branches that
|
/external/llvm/lib/Target/ARM/ |
README-Thumb.txt | 224 We need to make (some of the) Thumb1 instructions predicable. That will allow
|
ARMISelLowering.h | 44 CALL_PRED, // Function call that's predicable.
|
ARMInstrFormats.td | 417 // Almost all ARM instructions are predicable. 432 // A few are not predicable [all...] |
/external/llvm/include/llvm/MC/ |
MCInstrDesc.h | 115 Predicable, 264 bool isPredicable() const { return Flags & (1 << MCID::Predicable); }
|
/external/llvm/utils/TableGen/ |
InstrInfoEmitter.cpp | 494 if (Inst.isPredicable) OS << "|(1ULL<<MCID::Predicable)";
|
/external/llvm/include/llvm/CodeGen/ |
MachineInstr.h | 465 // If it's a bundle than all bundled instructions must be predicable for this 467 return hasProperty(MCID::Predicable, Type); [all...] |
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/arm/ |
peep.go | 1559 func predicable(p *obj.Prog) bool { 1687 } else if predicable(r.Prog) { [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/arm/ |
peep.go | 1556 func predicable(p *obj.Prog) bool { 1684 } else if predicable(r.Prog) { [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/arm/ |
peep.go | 1559 func predicable(p *obj.Prog) bool { 1687 } else if predicable(r.Prog) { [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/arm/ |
peep.go | 1556 func predicable(p *obj.Prog) bool { 1684 } else if predicable(r.Prog) { [all...] |
/external/llvm/lib/Target/ARM/Disassembler/ |
ARMDisassembler.cpp | 479 // definitions with Thumb2 where these instructions are predicable. 490 // definitions with Thumb2 where these instructions are predicable. 501 // definitions with Thumb2 where these instructions are predicable. 662 // encodings between ARM and Thumb modes, and they are predicable in ARM [all...] |