2015-02-19 13:31:07 +08:00
|
|
|
; RUN: opt %loadPolly -polly-detect-unprofitable -polly-allow-nonaffine -polly-dce -polly-ast -analyze -polly-no-early-exit < %s | FileCheck %s
|
2014-07-11 15:12:10 +08:00
|
|
|
;
|
|
|
|
; void f(int *A) {
|
|
|
|
; for (int i = 0; i < 1024; i++)
|
2014-08-16 17:08:55 +08:00
|
|
|
; S1: A[i % 2] = i;
|
2014-07-11 15:12:10 +08:00
|
|
|
; for (int i = 0; i < 1024; i++)
|
2014-08-16 17:08:55 +08:00
|
|
|
; S2: A[i2] = i;
|
2014-07-11 15:12:10 +08:00
|
|
|
; }
|
|
|
|
|
2014-07-14 16:32:01 +08:00
|
|
|
; We unfortunately do need to execute all iterations of S1, as we do not know
|
|
|
|
; the size of A and as a result S1 may write for example to A[1024], which
|
|
|
|
; is not overwritten by S2.
|
2014-07-11 15:12:10 +08:00
|
|
|
|
2014-07-14 16:32:01 +08:00
|
|
|
; CHECK: for (int c1 = 0; c1 <= 1023; c1 += 1)
|
|
|
|
; CHECK: Stmt_S1(c1);
|
2014-07-11 15:12:10 +08:00
|
|
|
; CHECK: for (int c1 = 0; c1 <= 1023; c1 += 1)
|
|
|
|
; CHECK: Stmt_S2(c1);
|
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-n32-S64"
|
2014-07-11 15:12:10 +08:00
|
|
|
|
|
|
|
define void @f(i32* %A) {
|
|
|
|
entry:
|
|
|
|
br label %for.cond
|
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
for.cond:
|
2014-07-11 15:12:10 +08:00
|
|
|
%i.0 = phi i32 [ 0, %entry ], [ %inc, %for.inc ]
|
2014-08-16 17:08:55 +08:00
|
|
|
%exitcond = icmp ne i32 %i.0, 1024
|
|
|
|
br i1 %exitcond, label %S1, label %next
|
2014-07-11 15:12:10 +08:00
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
S1:
|
|
|
|
%rem = srem i32 %i.0, 2
|
|
|
|
%arrayidx = getelementptr inbounds i32* %A, i32 %rem
|
2014-07-11 15:12:10 +08:00
|
|
|
store i32 %i.0, i32* %arrayidx, align 4
|
|
|
|
br label %for.inc
|
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
for.inc:
|
2014-07-11 15:12:10 +08:00
|
|
|
%inc = add nsw i32 %i.0, 1
|
|
|
|
br label %for.cond
|
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
next:
|
|
|
|
br label %for.cond.2
|
2014-07-14 16:32:01 +08:00
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
for.cond.2:
|
|
|
|
%i.2 = phi i32 [ 0, %next ], [ %inc.2, %for.inc.2 ]
|
|
|
|
%exitcond.2 = icmp ne i32 %i.2, 1024
|
|
|
|
br i1 %exitcond.2, label %S2, label %for.end
|
2014-07-11 15:12:10 +08:00
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
S2:
|
|
|
|
%arrayidx.2 = getelementptr inbounds i32* %A, i32 %i.2
|
|
|
|
store i32 %i.2, i32* %arrayidx.2, align 4
|
|
|
|
br label %for.inc.2
|
2014-07-11 15:12:10 +08:00
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
for.inc.2:
|
|
|
|
%inc.2 = add nsw i32 %i.2, 1
|
|
|
|
br label %for.cond.2
|
2014-07-11 15:12:10 +08:00
|
|
|
|
2014-08-16 17:08:55 +08:00
|
|
|
for.end:
|
2014-07-11 15:12:10 +08:00
|
|
|
ret void
|
|
|
|
}
|
2014-08-16 17:08:55 +08:00
|
|
|
|