mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[InstCombine] add baseline tests for D39958; NFC
llvm-svn: 322733
This commit is contained in:
parent
1c79d356f8
commit
808bf3ef9d
143
test/Transforms/InstCombine/select-gep.ll
Normal file
143
test/Transforms/InstCombine/select-gep.ll
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
||||||
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
||||||
|
|
||||||
|
define i32* @test1a(i32* %p, i32* %q) {
|
||||||
|
; CHECK-LABEL: @test1a(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr i32, i32* [[P:%.*]], i64 4
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr i32, i32* [[Q:%.*]], i64 4
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i32* [[P]], [[Q]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr i32, i32* %p, i64 4
|
||||||
|
%gep2 = getelementptr i32, i32* %q, i64 4
|
||||||
|
%cmp = icmp ugt i32* %p, %q
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
||||||
|
define i32* @test1b(i32* %p, i32* %q) {
|
||||||
|
; CHECK-LABEL: @test1b(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr inbounds i32, i32* [[P:%.*]], i64 4
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr i32, i32* [[Q:%.*]], i64 4
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i32* [[P]], [[Q]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr inbounds i32, i32* %p, i64 4
|
||||||
|
%gep2 = getelementptr i32, i32* %q, i64 4
|
||||||
|
%cmp = icmp ugt i32* %p, %q
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
||||||
|
define i32* @test1c(i32* %p, i32* %q) {
|
||||||
|
; CHECK-LABEL: @test1c(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr i32, i32* [[P:%.*]], i64 4
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr inbounds i32, i32* [[Q:%.*]], i64 4
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i32* [[P]], [[Q]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr i32, i32* %p, i64 4
|
||||||
|
%gep2 = getelementptr inbounds i32, i32* %q, i64 4
|
||||||
|
%cmp = icmp ugt i32* %p, %q
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
||||||
|
define i32* @test1d(i32* %p, i32* %q) {
|
||||||
|
; CHECK-LABEL: @test1d(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr inbounds i32, i32* [[P:%.*]], i64 4
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr inbounds i32, i32* [[Q:%.*]], i64 4
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i32* [[P]], [[Q]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr inbounds i32, i32* %p, i64 4
|
||||||
|
%gep2 = getelementptr inbounds i32, i32* %q, i64 4
|
||||||
|
%cmp = icmp ugt i32* %p, %q
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
||||||
|
define i32* @test2(i32* %p, i64 %x, i64 %y) {
|
||||||
|
; CHECK-LABEL: @test2(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr inbounds i32, i32* [[P:%.*]], i64 [[X:%.*]]
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr inbounds i32, i32* [[P]], i64 [[Y:%.*]]
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i64 [[X]], [[Y]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr inbounds i32, i32* %p, i64 %x
|
||||||
|
%gep2 = getelementptr inbounds i32, i32* %p, i64 %y
|
||||||
|
%cmp = icmp ugt i64 %x, %y
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
||||||
|
; Three (or more) operand GEPs are currently expected to not be optimised,
|
||||||
|
; though they could be in principle.
|
||||||
|
|
||||||
|
define i32* @test3a([4 x i32]* %p, i64 %x, i64 %y) {
|
||||||
|
; CHECK-LABEL: @test3a(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr inbounds [4 x i32], [4 x i32]* [[P:%.*]], i64 2, i64 [[X:%.*]]
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr inbounds [4 x i32], [4 x i32]* [[P]], i64 2, i64 [[Y:%.*]]
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i64 [[X]], [[Y]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr inbounds [4 x i32], [4 x i32]* %p, i64 2, i64 %x
|
||||||
|
%gep2 = getelementptr inbounds [4 x i32], [4 x i32]* %p, i64 2, i64 %y
|
||||||
|
%cmp = icmp ugt i64 %x, %y
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
||||||
|
define i32* @test3b([4 x i32]* %p, i32* %q, i64 %x, i64 %y) {
|
||||||
|
; CHECK-LABEL: @test3b(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr inbounds [4 x i32], [4 x i32]* [[P:%.*]], i64 [[X:%.*]], i64 2
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr inbounds i32, i32* [[Q:%.*]], i64 [[X]]
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i64 [[X]], [[Y:%.*]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr inbounds [4 x i32], [4 x i32]* %p, i64 %x, i64 2
|
||||||
|
%gep2 = getelementptr inbounds i32, i32* %q, i64 %x
|
||||||
|
%cmp = icmp ugt i64 %x, %y
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
||||||
|
define i32* @test3c(i32* %p, [4 x i32]* %q, i64 %x, i64 %y) {
|
||||||
|
; CHECK-LABEL: @test3c(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr inbounds i32, i32* [[P:%.*]], i64 [[X:%.*]]
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr inbounds [4 x i32], [4 x i32]* [[Q:%.*]], i64 [[X]], i64 2
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i64 [[X]], [[Y:%.*]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr inbounds i32, i32* %p, i64 %x
|
||||||
|
%gep2 = getelementptr inbounds [4 x i32], [4 x i32]* %q, i64 %x, i64 2
|
||||||
|
%cmp = icmp ugt i64 %x, %y
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
||||||
|
; Shouldn't be optimised as it would mean introducing an extra select
|
||||||
|
|
||||||
|
define i32* @test4(i32* %p, i32* %q, i64 %x, i64 %y) {
|
||||||
|
; CHECK-LABEL: @test4(
|
||||||
|
; CHECK-NEXT: [[GEP1:%.*]] = getelementptr inbounds i32, i32* [[P:%.*]], i64 [[X:%.*]]
|
||||||
|
; CHECK-NEXT: [[GEP2:%.*]] = getelementptr inbounds i32, i32* [[Q:%.*]], i64 [[Y:%.*]]
|
||||||
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ugt i64 [[X]], [[Y]]
|
||||||
|
; CHECK-NEXT: [[SELECT:%.*]] = select i1 [[CMP]], i32* [[GEP1]], i32* [[GEP2]]
|
||||||
|
; CHECK-NEXT: ret i32* [[SELECT]]
|
||||||
|
;
|
||||||
|
%gep1 = getelementptr inbounds i32, i32* %p, i64 %x
|
||||||
|
%gep2 = getelementptr inbounds i32, i32* %q, i64 %y
|
||||||
|
%cmp = icmp ugt i64 %x, %y
|
||||||
|
%select = select i1 %cmp, i32* %gep1, i32* %gep2
|
||||||
|
ret i32* %select
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user