Marek Olsak | fa6607d | 2015-02-11 14:26:46 +0000 | [diff] [blame^] | 1 | ; RUN: llc -march=amdgcn -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=SI %s |
| 2 | ; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=VI %s |
Matt Arsenault | a0050b0 | 2014-06-19 01:19:19 +0000 | [diff] [blame] | 3 | |
Matt Arsenault | 75c658e | 2014-10-21 22:20:55 +0000 | [diff] [blame] | 4 | declare float @llvm.AMDGPU.div.fmas.f32(float, float, float, i1) nounwind readnone |
| 5 | declare double @llvm.AMDGPU.div.fmas.f64(double, double, double, i1) nounwind readnone |
Matt Arsenault | a0050b0 | 2014-06-19 01:19:19 +0000 | [diff] [blame] | 6 | |
Marek Olsak | fa6607d | 2015-02-11 14:26:46 +0000 | [diff] [blame^] | 7 | ; GCN-LABEL: {{^}}test_div_fmas_f32: |
Tom Stellard | 326d6ec | 2014-11-05 14:50:53 +0000 | [diff] [blame] | 8 | ; SI-DAG: s_load_dword [[SA:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xb |
| 9 | ; SI-DAG: s_load_dword [[SC:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xd |
| 10 | ; SI-DAG: s_load_dword [[SB:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0xc |
Marek Olsak | fa6607d | 2015-02-11 14:26:46 +0000 | [diff] [blame^] | 11 | ; VI-DAG: s_load_dword [[SA:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x2c |
| 12 | ; VI-DAG: s_load_dword [[SC:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x34 |
| 13 | ; VI-DAG: s_load_dword [[SB:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x30 |
| 14 | ; GCN-DAG: v_mov_b32_e32 [[VC:v[0-9]+]], [[SC]] |
| 15 | ; GCN-DAG: v_mov_b32_e32 [[VB:v[0-9]+]], [[SB]] |
| 16 | ; GCN: v_div_fmas_f32 [[RESULT:v[0-9]+]], [[SA]], [[VB]], [[VC]] |
| 17 | ; GCN: buffer_store_dword [[RESULT]], |
| 18 | ; GCN: s_endpgm |
Matt Arsenault | 75c658e | 2014-10-21 22:20:55 +0000 | [diff] [blame] | 19 | define void @test_div_fmas_f32(float addrspace(1)* %out, float %a, float %b, float %c, i1 %d) nounwind { |
| 20 | %result = call float @llvm.AMDGPU.div.fmas.f32(float %a, float %b, float %c, i1 %d) nounwind readnone |
Matt Arsenault | a0050b0 | 2014-06-19 01:19:19 +0000 | [diff] [blame] | 21 | store float %result, float addrspace(1)* %out, align 4 |
| 22 | ret void |
| 23 | } |
| 24 | |
Marek Olsak | fa6607d | 2015-02-11 14:26:46 +0000 | [diff] [blame^] | 25 | ; GCN-LABEL: {{^}}test_div_fmas_f64: |
| 26 | ; GCN: v_div_fmas_f64 |
Matt Arsenault | 75c658e | 2014-10-21 22:20:55 +0000 | [diff] [blame] | 27 | define void @test_div_fmas_f64(double addrspace(1)* %out, double %a, double %b, double %c, i1 %d) nounwind { |
| 28 | %result = call double @llvm.AMDGPU.div.fmas.f64(double %a, double %b, double %c, i1 %d) nounwind readnone |
Matt Arsenault | a0050b0 | 2014-06-19 01:19:19 +0000 | [diff] [blame] | 29 | store double %result, double addrspace(1)* %out, align 8 |
| 30 | ret void |
| 31 | } |