[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / CodeGen / SPIRV / structurizer / merge-exit-break.ll
blobb421ae7990c67a5c33191fee303bac6f82bc7b59
1 ; RUN: llc -mtriple=spirv-unknown-vulkan-compute -O0 %s -o - | FileCheck %s --match-full-lines
2 ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-vulkan-compute %s -o - -filetype=obj | spirv-val %}
4 target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-G1"
5 target triple = "spirv-unknown-vulkan-compute"
7 define internal spir_func void @main() #0 {
9 ; CHECK-DAG:                   OpName %[[#idx:]] "idx"
10 ; CHECK-DAG:                   OpDecorate %[[#builtin:]] BuiltIn SubgroupLocalInvocationId
11 ; CHECK-DAG:   %[[#int_ty:]] = OpTypeInt 32 0
12 ; CHECK-DAG: %[[#int_ipty:]] = OpTypePointer Input %[[#int_ty]]
13 ; CHECK-DAG:  %[[#bool_ty:]] = OpTypeBool
14 ; CHECK-DAG:    %[[#int_0:]] = OpConstant %[[#int_ty]] 0
15 ; CHECK-DAG:   %[[#int_10:]] = OpConstant %[[#int_ty]] 10
16 ; CHECK-DAG:   %[[#builtin]] = OpVariable %[[#int_ipty]] Input
18 ; CHECK:   %[[#entry:]] = OpLabel
19 ; CHECK:      %[[#idx]] = OpVariable %[[#]] Function
20 ; ACHECK:                 OpStore %[[#idx]] %[[#int_0]] Aligned 4
21 ; CHECK:                  OpBranch %[[#while_cond:]]
22 entry:
23   %0 = call token @llvm.experimental.convergence.entry()
24   %idx = alloca i32, align 4
25   store i32 0, ptr %idx, align 4
26   br label %while.cond
28 ; CHECK:   %[[#while_cond]] = OpLabel
29 ; CHECK:         %[[#tmp:]] = OpLoad %[[#int_ty]] %[[#idx]] Aligned 4
30 ; CHECK:         %[[#cmp:]] = OpINotEqual %[[#bool_ty]] %[[#tmp]] %[[#int_10]]
31 ; CHECK:                      OpLoopMerge %[[#new_end:]] %[[#if_end:]] None
32 ; CHECK:                      OpBranchConditional %[[#cmp]] %[[#while_body:]] %[[#new_end]]
34 while.cond:
35   %1 = call token @llvm.experimental.convergence.loop() [ "convergencectrl"(token %0) ]
36   %2 = load i32, ptr %idx, align 4
37   %cmp = icmp ne i32 %2, 10
38   br i1 %cmp, label %while.body, label %while.end
40 ; CHECK: %[[#while_body]] = OpLabel
41 ; CHECK:       %[[#tmp:]] = OpLoad %[[#]] %[[#builtin]] Aligned 1
42 ; CHECK:                    OpStore %[[#idx]] %[[#tmp]] Aligned 4
43 ; CHECK:       %[[#tmp:]] = OpLoad %[[#int_ty]] %[[#idx]] Aligned 4
44 ; CHECK:      %[[#cmp1:]] = OpIEqual %[[#bool_ty]] %[[#tmp]] %[[#int_0]]
45 ; CHECK:                    OpBranchConditional %[[#cmp1]] %[[#new_end]] %[[#if_end]]
46 while.body:
47   %3 = call i32 @__hlsl_wave_get_lane_index() [ "convergencectrl"(token %1) ]
48   store i32 %3, ptr %idx, align 4
49   %4 = load i32, ptr %idx, align 4
50   %cmp1 = icmp eq i32 %4, 0
51   br i1 %cmp1, label %if.then, label %if.end
53 ; CHECK:   %[[#if_end]] = OpLabel
54 ; CHECK:                  OpBranch %[[#while_cond]]
56 ; CHECK:   %[[#new_end]] = OpLabel
57 ; CHECK:                   OpBranch %[[#while_end:]]
58 if.then:
59   br label %while.end
61 if.end:
62   br label %while.cond
64 ; CHECK:   %[[#while_end]] = OpLabel
65 ; CHECK:                     OpReturn
66 while.end:
67   ret void
70 declare token @llvm.experimental.convergence.entry() #2
71 declare token @llvm.experimental.convergence.loop() #2
72 declare i32 @__hlsl_wave_get_lane_index() #3
74 attributes #0 = { convergent noinline norecurse nounwind optnone "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
75 attributes #1 = { convergent norecurse "hlsl.numthreads"="1,1,1" "hlsl.shader"="compute" "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
76 attributes #2 = { convergent nocallback nofree nosync nounwind willreturn memory(none) }
77 attributes #3 = { convergent }
79 !llvm.module.flags = !{!0, !1}
81 !0 = !{i32 1, !"wchar_size", i32 4}
82 !1 = !{i32 4, !"dx.disable_optimizations", i32 1}