Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / InstCombine / strlen_chk.ll
blob0e2ad6e648e396d5b836a25ded88fb79abb0a6a1
1 ; Test that __strlen_chk simplification works correctly.
3 ; RUN: opt < %s -passes=instcombine -S | FileCheck %s
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 @hello_no_nul = constant [5 x i8] c"hello"
10 declare i32 @__strlen_chk(ptr, i32)
12 ; Check __strlen_chk(string constant) -> strlen or constants
14 ; CHECK-LABEL: @unknown_str_known_object_size
15 define i32 @unknown_str_known_object_size(ptr %c) {
16   ; CHECK: call i32 @__strlen_chk
17   %1 = call i32 @__strlen_chk(ptr %c, i32 8)
18   ret i32 %1
21 ; CHECK-LABEL: @known_str_known_object_size
22 define i32 @known_str_known_object_size(ptr %c) {
23   ; CHECK: ret i32 5
24   %1 = call i32 @__strlen_chk(ptr @hello, i32 6)
25   ret i32 %1
28 ; CHECK-LABEL: @known_str_too_small_object_size
29 define i32 @known_str_too_small_object_size(ptr %c) {
30   ; CHECK: call i32 @__strlen_chk
31   %1 = call i32 @__strlen_chk(ptr @hello, i32 5)
32   ret i32 %1
35 ; CHECK-LABEL: @known_str_no_nul
36 define i32 @known_str_no_nul(ptr %c) {
37   ; CHECK: call i32 @__strlen_chk
38   %1 = call i32 @__strlen_chk(ptr @hello_no_nul, i32 5)
39   ret i32 %1
42 ; CHECK-LABEL: @unknown_str_unknown_object_size
43 define i32 @unknown_str_unknown_object_size(ptr %c) {
44   ; CHECK: call i32 @strlen
45   %1 = call i32 @__strlen_chk(ptr %c, i32 -1)
46   ret i32 %1