blob: 9bbd7dbe7da860af4cc9f5e1bfd69f3ac62d237b [file] [log] [blame]
Meador Inge40b6fac2012-10-15 03:47:37 +00001; Test that the strcmp library call simplifier works correctly.
2; RUN: opt < %s -instcombine -S | FileCheck %s
3
4target 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"
5
6@hello = constant [6 x i8] c"hello\00"
7@hell = constant [5 x i8] c"hell\00"
8@bell = constant [5 x i8] c"bell\00"
9@null = constant [1 x i8] zeroinitializer
10
11declare i32 @strcmp(i8*, i8*)
12
13; strcmp("", x) -> -*x
14define i32 @test1(i8* %str2) {
Stephen Linc1c7a132013-07-14 01:42:54 +000015; CHECK-LABEL: @test1(
Meador Inge40b6fac2012-10-15 03:47:37 +000016; CHECK: %strcmpload = load i8* %str
17; CHECK: %1 = zext i8 %strcmpload to i32
David Majnemer57d5bc82014-08-19 23:36:30 +000018; CHECK: %2 = sub nsw i32 0, %1
Meador Inge40b6fac2012-10-15 03:47:37 +000019; CHECK: ret i32 %2
20
21 %str1 = getelementptr inbounds [1 x i8]* @null, i32 0, i32 0
22 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
23 ret i32 %temp1
24
25}
26
27; strcmp(x, "") -> *x
28define i32 @test2(i8* %str1) {
Stephen Linc1c7a132013-07-14 01:42:54 +000029; CHECK-LABEL: @test2(
Meador Inge40b6fac2012-10-15 03:47:37 +000030; CHECK: %strcmpload = load i8* %str
31; CHECK: %1 = zext i8 %strcmpload to i32
32; CHECK: ret i32 %1
33
34 %str2 = getelementptr inbounds [1 x i8]* @null, i32 0, i32 0
35 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
36 ret i32 %temp1
37}
38
39; strcmp(x, y) -> cnst
40define i32 @test3() {
Stephen Linc1c7a132013-07-14 01:42:54 +000041; CHECK-LABEL: @test3(
Meador Inge40b6fac2012-10-15 03:47:37 +000042; CHECK: ret i32 -1
43
44 %str1 = getelementptr inbounds [5 x i8]* @hell, i32 0, i32 0
45 %str2 = getelementptr inbounds [6 x i8]* @hello, i32 0, i32 0
46 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
47 ret i32 %temp1
48}
49
50define i32 @test4() {
Stephen Linc1c7a132013-07-14 01:42:54 +000051; CHECK-LABEL: @test4(
Meador Inge40b6fac2012-10-15 03:47:37 +000052; CHECK: ret i32 1
53
54 %str1 = getelementptr inbounds [5 x i8]* @hell, i32 0, i32 0
55 %str2 = getelementptr inbounds [1 x i8]* @null, i32 0, i32 0
56 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2)
57 ret i32 %temp1
58}
59
60; strcmp(x, y) -> memcmp(x, y, <known length>)
61; (This transform is rather difficult to trigger in a useful manner)
62define i32 @test5(i1 %b) {
Stephen Linc1c7a132013-07-14 01:42:54 +000063; CHECK-LABEL: @test5(
Meador Inge40b6fac2012-10-15 03:47:37 +000064; CHECK: %memcmp = call i32 @memcmp(i8* getelementptr inbounds ([6 x i8]* @hello, i32 0, i32 0), i8* %str2, i32 5)
65; CHECK: ret i32 %memcmp
66
67 %str1 = getelementptr inbounds [6 x i8]* @hello, i32 0, i32 0
68 %temp1 = getelementptr inbounds [5 x i8]* @hell, i32 0, i32 0
69 %temp2 = getelementptr inbounds [5 x i8]* @bell, i32 0, i32 0
70 %str2 = select i1 %b, i8* %temp1, i8* %temp2
71 %temp3 = call i32 @strcmp(i8* %str1, i8* %str2)
72 ret i32 %temp3
73}
74
75; strcmp(x,x) -> 0
76define i32 @test6(i8* %str) {
Stephen Linc1c7a132013-07-14 01:42:54 +000077; CHECK-LABEL: @test6(
Meador Inge40b6fac2012-10-15 03:47:37 +000078; CHECK: ret i32 0
79
80 %temp1 = call i32 @strcmp(i8* %str, i8* %str)
81 ret i32 %temp1
82}