Searched refs:ListRecTy (Results 1 – 10 of 10) sorted by relevance
/external/llvm-project/llvm/lib/TableGen/ |
D | TGParser.cpp | 841 return ListRecTy::get(SubType); in ParseType() 999 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() 1017 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() 1036 : ListRecTy::get(Itemt->getType()); in ParseOperation() 1039 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() 1209 if (!isa<ListRecTy>(ArgType)) { in ParseOperation() 1217 if (!isa<ListRecTy>(ItemType)) { in ParseOperation() 1227 cast<ListRecTy>(ItemType) in ParseOperation() 1425 if (MHSt && !isa<ListRecTy>(MHSt->getType())) { in ParseOperation() 1537 ListRecTy *ListType = dyn_cast<ListRecTy>(List->getType()); in ParseOperation() [all …]
|
D | Record.cpp | 59 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() 267 if (ListRecTy *ListTy1 = dyn_cast<ListRecTy>(T1)) { in resolveTypes() 268 if (ListRecTy *ListTy2 = dyn_cast<ListRecTy>(T2)) { in resolveTypes() 565 RecTy *EltTy = cast<ListRecTy>(getType())->getElementType(); in Profile() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | TGParser.cpp | 842 return ListRecTy::get(SubType); in ParseType() 996 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() 1025 : ListRecTy::get(Itemt->getType()); in ParseOperation() 1028 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() 1189 if (!isa<ListRecTy>(ArgType)) { in ParseOperation() 1197 if (!isa<ListRecTy>(ItemType)) { in ParseOperation() 1207 cast<ListRecTy>(ItemType) in ParseOperation() 1347 if (ListRecTy *InListTy = dyn_cast<ListRecTy>(MHSt->getType())) { in ParseOperation() 1350 if (ListRecTy *OutListTy = dyn_cast<ListRecTy>(ItemType)) { in ParseOperation() 1477 if (MHSt && !isa<ListRecTy>(MHSt->getType())) { in ParseOperation() [all …]
|
D | Record.cpp | 63 ListRecTy *RecTy::getListTy() { in getListTy() 65 ListTy = new(Allocator) ListRecTy(this); in getListTy() 130 std::string ListRecTy::getAsString() const { in getAsString() 134 bool ListRecTy::typeIsConvertibleTo(const RecTy *RHS) const { in typeIsConvertibleTo() 135 if (const auto *ListTy = dyn_cast<ListRecTy>(RHS)) in typeIsConvertibleTo() 140 bool ListRecTy::typeIsA(const RecTy *RHS) const { in typeIsA() 141 if (const ListRecTy *RHSl = dyn_cast<ListRecTy>(RHS)) in typeIsA() 276 if (ListRecTy *ListTy1 = dyn_cast<ListRecTy>(T1)) { in resolveTypes() 277 if (ListRecTy *ListTy2 = dyn_cast<ListRecTy>(T2)) { in resolveTypes() 593 RecTy *EltTy = cast<ListRecTy>(getType())->getElementType(); in Profile() [all …]
|
/external/llvm/include/llvm/TableGen/ |
D | Record.h | 31 class ListRecTy; variable 57 std::unique_ptr<ListRecTy> ListTy; 74 ListRecTy *getListTy(); 174 class ListRecTy : public RecTy { 176 explicit ListRecTy(RecTy *T) : RecTy(ListRecTyKind), Ty(T) {} in ListRecTy() function 177 friend ListRecTy *RecTy::getListTy(); 184 static ListRecTy *get(RecTy *T) { return T->getListTy(); } in get() 660 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit() 999 cast<ListRecTy>(T->getType())->getElementType()), in VarListElementInit() 1001 assert(T->getType() && isa<ListRecTy>(T->getType()) && in VarListElementInit()
|
/external/llvm/lib/TableGen/ |
D | Record.cpp | 92 ListRecTy *RecTy::getListTy() { in getListTy() 94 ListTy.reset(new ListRecTy(this)); in getListTy() 141 std::string ListRecTy::getAsString() const { in getAsString() 145 bool ListRecTy::typeIsConvertibleTo(const RecTy *RHS) const { in typeIsConvertibleTo() 146 if (const auto *ListTy = dyn_cast<ListRecTy>(RHS)) in typeIsConvertibleTo() 513 RecTy *EltTy = cast<ListRecTy>(getType())->getElementType(); in Profile() 519 if (auto *LRT = dyn_cast<ListRecTy>(Ty)) { in convertInitializerTo() 530 if (isa<ListRecTy>(getType())) in convertInitializerTo() 831 Args, cast<ListRecTy>(LHSs->getType())->getElementType()); in Fold() 1017 if (MHSl && isa<ListRecTy>(Type)) { in ForeachHelper() [all …]
|
D | TGParser.cpp | 701 return ListRecTy::get(SubType); in ParseType() 824 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() 850 : ListRecTy::get(Itemt->getType()); in ParseOperation() 853 ListRecTy *LType = dyn_cast<ListRecTy>(LHSt->getType()); in ParseOperation() 1307 ListRecTy *GivenListTy = nullptr; in ParseSimpleValue() 1310 ListRecTy *ListType = dyn_cast<ListRecTy>(ItemType); in ParseSimpleValue() 1773 ListRecTy *ListType = dyn_cast<ListRecTy>(ValueType); in ParseForeachDeclaration()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/ |
D | Record.h | 41 class ListRecTy; variable 70 ListRecTy *ListTy = nullptr; 91 ListRecTy *getListTy(); 195 class ListRecTy : public RecTy { 196 friend ListRecTy *RecTy::getListTy(); 200 explicit ListRecTy(RecTy *T) : RecTy(ListRecTyKind), Ty(T) {} in ListRecTy() function 207 static ListRecTy *get(RecTy *T) { return T->getListTy(); } in get() 670 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit() 691 return cast<ListRecTy>(getType())->getElementType(); in getElementType() 1148 cast<ListRecTy>(T->getType())->getElementType()), in VarListElementInit() [all …]
|
/external/llvm-project/llvm/include/llvm/TableGen/ |
D | Record.h | 42 class ListRecTy; variable 71 ListRecTy *ListTy = nullptr; 92 ListRecTy *getListTy(); 178 class ListRecTy : public RecTy { 179 friend ListRecTy *RecTy::getListTy(); 183 explicit ListRecTy(RecTy *T) : RecTy(ListRecTyKind), ElementTy(T) {} in ListRecTy() function 190 static ListRecTy *get(RecTy *T) { return T->getListTy(); } in get() 642 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit() 663 return cast<ListRecTy>(getType())->getElementType(); in getElementType() 1119 cast<ListRecTy>(T->getType())->getElementType()), in VarListElementInit() [all …]
|
/external/llvm-project/llvm/docs/TableGen/ |
D | BackGuide.rst | 187 ``ListRecTy``, 216 ``ListRecTy`` 223 returns the ``ListRecTy`` type corresponding to ``list<``\ *type*\ ``>``.
|