[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / unused-nonnull.ll
blobf29485218abe5302ed3f46bf8a45e807e502c1a8
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature
2 ; RUN: opt -S -O3 -o - %s | FileCheck %s
4 ; PR44154: LLVM c3b06d0c393e caused the body of @main to be replaced with
5 ; unreachable. Check that we perform the expected calls and optimizations.
7 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
8 target triple = "x86_64-unknown-linux-gnu"
10 define i32 @main(i32 %argc, i8** %argv) #0 {
11 ; CHECK-LABEL: define {{[^@]+}}@main
12 ; CHECK-SAME: (i32 [[ARGC:%.*]], i8** nocapture readnone [[ARGV:%.*]]) local_unnamed_addr #[[ATTR0:[0-9]+]] {
13 ; CHECK-NEXT:  entry:
14 ; CHECK-NEXT:    [[TMP0:%.*]] = icmp slt i32 [[ARGC]], 2
15 ; CHECK-NEXT:    [[SPEC_SELECT:%.*]] = select i1 [[TMP0]], i32 0, i32 [[ARGC]]
16 ; CHECK-NEXT:    ret i32 [[SPEC_SELECT]]
18 entry:
19   %0 = getelementptr inbounds i8*, i8** %argv, i32 0
20   %ptr = load i8*, i8** %0
21   %1 = call i32 @compute(i8* %ptr, i32 %argc)
22   %2 = icmp slt i32 %argc, 2
23   br i1 %2, label %done, label %do_work
25 do_work:
26   %3 = icmp eq i8* %ptr, null
27   br i1 %3, label %null, label %done
29 null:
30   call void @call_if_null(i8* %ptr)
31   br label %done
33 done:
34   %retval = phi i32 [0, %entry], [%1, %do_work], [%1, %null]
35   ret i32 %retval
38 define i32 @compute(i8* noundef nonnull %ptr, i32 %x) #1 {
39 ; CHECK-LABEL: define {{[^@]+}}@compute
40 ; CHECK-SAME: (i8* nocapture nonnull readnone [[PTR:%.*]], i32 returned [[X:%.*]]) local_unnamed_addr #[[ATTR1:[0-9]+]] {
41 ; CHECK-NEXT:    ret i32 [[X]]
43   ret i32 %x
46 declare void @call_if_null(i8* %ptr) #0
48 attributes #0 = { nounwind }
49 attributes #1 = { noinline nounwind readonly }