[llvm] [InstCombine] Simplify nonnull pointers (PR #128111)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 00:48:23 PST 2025
================
@@ -3993,10 +3993,20 @@ Instruction *InstCombinerImpl::visitCallBase(CallBase &Call) {
unsigned ArgNo = 0;
for (Value *V : Call.args()) {
- if (V->getType()->isPointerTy() &&
- !Call.paramHasAttr(ArgNo, Attribute::NonNull) &&
- isKnownNonZero(V, getSimplifyQuery().getWithInstruction(&Call)))
- ArgNos.push_back(ArgNo);
+ if (V->getType()->isPointerTy()) {
+ // Simplify the nonnull operand before nonnull inference to avoid
+ // unnecessary queries.
+ if (Call.paramHasNonNullAttr(ArgNo, /*AllowUndefOrPoison=*/true)) {
+ if (Value *Res = simplifyNonNullOperand(V)) {
+ replaceOperand(Call, ArgNo, Res);
+ Changed = true;
+ }
+ }
----------------
nikic wrote:
Can else this instead of querying nonnull again? (Will no longer infer nonnull for dereferenceable, but we shouldn't need to ?)
https://github.com/llvm/llvm-project/pull/128111
More information about the llvm-commits
mailing list