Home
last modified time | relevance | path

Searched refs:RegionMap (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp640 DenseMap<MachineRegion *, RegionMRT *> RegionMap; in buildMRT() local
643 RegionMap[TopLevelRegion] = Result; in buildMRT()
667 if (RegionMap.count(Region) == 0) { in buildMRT()
669 RegionMap[Region] = NewMRTRegion; in buildMRT()
673 while (RegionMap.count(Parent) == 0) { in buildMRT()
677 RegionMap[Parent] = NewMRTParent; in buildMRT()
681 RegionMap[Parent]->addChild(NewMRTRegion); in buildMRT()
682 NewMRTRegion->setParent(RegionMap[Parent]); in buildMRT()
686 RegionMap[Region]->addChild(NewMBB); in buildMRT()
687 NewMBB->setParent(RegionMap[Region]); in buildMRT()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorChecker.cpp775 auto RegionMap = State->get<IteratorRegionMap>(); in checkLiveSymbols() local
776 for (const auto Reg : RegionMap) { in checkLiveSymbols()
812 auto RegionMap = State->get<IteratorRegionMap>(); in checkDeadSymbols() local
813 for (const auto Reg : RegionMap) { in checkDeadSymbols()
2137 auto RegionMap = State->get<IteratorRegionMap>(); in hasLiveIterators() local
2138 for (const auto Reg : RegionMap) { in hasLiveIterators()
2168 auto RegionMap = State->get<IteratorRegionMap>(); in processIteratorPositions() local
2170 for (const auto Reg : RegionMap) { in processIteratorPositions()
2172 RegionMap = RegionMapFactory.add(RegionMap, Reg.first, Proc(Reg.second)); in processIteratorPositions()
2178 State = State->set<IteratorRegionMap>(RegionMap); in processIteratorPositions()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.cpp210 auto I = RegionMap.find(Context); in getContextDescriptor()
211 if (I != RegionMap.end()) { in getContextDescriptor()
2139 RegionMap[Ty->getDecl()].reset(FwdDecl); in CreateTypeDefinition()
2161 RegionMap.erase(Ty->getDecl()); in CreateTypeDefinition()
2170 RegionMap[Ty->getDecl()].reset(FwdDecl); in CreateTypeDefinition()
2346 RegionMap[Ty->getDecl()].reset(RealDecl); in CreateTypeDefinition()
3050 RegionMap[Ty->getDecl()].reset(RealDecl); in CreateLimitedType()
3429 RegionMap[D].reset(SP); in EmitFunctionStart()
3507 RegionMap[D].reset(SP); in EmitFunctionStart()
H A DCGDebugInfo.h124 llvm::DenseMap<const Decl *, llvm::TrackingMDRef> RegionMap; variable