[llvm] [InstCombine] Add support for GEPs in `simplifyNonNullOperand` (PR #128365)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 22 09:58:09 PST 2025


================
@@ -3596,7 +3596,9 @@ Instruction *InstCombinerImpl::visitReturnInst(ReturnInst &RI) {
     if (F->hasRetAttribute(Attribute::NonNull) ||
         (F->getAttributes().getRetDereferenceableBytes() > 0 &&
          !NullPointerIsDefined(F, RetTy->getPointerAddressSpace()))) {
-      if (Value *V = simplifyNonNullOperand(RetVal))
+      if (Value *V = simplifyNonNullOperand(
+              RetVal, /*HasDereferenceable=*/F->getAttributes()
+                              .getRetDereferenceableBytes() > 0))
----------------
nikic wrote:

Avoid repeated query for dereferenceable bytes? (Should also do this for the arg case.)

https://github.com/llvm/llvm-project/pull/128365


More information about the llvm-commits mailing list