Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVMacroFusion.td19 CheckOpcode<[LUI]>,
28 CheckOpcode<[AUIPC]>,
29 CheckOpcode<[ADDI]>>;
38 CheckOpcode<[SLLI]>,
43 CheckOpcode<[SRLI]>,
55 CheckOpcode<[SLLI]>,
60 CheckOpcode<[SRLI]>,
73 CheckOpcode<[SLLI]>,
78 CheckOpcode<[SRLI]>,
88 CheckOpcode<[ADD]>,
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SchedPredNeoverse.td38 CheckAll<[CheckOpcode<[
51 CheckAll<[CheckOpcode<
62 CheckAll<[CheckOpcode<[MOVZWi, MOVZXi]>,
69 CheckAll<[CheckOpcode<[ORRWrs, ORRXrs]>,
76 CheckAll<[CheckOpcode<[FMOVWHr, FMOVXHr,
81 CheckAll<[CheckOpcode<[MOVID, MOVIv2d_ns]>,
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,
201 def IsLoadRegOffsetOp : CheckOpcode<[PRFMroW, PRFMroX,
217 def IsStoreRegOffsetOp : CheckOpcode<[STRBBroW, STRBBroX,
[all …]
H A DAArch64SchedPredExynos.td29 CheckAll<[CheckOpcode<[BLR]>,
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCSchedPredicates.td15 CheckOpcode<[FADD,
208 CheckOpcode<[CFUGED,
232 CheckOpcode<[PMXVBF16GER2,
/freebsd-14.2/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 DDAGISelMatcher.h70 CheckOpcode, // Fail if not opcode. enumerator
138 case CheckOpcode: in isSimplePredicateNode()
486 : Matcher(CheckOpcode), Opcode(opcode) {} in CheckOpcodeMatcher()
491 return N->getKind() == CheckOpcode; in classof()
H A DDAGISelMatcherEmitter.cpp576 case Matcher::CheckOpcode: in EmitMatcher()
1227 case Matcher::CheckOpcode: in getOpcodeString()
/freebsd-14.2/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>;
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2725 CheckOpcode(const unsigned char *MatcherTable, unsigned &MatcherIndex, in CheckOpcode() function
2886 Result = !::CheckOpcode(Table, Index, N.getNode()); in IsPredicateKnownToFail()
3428 if (!::CheckOpcode(MatcherTable, MatcherIndex, N.getNode())) break; in SelectCodeCommon()