Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SchedPredicates.td94 def IsArithExtOp : CheckOpcode<[ADDWrx, ADDXrx, ADDSWrx, ADDSXrx,
100 def IsArithImmOp : CheckOpcode<[ADDWri, ADDXri, ADDSWri, ADDSXri,
104 def IsArithShiftOp : CheckOpcode<[ADDWrs, ADDXrs, ADDSWrs, ADDSXrs,
108 def IsArithUnshiftOp : CheckOpcode<[ADDWrr, ADDXrr, ADDSWrr, ADDSXrr,
112 def IsLogicImmOp : CheckOpcode<[ANDWri, ANDXri,
117 def IsLogicShiftOp : CheckOpcode<[ANDWrs, ANDXrs, ANDSWrs, ANDSXrs,
125 def IsLogicUnshiftOp : CheckOpcode<[ANDWrr, ANDXrr, ANDSWrr, ANDSXrr,
133 def IsArithLogicImmOp : CheckOpcode<!listconcat(IsArithImmOp.ValidOpcodes,
137 def IsArithLogicShiftOp : CheckOpcode<!listconcat(IsArithShiftOp.ValidOpcodes,
141 def IsArithLogicUnshiftOp : CheckOpcode<!listconcat(IsArithUnshiftOp.ValidOpcodes,
[all …]
H A DAArch64SchedPredNeoverse.td38 CheckAll<[CheckOpcode<[
51 CheckAll<[CheckOpcode<
62 CheckAll<[CheckOpcode<[MOVZWi, MOVZXi]>,
70 CheckAll<[CheckOpcode<[ORRWrs, ORRXrs]>,
77 CheckAll<[CheckOpcode<[FMOVWHr, FMOVXHr,
82 CheckAll<[CheckOpcode<[MOVID, MOVIv2d_ns]>,
H A DAArch64SchedPredExynos.td29 CheckAll<[CheckOpcode<[BLR]>,
/freebsd/contrib/llvm-project/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<
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCSchedPredicates.td15 CheckOpcode<[FADD,
208 CheckOpcode<[CFUGED,
232 CheckOpcode<[PMXVBF16GER2,
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp149 Matcher *CheckOpcode = CheckType->takeNext(); in ContractNodes() local
150 Matcher *Tail = CheckOpcode->takeNext(); in ContractNodes()
153 MatcherPtr.reset(CheckOpcode); in ContractNodes()
154 CheckOpcode->setNext(CheckType); in ContractNodes()
H A DDAGISelMatcherEmitter.cpp570 case Matcher::CheckOpcode: in EmitMatcher()
1228 case Matcher::CheckOpcode: in getOpcodeString()
/freebsd/contrib/llvm-project/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
201 // is not a member of the set is by using a `CheckNot<CheckOpcode<[...]>>`
203 class CheckOpcode<list<Instruction> Opcodes> : MCInstPredicate {
210 class CheckPseudo<list<Instruction> Opcodes> : CheckOpcode<Opcodes>;
H A DTargetMacroFusion.td146 [CheckOpcode<[firstInst]>],
149 [CheckOpcode<[secondInst]>],
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DDAGISelMatcher.h70 CheckOpcode, // Fail if not opcode. enumerator
138 case CheckOpcode: in isSimplePredicateNode()
479 : Matcher(CheckOpcode), Opcode(opcode) {} in CheckOpcodeMatcher()
483 static bool classof(const Matcher *N) { return N->getKind() == CheckOpcode; } in classof()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2859 CheckOpcode(const unsigned char *MatcherTable, unsigned &MatcherIndex, in CheckOpcode() function
3020 Result = !::CheckOpcode(Table, Index, N.getNode()); in IsPredicateKnownToFail()
3571 if (!::CheckOpcode(MatcherTable, MatcherIndex, N.getNode())) break; in SelectCodeCommon()