blob: 2e67fbf5e2a7e7ccb944823c8b6a58b2025f5439 [file] [log] [blame]
Matt Arsenault6a0919f2014-09-26 17:55:03 +00001; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
2
3declare float @llvm.fma.f32(float, float, float) #1
4declare float @llvm.fmuladd.f32(float, float, float) #1
5declare i32 @llvm.AMDGPU.imad24(i32, i32, i32) #1
6
7
Tom Stellard79243d92014-10-01 17:15:17 +00008; SI-LABEL: {{^}}test_sgpr_use_twice_binop:
Tom Stellard326d6ec2014-11-05 14:50:53 +00009; SI: s_load_dword [[SGPR:s[0-9]+]],
10; SI: v_add_f32_e64 [[RESULT:v[0-9]+]], [[SGPR]], [[SGPR]]
11; SI: buffer_store_dword [[RESULT]]
Matt Arsenault6a0919f2014-09-26 17:55:03 +000012define void @test_sgpr_use_twice_binop(float addrspace(1)* %out, float %a) #0 {
13 %dbl = fadd float %a, %a
14 store float %dbl, float addrspace(1)* %out, align 4
15 ret void
16}
17
Tom Stellard79243d92014-10-01 17:15:17 +000018; SI-LABEL: {{^}}test_sgpr_use_three_ternary_op:
Tom Stellard326d6ec2014-11-05 14:50:53 +000019; SI: s_load_dword [[SGPR:s[0-9]+]],
20; SI: v_fma_f32 [[RESULT:v[0-9]+]], [[SGPR]], [[SGPR]], [[SGPR]]
21; SI: buffer_store_dword [[RESULT]]
Matt Arsenault6a0919f2014-09-26 17:55:03 +000022define void @test_sgpr_use_three_ternary_op(float addrspace(1)* %out, float %a) #0 {
23 %fma = call float @llvm.fma.f32(float %a, float %a, float %a) #1
24 store float %fma, float addrspace(1)* %out, align 4
25 ret void
26}
27
Tom Stellard79243d92014-10-01 17:15:17 +000028; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_a_a_b:
Tom Stellard326d6ec2014-11-05 14:50:53 +000029; SI: s_load_dword [[SGPR0:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xb
30; SI: s_load_dword [[SGPR1:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xc
31; SI: v_mov_b32_e32 [[VGPR1:v[0-9]+]], [[SGPR1]]
32; SI: v_fma_f32 [[RESULT:v[0-9]+]], [[SGPR0]], [[SGPR0]], [[VGPR1]]
33; SI: buffer_store_dword [[RESULT]]
Matt Arsenault6a0919f2014-09-26 17:55:03 +000034define void @test_sgpr_use_twice_ternary_op_a_a_b(float addrspace(1)* %out, float %a, float %b) #0 {
35 %fma = call float @llvm.fma.f32(float %a, float %a, float %b) #1
36 store float %fma, float addrspace(1)* %out, align 4
37 ret void
38}
39
Tom Stellard79243d92014-10-01 17:15:17 +000040; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_a_b_a:
Tom Stellard326d6ec2014-11-05 14:50:53 +000041; SI: s_load_dword [[SGPR0:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xb
42; SI: s_load_dword [[SGPR1:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xc
43; SI: v_mov_b32_e32 [[VGPR1:v[0-9]+]], [[SGPR1]]
44; SI: v_fma_f32 [[RESULT:v[0-9]+]], [[SGPR0]], [[VGPR1]], [[SGPR0]]
45; SI: buffer_store_dword [[RESULT]]
Matt Arsenault6a0919f2014-09-26 17:55:03 +000046define void @test_sgpr_use_twice_ternary_op_a_b_a(float addrspace(1)* %out, float %a, float %b) #0 {
47 %fma = call float @llvm.fma.f32(float %a, float %b, float %a) #1
48 store float %fma, float addrspace(1)* %out, align 4
49 ret void
50}
51
Tom Stellard79243d92014-10-01 17:15:17 +000052; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_b_a_a:
Tom Stellard326d6ec2014-11-05 14:50:53 +000053; SI: s_load_dword [[SGPR0:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xb
54; SI: s_load_dword [[SGPR1:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xc
55; SI: v_mov_b32_e32 [[VGPR1:v[0-9]+]], [[SGPR1]]
56; SI: v_fma_f32 [[RESULT:v[0-9]+]], [[VGPR1]], [[SGPR0]], [[SGPR0]]
57; SI: buffer_store_dword [[RESULT]]
Matt Arsenault6a0919f2014-09-26 17:55:03 +000058define void @test_sgpr_use_twice_ternary_op_b_a_a(float addrspace(1)* %out, float %a, float %b) #0 {
59 %fma = call float @llvm.fma.f32(float %b, float %a, float %a) #1
60 store float %fma, float addrspace(1)* %out, align 4
61 ret void
62}
63
Tom Stellard79243d92014-10-01 17:15:17 +000064; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_a_a_imm:
Tom Stellard326d6ec2014-11-05 14:50:53 +000065; SI: s_load_dword [[SGPR:s[0-9]+]]
66; SI: v_fma_f32 [[RESULT:v[0-9]+]], [[SGPR]], [[SGPR]], 2.0
67; SI: buffer_store_dword [[RESULT]]
Matt Arsenault6a0919f2014-09-26 17:55:03 +000068define void @test_sgpr_use_twice_ternary_op_a_a_imm(float addrspace(1)* %out, float %a) #0 {
69 %fma = call float @llvm.fma.f32(float %a, float %a, float 2.0) #1
70 store float %fma, float addrspace(1)* %out, align 4
71 ret void
72}
73
Tom Stellard79243d92014-10-01 17:15:17 +000074; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_a_imm_a:
Tom Stellard326d6ec2014-11-05 14:50:53 +000075; SI: s_load_dword [[SGPR:s[0-9]+]]
76; SI: v_fma_f32 [[RESULT:v[0-9]+]], [[SGPR]], 2.0, [[SGPR]]
77; SI: buffer_store_dword [[RESULT]]
Matt Arsenault6a0919f2014-09-26 17:55:03 +000078define void @test_sgpr_use_twice_ternary_op_a_imm_a(float addrspace(1)* %out, float %a) #0 {
79 %fma = call float @llvm.fma.f32(float %a, float 2.0, float %a) #1
80 store float %fma, float addrspace(1)* %out, align 4
81 ret void
82}
83
84; Don't use fma since fma c, x, y is canonicalized to fma x, c, y
Tom Stellard79243d92014-10-01 17:15:17 +000085; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_imm_a_a:
Tom Stellard326d6ec2014-11-05 14:50:53 +000086; SI: s_load_dword [[SGPR:s[0-9]+]]
87; SI: v_mad_i32_i24 [[RESULT:v[0-9]+]], 2, [[SGPR]], [[SGPR]]
88; SI: buffer_store_dword [[RESULT]]
Matt Arsenault6a0919f2014-09-26 17:55:03 +000089define void @test_sgpr_use_twice_ternary_op_imm_a_a(i32 addrspace(1)* %out, i32 %a) #0 {
90 %fma = call i32 @llvm.AMDGPU.imad24(i32 2, i32 %a, i32 %a) #1
91 store i32 %fma, i32 addrspace(1)* %out, align 4
92 ret void
93}
94
95attributes #0 = { nounwind }
96attributes #1 = { nounwind readnone }