Home
last modified time | relevance | path

Searched refs:CheckOpcode (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86SchedPredicates.td94 def IsRegRegCompareAndSwap_8 : CheckOpcode<[ CMPXCHG8rr ]>;
96 def IsRegMemCompareAndSwap_8 : CheckOpcode<[
100 def IsRegRegCompareAndSwap_16_32_64 : CheckOpcode<[
104 def IsRegMemCompareAndSwap_16_32_64 : CheckOpcode<[
110 def IsCompareAndSwap8B : CheckOpcode<[ CMPXCHG8B, LCMPXCHG8B ]>;
111 def IsCompareAndSwap16B : CheckOpcode<[ CMPXCHG16B, LCMPXCHG16B ]>;
113 def IsRegMemCompareAndSwap : CheckOpcode<
119 def IsRegRegCompareAndSwap : CheckOpcode<
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64SchedPredicates.td204 def IsArithExtOp : CheckOpcode<[ADDWrx, ADDXrx, ADDSWrx, ADDSXrx,
210 def IsArithImmOp : CheckOpcode<[ADDWri, ADDXri, ADDSWri, ADDSXri,
214 def IsArithShiftOp : CheckOpcode<[ADDWrs, ADDXrs, ADDSWrs, ADDSXrs,
218 def IsArithUnshiftOp : CheckOpcode<[ADDWrr, ADDXrr, ADDSWrr, ADDSXrr,
222 def IsLogicImmOp : CheckOpcode<[ANDWri, ANDXri,
227 def IsLogicShiftOp : CheckOpcode<[ANDWrs, ANDXrs, ANDSWrs, ANDSXrs,
235 def IsLogicUnshiftOp : CheckOpcode<[ANDWrr, ANDXrr, ANDSWrr, ANDSXrr,
243 def IsArithLogicImmOp : CheckOpcode<!listconcat(IsArithImmOp.ValidOpcodes,
247 def IsArithLogicShiftOp : CheckOpcode<!listconcat(IsArithShiftOp.ValidOpcodes,
251 def IsArithLogicUnshiftOp : CheckOpcode<!listconcat(IsArithUnshiftOp.ValidOpcodes,
[all …]
H A DAArch64SchedPredExynos.td29 CheckAll<[CheckOpcode<[BLR]>,
145 CheckAll<[CheckOpcode<[EXTRWrri, EXTRXrri]>,
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp153 Matcher *CheckOpcode = CheckType->takeNext(); in ContractNodes() local
154 Matcher *Tail = CheckOpcode->takeNext(); in ContractNodes()
157 MatcherPtr.reset(CheckOpcode); in ContractNodes()
158 CheckOpcode->setNext(CheckType); in ContractNodes()
H A DDAGISelMatcher.h62 CheckOpcode, // Fail if not opcode. enumerator
127 case CheckOpcode: in isSimplePredicateNode()
455 : Matcher(CheckOpcode), Opcode(opcode) {} in CheckOpcodeMatcher()
460 return N->getKind() == CheckOpcode; in classof()
H A DDAGISelMatcherEmitter.cpp504 case Matcher::CheckOpcode: in EmitMatcher()
1047 case Matcher::CheckOpcode: return "OPC_CheckOpcode"; break; in getOpcodeString()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/
H A DTargetInstrPredicate.td17 // CheckOpcode<[BLR]>,
30 // example, `CheckOpcode` is a special type of predicate used to describe a
61 // For example, a `CheckOpcode` predicate is expanded using method
167 // is not a member of the set is by using a `CheckNot<CheckOpcode<[...]>>`
169 class CheckOpcode<list<Instruction> Opcodes> : MCInstPredicate {
176 class CheckPseudo<list<Instruction> Opcodes> : CheckOpcode<Opcodes>;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2561 CheckOpcode(const unsigned char *MatcherTable, unsigned &MatcherIndex, in CheckOpcode() function
2704 Result = !::CheckOpcode(Table, Index, N.getNode()); in IsPredicateKnownToFail()
3134 if (!::CheckOpcode(MatcherTable, MatcherIndex, N.getNode())) break; in SelectCodeCommon()