Matt Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 1 | ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s |
| 2 | |
| 3 | declare float @llvm.fma.f32(float, float, float) #1 |
| 4 | declare float @llvm.fmuladd.f32(float, float, float) #1 |
| 5 | declare i32 @llvm.AMDGPU.imad24(i32, i32, i32) #1 |
| 6 | |
| 7 | |
Tom Stellard | 79243d9 | 2014-10-01 17:15:17 +0000 | [diff] [blame] | 8 | ; SI-LABEL: {{^}}test_sgpr_use_twice_binop: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 9 | ; 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 Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 12 | define 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 Stellard | 79243d9 | 2014-10-01 17:15:17 +0000 | [diff] [blame] | 18 | ; SI-LABEL: {{^}}test_sgpr_use_three_ternary_op: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 19 | ; 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 Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 22 | define 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 Stellard | 79243d9 | 2014-10-01 17:15:17 +0000 | [diff] [blame] | 28 | ; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_a_a_b: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 29 | ; 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 Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 34 | define 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 Stellard | 79243d9 | 2014-10-01 17:15:17 +0000 | [diff] [blame] | 40 | ; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_a_b_a: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 41 | ; 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 Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 46 | define 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 Stellard | 79243d9 | 2014-10-01 17:15:17 +0000 | [diff] [blame] | 52 | ; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_b_a_a: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 53 | ; 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 Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 58 | define 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 Stellard | 79243d9 | 2014-10-01 17:15:17 +0000 | [diff] [blame] | 64 | ; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_a_a_imm: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 65 | ; 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 Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 68 | define 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 Stellard | 79243d9 | 2014-10-01 17:15:17 +0000 | [diff] [blame] | 74 | ; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_a_imm_a: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 75 | ; SI: s_load_dword [[SGPR:s[0-9]+]] |
Matt Arsenault | 95e4866 | 2014-11-13 19:26:47 +0000 | [diff] [blame^] | 76 | ; SI: v_fma_f32 [[RESULT:v[0-9]+]], 2.0, [[SGPR]], [[SGPR]] |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 77 | ; SI: buffer_store_dword [[RESULT]] |
Matt Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 78 | define 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 Stellard | 79243d9 | 2014-10-01 17:15:17 +0000 | [diff] [blame] | 85 | ; SI-LABEL: {{^}}test_sgpr_use_twice_ternary_op_imm_a_a: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 86 | ; 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 Arsenault | 6a0919f | 2014-09-26 17:55:03 +0000 | [diff] [blame] | 89 | define 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 | |
| 95 | attributes #0 = { nounwind } |
| 96 | attributes #1 = { nounwind readnone } |