Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / uniform-loop-inside-nonuniform.ll
blob3597d9a7010d357ccbed807c305c5fd7064cdf7e
1 ; RUN: llc -mtriple=amdgcn -mcpu=verde < %s | FileCheck %s
3 ; Test a simple uniform loop that lives inside non-uniform control flow.
5 ; CHECK-LABEL: {{^}}test1:
6 ; CHECK: v_cmp_ne_u32_e32 vcc, 0
7 ; CHECK: s_and_saveexec_b64
8 ; CHECK-NEXT: s_cbranch_execz .LBB{{[0-9]+_[0-9]+}}
10 ; CHECK: [[LOOP_BODY_LABEL:.LBB[0-9]+_[0-9]+]]: ; %loop_body
11 ; CHECK: s_cbranch_scc1 [[LOOP_BODY_LABEL]]
13 ; CHECK: s_endpgm
14 define amdgpu_ps void @test1(<8 x i32> inreg %rsrc, <2 x i32> %addr.base, i32 %y, i32 %p) {
15 main_body:
16   %cc = icmp eq i32 %p, 0
17   br i1 %cc, label %out, label %loop_body
19 loop_body:
20   %counter = phi i32 [ 0, %main_body ], [ %incr, %loop_body ]
22   ; Prevent the loop from being optimized out
23   call void asm sideeffect "", "" ()
25   %incr = add i32 %counter, 1
26   %lc = icmp sge i32 %incr, 1000
27   br i1 %lc, label %out, label %loop_body
29 out:
30   ret void
33 ; CHECK-LABEL: {{^}}test2:
34 ; CHECK: s_and_saveexec_b64
35 ; CHECK-NEXT: s_cbranch_execz
36 define amdgpu_kernel void @test2(ptr addrspace(1) %out, i32 %a, i32 %b) {
37 main_body:
38   %tid = call i32 @llvm.amdgcn.workitem.id.x() #1
39   %cc = icmp eq i32 %tid, 0
40   br i1 %cc, label %done1, label %if
42 if:
43   %cmp = icmp eq i32 %a, 0
44   br i1 %cmp, label %done0, label %loop_body
46 loop_body:
47   %counter = phi i32 [ 0, %if ], [0, %done0], [ %incr, %loop_body ]
49   ; Prevent the loop from being optimized out
50   call void asm sideeffect "", "" ()
52   %incr = add i32 %counter, 1
53   %lc = icmp sge i32 %incr, 1000
54   br i1 %lc, label %done1, label %loop_body
56 done0:
57   %cmp0 = icmp eq i32 %b, 0
58   br i1 %cmp0, label %done1, label %loop_body
60 done1:
61   ret void
64 declare i32 @llvm.amdgcn.workitem.id.x() #1
66 attributes #1 = { nounwind readonly }