[llvm] [Analysis] Avoid repeated hash lookups (NFC) (PR #126011)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 6 12:05:57 PST 2025


================
@@ -1143,14 +1143,15 @@ void BlockFrequencyInfoImpl<BT>::calculate(const FunctionT &F,
 template <class BT>
 void BlockFrequencyInfoImpl<BT>::setBlockFreq(const BlockT *BB,
                                               BlockFrequency Freq) {
-  if (Nodes.count(BB))
+  auto [It, Inserted] = Nodes.try_emplace(BB);
+  if (!Inserted)
     BlockFrequencyInfoImplBase::setBlockFreq(getNode(BB), Freq);
----------------
kazutakahirata wrote:

Thank you for pointing this out!  I've "inlined" `getNode` here.

https://github.com/llvm/llvm-project/pull/126011


More information about the llvm-commits mailing list