[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / LoopUnroll / X86 / call-remark.ll
blob6b559637c206b6eed609c99917405851b98d0cce
1 ; RUN: opt -debugify -loop-unroll -mcpu=znver3 -pass-remarks=loop-unroll -pass-remarks-analysis=loop-unroll < %s -S 2>&1 | FileCheck --check-prefixes=ALL,UNROLL %s
2 ; RUN: opt -debugify -loop-unroll -mcpu=znver3 -pass-remarks=TTI -pass-remarks-analysis=TTI  < %s -S 2>&1 | FileCheck --check-prefixes=ALL,TTI %s
4 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-unknown-linux-gnu"
7 ; TTI: remark: <stdin>:7:1: advising against unrolling the loop because it contains a call
8 ; UNROLL: remark: <stdin>:14:1: unrolled loop by a factor of 8 with run-time trip count
10 define void @contains_external_call(i32 %count) {
11 ; ALL-LABEL: @contains_external_call(
12 ; ALL-NOT: unroll
13 entry:
14   %cmp.not3 = icmp eq i32 %count, 0
15   br i1 %cmp.not3, label %for.cond.cleanup, label %for.body
17 for.body:
18   %i.04 = phi i32 [ %inc, %for.body ], [ 0, %entry ]
19   tail call void @sideeffect()
20   %inc = add nuw nsw i32 %i.04, 1
21   %cmp.not = icmp eq i32 %inc, %count
22   br i1 %cmp.not, label %for.cond.cleanup, label %for.body
24 for.cond.cleanup:
25   ret void
28 declare void @sideeffect()
30 define i32 @no_external_calls(i32 %count) {
31 ; ALL-LABEL: @no_external_calls(
32 ; ALL: unroll
33 entry:
34   %cmp.not5 = icmp eq i32 %count, 0
35   br i1 %cmp.not5, label %for.end, label %for.body
37 for.body:
38   %i.06 = phi i32 [ %inc, %for.body ], [ 0, %entry ]
39   %inc = add nuw nsw i32 %i.06, 1
40   %cmp.not = icmp eq i32 %inc, %count
41   br i1 %cmp.not, label %for.end, label %for.body
43 for.end:
44   ret i32 %count