Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp240 const RecVec Decls = Records.getAllDerivedDefinitions("STIPredicateDecl"); in checkSTIPredicates()
254 const RecVec Defs = in checkSTIPredicates()
257 RecVec Opcodes = R->getValueAsListOfDefs("Opcodes"); in checkSTIPredicates()
298 RecVec Classes = Def->getValueAsListOfDefs("Classes"); in processSTIPredicate()
304 RecVec Opcodes = EC->getValueAsListOfDefs("Opcodes"); in processSTIPredicate()
329 RecVec Classes = Def->getValueAsListOfDefs("Classes"); in processSTIPredicate()
336 RecVec Opcodes = EC->getValueAsListOfDefs("Opcodes"); in processSTIPredicate()
403 RecVec RV = Records.getAllDerivedDefinitions("STIPredicate"); in collectSTIPredicates()
439 RecVec MCPredicates = Records.getAllDerivedDefinitions("TIIPredicate"); in checkMCInstPredicates()
461 RecVec Units = Records.getAllDerivedDefinitions("RetireControlUnit"); in collectRetireControlUnits()
[all …]
H A DCodeGenSchedule.h29 using RecVec = std::vector<Record*>; variable
52 RecVec Aliases;
96 RecVec PredTerm;
139 RecVec InstRWs;
224 RecVec ItinDefList;
228 RecVec ItinRWDefs;
232 RecVec UnsupportedFeaturesDefs;
235 RecVec WriteResDefs;
236 RecVec ReadAdvanceDefs;
239 RecVec ProcResourceDefs;
[all …]
H A DPredicateExpander.h55 using RecVec = std::vector<Record *>; variable
72 void expandCheckPseudo(raw_ostream &OS, const RecVec &Opcodes);
73 void expandCheckOpcode(raw_ostream &OS, const RecVec &Opcodes);
74 void expandPredicateSequence(raw_ostream &OS, const RecVec &Sequence,
89 void expandOpcodeSwitchStatement(raw_ostream &OS, const RecVec &Cases,
H A DPredicateExpander.cpp118 const RecVec &Opcodes) { in expandCheckOpcode()
148 const RecVec &Opcodes) { in expandCheckPseudo()
156 const RecVec &Sequence, in expandPredicateSequence()
241 const RecVec &Opcodes = Rec->getValueAsListOfDefs("Opcodes"); in expandOpcodeSwitchCase()
255 const RecVec &Cases, in expandOpcodeSwitchStatement()
422 RecVec Delegates = Fn.getDeclaration()->getValueAsListOfDefs("Delegates"); in expandPrologue()
H A DSubtargetEmitter.cpp112 void ExpandProcResources(RecVec &PRVec, std::vector<int64_t> &Cycles,
179 static void printFeatureMask(raw_ostream &OS, RecVec &FeatureList, in printFeatureMask()
268 RecVec ImpliesList = Feature->getValueAsListOfDefs("Implies"); in FeatureKeyValues()
302 RecVec FeatureList = Processor->getValueAsListOfDefs("Features"); in CPUKeyValues()
303 RecVec TuneFeatureList = Processor->getValueAsListOfDefs("TuneFeatures"); in CPUKeyValues()
335 RecVec StageList = ItinData->getValueAsListOfDefs("Stages"); in FormItineraryStageString()
348 RecVec UnitList = Stage->getValueAsListOfDefs("Units"); in FormItineraryStageString()
394 RecVec BypassList = ItinData->getValueAsListOfDefs("Bypasses"); in FormItineraryBypassString()
426 RecVec FUs = ProcModel.ItinsDef->getValueAsListOfDefs("FU"); in EmitStageAndOperandCycleData()
440 RecVec BPs = ProcModel.ItinsDef->getValueAsListOfDefs("BP"); in EmitStageAndOperandCycleData()
[all …]
H A DDFAPacketizerEmitter.cpp82 void createScheduleClasses(unsigned ItineraryIdx, const RecVec &Itineraries);
191 const RecVec &Itineraries) { in createScheduleClasses()
H A DInstrInfoEmitter.cpp673 RecVec TIIPredicates = Records.getAllDerivedDefinitions("TIIPredicate"); in emitMCIIHelperMethods()
860 RecVec TIIPredicates = Records.getAllDerivedDefinitions("TIIPredicate"); in emitTIIHelperMethods()
H A DRegisterInfoEmitter.cpp1697 const SetTheory::RecVec *Regs = RegBank.getSets().expand(CSRSet); in runTargetDesc()
H A DCodeGenRegisters.cpp756 const SetTheory::RecVec *Elements = RegBank.getSets().expand(R); in CodeGenRegisterClass()
/openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/
H A DSetTheory.h67 using RecVec = std::vector<Record *>;
98 using ExpandMap = std::map<Record *, RecVec>;
140 const RecVec *expand(Record *Set);
/openbsd-src/gnu/llvm/llvm/lib/TableGen/
H A DSetTheory.cpp35 using RecVec = SetTheory::RecVec; typedef
229 if (const RecVec *Result = ST.expand(Rec)) in apply()
284 if (const RecVec *Result = expand(Def->getDef())) in evaluate()
307 const RecVec *SetTheory::expand(Record *Set) { in expand()
322 RecVec &EltVec = Expansions[Set]; in expand()