Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/TableGen/
DRecord.cpp1197 if (ListInit *MHSl = dyn_cast<ListInit>(MHS)) { in ForeachHelper() local
1198 SmallVector<Init *, 8> NewList(MHSl->begin(), MHSl->end()); in ForeachHelper()
1215 if (ListInit *MHSl = dyn_cast<ListInit>(MHS)) { in FilterHelper() local
1218 for (Init *Item : MHSl->getValues()) { in FilterHelper()
1305 ListInit *MHSl = dyn_cast<ListInit>(MHS); in Fold() local
1307 bool MHSok = MHSl || isa<UnsetInit>(MHS); in Fold()
1313 if (MHSok && RHSok && (!MHSl || !RHSl || MHSl->size() == RHSl->size())) { in Fold()
1315 unsigned Size = MHSl ? MHSl->size() : RHSl->size(); in Fold()
1317 Init *Node = MHSl ? MHSl->getElement(i) : UnsetInit::get(); in Fold()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DRecord.cpp1150 if (ListInit *MHSl = dyn_cast<ListInit>(MHS)) { in ForeachHelper() local
1151 SmallVector<Init *, 8> NewList(MHSl->begin(), MHSl->end()); in ForeachHelper()
1226 ListInit *MHSl = dyn_cast<ListInit>(MHS); in Fold() local
1228 bool MHSok = MHSl || isa<UnsetInit>(MHS); in Fold()
1234 if (MHSok && RHSok && (!MHSl || !RHSl || MHSl->size() == RHSl->size())) { in Fold()
1236 unsigned Size = MHSl ? MHSl->size() : RHSl->size(); in Fold()
1238 Init *Node = MHSl ? MHSl->getElement(i) : UnsetInit::get(); in Fold()
/external/llvm/lib/TableGen/
DRecord.cpp1016 ListInit *MHSl = dyn_cast<ListInit>(MHS); in ForeachHelper() local
1017 if (MHSl && isa<ListRecTy>(Type)) { in ForeachHelper()
1019 std::vector<Init *> NewList(MHSl->begin(), MHSl->end()); in ForeachHelper()
1037 return ListInit::get(NewList, MHSl->getType()); in ForeachHelper()