Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.h133 Record *ItinClassDef; member
150 CodeGenSchedClass(unsigned Index, std::string Name, Record *ItinClassDef) in CodeGenSchedClass()
151 : Index(Index), Name(std::move(Name)), ItinClassDef(ItinClassDef) {} in CodeGenSchedClass()
155 return ItinClassDef == IC && ArrayRef(Writes) == W && ArrayRef(Reads) == R; in isKeyEqual()
160 bool isInferred() const { return !ItinClassDef; } in isInferred()
601 std::string createSchedClassName(Record *ItinClassDef,
627 void inferFromItinClass(Record *ItinClassDef, unsigned FromClassIdx);
635 void collectItinProcResources(Record *ItinClassDef);
H A DCodeGenSchedule.cpp943 << SC.ItinClassDef->getName() << '\n'; in collectSchedClasses()
1000 if (ItinClassDef && ItinClassDef->getName() != "NoItinerary") in createSchedClassName()
1001 Name = std::string(ItinClassDef->getName()); in createSchedClassName()
1053 ItinClassDef); in addSchedClass()
1133 SC.ItinClassDef = SchedClasses[OldSCIdx].ItinClassDef; in createInstRWClass()
1193 if (SC.ItinClassDef == ItinDef) { in collectProcItins()
1252 if (SchedClasses[Idx].ItinClassDef) in inferSchedClasses()
1278 + ItinClassDef->getName() in inferFromItinClass()
1907 if (SC.ItinClassDef) { in collectProcResources()
1908 collectItinProcResources(SC.ItinClassDef); in collectProcResources()
[all …]
H A DSubtargetEmitter.cpp1097 if (is_contained(Matched, SC.ItinClassDef)) { in GenSchedClassTables()