[llvm] [Analysis] Avoid repeated hash lookups (NFC) (PR #126011)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 01:15:45 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);
----------------
nikic wrote:
The getNode here is also a lookup in Nodes.
https://github.com/llvm/llvm-project/pull/126011
More information about the llvm-commits
mailing list