1; RUN: opt %loadPolly -polly-detect -analyze < %s \
2; RUN:  | FileCheck %s -check-prefix=DETECT
3
4; RUN: opt %loadPolly -polly-scops -analyze < %s \
5; RUN:  | FileCheck %s -check-prefix=SCOPS
6
7target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
8
9; DETECT: Valid Region for Scop: test1.header => test1.exit
10; SCOPS-NOT: Region: %test1.header---%test1.exit
11
12; Verify that we detect this scop, but that, due to an infeasible run-time
13; check, we refuse to model it.
14
15define void @test(i64* %a) nounwind uwtable {
16preheader:
17  br label %test1.header
18
19test1.header:
20  %i = phi i56 [ 0, %preheader ], [ %i.1, %test1.header ]
21  %tmp = zext i56 %i to i64
22  %A.addr = getelementptr i64, i64* %a, i64 %tmp
23  %A.load = load i64, i64* %A.addr, align 4
24  %A.inc = zext i56 %i to i64
25  %A.val = add nsw i64 %A.load, %A.inc
26  store i64 %A.val, i64* %A.addr, align 4
27  %i.1 = add i56 %i, 1
28  %exitcond = icmp eq i56 %i.1, 0
29  br i1 %exitcond, label %test1.exit, label %test1.header
30
31test1.exit:
32  ret void
33}
34
35; Old version of the previous test; make sure we compute the trip count
36; correctly.
37
38; SCOPS: { Stmt_header[i0] : 0 <= i0 <= 127 };
39
40define void @test2([128 x i32]* %a) nounwind uwtable {
41preheader:
42  br label %header
43
44header:
45  %i = phi i7 [ 0, %preheader ], [ %i.1, %header ]
46  %tmp = zext i7 %i to i64
47  %A.addr = getelementptr [128 x i32], [128 x i32]* %a, i64 0, i64 %tmp
48  %A.load = load i32, i32* %A.addr, align 4
49  %A.inc = zext i7 %i to i32
50  %A.val = add nsw i32 %A.load, %A.inc
51  store i32 %A.val, i32* %A.addr, align 4
52  %i.1 = add i7 %i, 1
53  %exitcond = icmp eq i7 %i.1, 0
54  br i1 %exitcond, label %exit, label %header
55
56exit:
57  ret void
58}
59