[llvm] [IPO] Avoid repeated hash lookups (NFC) (PR #130546)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 9 20:53:35 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-transforms
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/130546.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/IPO/LowerTypeTests.cpp (+6-6)
``````````diff
diff --git a/llvm/lib/Transforms/IPO/LowerTypeTests.cpp b/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
index 7fe0de19f0256..596a3c1f01f64 100644
--- a/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
+++ b/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
@@ -2207,9 +2207,9 @@ bool LowerTypeTestsModule::lower() {
bool IsExported = false;
if (Function *F = dyn_cast<Function>(&GO)) {
IsJumpTableCanonical = isJumpTableCanonical(F);
- if (ExportedFunctions.count(F->getName())) {
- IsJumpTableCanonical |=
- ExportedFunctions[F->getName()].Linkage == CFL_Definition;
+ if (auto It = ExportedFunctions.find(F->getName());
+ It != ExportedFunctions.end()) {
+ IsJumpTableCanonical |= It->second.Linkage == CFL_Definition;
IsExported = true;
// TODO: The logic here checks only that the function is address taken,
// not that the address takers are live. This can be updated to check
@@ -2407,9 +2407,9 @@ bool LowerTypeTestsModule::lower() {
cast<MDString>(AliasMD->getOperand(0))->getString();
StringRef Aliasee = cast<MDString>(AliasMD->getOperand(1))->getString();
- if (!ExportedFunctions.count(Aliasee) ||
- ExportedFunctions[Aliasee].Linkage != CFL_Definition ||
- !M.getNamedAlias(Aliasee))
+ if (auto It = ExportedFunctions.find(Aliasee);
+ It == ExportedFunctions.end() ||
+ It->second.Linkage != CFL_Definition || !M.getNamedAlias(Aliasee))
continue;
GlobalValue::VisibilityTypes Visibility =
``````````
</details>
https://github.com/llvm/llvm-project/pull/130546
More information about the llvm-commits
mailing list