File: non-constant-add-rec-start-expr.ll

package info (click to toggle)
swiftlang 6.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,604 kB
  • sloc: cpp: 9,901,740; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (49 lines) | stat: -rw-r--r-- 1,472 bytes parent folder | download | duplicates (9)
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
; RUN: opt %loadNPMPolly '-passes=print<polly-detect>' -disable-output < %s 2>&1 | FileCheck %s

; CHECK: Valid Region for Scop: bb11 => bb25

; Ensure that this test case does not trigger an assertion. At some point,
; we asserted on scops containing accesses where the access function contained
; an AddRec expression with a non-constant step expression. This got missed, as
; this very specific pattern does not seem too common. Even in this test case,
; it disappears as soon as we turn the infinite loop into a finite loop.

target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"

define void @hoge() local_unnamed_addr {
bb:
  %tmp = alloca [18 x [16 x i32]]
  %tmp1 = alloca [17 x i32]
  br label %bb2

bb2:
  %tmp3 = phi i64 [ 0, %bb ], [ %tmp5, %bb2 ]
  %tmp4 = add nuw nsw i64 %tmp3, 2
  %tmp5 = add nuw nsw i64 %tmp3, 1
  br i1 undef, label %bb2, label %bb11

bb11:
  %tmp12 = phi i64 [ %tmp23, %bb24 ], [ 1, %bb2 ]
  %tmp14 = getelementptr inbounds [17 x i32], ptr %tmp1, i64 0, i64 1
  br label %bb15

bb15:
  %tmp16 = sub nsw i64 %tmp12, 1
  %tmp17 = shl i64 %tmp16, 32
  %tmp18 = ashr exact i64 %tmp17, 32
  %tmp19 = getelementptr inbounds [18 x [16 x i32]], ptr %tmp, i64 0, i64 %tmp4, i64 %tmp18
  %tmp20 = load i32, ptr %tmp19, align 4
  store i32 4, ptr %tmp19
  br label %bb21

bb21:
  %tmp23 = add nuw nsw i64 %tmp12, 1
  br i1 true, label %bb24, label %bb25

bb24:
  br label %bb11

bb25:
  ret void
}