[llvm] [ADT] Avoid repeated hash lookups (NFC) (PR #125812)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 23:16:18 PST 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/125812
None
>From 0ff3e352555d15a4099825bedee5e935cb5124f8 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Tue, 4 Feb 2025 09:49:37 -0800
Subject: [PATCH] [ADT] Avoid repeated hash lookups (NFC)
---
llvm/include/llvm/ADT/GenericCycleImpl.h | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/llvm/include/llvm/ADT/GenericCycleImpl.h b/llvm/include/llvm/ADT/GenericCycleImpl.h
index 41ba8bf8fde14b..4b2e01bcd9c53e 100644
--- a/llvm/include/llvm/ADT/GenericCycleImpl.h
+++ b/llvm/include/llvm/ADT/GenericCycleImpl.h
@@ -454,7 +454,9 @@ void GenericCycleInfoCompute<ContextT>::dfs(BlockT *EntryBlock) {
BlockT *Block = TraverseStack.back();
LLVM_DEBUG(errs() << "DFS visiting block: " << Info.Context.print(Block)
<< "\n");
- if (!BlockDFSInfo.count(Block)) {
+ if (BlockDFSInfo.try_emplace(Block, Counter + 1).second) {
+ ++Counter;
+
// We're visiting the block for the first time. Open its DFSInfo, add
// successors to the traversal stack, and remember the traversal stack
// depth at which the block was opened, so that we can correctly record
@@ -465,9 +467,6 @@ void GenericCycleInfoCompute<ContextT>::dfs(BlockT *EntryBlock) {
DFSTreeStack.emplace_back(TraverseStack.size());
llvm::append_range(TraverseStack, successors(Block));
- bool Added = BlockDFSInfo.try_emplace(Block, ++Counter).second;
- (void)Added;
- assert(Added);
BlockPreorder.push_back(Block);
LLVM_DEBUG(errs() << " preorder number: " << Counter << "\n");
} else {
More information about the llvm-commits
mailing list