Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
1051 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1221 if (!isa<ListRecTy>(ArgType)) { in ParseOperation()
1555 ListRecTy *ListType = dyn_cast<ListRecTy>(List->getType()); in ParseOperation()
1905 if (ListRecTy *InListTy = dyn_cast<ListRecTy>(MHSt->getType())) { in ParseOperationForEachFilter()
1908 if (ListRecTy *OutListTy = dyn_cast<ListRecTy>(ItemType)) { in ParseOperationForEachFilter()
2221 ListRecTy *GivenListTy = nullptr; in ParseSimpleValue()
2224 ListRecTy *ListType = dyn_cast<ListRecTy>(ItemType); in ParseSimpleValue()
[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()
593 if (auto *LRT = dyn_cast<ListRecTy>(Ty)) { in convertInitializerTo()
[all …]
/freebsd-13.1/contrib/llvm-project/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 …]