Searched refs:PredicateExpander (Results 1 – 7 of 7) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | PredicateExpander.cpp | 19 void PredicateExpander::expandTrue(raw_ostream &OS) { OS << "true"; } in expandTrue() 20 void PredicateExpander::expandFalse(raw_ostream &OS) { OS << "false"; } in expandFalse() 49 void PredicateExpander::expandCheckImmOperandSimple(raw_ostream &OS, in expandCheckImmOperandSimple() 142 void PredicateExpander::expandCheckOpcode(raw_ostream &OS, in expandCheckOpcode() 172 void PredicateExpander::expandCheckPseudo(raw_ostream &OS, in expandCheckPseudo() 180 void PredicateExpander::expandPredicateSequence(raw_ostream &OS, in expandPredicateSequence() 209 void PredicateExpander::expandTIIFunctionCall(raw_ostream &OS, in expandTIIFunctionCall() 231 void PredicateExpander::expandCheckFunctionPredicateWithTII( in expandCheckFunctionPredicateWithTII() 250 void PredicateExpander::expandCheckNonPortable(raw_ostream &OS, in expandCheckNonPortable() 258 void PredicateExpander::expandReturnStatement(raw_ostream &OS, in expandReturnStatement() [all …]
|
| H A D | MacroFusionPredicatorEmitter.cpp | 60 void emitMacroFusionDecl(std::vector<Record *> Fusions, PredicateExpander &PE, 65 PredicateExpander &PE, raw_ostream &OS); 66 void emitFirstPredicate(Record *SecondPredicate, PredicateExpander &PE, 68 void emitSecondPredicate(Record *SecondPredicate, PredicateExpander &PE, 70 void emitBothPredicate(Record *Predicates, PredicateExpander &PE, 81 std::vector<Record *> Fusions, PredicateExpander &PE, raw_ostream &OS) { in emitMacroFusionDecl() 98 std::vector<Record *> Fusions, PredicateExpander &PE, raw_ostream &OS) { in emitMacroFusionImpl() 141 PredicateExpander &PE, in emitFirstPredicate() 173 PredicateExpander &PE, in emitSecondPredicate() 193 PredicateExpander &PE, in emitBothPredicate() [all …]
|
| H A D | PredicateExpander.h | 27 class PredicateExpander { 34 PredicateExpander(const PredicateExpander &) = delete; 35 PredicateExpander &operator=(const PredicateExpander &) = delete; 38 PredicateExpander(StringRef Target) in PredicateExpander() function 103 class STIPredicateExpander : public PredicateExpander { 107 STIPredicateExpander(const PredicateExpander &) = delete; 108 STIPredicateExpander &operator=(const PredicateExpander &) = delete; 119 : PredicateExpander(Target), ExpandDefinition(false) {} in STIPredicateExpander()
|
| H A D | InstrInfoEmitter.cpp | 705 PredicateExpander PE(TargetName); in emitMCIIHelperMethods() 899 PredicateExpander PE(TargetName); in emitTIIHelperMethods()
|
| H A D | SubtargetEmitter.cpp | 1551 const CodeGenSchedClass &SC, PredicateExpander &PE, in emitPredicates() 1684 PredicateExpander PE(Target); in emitSchedModelHelpersImpl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | TargetInstrPredicate.td | 57 // Instances of class PredicateExpander (see utils/Tablegen/PredicateExpander.h) 59 // an "expand" method available in the PredicateExpander interface. 62 // `PredicateExpander::expandCheckOpcode()`. 65 // XYZ, an "expandXYZ" method must be added to the PredicateExpander. 291 // This predicate is expanded into a function call by the PredicateExpander. 292 // In particular, the PredicateExpander would either expand this predicate into
|
| /freebsd-14.2/usr.bin/clang/llvm-tblgen/ |
| H A D | Makefile | 54 SRCS+= PredicateExpander.cpp
|