Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DTGParser.cpp854 return ListRecTy::get(SubType); in ParseType()
1011 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1029 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1048 : ListRecTy::get(Itemt->getType()); in ParseOperation()
1051 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1221 if (!isa<ListRecTy>(ArgType)) { in ParseOperation()
1229 if (!isa<ListRecTy>(ItemType)) { in ParseOperation()
1239 cast<ListRecTy>(ItemType) in ParseOperation()
1437 if (MHSt && !isa<ListRecTy>(MHSt->getType())) { in ParseOperation()
1555 ListRecTy *ListType = dyn_cast<ListRecTy>(List->getType()); in ParseOperation()
[all …]
H A DRecord.cpp59 ListRecTy *RecTy::getListTy() { in getListTy()
61 ListTy = new(Allocator) ListRecTy(this); in getListTy()
121 std::string ListRecTy::getAsString() const { in getAsString()
125 bool ListRecTy::typeIsConvertibleTo(const RecTy *RHS) const { in typeIsConvertibleTo()
126 if (const auto *ListTy = dyn_cast<ListRecTy>(RHS)) in typeIsConvertibleTo()
131 bool ListRecTy::typeIsA(const RecTy *RHS) const { in typeIsA()
132 if (const ListRecTy *RHSl = dyn_cast<ListRecTy>(RHS)) in typeIsA()
264 if (ListRecTy *ListTy1 = dyn_cast<ListRecTy>(T1)) { in resolveTypes()
265 if (ListRecTy *ListTy2 = dyn_cast<ListRecTy>(T2)) { in resolveTypes()
584 RecTy *EltTy = cast<ListRecTy>(getType())->getElementType(); in Profile()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
H A DRecord.h43 class ListRecTy; variable
72 ListRecTy *ListTy = nullptr;
93 ListRecTy *getListTy();
179 class ListRecTy : public RecTy {
180 friend ListRecTy *RecTy::getListTy();
184 explicit ListRecTy(RecTy *T) : RecTy(ListRecTyKind), ElementTy(T) {} in ListRecTy() function
191 static ListRecTy *get(RecTy *T) { return T->getListTy(); } in get()
674 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit()
695 return cast<ListRecTy>(getType())->getElementType(); in getElementType()
1152 cast<ListRecTy>(T->getType())->getElementType()), in VarListElementInit()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/TableGen/
H A DBackGuide.rst187 ``ListRecTy``,
216 ``ListRecTy``
223 returns the ``ListRecTy`` type corresponding to ``list<``\ *type*\ ``>``.