Lines Matching refs:TheDef
65 const Record *TheDef; member in __anonf9119db00211::AvailabilityPredicate
69 AvailabilityPredicate(const Record *Def) : TheDef(Def) { in AvailabilityPredicate()
70 if (TheDef) in AvailabilityPredicate()
71 PredicateString = TheDef->getValueAsString("Cond"); in AvailabilityPredicate()
74 const Record *getDef() const { return TheDef; } in getDef()
85 if (TheDef) in emitTableVariableNameSuffix()
86 OS << '_' << TheDef->getName(); in emitTableVariableNameSuffix()
111 const Record *TheDef = nullptr; member in __anonf9119db00211::RuntimeLibcall
117 : TheDef(Def), EnumVal(EnumVal) { in RuntimeLibcall()
121 ~RuntimeLibcall() { assert(TheDef); } in ~RuntimeLibcall()
123 const Record *getDef() const { return TheDef; } in getDef()
125 StringRef getName() const { return TheDef->getName(); } in getName()
130 OS << "RTLIB::" << TheDef->getValueAsString("Name"); in emitEnumEntry()
135 const Record *TheDef; member in __anonf9119db00211::RuntimeLibcallImpl
144 : TheDef(Def), EnumVal(EnumVal) { in RuntimeLibcallImpl()
151 const Record *getDef() const { return TheDef; } in getDef()
153 StringRef getName() const { return TheDef->getName(); } in getName()
160 return TheDef->getValueAsString("LibCallFuncName"); in getLibcallFuncName()
164 return TheDef->getValueAsOptionalDef("CallingConv"); in getCallingConv()
171 bool isDefault() const { return TheDef->getValueAsBit("IsDefault"); } in isDefault()
174 OS << "RTLIB::" << TheDef->getName(); in emitEnumEntry()