aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/LoopVectorize/pr28541.ll
blob: ad7f6e7b16b1651a62938f3820a8e5f46540fb8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
; RUN: opt -passes=loop-vectorize -pass-remarks=loop-vectorize -S < %s 2>&1 | FileCheck %s

; FIXME: Check for -pass-remarks-missed and -pass-remarks-analysis output when
; addAcyclicInnerLoop emits analysis.

; Check that opt does not crash on such input:
;
; a, b, c;
; fn1() {
;   while (b--) {
;     c = a;
;     switch (a & 3)
;     case 0:
;       do
;     case 3:
;     case 2:
;     case 1:
;         ;
;         while (--c)
;           ;
;   }
; }

@b = common global i32 0, align 4
@a = common global i32 0, align 4
@c = common global i32 0, align 4

; CHECK-NOT: vectorized loop
; CHECK-LABEL: fn1

define i32 @fn1() {
entry:
  %tmp2 = load i32, ptr @b, align 4
  %dec3 = add nsw i32 %tmp2, -1
  store i32 %dec3, ptr @b, align 4
  %tobool4 = icmp eq i32 %tmp2, 0
  br i1 %tobool4, label %while.end, label %while.body.lr.ph

while.body.lr.ph:                                 ; preds = %entry
  %tmp1 = load i32, ptr @a, align 4
  %and = and i32 %tmp1, 3
  %switch = icmp eq i32 %and, 0
  br label %while.body

while.cond:                                       ; preds = %do.cond
  %dec = add nsw i32 %dec7, -1
  %tobool = icmp eq i32 %dec7, 0
  br i1 %tobool, label %while.cond.while.end_crit_edge, label %while.body

while.body:                                       ; preds = %while.body.lr.ph, %while.cond
  %dec7 = phi i32 [ %dec3, %while.body.lr.ph ], [ %dec, %while.cond ]
  br i1 %switch, label %do.body, label %do.cond

do.body:                                          ; preds = %do.cond, %while.body
  %dec25 = phi i32 [ %dec2, %do.cond ], [ %tmp1, %while.body ]
  br label %do.cond

do.cond:                                          ; preds = %do.body, %while.body
  %dec26 = phi i32 [ %dec25, %do.body ], [ %tmp1, %while.body ]
  %dec2 = add nsw i32 %dec26, -1
  %tobool3 = icmp eq i32 %dec2, 0
  br i1 %tobool3, label %while.cond, label %do.body

while.cond.while.end_crit_edge:                   ; preds = %while.cond
  store i32 0, ptr @c, align 4
  store i32 -1, ptr @b, align 4
  br label %while.end

while.end:                                        ; preds = %while.cond.while.end_crit_edge, %entry
  ret i32 undef
}