mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 03:56:41 +00:00

Even as the NPM has been in use by Polly for a while now, the majority of the tests continue using the LPM passes. This patch ports the tests to use the NPM passes (for example, by replacing a flag such as -polly-detect with -passes=polly-detect following the NPM syntax for specifying passes) with some exceptions for some missing features in the new passes. Relanding #90632.
44 lines
1.7 KiB
LLVM
44 lines
1.7 KiB
LLVM
; RUN: opt %loadNPMPolly -S -passes=polly-codegen < %s | FileCheck %s
|
|
;
|
|
; The SCEV expression in this test case refers to a sequence of sdiv
|
|
; instructions, which are part of different bbs in the SCoP. When code
|
|
; generating the parameter expressions, the code that is generated by the SCEV
|
|
; expander has still references to the in-scop instructions, which was invalid.
|
|
;
|
|
; CHECK: polly.start
|
|
;
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define void @_vorbis_apply_window(ptr %d, i64 %param) {
|
|
entry:
|
|
%0 = load ptr, ptr undef, align 8
|
|
%div23.neg = sdiv i64 0, -4
|
|
%sub24 = add i64 0, %div23.neg
|
|
br label %for.cond.30.preheader
|
|
|
|
for.cond.30.preheader: ; preds = %for.body, %entry
|
|
%sext = shl i64 %sub24, 32
|
|
%conv48.74 = ashr exact i64 %sext, 32
|
|
%div43 = sdiv i64 %param, 2
|
|
%cmp49.75 = icmp slt i64 %conv48.74, 0
|
|
br i1 %cmp49.75, label %for.body.51.lr.ph, label %for.cond.60.preheader
|
|
|
|
for.body.51.lr.ph: ; preds = %for.cond.30.preheader
|
|
%div44 = sdiv i64 %div43, 2
|
|
%sub45 = add nsw i64 %div44, 4294967295
|
|
%1 = trunc i64 %sub45 to i32
|
|
%2 = sext i32 %1 to i64
|
|
br label %for.body.51
|
|
|
|
for.cond.60.preheader: ; preds = %for.body.51, %for.cond.30.preheader
|
|
ret void
|
|
|
|
for.body.51: ; preds = %for.body.51, %for.body.51.lr.ph
|
|
%indvars.iv86 = phi i64 [ %2, %for.body.51.lr.ph ], [ undef, %for.body.51 ]
|
|
%arrayidx53 = getelementptr inbounds float, ptr %0, i64 %indvars.iv86
|
|
%3 = load float, ptr %arrayidx53, align 4
|
|
%mul56 = fmul float %3, undef
|
|
store float %mul56, ptr %d, align 4
|
|
br i1 false, label %for.body.51, label %for.cond.60.preheader
|
|
}
|