| ; RUN: opt %loadNPMPolly '-passes=print<polly-ast>' -polly-process-unprofitable -polly-allow-nonaffine -disable-output < %s 2>&1 | FileCheck %s |
| ; |
| ; @test1 |
| ; Make sure we generate the correct aliasing check for a fixed-size memset operation. |
| ; CHECK: if (1 && (&MemRef_tmp0[15] <= &MemRef_tmp1[0] || &MemRef_tmp1[32] <= &MemRef_tmp0[14])) |
| ; |
| ; @test2 |
| ; Make sure we generate the correct aliasing check for a variable-size memset operation. |
| ; CHECK: if (1 && (&MemRef_tmp0[15] <= &MemRef_tmp1[0] || &MemRef_tmp1[n] <= &MemRef_tmp0[14])) |
| ; |
| ; @test3 |
| ; We can't do anything interesting with a non-affine memset; just make sure it doesn't crash. |
| ; |
| target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" |
| |
| %struct.info = type { i32, ptr, i32, ptr, ptr, i32, ptr, i32, i32, double } |
| %struct.ctr = type { i32, i8, i8, i32 } |
| %struct.ord = type { i32, i8 } |
| |
| ; Function Attrs: argmemonly nounwind |
| declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i32, i1) #0 |
| |
| define void @test1(ptr %ppIdxInfo) { |
| entry: |
| %tmp0 = load ptr, ptr %ppIdxInfo, align 8 |
| br label %if.end125 |
| |
| if.end125: ; preds = %entry |
| %tmp1 = load ptr, ptr undef, align 8 |
| br label %for.end143 |
| |
| for.end143: ; preds = %if.end125 |
| tail call void @llvm.memset.p0.i64(ptr %tmp1, i8 0, i64 32, i32 4, i1 false) |
| %needToFreeIdxStr = getelementptr inbounds %struct.info, ptr %tmp0, i64 0, i32 7 |
| %tmp3 = load i32, ptr %needToFreeIdxStr, align 8 |
| br i1 false, label %if.end149, label %if.then148 |
| |
| if.then148: ; preds = %for.end143 |
| br label %if.end149 |
| |
| if.end149: ; preds = %if.then148, %for.end143 |
| ret void |
| } |
| |
| define void @test2(ptr %ppIdxInfo, i64 %n) { |
| entry: |
| %tmp0 = load ptr, ptr %ppIdxInfo, align 8 |
| br label %if.end125 |
| |
| if.end125: ; preds = %entry |
| %tmp1 = load ptr, ptr undef, align 8 |
| br label %for.end143 |
| |
| for.end143: ; preds = %if.end125 |
| tail call void @llvm.memset.p0.i64(ptr %tmp1, i8 0, i64 %n, i32 4, i1 false) |
| %needToFreeIdxStr = getelementptr inbounds %struct.info, ptr %tmp0, i64 0, i32 7 |
| %tmp3 = load i32, ptr %needToFreeIdxStr, align 8 |
| br i1 false, label %if.end149, label %if.then148 |
| |
| if.then148: ; preds = %for.end143 |
| br label %if.end149 |
| |
| if.end149: ; preds = %if.then148, %for.end143 |
| ret void |
| } |
| |
| define i32 @test3(ptr %x, i32 %n) { |
| entry: |
| br label %entry.split |
| |
| entry.split: ; preds = %entry |
| %conv = sext i32 %n to i64 |
| %cmp8 = icmp sgt i32 %n, 0 |
| br i1 %cmp8, label %for.body.lr.ph, label %for.cond.cleanup |
| |
| for.body.lr.ph: ; preds = %entry.split |
| br label %for.body |
| |
| for.cond.cleanup: ; preds = %for.body, %entry.split |
| ret i32 0 |
| |
| for.body: ; preds = %for.body, %for.body.lr.ph |
| %i.09 = phi i64 [ 0, %for.body.lr.ph ], [ %inc, %for.body ] |
| %mul = mul nsw i64 %i.09, %i.09 |
| tail call void @llvm.memset.p0.i64(ptr %x, i8 0, i64 %mul, i32 4, i1 false) |
| %add = add nuw nsw i64 %i.09, 1000 |
| %arrayidx = getelementptr inbounds i32, ptr %x, i64 %add |
| store i32 5, ptr %arrayidx, align 4 |
| %inc = add nuw nsw i64 %i.09, 1 |
| %exitcond = icmp eq i64 %inc, %conv |
| br i1 %exitcond, label %for.cond.cleanup, label %for.body |
| } |
| |
| attributes #0 = { argmemonly nounwind } |