Home
last modified time | relevance | path

Searched refs:ListRecTy (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/TableGen/
H A DTGParser.cpp864 return ListRecTy::get(SubType); in ParseType()
1022 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1040 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1062 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1278 if (!isa<ListRecTy>(ArgType)) { in ParseOperation()
1613 ListRecTy *ListType = dyn_cast<ListRecTy>(List->getType()); in ParseOperation()
1963 if (ListRecTy *InListTy = dyn_cast<ListRecTy>(MHSt->getType())) { in ParseOperationForEachFilter()
1966 if (ListRecTy *OutListTy = dyn_cast<ListRecTy>(ItemType)) { in ParseOperationForEachFilter()
2279 ListRecTy *GivenListTy = nullptr; in ParseSimpleValue()
2282 ListRecTy *ListType = dyn_cast<ListRecTy>(ItemType); in ParseSimpleValue()
[all …]
H A DRecord.cpp107 ListRecTy *RecTy::getListTy() { in getListTy()
109 ListTy = new (RK.getImpl().Allocator) ListRecTy(this); in getListTy()
181 std::string ListRecTy::getAsString() const { in getAsString()
185 bool ListRecTy::typeIsConvertibleTo(const RecTy *RHS) const { in typeIsConvertibleTo()
186 if (const auto *ListTy = dyn_cast<ListRecTy>(RHS)) in typeIsConvertibleTo()
191 bool ListRecTy::typeIsA(const RecTy *RHS) const { in typeIsA()
192 if (const ListRecTy *RHSl = dyn_cast<ListRecTy>(RHS)) in typeIsA()
331 if (ListRecTy *ListTy1 = dyn_cast<ListRecTy>(T1)) { in resolveTypes()
332 if (ListRecTy *ListTy2 = dyn_cast<ListRecTy>(T2)) { in resolveTypes()
654 if (auto *LRT = dyn_cast<ListRecTy>(Ty)) { in convertInitializerTo()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/TableGen/
H A DRecord.h45 class ListRecTy; variable
75 ListRecTy *ListTy = nullptr;
99 ListRecTy *getListTy();
186 class ListRecTy : public RecTy {
187 friend ListRecTy *RecTy::getListTy();
191 explicit ListRecTy(RecTy *T) in ListRecTy() function
199 static ListRecTy *get(RecTy *T) { return T->getListTy(); } in get()
702 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit()
723 return cast<ListRecTy>(getType())->getElementType(); in getElementType()
1215 cast<ListRecTy>(T->getType())->getElementType()), in VarListElementInit()
[all …]
/llvm-project-15.0.7/llvm/docs/TableGen/
H A DBackGuide.rst187 ``ListRecTy``,
216 ``ListRecTy``
223 returns the ``ListRecTy`` type corresponding to ``list<``\ *type*\ ``>``.