236
|
1 ; RUN: opt %loadPolly -polly-print-detect -disable-output < %s \
|
150
|
2 ; RUN: | FileCheck %s -check-prefix=DETECT
|
|
3
|
236
|
4 ; RUN: opt %loadPolly -polly-print-scops -disable-output < %s \
|
150
|
5 ; RUN: | FileCheck %s -check-prefix=SCOPS
|
|
6
|
|
7 target 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
|
252
|
15 define void @test(ptr %a) nounwind uwtable {
|
150
|
16 preheader:
|
|
17 br label %test1.header
|
|
18
|
|
19 test1.header:
|
|
20 %i = phi i56 [ 0, %preheader ], [ %i.1, %test1.header ]
|
|
21 %tmp = zext i56 %i to i64
|
252
|
22 %A.addr = getelementptr i64, ptr %a, i64 %tmp
|
|
23 %A.load = load i64, ptr %A.addr, align 4
|
150
|
24 %A.inc = zext i56 %i to i64
|
|
25 %A.val = add nsw i64 %A.load, %A.inc
|
252
|
26 store i64 %A.val, ptr %A.addr, align 4
|
150
|
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
|
|
31 test1.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
|
252
|
40 define void @test2(ptr %a) nounwind uwtable {
|
150
|
41 preheader:
|
|
42 br label %header
|
|
43
|
|
44 header:
|
|
45 %i = phi i7 [ 0, %preheader ], [ %i.1, %header ]
|
|
46 %tmp = zext i7 %i to i64
|
252
|
47 %A.addr = getelementptr [128 x i32], ptr %a, i64 0, i64 %tmp
|
|
48 %A.load = load i32, ptr %A.addr, align 4
|
150
|
49 %A.inc = zext i7 %i to i32
|
|
50 %A.val = add nsw i32 %A.load, %A.inc
|
252
|
51 store i32 %A.val, ptr %A.addr, align 4
|
150
|
52 %i.1 = add i7 %i, 1
|
|
53 %exitcond = icmp eq i7 %i.1, 0
|
|
54 br i1 %exitcond, label %exit, label %header
|
|
55
|
|
56 exit:
|
|
57 ret void
|
|
58 }
|