Skip to content

Commit 6935aef

Browse files
committedMay 1, 2017
[InstSimplify] Handle selects of GEPs with 0 offset
In particular (since it wouldn't fit nicely in the summary): (select (icmp eq V 0) P (getelementptr P V)) -> (getelementptr P V) Differential Revision: https://reviews.llvm.org/D31435 llvm-svn: 301880
1 parent 8d196c8 commit 6935aef

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
 

‎llvm/lib/Analysis/InstructionSimplify.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ static Value *SimplifyOrInst(Value *, Value *, const SimplifyQuery &, unsigned);
6262
static Value *SimplifyXorInst(Value *, Value *, const SimplifyQuery &, unsigned);
6363
static Value *SimplifyCastInst(unsigned, Value *, Type *,
6464
const SimplifyQuery &, unsigned);
65+
static Value *SimplifyGEPInst(Type *, ArrayRef<Value *>, const SimplifyQuery &,
66+
unsigned);
6567

6668
/// For a boolean type or a vector of boolean type, return false or a vector
6769
/// with every element false.
@@ -3491,6 +3493,17 @@ static const Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
34913493
}
34923494
}
34933495

3496+
// Same for GEPs.
3497+
if (auto *GEP = dyn_cast<GetElementPtrInst>(I)) {
3498+
if (MaxRecurse) {
3499+
SmallVector<Value *, 8> NewOps(GEP->getNumOperands());
3500+
transform(GEP->operands(), NewOps.begin(),
3501+
[&](Value *V) { return V == Op ? RepOp : V; });
3502+
return SimplifyGEPInst(GEP->getSourceElementType(), NewOps, Q,
3503+
MaxRecurse - 1);
3504+
}
3505+
}
3506+
34943507
// TODO: We could hand off more cases to instsimplify here.
34953508

34963509
// If all operands are constant after substituting Op for RepOp then we can

‎llvm/test/Transforms/InstSimplify/select.ll

+19
Original file line numberDiff line numberDiff line change
@@ -431,3 +431,22 @@ define i8 @do_not_assume_sel_cond(i1 %cond, i8 %x, i8 %y) {
431431
ret i8 %sel
432432
}
433433

434+
define i32* @select_icmp_eq_0_gep_operand(i32* %base, i64 %n) {
435+
; CHECK-LABEL: @select_icmp_eq_0_gep_operand(
436+
; CHECK-NEXT: [[GEP:%.*]] = getelementptr
437+
; CHECK-NEXT: ret i32* [[GEP]]
438+
%cond = icmp eq i64 %n, 0
439+
%gep = getelementptr i32, i32* %base, i64 %n
440+
%r = select i1 %cond, i32* %base, i32* %gep
441+
ret i32* %r
442+
}
443+
444+
define i32* @select_icmp_ne_0_gep_operand(i32* %base, i64 %n) {
445+
; CHECK-LABEL: @select_icmp_ne_0_gep_operand(
446+
; CHECK-NEXT: [[GEP:%.*]] = getelementptr
447+
; CHECK-NEXT: ret i32* [[GEP]]
448+
%cond = icmp ne i64 %n, 0
449+
%gep = getelementptr i32, i32* %base, i64 %n
450+
%r = select i1 %cond, i32* %gep, i32* %base
451+
ret i32* %r
452+
}

0 commit comments

Comments
 (0)
Please sign in to comment.