[llvm] 1761066 - [GlobalOpt] Remove Function* argument from tryWidenGlobalArrayAndDests. NFC (#127848)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 12:37:58 PST 2025
Author: Craig Topper
Date: 2025-02-19T12:37:54-08:00
New Revision: 1761066fc641be529ca45b3cfcf4788b8a7a688d
URL: https://github.com/llvm/llvm-project/commit/1761066fc641be529ca45b3cfcf4788b8a7a688d
DIFF: https://github.com/llvm/llvm-project/commit/1761066fc641be529ca45b3cfcf4788b8a7a688d.diff
LOG: [GlobalOpt] Remove Function* argument from tryWidenGlobalArrayAndDests. NFC (#127848)
This is only used to get the Module and the LLVMContext. We can get both
of those from the GlobalVariable*.
Added:
Modified:
llvm/lib/Transforms/IPO/GlobalOpt.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/GlobalOpt.cpp b/llvm/lib/Transforms/IPO/GlobalOpt.cpp
index 1a2a27d22ae68..2d046f09f1b2b 100644
--- a/llvm/lib/Transforms/IPO/GlobalOpt.cpp
+++ b/llvm/lib/Transforms/IPO/GlobalOpt.cpp
@@ -2064,7 +2064,7 @@ static bool destArrayCanBeWidened(CallInst *CI) {
return true;
}
-static GlobalVariable *widenGlobalVariable(GlobalVariable *OldVar, Function *F,
+static GlobalVariable *widenGlobalVariable(GlobalVariable *OldVar,
unsigned NumBytesToPad,
unsigned NumBytesToCopy) {
if (!OldVar->hasInitializer())
@@ -2083,10 +2083,10 @@ static GlobalVariable *widenGlobalVariable(GlobalVariable *OldVar, Function *F,
StrData.push_back('\0');
auto Arr = ArrayRef(StrData.data(), NumBytesToCopy + NumBytesToPad);
// Create new padded version of global variable.
- Constant *SourceReplace = ConstantDataArray::get(F->getContext(), Arr);
+ Constant *SourceReplace = ConstantDataArray::get(OldVar->getContext(), Arr);
GlobalVariable *NewGV = new GlobalVariable(
- *(F->getParent()), SourceReplace->getType(), true, OldVar->getLinkage(),
- SourceReplace, SourceReplace->getName());
+ *(OldVar->getParent()), SourceReplace->getType(), true,
+ OldVar->getLinkage(), SourceReplace, SourceReplace->getName());
// Copy any other attributes from original global variable
// e.g. unamed_addr
NewGV->copyAttributesFrom(OldVar);
@@ -2114,13 +2114,13 @@ static void widenDestArray(CallInst *CI, const unsigned NumBytesToPad,
}
}
-static bool tryWidenGlobalArrayAndDests(Function *F, GlobalVariable *SourceVar,
+static bool tryWidenGlobalArrayAndDests(GlobalVariable *SourceVar,
const unsigned NumBytesToPad,
const unsigned NumBytesToCopy,
ConstantInt *BytesToCopyOp,
ConstantDataArray *SourceDataArray) {
auto *NewSourceGV =
- widenGlobalVariable(SourceVar, F, NumBytesToPad, NumBytesToCopy);
+ widenGlobalVariable(SourceVar, NumBytesToPad, NumBytesToCopy);
if (!NewSourceGV)
return false;
@@ -2158,8 +2158,6 @@ static bool tryWidenGlobalArraysUsedByMemcpy(
if (!callInstIsMemcpy(CI) || !destArrayCanBeWidened(CI))
continue;
- Function *F = CI->getCalledFunction();
-
auto *BytesToCopyOp = dyn_cast<ConstantInt>(CI->getArgOperand(2));
if (!BytesToCopyOp)
continue;
@@ -2191,7 +2189,7 @@ static bool tryWidenGlobalArraysUsedByMemcpy(
.getNumBytesToPadGlobalArray(NumBytesToCopy,
SourceDataArray->getType());
if (NumBytesToPad) {
- return tryWidenGlobalArrayAndDests(F, GV, NumBytesToPad, NumBytesToCopy,
+ return tryWidenGlobalArrayAndDests(GV, NumBytesToPad, NumBytesToCopy,
BytesToCopyOp, SourceDataArray);
}
}
More information about the llvm-commits
mailing list