1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Analysis/BasicAA/gcsetest.ll

47 lines
913 B
LLVM
Raw Normal View History

; Test that GCSE uses basicaa to do alias analysis, which is capable of
; disambiguating some obvious cases. All loads should be removable in
; this testcase.
; RUN: opt %s -basicaa -gvn -instcombine -dce \
2008-02-14 07:56:27 +01:00
; RUN: | llvm-dis | not grep load
2008-02-14 07:56:27 +01:00
@A = global i32 7
@B = global i32 8
2008-02-14 07:56:27 +01:00
define i32 @test() {
%A1 = load i32* @A
2008-02-14 07:56:27 +01:00
store i32 123, i32* @B ; Store cannot alias @A
2008-02-14 07:56:27 +01:00
%A2 = load i32* @A
%X = sub i32 %A1, %A2
ret i32 %X
}
2008-02-14 07:56:27 +01:00
define i32 @test2() {
%A1 = load i32* @A
br label %Loop
Loop:
2008-02-14 07:56:27 +01:00
%AP = phi i32 [0, %0], [%X, %Loop]
store i32 %AP, i32* @B ; Store cannot alias @A
2008-02-14 07:56:27 +01:00
%A2 = load i32* @A
%X = sub i32 %A1, %A2
%c = icmp eq i32 %X, 0
br i1 %c, label %out, label %Loop
out:
2008-02-14 07:56:27 +01:00
ret i32 %X
}
2008-02-14 07:56:27 +01:00
declare void @external()
2004-03-12 23:38:31 +01:00
2008-02-14 07:56:27 +01:00
define i32 @test3() {
%X = alloca i32
store i32 7, i32* %X
call void @external()
%V = load i32* %X
ret i32 %V
2004-03-12 23:38:31 +01:00
}