mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
bd0298b1e1
The code have been developed by Daniel Berlin over the years, and the new implementation goal is that of addressing shortcomings of the current GVN infrastructure, i.e. long compile time for large testcases, lack of phi predication, no load/store value numbering etc... The current code just implements the "core" GVN algorithm, although other pieces (load coercion, phi handling, predicate system) are already implemented in a branch out of tree. Once the core is stable, we'll start adding pieces on top of the base framework. The test currently living in test/Transform/NewGVN are a copy of the ones in GVN, with proper `XFAIL` (missing features in NewGVN). A flag will be added in a future commit to enable NewGVN, so that interested parties can exercise this code easily. Differential Revision: https://reviews.llvm.org/D26224 llvm-svn: 290346
102 lines
2.6 KiB
LLVM
102 lines
2.6 KiB
LLVM
; RUN: opt -basicaa -newgvn -S < %s | FileCheck %s
|
|
|
|
define i32 @test1(i32* %p) {
|
|
; CHECK-LABEL: @test1(i32* %p)
|
|
; CHECK: %a = load i32, i32* %p, !range !0
|
|
; CHECK: %c = add i32 %a, %a
|
|
%a = load i32, i32* %p, !range !0
|
|
%b = load i32, i32* %p, !range !0
|
|
%c = add i32 %a, %b
|
|
ret i32 %c
|
|
}
|
|
|
|
define i32 @test2(i32* %p) {
|
|
; CHECK-LABEL: @test2(i32* %p)
|
|
; CHECK: %a = load i32, i32* %p
|
|
; CHECK-NOT: range
|
|
; CHECK: %c = add i32 %a, %a
|
|
%a = load i32, i32* %p, !range !0
|
|
%b = load i32, i32* %p
|
|
%c = add i32 %a, %b
|
|
ret i32 %c
|
|
}
|
|
|
|
define i32 @test3(i32* %p) {
|
|
; CHECK-LABEL: @test3(i32* %p)
|
|
; CHECK: %a = load i32, i32* %p, !range ![[DISJOINT_RANGE:[0-9]+]]
|
|
; CHECK: %c = add i32 %a, %a
|
|
%a = load i32, i32* %p, !range !0
|
|
%b = load i32, i32* %p, !range !1
|
|
%c = add i32 %a, %b
|
|
ret i32 %c
|
|
}
|
|
|
|
define i32 @test4(i32* %p) {
|
|
; CHECK-LABEL: @test4(i32* %p)
|
|
; CHECK: %a = load i32, i32* %p, !range ![[MERGED_RANGE:[0-9]+]]
|
|
; CHECK: %c = add i32 %a, %a
|
|
%a = load i32, i32* %p, !range !0
|
|
%b = load i32, i32* %p, !range !2
|
|
%c = add i32 %a, %b
|
|
ret i32 %c
|
|
}
|
|
|
|
define i32 @test5(i32* %p) {
|
|
; CHECK-LABEL: @test5(i32* %p)
|
|
; CHECK: %a = load i32, i32* %p, !range ![[MERGED_SIGNED_RANGE:[0-9]+]]
|
|
; CHECK: %c = add i32 %a, %a
|
|
%a = load i32, i32* %p, !range !3
|
|
%b = load i32, i32* %p, !range !4
|
|
%c = add i32 %a, %b
|
|
ret i32 %c
|
|
}
|
|
|
|
define i32 @test6(i32* %p) {
|
|
; CHECK-LABEL: @test6(i32* %p)
|
|
; CHECK: %a = load i32, i32* %p, !range ![[MERGED_TEST6:[0-9]+]]
|
|
; CHECK: %c = add i32 %a, %a
|
|
%a = load i32, i32* %p, !range !5
|
|
%b = load i32, i32* %p, !range !6
|
|
%c = add i32 %a, %b
|
|
ret i32 %c
|
|
}
|
|
|
|
define i32 @test7(i32* %p) {
|
|
; CHECK-LABEL: @test7(i32* %p)
|
|
; CHECK: %a = load i32, i32* %p, !range ![[MERGED_TEST7:[0-9]+]]
|
|
; CHECK: %c = add i32 %a, %a
|
|
%a = load i32, i32* %p, !range !7
|
|
%b = load i32, i32* %p, !range !8
|
|
%c = add i32 %a, %b
|
|
ret i32 %c
|
|
}
|
|
|
|
define i32 @test8(i32* %p) {
|
|
; CHECK-LABEL: @test8(i32* %p)
|
|
; CHECK: %a = load i32, i32* %p
|
|
; CHECK-NOT: range
|
|
; CHECK: %c = add i32 %a, %a
|
|
%a = load i32, i32* %p, !range !9
|
|
%b = load i32, i32* %p, !range !10
|
|
%c = add i32 %a, %b
|
|
ret i32 %c
|
|
}
|
|
|
|
; CHECK: ![[DISJOINT_RANGE]] = !{i32 0, i32 2, i32 3, i32 5}
|
|
; CHECK: ![[MERGED_RANGE]] = !{i32 0, i32 5}
|
|
; CHECK: ![[MERGED_SIGNED_RANGE]] = !{i32 -5, i32 -2, i32 1, i32 5}
|
|
; CHECK: ![[MERGED_TEST6]] = !{i32 10, i32 1}
|
|
; CHECK: ![[MERGED_TEST7]] = !{i32 3, i32 4, i32 5, i32 2}
|
|
|
|
!0 = !{i32 0, i32 2}
|
|
!1 = !{i32 3, i32 5}
|
|
!2 = !{i32 2, i32 5}
|
|
!3 = !{i32 -5, i32 -2}
|
|
!4 = !{i32 1, i32 5}
|
|
!5 = !{i32 10, i32 1}
|
|
!6 = !{i32 12, i32 16}
|
|
!7 = !{i32 1, i32 2, i32 3, i32 4}
|
|
!8 = !{i32 5, i32 1}
|
|
!9 = !{i32 1, i32 5}
|
|
!10 = !{i32 5, i32 1}
|