2005-04-26 07:22:38 +02:00
|
|
|
; Test that the StrCatOptimizer works correctly
|
2009-09-11 20:01:28 +02:00
|
|
|
; RUN: opt < %s -simplify-libcalls -S | \
|
2007-04-16 17:31:49 +02:00
|
|
|
; RUN: not grep {call.*strlen}
|
2007-01-26 09:25:06 +01:00
|
|
|
|
|
|
|
target datalayout = "e-p:32:32"
|
2008-03-10 08:21:50 +01:00
|
|
|
@hello = constant [6 x i8] c"hello\00" ; <[6 x i8]*> [#uses=3]
|
|
|
|
@null = constant [1 x i8] zeroinitializer ; <[1 x i8]*> [#uses=3]
|
|
|
|
@null_hello = constant [7 x i8] c"\00hello\00" ; <[7 x i8]*> [#uses=1]
|
2005-04-26 07:22:38 +02:00
|
|
|
|
2008-03-10 08:21:50 +01:00
|
|
|
declare i32 @strlen(i8*)
|
2005-04-26 07:22:38 +02:00
|
|
|
|
2008-03-10 08:21:50 +01:00
|
|
|
define i32 @test1() {
|
|
|
|
%hello_p = getelementptr [6 x i8]* @hello, i32 0, i32 0 ; <i8*> [#uses=1]
|
|
|
|
%hello_l = call i32 @strlen( i8* %hello_p ) ; <i32> [#uses=1]
|
|
|
|
ret i32 %hello_l
|
2005-05-07 22:21:04 +02:00
|
|
|
}
|
|
|
|
|
2008-03-10 08:21:50 +01:00
|
|
|
define i32 @test2() {
|
|
|
|
%null_p = getelementptr [1 x i8]* @null, i32 0, i32 0 ; <i8*> [#uses=1]
|
|
|
|
%null_l = call i32 @strlen( i8* %null_p ) ; <i32> [#uses=1]
|
|
|
|
ret i32 %null_l
|
2005-05-07 22:21:04 +02:00
|
|
|
}
|
|
|
|
|
2008-03-10 08:21:50 +01:00
|
|
|
define i32 @test3() {
|
|
|
|
%null_hello_p = getelementptr [7 x i8]* @null_hello, i32 0, i32 0 ; <i8*> [#uses=1]
|
|
|
|
%null_hello_l = call i32 @strlen( i8* %null_hello_p ) ; <i32> [#uses=1]
|
|
|
|
ret i32 %null_hello_l
|
2005-05-07 22:21:04 +02:00
|
|
|
}
|
|
|
|
|
2008-03-10 08:21:50 +01:00
|
|
|
define i1 @test4() {
|
|
|
|
%hello_p = getelementptr [6 x i8]* @hello, i32 0, i32 0 ; <i8*> [#uses=1]
|
|
|
|
%hello_l = call i32 @strlen( i8* %hello_p ) ; <i32> [#uses=1]
|
|
|
|
%eq_hello = icmp eq i32 %hello_l, 0 ; <i1> [#uses=1]
|
|
|
|
ret i1 %eq_hello
|
2005-05-07 22:21:04 +02:00
|
|
|
}
|
|
|
|
|
2008-03-10 08:21:50 +01:00
|
|
|
define i1 @test5() {
|
|
|
|
%null_p = getelementptr [1 x i8]* @null, i32 0, i32 0 ; <i8*> [#uses=1]
|
|
|
|
%null_l = call i32 @strlen( i8* %null_p ) ; <i32> [#uses=1]
|
|
|
|
%eq_null = icmp eq i32 %null_l, 0 ; <i1> [#uses=1]
|
|
|
|
ret i1 %eq_null
|
2005-05-07 22:21:04 +02:00
|
|
|
}
|
|
|
|
|
2008-03-10 08:21:50 +01:00
|
|
|
define i1 @test6() {
|
|
|
|
%hello_p = getelementptr [6 x i8]* @hello, i32 0, i32 0 ; <i8*> [#uses=1]
|
|
|
|
%hello_l = call i32 @strlen( i8* %hello_p ) ; <i32> [#uses=1]
|
|
|
|
%ne_hello = icmp ne i32 %hello_l, 0 ; <i1> [#uses=1]
|
|
|
|
ret i1 %ne_hello
|
2005-05-07 22:21:04 +02:00
|
|
|
}
|
|
|
|
|
2008-03-10 08:21:50 +01:00
|
|
|
define i1 @test7() {
|
|
|
|
%null_p = getelementptr [1 x i8]* @null, i32 0, i32 0 ; <i8*> [#uses=1]
|
|
|
|
%null_l = call i32 @strlen( i8* %null_p ) ; <i32> [#uses=1]
|
|
|
|
%ne_null = icmp ne i32 %null_l, 0 ; <i1> [#uses=1]
|
|
|
|
ret i1 %ne_null
|
2005-04-26 07:22:38 +02:00
|
|
|
}
|