The `opt -analyze` option only works with the legacy pass manager and might be removed in the future, as explained in llvm.org/PR53733. This patch introduced -polly-print-* passes that print what the pass would print with the `-analyze` option and replaces all uses of `-analyze` in the regression tests. There are two exceptions: `CodeGen\single_loop_param_less_equal.ll` and `CodeGen\loop_with_condition_nested.ll` use `-analyze on the `-loops` pass which is not part of Polly. Reviewed By: aeubanks Differential Revision: https://reviews.llvm.org/D120782
38 lines
1.1 KiB
LLVM
38 lines
1.1 KiB
LLVM
; RUN: opt %loadPolly -polly-print-scops -disable-output < %s | FileCheck %s
|
|
;
|
|
; void f(int *A, int N, int p) {
|
|
; for (int i = 0; i < N; i++)
|
|
; A[i + p] = 0;
|
|
; }
|
|
;
|
|
; Note: 2147483648 == 2 ^ 31
|
|
;
|
|
; CHECK: Function: wrap
|
|
; CHECK: Invalid Context:
|
|
; CHECK: [N, p] -> { : p >= 2147483649 - N }
|
|
;
|
|
target datalayout = "e-m:e-i32:64-f80:128-n8:16:32:64-S128"
|
|
|
|
define void @wrap(i32* %A, i32 %N, i32 %p) {
|
|
bb:
|
|
br label %bb2
|
|
|
|
bb2: ; preds = %bb7, %bb
|
|
%indvars.iv = phi i32 [ %indvars.iv.next, %bb7 ], [ 0, %bb ]
|
|
%tmp3 = icmp slt i32 %indvars.iv, %N
|
|
br i1 %tmp3, label %bb4, label %bb8
|
|
|
|
bb4: ; preds = %bb2
|
|
%tmp5 = add i32 %indvars.iv, %p
|
|
%tmp6 = getelementptr inbounds i32, i32* %A, i32 %tmp5
|
|
store i32 0, i32* %tmp6, align 4
|
|
br label %bb7
|
|
|
|
bb7: ; preds = %bb4
|
|
%indvars.iv.next = add nuw nsw i32 %indvars.iv, 1
|
|
br label %bb2
|
|
|
|
bb8: ; preds = %bb2
|
|
ret void
|
|
}
|