You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.3 KiB
56 lines
2.3 KiB
; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-scops -analyze < %s | FileCheck %s
|
|
; RUN: opt %loadPolly -polly-stmt-granularity=bb -polly-codegen -S < %s | FileCheck %s --check-prefix=CODEGEN
|
|
;
|
|
; Check for correct code generation of exit PHIs, even if the same PHI value
|
|
; is used again inside the the SCoP.
|
|
; Note that if.else113 is removed from the SCoP because it is never executed.
|
|
;
|
|
; CHECK: Region: %for.body
|
|
;
|
|
; CHECK: Arrays {
|
|
; CHECK-NEXT: double MemRef_up_3_ph; // Element size 8
|
|
; CHECK-NEXT: i32* MemRef_A[*]; // Element size 8
|
|
; CHECK-NEXT: double MemRef_up_3_ph; // Element size 8
|
|
; CHECK-NEXT: }
|
|
;
|
|
; CODEGEN: polly.merge_new_and_old:
|
|
; CODEGEN-NEXT: %up.3.ph.ph.merge = phi double [ %up.3.ph.ph.final_reload, %polly.exiting ], [ undef, %for.cond.outer304.region_exiting ]
|
|
;
|
|
; CODEGEN: for.cond.outer304:
|
|
; CODEGEN-NEXT: %indvar = phi i64 [ %indvar.next, %polly.merge_new_and_old ], [ 0, %entry ]
|
|
; CODEGEN-NEXT: %up.3.ph = phi double [ 0.000000e+00, %entry ], [ %up.3.ph.ph.merge, %polly.merge_new_and_old ]
|
|
;
|
|
; CODEGEN: polly.stmt.if.then111:
|
|
; CODEGEN-NEXT: store double undef, double* %up.3.ph.s2a
|
|
;
|
|
; CODEGEN: polly.exiting:
|
|
; CODEGEN-NEXT: %up.3.ph.ph.final_reload = load double, double* %up.3.ph.s2a
|
|
;
|
|
; ModuleID = 'bugpoint-reduced-simplified.bc'
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
; Function Attrs: uwtable
|
|
define void @_ZN6soplex14SPxAggregateSM9eliminateERKNS_7SVectorEd(i32** nocapture readonly %A) {
|
|
entry:
|
|
br label %for.cond.outer304
|
|
|
|
for.cond.outer304: ; preds = %if.else113, %if.then111, %entry
|
|
%up.3.ph = phi double [ 0.000000e+00, %entry ], [ undef, %if.else113 ], [ undef, %if.then111 ]
|
|
br i1 undef, label %for.body, label %for.end
|
|
|
|
for.body: ; preds = %for.cond.outer304
|
|
%0 = load i32*, i32** %A, align 8
|
|
%add = fadd double %up.3.ph, undef
|
|
%val.i.i.i235 = getelementptr inbounds i32, i32* %0, i64 0
|
|
br i1 false, label %if.else113, label %if.then111
|
|
|
|
if.then111: ; preds = %for.body
|
|
br label %for.cond.outer304
|
|
|
|
if.else113: ; preds = %for.body
|
|
br label %for.cond.outer304
|
|
|
|
for.end: ; preds = %for.cond.outer304
|
|
ret void
|
|
}
|