Home
last modified time | relevance | path

Searched refs:ParentRegion (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DStructurizeCFG.cpp166 Region *ParentRegion; member in __anon5690e2700111::StructurizeCFG
281 scc_iterator<Region *> I = scc_begin(ParentRegion); in orderNodes()
363 RegionInfo *RI = ParentRegion->getRegionInfo(); in gatherPredicates()
372 if (!ParentRegion->contains(*PI)) in gatherPredicates()
376 if (R == ParentRegion) { in gatherPredicates()
409 while(R->getParent() != ParentRegion) in gatherPredicates()
636 BasicBlock *Insert = Order.empty() ? ParentRegion->getExit() : in getNextFlow()
641 ParentRegion->getRegionInfo()->setRegionFor(Flow, ParentRegion); in getNextFlow()
661 PrevNode = ParentRegion->getBBNode(Flow); in needPrefix()
669 BasicBlock *Exit = ParentRegion->getExit(); in needPostfix()
[all …]
/external/clang/lib/Sema/
DSemaOpenMP.cpp1075 auto ParentRegion = Stack->getParentDirective(); in CheckNestingOfRegions() local
1079 if (isOpenMPSimdDirective(ParentRegion)) { in CheckNestingOfRegions()
1090 if (ParentRegion != OMPD_sections && in CheckNestingOfRegions()
1091 ParentRegion != OMPD_parallel_sections) { in CheckNestingOfRegions()
1093 << (ParentRegion != OMPD_unknown) in CheckNestingOfRegions()
1094 << getOpenMPDirectiveName(ParentRegion); in CheckNestingOfRegions()
1106 NestingProhibited = isOpenMPWorksharingDirective(ParentRegion) && in CheckNestingOfRegions()
1107 !isOpenMPSimdDirective(ParentRegion); in CheckNestingOfRegions()
1112 << CloseNesting << getOpenMPDirectiveName(ParentRegion) in CheckNestingOfRegions()