[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / InstCombine / strcmp-1.ll
blob4dfda047280bf0b82529e1f129cda676d8dfc1a6
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
20 ; CHECK: ret i32 %2
22   %str1 = getelementptr inbounds [1 x i8], [1 x i8]* @null, i32 0, i32 0
23   %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
24   ret i32 %temp1
28 ; strcmp(x, "") -> *x
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
33 ; CHECK: ret i32 %1
35   %str2 = getelementptr inbounds [1 x i8], [1 x i8]* @null, i32 0, i32 0
36   %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
37   ret i32 %temp1
40 ; strcmp(x, y)  -> cnst
41 define i32 @test3() {
42 ; CHECK-LABEL: @test3(
43 ; CHECK: ret i32 -1
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)
48   ret i32 %temp1
51 define i32 @test4() {
52 ; CHECK-LABEL: @test4(
53 ; CHECK: ret i32 1
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)
58   ret i32 %temp1
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)
73   ret i32 %temp3
76 ; strcmp(x,x)  -> 0
77 define i32 @test6(i8* %str) {
78 ; CHECK-LABEL: @test6(
79 ; CHECK: ret i32 0
81   %temp1 = call i32 @strcmp(i8* %str, i8* %str)
82   ret i32 %temp1
85 ; strcmp(x, y) == 0  -> bcmp(x, y, <known length>)
86 define i1 @test7(i1 %b) {
87 ; BCMP-LABEL: @test7(
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
90 ; BCMP: ret i1 %res
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
95 ; NOBCMP: ret i1 %res
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
103   ret i1 %res