brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 0c4af23 Raw
30 lines · plain
1; RUN: llc < %s -mtriple=r600 -mcpu=redwood | FileCheck %s2 3; PRED_SET* instructions must be tied to any instruction that uses their4; result.  This tests that there are no instructions between the PRED_SET*5; and the PREDICATE_BREAK in this loop.6 7; CHECK: {{^}}loop_ge:8; CHECK: LOOP_START_DX109; CHECK: ALU_PUSH_BEFORE10; CHECK-NEXT: JUMP11; CHECK-NEXT: LOOP_BREAK12define amdgpu_kernel void @loop_ge(ptr addrspace(1) nocapture %out, i32 %iterations) nounwind {13entry:14  %cmp5 = icmp sgt i32 %iterations, 015  br i1 %cmp5, label %for.body, label %for.end16 17for.body:                                         ; preds = %for.body, %entry18  %i.07.in = phi i32 [ %i.07, %for.body ], [ %iterations, %entry ]19  %ai.06 = phi i32 [ %add, %for.body ], [ 0, %entry ]20  %i.07 = add nsw i32 %i.07.in, -121  %arrayidx = getelementptr inbounds i32, ptr addrspace(1) %out, i32 %ai.0622  store i32 %i.07, ptr addrspace(1) %arrayidx, align 423  %add = add nsw i32 %ai.06, 124  %exitcond = icmp eq i32 %add, %iterations25  br i1 %exitcond, label %for.end, label %for.body26 27for.end:                                          ; preds = %for.body, %entry28  ret void29}30