Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSmartPtrModeling.cpp160 removeTrackedSubregions(TrackedRegionMapTy RegionMap, in removeTrackedSubregions() argument
164 return RegionMap; in removeTrackedSubregions()
165 for (const auto &E : RegionMap) { in removeTrackedSubregions()
167 RegionMap = RegionMapFactory.remove(RegionMap, E.first); in removeTrackedSubregions()
169 return RegionMap; in removeTrackedSubregions()
578 TrackedRegionMapTy RegionMap = State->get<TrackedRegionMap>(); in checkRegionChanges() local
582 RegionMap = removeTrackedSubregions(RegionMap, RegionMapFactory, in checkRegionChanges()
584 return State->set<TrackedRegionMap>(RegionMap); in checkRegionChanges()
H A DIteratorModeling.cpp305 auto RegionMap = State->get<IteratorRegionMap>(); in checkLiveSymbols() local
306 for (const IteratorPosition &Pos : llvm::make_second_range(RegionMap)) { in checkLiveSymbols()
325 auto RegionMap = State->get<IteratorRegionMap>(); in checkDeadSymbols() local
326 for (const auto &Reg : RegionMap) { in checkDeadSymbols()
728 auto RegionMap = State->get<IteratorRegionMap>(); in printState() local
732 if (!SymbolMap.isEmpty() || !RegionMap.isEmpty()) { in printState()
747 for (const auto &Reg : RegionMap) { in printState()
H A DContainerModeling.cpp893 auto RegionMap = State->get<IteratorRegionMap>(); in processIteratorPositions() local
895 for (const auto &Reg : RegionMap) { in processIteratorPositions()
897 RegionMap = RegionMapFactory.add(RegionMap, Reg.first, Proc(Reg.second)); in processIteratorPositions()
903 State = State->set<IteratorRegionMap>(RegionMap); in processIteratorPositions()
1036 auto RegionMap = State->get<IteratorRegionMap>(); in hasLiveIterators() local
1037 for (const auto &Reg : RegionMap) { in hasLiveIterators()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp621 DenseMap<MachineRegion *, RegionMRT *> RegionMap; in buildMRT() local
624 RegionMap[TopLevelRegion] = Result; in buildMRT()
648 if (RegionMap.count(Region) == 0) { in buildMRT()
650 RegionMap[Region] = NewMRTRegion; in buildMRT()
654 while (RegionMap.count(Parent) == 0) { in buildMRT()
658 RegionMap[Parent] = NewMRTParent; in buildMRT()
662 RegionMap[Parent]->addChild(NewMRTRegion); in buildMRT()
663 NewMRTRegion->setParent(RegionMap[Parent]); in buildMRT()
667 RegionMap[Region]->addChild(NewMBB); in buildMRT()
668 NewMBB->setParent(RegionMap[Region]); in buildMRT()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp216 auto I = RegionMap.find(Context); in getContextDescriptor()
217 if (I != RegionMap.end()) { in getContextDescriptor()
2736 RegionMap[Ty->getDecl()].reset(FwdDecl); in CreateTypeDefinition()
2758 RegionMap.erase(Ty->getDecl()); in CreateTypeDefinition()
2767 RegionMap[Ty->getDecl()].reset(FwdDecl); in CreateTypeDefinition()
2977 RegionMap[Ty->getDecl()].reset(RealDecl); in CreateTypeDefinition()
3790 RegionMap[Ty->getDecl()].reset(RealDecl); in CreateLimitedType()
4239 RegionMap[D].reset(SP); in emitFunctionStart()
4319 RegionMap[D].reset(SP); in emitFunctionStart()
H A DCGDebugInfo.h140 llvm::DenseMap<const Decl *, llvm::TrackingMDRef> RegionMap; variable