Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.h130 Record *ItinClassDef; member
147 CodeGenSchedClass(unsigned Index, std::string Name, Record *ItinClassDef) in CodeGenSchedClass()
148 : Index(Index), Name(std::move(Name)), ItinClassDef(ItinClassDef) {} in CodeGenSchedClass()
152 return ItinClassDef == IC && makeArrayRef(Writes) == W && in isKeyEqual()
158 bool isInferred() const { return !ItinClassDef; } in isInferred()
599 std::string createSchedClassName(Record *ItinClassDef,
625 void inferFromItinClass(Record *ItinClassDef, unsigned FromClassIdx);
633 void collectItinProcResources(Record *ItinClassDef);
H A DCodeGenSchedule.cpp918 << SC.ItinClassDef->getName() << '\n'; in collectSchedClasses()
975 if (ItinClassDef && ItinClassDef->getName() != "NoItinerary") in createSchedClassName()
976 Name = std::string(ItinClassDef->getName()); in createSchedClassName()
1028 ItinClassDef); in addSchedClass()
1108 SC.ItinClassDef = SchedClasses[OldSCIdx].ItinClassDef; in createInstRWClass()
1168 if (SC.ItinClassDef == ItinDef) { in collectProcItins()
1227 if (SchedClasses[Idx].ItinClassDef) in inferSchedClasses()
1253 + ItinClassDef->getName() in inferFromItinClass()
1882 if (SC.ItinClassDef) { in collectProcResources()
1883 collectItinProcResources(SC.ItinClassDef); in collectProcResources()
[all …]
H A DSubtargetEmitter.cpp1047 if (is_contained(Matched, SC.ItinClassDef)) { in GenSchedClassTables()