Home
last modified time | relevance | path

Searched refs:ItinClassDef (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/llvm/utils/TableGen/
HDCodeGenSchedule.h130 Record *ItinClassDef; member
145 CodeGenSchedClass(): Index(0), ItinClassDef(nullptr) {} in CodeGenSchedClass()
148 return ItinClassDef == IC && Writes == W && Reads == R; in isKeyEqual()
153 bool isInferred() const { return !ItinClassDef; } in isInferred()
371 unsigned findSchedClassIdx(Record *ItinClassDef,
391 std::string createSchedClassName(Record *ItinClassDef,
405 void inferFromItinClass(Record *ItinClassDef, unsigned FromClassIdx);
413 void collectItinProcResources(Record *ItinClassDef);
HDCodeGenSchedule.cpp502 SchedClasses.back().ItinClassDef = Records.getDef("NoItinerary"); in collectSchedClasses()
545 if (SC.ItinClassDef->getName() != "NoItinerary") { in collectSchedClasses()
548 << SC.ItinClassDef->getName() << '\n'; in collectSchedClasses()
587 unsigned CodeGenSchedModels::findSchedClassIdx(Record *ItinClassDef, in findSchedClassIdx() argument
591 if (I->ItinClassDef == ItinClassDef in findSchedClassIdx()
607 Record *ItinClassDef, const IdxVec &OperWrites, const IdxVec &OperReads) { in createSchedClassName() argument
610 if (ItinClassDef && ItinClassDef->getName() != "NoItinerary") in createSchedClassName()
611 Name = ItinClassDef->getName(); in createSchedClassName()
638 unsigned CodeGenSchedModels::addSchedClass(Record *ItinClassDef, in addSchedClass() argument
645 unsigned Idx = findSchedClassIdx(ItinClassDef, OperWrites, OperReads); in addSchedClass()
[all …]
HDSubtargetEmitter.cpp891 if (std::find(Matched.begin(), Matched.end(), SCI->ItinClassDef) in GenSchedClassTables()