[llvm] [InstCombine] ptrmask of gep for dynamic pointer aligment (PR #80002)
Jon Chesterfield via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 16 11:22:26 PST 2024
================
@@ -995,6 +995,44 @@ 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_PtrAdd(m_Value(InnerPtr), m_ConstantInt(GEPIndex)),
+ m_ConstantInt(PtrMaskImmediate)))) {
+
+ const unsigned trailingZeros =
+ computeKnownBits(InnerPtr, Depth + 1, I).countMinTrailingZeros();
+
+ if (trailingZeros < 64) {
----------------
JonChesterfield wrote:
"Resolve" does not apply a comment, merely deletes the contents of the text box and then hides it.
The 64 magic number here was avoiding shifting a uin64_t by 64 (because C++), replaced with an explicit zero test. Added a test, the zero case is indeed handled correctly elsewhere in instcombine.
https://github.com/llvm/llvm-project/pull/80002
More information about the llvm-commits
mailing list