Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp1141 return ListRecTy::get(SubType); in ParseType()
1296 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1314 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1336 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation()
1824 if (isa<ListRecTy>(Arg0Ty)) { in ParseOperation()
2079 ListRecTy *ListType = dyn_cast<ListRecTy>(List->getType()); in ParseOperation()
2431 if (ListRecTy *InListTy = dyn_cast<ListRecTy>(MHSt->getType())) { in ParseOperationForEachFilter()
2434 if (ListRecTy *OutListTy = dyn_cast<ListRecTy>(ItemType)) { in ParseOperationForEachFilter()
2755 ListRecTy *GivenListTy = nullptr; in ParseSimpleValue()
2758 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()
175 std::string ListRecTy::getAsString() const { in getAsString()
179 bool ListRecTy::typeIsConvertibleTo(const RecTy *RHS) const { in typeIsConvertibleTo()
180 if (const auto *ListTy = dyn_cast<ListRecTy>(RHS)) in typeIsConvertibleTo()
185 bool ListRecTy::typeIsA(const RecTy *RHS) const { in typeIsA()
186 if (const ListRecTy *RHSl = dyn_cast<ListRecTy>(RHS)) in typeIsA()
328 if (ListRecTy *ListTy1 = dyn_cast<ListRecTy>(T1)) { in resolveTypes()
329 if (ListRecTy *ListTy2 = dyn_cast<ListRecTy>(T2)) { in resolveTypes()
682 RecTy *EltTy = cast<ListRecTy>(getType())->getElementType(); in Profile()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h47 class ListRecTy; variable
77 ListRecTy *ListTy = nullptr;
101 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()
755 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit()
776 return cast<ListRecTy>(getType())->getElementType(); in getElementType()