[PATCH] D123232: InstCombineCalls: fix annotateAnyAllocCallSite to report changes
Augie Fackler via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 7 07:36:48 PDT 2022
durin42 edited the summary of this revision.
durin42 updated this revision to Diff 421214.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123232/new/
https://reviews.llvm.org/D123232
Files:
llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
llvm/lib/Transforms/InstCombine/InstCombineInternal.h
Index: llvm/lib/Transforms/InstCombine/InstCombineInternal.h
===================================================================
--- llvm/lib/Transforms/InstCombine/InstCombineInternal.h
+++ llvm/lib/Transforms/InstCombine/InstCombineInternal.h
@@ -192,7 +192,7 @@
const Twine &Suffix = "");
private:
- void annotateAnyAllocSite(CallBase &Call, const TargetLibraryInfo *TLI);
+ bool annotateAnyAllocSite(CallBase &Call, const TargetLibraryInfo *TLI);
bool isDesirableIntType(unsigned BitWidth) const;
bool shouldChangeType(unsigned FromBitWidth, unsigned ToBitWidth) const;
bool shouldChangeType(Type *From, Type *To) const;
Index: llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
===================================================================
--- llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
+++ llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
@@ -2807,11 +2807,12 @@
return nullptr;
}
-void InstCombinerImpl::annotateAnyAllocSite(CallBase &Call, const TargetLibraryInfo *TLI) {
+bool InstCombinerImpl::annotateAnyAllocSite(CallBase &Call, const TargetLibraryInfo *TLI) {
// Note: We only handle cases which can't be driven from generic attributes
// here. So, for example, nonnull and noalias (which are common properties
// of some allocation functions) are expected to be handled via annotation
// of the respective allocator declaration with generic attributes.
+ bool Changed = false;
if (isAllocationFn(&Call, TLI)) {
uint64_t Size;
@@ -2825,13 +2826,14 @@
else
Call.addRetAttr(Attribute::getWithDereferenceableOrNullBytes(
Call.getContext(), Size));
+ Changed = true;
}
}
// Add alignment attribute if alignment is a power of two constant.
Value *Alignment = getAllocAlignment(&Call, TLI);
if (!Alignment)
- return;
+ return Changed;
ConstantInt *AlignOpC = dyn_cast<ConstantInt>(Alignment);
if (AlignOpC && AlignOpC->getValue().ult(llvm::Value::MaximumAlignment)) {
@@ -2842,16 +2844,16 @@
if (NewAlign > ExistingAlign) {
Call.addRetAttr(
Attribute::getWithAlignment(Call.getContext(), NewAlign));
+ Changed = true;
}
}
}
+ return Changed;
}
/// Improvements for call, callbr and invoke instructions.
Instruction *InstCombinerImpl::visitCallBase(CallBase &Call) {
- annotateAnyAllocSite(Call, &TLI);
-
- bool Changed = false;
+ bool Changed = annotateAnyAllocSite(Call, &TLI);;
// Mark any parameters that are known to be non-null with the nonnull
// attribute. This is helpful for inlining calls to functions with null
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D123232.421214.patch
Type: text/x-patch
Size: 2665 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220407/805fb8bc/attachment.bin>
More information about the llvm-commits
mailing list