2015-02-19 13:31:07 +08:00
|
|
|
; RUN: opt %loadPolly -polly-detect-unprofitable -polly-ast -polly-ast-detect-parallel -analyze < %s | FileCheck %s
|
2014-07-15 08:00:35 +08:00
|
|
|
;
|
|
|
|
; Verify that we won't privatize anything in the outer dimension
|
|
|
|
;
|
2014-11-07 03:35:21 +08:00
|
|
|
; CHECK: #pragma known-parallel
|
2015-01-02 07:01:11 +08:00
|
|
|
; CHECK: for (int c0 = 0; c0 < 2 * n; c0 += 1)
|
2014-07-15 08:00:35 +08:00
|
|
|
; CHECK: #pragma simd reduction
|
2015-01-02 07:01:11 +08:00
|
|
|
; CHECK: for (int c1 = 0; c1 <= 1023; c1 += 1)
|
|
|
|
; CHECK: Stmt_for_body3(c0, c1);
|
2014-07-15 08:00:35 +08:00
|
|
|
;
|
|
|
|
; void foo(int *A, long n) {
|
|
|
|
; for (long i = 0; i < 2 * n; i++)
|
|
|
|
; for (long j = 0; j < 1024; j++)
|
|
|
|
; A[i] += i;
|
|
|
|
; }
|
|
|
|
;
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-n32-S64"
|
|
|
|
|
|
|
|
define void @foo(i32* %A, i32 %n) {
|
|
|
|
entry:
|
|
|
|
br label %for.cond
|
|
|
|
|
|
|
|
for.cond: ; preds = %for.inc4, %entry
|
|
|
|
%i.0 = phi i32 [ 0, %entry ], [ %inc5, %for.inc4 ]
|
|
|
|
%mul = shl nsw i32 %n, 1
|
|
|
|
%cmp = icmp slt i32 %i.0, %mul
|
|
|
|
br i1 %cmp, label %for.body, label %for.end6
|
|
|
|
|
|
|
|
for.body: ; preds = %for.cond
|
|
|
|
br label %for.cond1
|
|
|
|
|
|
|
|
for.cond1: ; preds = %for.inc, %for.body
|
|
|
|
%j.0 = phi i32 [ 0, %for.body ], [ %inc, %for.inc ]
|
|
|
|
%exitcond = icmp ne i32 %j.0, 1024
|
|
|
|
br i1 %exitcond, label %for.body3, label %for.end
|
|
|
|
|
|
|
|
for.body3: ; preds = %for.cond1
|
2015-02-28 03:20:19 +08:00
|
|
|
%arrayidx = getelementptr inbounds i32, i32* %A, i32 %i.0
|
2015-02-28 05:22:50 +08:00
|
|
|
%tmp = load i32, i32* %arrayidx, align 4
|
2014-07-15 08:00:35 +08:00
|
|
|
%add = add nsw i32 %tmp, %i.0
|
|
|
|
store i32 %add, i32* %arrayidx, align 4
|
|
|
|
br label %for.inc
|
|
|
|
|
|
|
|
for.inc: ; preds = %for.body3
|
|
|
|
%inc = add nsw i32 %j.0, 1
|
|
|
|
br label %for.cond1
|
|
|
|
|
|
|
|
for.end: ; preds = %for.cond1
|
|
|
|
br label %for.inc4
|
|
|
|
|
|
|
|
for.inc4: ; preds = %for.end
|
|
|
|
%inc5 = add nsw i32 %i.0, 1
|
|
|
|
br label %for.cond
|
|
|
|
|
|
|
|
for.end6: ; preds = %for.cond
|
|
|
|
ret void
|
|
|
|
}
|