Home
last modified time | relevance | path

Searched refs:StringRecTy (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp1096 return StringRecTy::get(Records); in ParseType()
1215 Type = StringRecTy::get(Records); in ParseOperation()
1220 Type = StringRecTy::get(Records); in ParseOperation()
1225 Type = StringRecTy::get(Records); in ParseOperation()
1297 StringRecTy *SType = dyn_cast<StringRecTy>(LHSt->getType()); in ParseOperation()
1405 StringRecTy *SType = dyn_cast<StringRecTy>(ExprType->getType()); in ParseOperation()
1503 Type = StringRecTy::get(Records); in ParseOperation()
1540 Type = StringRecTy::get(Records); in ParseOperation()
1541 ArgType = StringRecTy::get(Records); in ParseOperation()
1544 Type = StringRecTy::get(Records); in ParseOperation()
[all …]
H A DRecord.cpp65 StringRecTy SharedStringRecTy;
162 StringRecTy *StringRecTy::get(RecordKeeper &RK) { in get()
166 std::string StringRecTy::getAsString() const { in getAsString()
170 bool StringRecTy::typeIsConvertibleTo(const RecTy *RHS) const { in typeIsConvertibleTo()
644 if (isa<StringRecTy>(Ty)) in convertInitializerTo()
828 if (isa<StringRecTy>(getType())) { in Fold()
1078 StringRecTy::get(I0->getRecordKeeper())); in getStrConcat()
1357 if (isa<StringRecTy>(List->getElementType())) in Fold()
2685 if (getType() == StringRecTy::get(getRecordKeeper())) { in getPrintType()
2772 if (!isa<StringRecTy>(TypedName->getType())) in checkName()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp157 if (isa<StringRecTy>(Field.RecType)) { in searchableFieldType()
275 if (isa<StringRecTy>(Field.RecType)) { in compareBy()
356 if (isa<StringRecTy>(Field.RecType)) in emitLookupFunction()
417 if (isa<StringRecTy>(Field.RecType)) { in emitLookupFunction()
434 if (isa<StringRecTy>(Field.RecType)) { in emitLookupFunction()
568 if (EarlyOut && isa<StringRecTy>(Index->Fields[0].RecType)) { in parseSearchIndex()
H A DDFAEmitter.cpp329 } else if (isa<StringRecTy>(SymbolV->getType())) { in Transition()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h167 class StringRecTy : public RecTy {
170 StringRecTy(RecordKeeper &RK) : RecTy(StringRecTyKind, RK) {} in StringRecTy() function
177 static StringRecTy *get(RecordKeeper &RK);
665 : TypedInit(IK_AnonymousNameInit, StringRecTy::get(RK)), Value(V) {} in AnonymousNameInit()
703 : TypedInit(IK_StringInit, StringRecTy::get(RK)), Value(V), Format(Fmt) {} in StringInit()