[llvm] Replace combineKnownMetadata with combineMetadataForCSE (PR #92197)
via llvm-commits
llvm-commits at lists.llvm.org
Tue May 14 17:11:53 PDT 2024
https://github.com/hiraditya created https://github.com/llvm/llvm-project/pull/92197
There is no reason to call combineMetadata directly with a list of MD_ nodes. The combineMetadataForCSE function handles all the metadata correctly
Partially fixes: #30866
>From 6eeed61075eec5277e78d7943fb7e1918992e2f1 Mon Sep 17 00:00:00 2001
From: AdityaK <hiraditya at msn.com>
Date: Tue, 14 May 2024 17:03:02 -0700
Subject: [PATCH] Replace combineKnownMetadata with combineMetadataForCSE
There is no reason to call combineMetadata directly with a list of
MD_ nodes. The combineMetadataForCSE function handles all the metadata
correctly
Partially fixes: #30866
---
llvm/lib/Transforms/Scalar/GVNHoist.cpp | 14 +-------------
1 file changed, 1 insertion(+), 13 deletions(-)
diff --git a/llvm/lib/Transforms/Scalar/GVNHoist.cpp b/llvm/lib/Transforms/Scalar/GVNHoist.cpp
index 261c1259c9c96..b5333c532280c 100644
--- a/llvm/lib/Transforms/Scalar/GVNHoist.cpp
+++ b/llvm/lib/Transforms/Scalar/GVNHoist.cpp
@@ -238,18 +238,6 @@ class CallInfo {
const VNtoInsns &getStoreVNTable() const { return VNtoCallsStores; }
};
-static void combineKnownMetadata(Instruction *ReplInst, Instruction *I) {
- static const unsigned KnownIDs[] = {LLVMContext::MD_tbaa,
- LLVMContext::MD_alias_scope,
- LLVMContext::MD_noalias,
- LLVMContext::MD_range,
- LLVMContext::MD_fpmath,
- LLVMContext::MD_invariant_load,
- LLVMContext::MD_invariant_group,
- LLVMContext::MD_access_group};
- combineMetadata(ReplInst, I, KnownIDs, true);
-}
-
// This pass hoists common computations across branches sharing common
// dominator. The primary goal is to reduce the code size, and in some
// cases reduce critical path (by exposing more ILP).
@@ -996,8 +984,8 @@ unsigned GVNHoist::rauw(const SmallVecInsn &Candidates, Instruction *Repl,
MSSAUpdater->removeMemoryAccess(OldMA);
}
+ combineMetadataForCSE(Repl, I, true);
Repl->andIRFlags(I);
- combineKnownMetadata(Repl, I);
I->replaceAllUsesWith(Repl);
// Also invalidate the Alias Analysis cache.
MD->removeInstruction(I);
More information about the llvm-commits
mailing list