aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
diff options
context:
space:
mode:
authorNikita Popov <npopov@redhat.com>2024-07-12 16:31:04 +0200
committerNikita Popov <npopov@redhat.com>2024-07-12 16:34:26 +0200
commitc45f939e34dafaf0f57fd1d93df7df5cc89f1dec (patch)
tree1d32f27d8474f38cb0014fec91160572e7fc06da /llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
parent09b1cfceb62332ebf8e5d319ee048492a709995d (diff)
downloadllvm-c45f939e34dafaf0f57fd1d93df7df5cc89f1dec.zip
llvm-c45f939e34dafaf0f57fd1d93df7df5cc89f1dec.tar.gz
llvm-c45f939e34dafaf0f57fd1d93df7df5cc89f1dec.tar.bz2
[InstCombine] Generalize ptrtoint(gep) fold (NFC)
We're currently handling a special case of ptrtoint gep -> add ptrtoint. Reframe the code to make it easier to add more patterns for this transform.
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp')
-rw-r--r--llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp25
1 files changed, 21 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
index 8f83047..5f51c92 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
@@ -2025,6 +2025,25 @@ Instruction *InstCombinerImpl::visitIntToPtr(IntToPtrInst &CI) {
return nullptr;
}
+// Whether we should convert ptrtoint(gep P, X) to ptrtoint(P) + X
+static bool shouldPushPtrToIntThroughGEP(GEPOperator *GEP, Type *IntTy,
+ const DataLayout &DL) {
+ if (!GEP->hasOneUse())
+ return false;
+
+ // Skip cases whether there is a mismatch between the pointer integer type
+ // and the index type, or the GEP performs an implicit splat operation.
+ if (DL.getIndexType(GEP->getType()) != IntTy ||
+ GEP->getType() != GEP->getPointerOperand()->getType())
+ return false;
+
+ // (ptrtoint (gep (inttoptr Base), Offset)) -> Base + Offset
+ if (match(GEP->getPointerOperand(), m_OneUse(m_IntToPtr(m_Value()))))
+ return true;
+
+ return false;
+}
+
Instruction *InstCombinerImpl::visitPtrToInt(PtrToIntInst &CI) {
// If the destination integer type is not the intptr_t type for this target,
// do a ptrtoint to intptr_t then do a trunc or zext. This allows the cast
@@ -2064,10 +2083,8 @@ Instruction *InstCombinerImpl::visitPtrToInt(PtrToIntInst &CI) {
}
// (ptrtoint (gep (inttoptr Base), ...)) -> Base + Offset
- Value *Base;
- if (GEP->hasOneUse() &&
- match(GEP->getPointerOperand(), m_OneUse(m_IntToPtr(m_Value(Base)))) &&
- Base->getType() == Ty) {
+ if (shouldPushPtrToIntThroughGEP(GEP, Ty, DL)) {
+ Value *Base = Builder.CreatePtrToInt(GEP->getPointerOperand(), Ty);
Value *Offset = EmitGEPOffset(GEP);
auto *NewOp = BinaryOperator::CreateAdd(Base, Offset);
if (GEP->hasNoUnsignedWrap() ||