1 ; Test that the strcmp library call simplifier works correctly.
2 ; RUN: opt < %s -instcombine -S | FileCheck %s --check-prefix=NOBCMP
3 ; RUN: opt < %s -instcombine -mtriple=unknown-unknown-linux-gnu -S | FileCheck %s --check-prefix=BCMP
5 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
7 @hello = constant [6 x i8] c"hello\00"
8 @hell = constant [5 x i8] c"hell\00"
9 @bell = constant [5 x i8] c"bell\00"
10 @null = constant [1 x i8] zeroinitializer
12 declare i32 @strcmp(i8*, i8*)
14 ; strcmp("", x) -> -*x
15 define i32 @test1(i8* %str2) {
16 ; CHECK-LABEL: @test1(
17 ; CHECK: %strcmpload = load i8, i8* %str
18 ; CHECK: %1 = zext i8 %strcmpload to i32
19 ; CHECK: %2 = sub nsw i32 0, %1
22 %str1 = getelementptr inbounds [1 x i8], [1 x i8]* @null, i32 0, i32 0
23 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
29 define i32 @test2(i8* %str1) {
30 ; CHECK-LABEL: @test2(
31 ; CHECK: %strcmpload = load i8, i8* %str
32 ; CHECK: %1 = zext i8 %strcmpload to i32
35 %str2 = getelementptr inbounds [1 x i8], [1 x i8]* @null, i32 0, i32 0
36 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
40 ; strcmp(x, y) -> cnst
42 ; CHECK-LABEL: @test3(
45 %str1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0
46 %str2 = getelementptr inbounds [6 x i8], [6 x i8]* @hello, i32 0, i32 0
47 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
52 ; CHECK-LABEL: @test4(
55 %str1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0
56 %str2 = getelementptr inbounds [1 x i8], [1 x i8]* @null, i32 0, i32 0
57 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
61 ; strcmp(x, y) -> memcmp(x, y, <known length>)
62 ; (This transform is rather difficult to trigger in a useful manner)
63 define i32 @test5(i1 %b) {
64 ; CHECK-LABEL: @test5(
65 ; CHECK: %memcmp = call i32 @memcmp(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @hello, i32 0, i32 0), i8* %str2, i32 5)
66 ; CHECK: ret i32 %memcmp
68 %str1 = getelementptr inbounds [6 x i8], [6 x i8]* @hello, i32 0, i32 0
69 %temp1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0
70 %temp2 = getelementptr inbounds [5 x i8], [5 x i8]* @bell, i32 0, i32 0
71 %str2 = select i1 %b, i8* %temp1, i8* %temp2
72 %temp3 = call i32 @strcmp(i8* %str1, i8* %str2)
77 define i32 @test6(i8* %str) {
78 ; CHECK-LABEL: @test6(
81 %temp1 = call i32 @strcmp(i8* %str, i8* %str)
85 ; strcmp(x, y) == 0 -> bcmp(x, y, <known length>)
86 define i1 @test7(i1 %b) {
88 ; BCMP: %bcmp = call i32 @bcmp(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @hello, i32 0, i32 0), i8* %str2, i32 5)
89 ; BCMP: %res = icmp eq i32 %bcmp, 0
92 ; NOBCMP-LABEL: @test7(
93 ; NOBCMP: %memcmp = call i32 @memcmp(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @hello, i32 0, i32 0), i8* %str2, i32 5)
94 ; NOBCMP: %res = icmp eq i32 %memcmp, 0
97 %str1 = getelementptr inbounds [6 x i8], [6 x i8]* @hello, i32 0, i32 0
98 %temp1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0
99 %temp2 = getelementptr inbounds [5 x i8], [5 x i8]* @bell, i32 0, i32 0
100 %str2 = select i1 %b, i8* %temp1, i8* %temp2
101 %temp3 = call i32 @strcmp(i8* %str1, i8* %str2)
102 %res = icmp eq i32 %temp3, 0