[llvm] [InstCombine] ptrmask of gep for dynamic pointer aligment (PR #80002)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 15 08:37:37 PST 2024


================
@@ -966,6 +966,48 @@ Value *InstCombinerImpl::SimplifyDemandedUseBits(Value *V, APInt DemandedMask,
                 I, 1, (DemandedMask & ~LHSKnown.Zero).zextOrTrunc(MaskWidth)))
           return I;
 
+        // Combine:
+        // (ptrmask (getelementptr i8, ptr p, imm i), imm mask)
+        //   -> (ptrmask (getelementptr i8, ptr p, imm (i & mask)), imm mask)
+        // where only the low bits known to be zero in the pointer are changed
+        Value *InnerPtr;
+        uint64_t GEPIndex;
+        uint64_t PtrMaskImmediate;
+        if (match(I, m_Intrinsic<Intrinsic::ptrmask>(
+                         m_GEP(m_Value(InnerPtr), m_ConstantInt(GEPIndex)),
----------------
nikic wrote:

m_PtrAdd has been added since this PR was created -- need to rebase.

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


More information about the llvm-commits mailing list