[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / PhaseOrdering / X86 / loop-idiom-vs-indvars.ll
blob91c4c9078b54ec79283f1ef991f275487c76344b
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -mcpu=core-avx2 < %s -O3 -S                                        | FileCheck --check-prefix=ALL %s
3 ; RUN: opt -mcpu=core-avx2 < %s -passes='default<O3>' -S | FileCheck --check-prefix=ALL %s
5 ; Not only should we be able to make the loop countable,
6 ; %whatever.next recurrence should be rewritten, making loop dead.
8 target triple = "x86_64--"
9 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
11 define i32 @cttz(i32 %n, i32* %p1) {
12 ; ALL-LABEL: @cttz(
13 ; ALL-NEXT:  entry:
14 ; ALL-NEXT:    [[TMP0:%.*]] = shl i32 [[N:%.*]], 1
15 ; ALL-NEXT:    [[TMP1:%.*]] = call i32 @llvm.cttz.i32(i32 [[TMP0]], i1 false), [[RNG0:!range !.*]]
16 ; ALL-NEXT:    [[TMP2:%.*]] = sub nuw nsw i32 32, [[TMP1]]
17 ; ALL-NEXT:    [[TMP3:%.*]] = sub nuw nsw i32 75, [[TMP1]]
18 ; ALL-NEXT:    store i32 [[TMP3]], i32* [[P1:%.*]], align 4
19 ; ALL-NEXT:    ret i32 [[TMP2]]
21 entry:
22   br label %while.cond
24 while.cond:                                       ; preds = %while.cond, %entry
25   %n.addr.0 = phi i32 [ %n, %entry ], [ %shl, %while.cond ]
26   %whatever = phi i32 [ 42, %entry ], [ %whatever.next, %while.cond ]
27   %i.0 = phi i32 [ 0, %entry ], [ %inc, %while.cond ]
28   %shl = shl i32 %n.addr.0, 1
29   %tobool = icmp eq i32 %shl, 0
30   %inc = add nsw i32 %i.0, 1
31   %whatever.next = add i32 %whatever, 1
32   br i1 %tobool, label %while.end, label %while.cond
34 while.end:                                        ; preds = %while.cond
35   store i32 %whatever.next, i32* %p1
36   ret i32 %i.0