mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +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
94 lines
2.1 KiB
LLVM
94 lines
2.1 KiB
LLVM
; RUN: opt -newgvn -S < %s | FileCheck %s
|
|
|
|
define i32 @test1(i32 %x, i32 %y) {
|
|
; CHECK: @test1(i32 %x, i32 %y)
|
|
; CHECK: %add1 = add i32 %x, %y
|
|
; CHECK: %foo = add i32 %add1, %add1
|
|
|
|
%add1 = add nsw i32 %x, %y
|
|
%add2 = add i32 %x, %y
|
|
%foo = add i32 %add1, %add2
|
|
ret i32 %foo
|
|
}
|
|
|
|
define i32 @test2(i32 %x, i32 %y) {
|
|
; CHECK: @test2(i32 %x, i32 %y)
|
|
; CHECK: %add1 = add i32 %x, %y
|
|
; CHECK: %foo = add i32 %add1, %add1
|
|
|
|
%add1 = add nuw i32 %x, %y
|
|
%add2 = add i32 %x, %y
|
|
%foo = add i32 %add1, %add2
|
|
ret i32 %foo
|
|
}
|
|
|
|
define i32 @test3(i32 %x, i32 %y) {
|
|
; CHECK: @test3(i32 %x, i32 %y)
|
|
; CHECK: %add1 = add i32 %x, %y
|
|
; CHECK: %foo = add i32 %add1, %add1
|
|
|
|
%add1 = add nuw nsw i32 %x, %y
|
|
%add2 = add i32 %x, %y
|
|
%foo = add i32 %add1, %add2
|
|
ret i32 %foo
|
|
}
|
|
|
|
define i32 @test4(i32 %x, i32 %y) {
|
|
; CHECK: @test4(i32 %x, i32 %y)
|
|
; CHECK: %add1 = add nsw i32 %x, %y
|
|
; CHECK: %foo = add i32 %add1, %add1
|
|
|
|
%add1 = add nsw i32 %x, %y
|
|
%add2 = add nsw i32 %x, %y
|
|
%foo = add i32 %add1, %add2
|
|
ret i32 %foo
|
|
}
|
|
|
|
define i32 @test5(i32 %x, i32 %y) {
|
|
; CHECK: @test5(i32 %x, i32 %y)
|
|
; CHECK: %add1 = add i32 %x, %y
|
|
; CHECK: %foo = add i32 %add1, %add1
|
|
|
|
%add1 = add nuw i32 %x, %y
|
|
%add2 = add nsw i32 %x, %y
|
|
%foo = add i32 %add1, %add2
|
|
ret i32 %foo
|
|
}
|
|
|
|
define i32 @test6(i32 %x, i32 %y) {
|
|
; CHECK: @test6(i32 %x, i32 %y)
|
|
; CHECK: %add1 = add nsw i32 %x, %y
|
|
; CHECK: %foo = add i32 %add1, %add1
|
|
|
|
%add1 = add nuw nsw i32 %x, %y
|
|
%add2 = add nsw i32 %x, %y
|
|
%foo = add i32 %add1, %add2
|
|
ret i32 %foo
|
|
}
|
|
|
|
define i32 @test7(i32 %x, i32 %y) {
|
|
; CHECK: @test7(i32 %x, i32 %y)
|
|
; CHECK: %add1 = add i32 %x, %y
|
|
; CHECK-NOT: what_is_this
|
|
; CHECK: %foo = add i32 %add1, %add1
|
|
|
|
%add1 = add i32 %x, %y, !what_is_this !{}
|
|
%add2 = add i32 %x, %y
|
|
%foo = add i32 %add1, %add2
|
|
ret i32 %foo
|
|
}
|
|
|
|
declare void @mumble(i2, i2)
|
|
|
|
define void @test8(i2 %x) {
|
|
; CHECK-LABEL: @test8(
|
|
; CHECK: %[[ashr:.*]] = ashr i2 %x, 1
|
|
; CHECK-NEXT: call void @mumble(i2 %[[ashr]], i2 %[[ashr]])
|
|
; CHECK-NEXT: ret void
|
|
|
|
%ashr0 = ashr exact i2 %x, 1
|
|
%ashr1 = ashr i2 %x, 1
|
|
call void @mumble(i2 %ashr0, i2 %ashr1)
|
|
ret void
|
|
}
|