[llvm] de56395 - [Analysis] Avoid repeated hash lookups (NFC) (#126465)

via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 10 07:50:16 PST 2025


Author: Kazu Hirata
Date: 2025-02-10T07:50:12-08:00
New Revision: de563951b7740b3f2e1b3a07362e7890e09624ec

URL: https://github.com/llvm/llvm-project/commit/de563951b7740b3f2e1b3a07362e7890e09624ec
DIFF: https://github.com/llvm/llvm-project/commit/de563951b7740b3f2e1b3a07362e7890e09624ec.diff

LOG: [Analysis] Avoid repeated hash lookups (NFC) (#126465)

Added: 
    

Modified: 
    llvm/include/llvm/Analysis/RegionInfoImpl.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Analysis/RegionInfoImpl.h b/llvm/include/llvm/Analysis/RegionInfoImpl.h
index db3a9027549cefe..eb99d8bc6fb23ef 100644
--- a/llvm/include/llvm/Analysis/RegionInfoImpl.h
+++ b/llvm/include/llvm/Analysis/RegionInfoImpl.h
@@ -720,16 +720,14 @@ void RegionInfoBase<Tr>::buildRegionsTree(DomTreeNodeT *N, RegionT *region) {
   while (BB == region->getExit())
     region = region->getParent();
 
-  typename BBtoRegionMap::iterator it = BBtoRegion.find(BB);
+  auto [It, Inserted] = BBtoRegion.try_emplace(BB, region);
 
   // This basic block is a start block of a region. It is already in the
   // BBtoRegion relation. Only the child basic blocks have to be updated.
-  if (it != BBtoRegion.end()) {
-    RegionT *newRegion = it->second;
+  if (!Inserted) {
+    RegionT *newRegion = It->second;
     region->addSubRegion(getTopMostParent(newRegion));
     region = newRegion;
-  } else {
-    BBtoRegion[BB] = region;
   }
 
   for (DomTreeNodeBase<BlockT> *C : *N) {


        


More information about the llvm-commits mailing list