1 ; RUN: llc < %s -march=amdgcn -mcpu=gfx900 -verify-machineinstrs | FileCheck %s --check-prefix=GCN
2 ; RUN: llc -march=amdgcn -mcpu=gfx1010 -mattr=-wavefrontsize32,+wavefrontsize64 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
4 ; GCN-LABEL: {{^}}full_mask:
5 ; GCN: s_mov_b64 exec, -1
6 ; GCN: v_add_f32_e32 v0,
7 define amdgpu_ps float @full_mask(float %a, float %b) {
10 call void @llvm.amdgcn.init.exec(i64 -1)
14 ; GCN-LABEL: {{^}}partial_mask:
15 ; GCN: s_mov_b64 exec, 0x1e240
16 ; GCN: v_add_f32_e32 v0,
17 define amdgpu_ps float @partial_mask(float %a, float %b) {
19 %s = fadd float %a, %b
20 call void @llvm.amdgcn.init.exec(i64 123456)
24 ; GCN-LABEL: {{^}}input_s3off8:
25 ; GCN: s_bfe_u32 s0, s3, 0x70008
26 ; GCN: s_bfm_b64 exec, s0, 0
27 ; GCN: s_cmp_eq_u32 s0, 64
28 ; GCN: s_cmov_b64 exec, -1
29 ; GCN: v_add_f32_e32 v0,
30 define amdgpu_ps float @input_s3off8(i32 inreg, i32 inreg, i32 inreg, i32 inreg %count, float %a, float %b) {
32 %s = fadd float %a, %b
33 call void @llvm.amdgcn.init.exec.from.input(i32 %count, i32 8)
37 ; GCN-LABEL: {{^}}input_s0off19:
38 ; GCN: s_bfe_u32 s0, s0, 0x70013
39 ; GCN: s_bfm_b64 exec, s0, 0
40 ; GCN: s_cmp_eq_u32 s0, 64
41 ; GCN: s_cmov_b64 exec, -1
42 ; GCN: v_add_f32_e32 v0,
43 define amdgpu_ps float @input_s0off19(i32 inreg %count, float %a, float %b) {
45 %s = fadd float %a, %b
46 call void @llvm.amdgcn.init.exec.from.input(i32 %count, i32 19)
50 ; GCN-LABEL: {{^}}reuse_input:
51 ; GCN: s_bfe_u32 s1, s0, 0x70013
52 ; GCN: s_bfm_b64 exec, s1, 0
53 ; GCN: s_cmp_eq_u32 s1, 64
54 ; GCN: s_cmov_b64 exec, -1
55 ; GCN: v_add{{(_nc)?}}_u32_e32 v0, s0, v0
56 define amdgpu_ps float @reuse_input(i32 inreg %count, i32 %a) {
58 call void @llvm.amdgcn.init.exec.from.input(i32 %count, i32 19)
59 %s = add i32 %a, %count
60 %f = sitofp i32 %s to float
64 ; GCN-LABEL: {{^}}reuse_input2:
65 ; GCN: s_bfe_u32 s1, s0, 0x70013
66 ; GCN: s_bfm_b64 exec, s1, 0
67 ; GCN: s_cmp_eq_u32 s1, 64
68 ; GCN: s_cmov_b64 exec, -1
69 ; GCN: v_add{{(_nc)?}}_u32_e32 v0, s0, v0
70 define amdgpu_ps float @reuse_input2(i32 inreg %count, i32 %a) {
72 %s = add i32 %a, %count
73 %f = sitofp i32 %s to float
74 call void @llvm.amdgcn.init.exec.from.input(i32 %count, i32 19)
78 ; GCN-LABEL: {{^}}init_unreachable:
81 define amdgpu_ps void @init_unreachable() {
83 call void @llvm.amdgcn.init.exec(i64 -1)
87 declare void @llvm.amdgcn.init.exec(i64) #1
88 declare void @llvm.amdgcn.init.exec.from.input(i32, i32) #1
90 attributes #1 = { convergent }