This removes old code that has been disabled since several weeks and was hidden behind the flags -disable-polly-intra-scop-scalar-to-array=false and -polly-model-phi-nodes=false. Earlier, Polly used to translate scalars and PHI nodes to single element arrays, as this avoided the need for their special handling in Polly. With Johannes' patches adding native support for such scalar references to Polly, this code is not needed any more. After this commit both -polly-prepare and -polly-independent are now mostly no-ops. Only a couple of simple transformations still remain, but they are scheduled for removal too. Thanks again to Johannes Doerfert for his nice work in making all this code obsolete. llvm-svn: 240766
51 lines
1.5 KiB
LLVM
51 lines
1.5 KiB
LLVM
; RUN: opt %loadPolly -polly-detect-unprofitable -basicaa -polly-detect -analyze < %s | FileCheck %s -check-prefix=PHI
|
|
|
|
; void f(long A[], long N, long *init_ptr) {
|
|
; long i, j;
|
|
; long i_non_canonical;
|
|
;
|
|
; for (i = 0; i < N; ++i) {
|
|
; init = *init_ptr;
|
|
; i_non_canonical = init;
|
|
; for (i = 0; i < N; ++i) {
|
|
; A[i] = i_non_canonical;
|
|
; i_non_canonical += 1;
|
|
; }
|
|
; }
|
|
; }
|
|
|
|
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"
|
|
|
|
define void @f(i64* noalias %A, i64 %N, i64* noalias %init_ptr) nounwind {
|
|
entry:
|
|
br label %for.i
|
|
|
|
for.i:
|
|
%indvar.i = phi i64 [ 0, %entry ], [ %indvar.i.next, %for.i.end ]
|
|
%indvar.i.next = add nsw i64 %indvar.i, 1
|
|
br label %entry.next
|
|
|
|
entry.next:
|
|
%init = load i64, i64* %init_ptr
|
|
br label %for.j
|
|
|
|
for.j:
|
|
%indvar.j = phi i64 [ 0, %entry.next ], [ %indvar.j.next, %for.j ]
|
|
%indvar.j.non_canonical = phi i64 [ %init, %entry.next ], [ %indvar.j.non_canonical.next, %for.j ]
|
|
%scevgep = getelementptr i64, i64* %A, i64 %indvar.j
|
|
store i64 %indvar.j.non_canonical, i64* %scevgep
|
|
%indvar.j.next = add nsw i64 %indvar.j, 1
|
|
%indvar.j.non_canonical.next = add nsw i64 %indvar.j.non_canonical, 1
|
|
%exitcond.j = icmp eq i64 %indvar.j.next, %N
|
|
br i1 %exitcond.j, label %for.i.end, label %for.j
|
|
|
|
for.i.end:
|
|
%exitcond.i = icmp eq i64 %indvar.i.next, %N
|
|
br i1 %exitcond.i, label %return, label %for.i
|
|
|
|
return:
|
|
ret void
|
|
}
|
|
|
|
; PHI: Valid Region for Scop: for.i => return
|