brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.3 KiB · a6e51c7 Raw
42 lines · plain
1; RUN: opt %loadNPMPolly '-passes=polly-custom<scops>' -polly-print-scops -disable-output < %s 2>&1 | FileCheck %s2;3; Check that the constraints on the parameter derived from the4; range metadata (see bottom of the file) are present:5;6; CHECK: Context:7; CHECK:   [tmp] -> {  : 0 <= tmp <= 255 }8;9;    void jd(int *A, int *p /* in [0,256) */) {10;      for (int i = 0; i < 1024; i++)11;        A[i + *p] = i;12;    }13;14target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"15 16define void @jd(ptr %A, ptr %p) {17entry:18  %tmp = load i32, ptr %p, align 4, !range !019  br label %for.cond20 21for.cond:                                         ; preds = %for.inc, %entry22  %i.0 = phi i32 [ 0, %entry ], [ %inc, %for.inc ]23  %exitcond = icmp ne i32 %i.0, 102424  br i1 %exitcond, label %for.body, label %for.end25 26for.body:                                         ; preds = %for.cond27  %add = add i32 %i.0, %tmp28  %idxprom = sext i32 %add to i6429  %arrayidx = getelementptr inbounds i32, ptr %A, i64 %idxprom30  store i32 %i.0, ptr %arrayidx, align 431  br label %for.inc32 33for.inc:                                          ; preds = %for.body34  %inc = add nsw i32 %i.0, 135  br label %for.cond36 37for.end:                                          ; preds = %for.cond38  ret void39}40 41!0 =  !{ i32 0, i32 256 }42