Matt Arsenault | cc3c2b3 | 2014-11-14 20:08:52 +0000 | [diff] [blame^] | 1 | ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s |
| 2 | |
| 3 | declare float @llvm.minnum.f32(float, float) nounwind readnone |
| 4 | |
| 5 | ; SI-LABEL: {{^}}test_fmin3_olt_0: |
| 6 | ; SI: buffer_load_dword [[REGA:v[0-9]+]] |
| 7 | ; SI: buffer_load_dword [[REGB:v[0-9]+]] |
| 8 | ; SI: buffer_load_dword [[REGC:v[0-9]+]] |
| 9 | ; SI: v_min3_f32 [[RESULT:v[0-9]+]], [[REGC]], [[REGB]], [[REGA]] |
| 10 | ; SI: buffer_store_dword [[RESULT]], |
| 11 | ; SI: s_endpgm |
| 12 | define void @test_fmin3_olt_0(float addrspace(1)* %out, float addrspace(1)* %aptr, float addrspace(1)* %bptr, float addrspace(1)* %cptr) nounwind { |
| 13 | %a = load float addrspace(1)* %aptr, align 4 |
| 14 | %b = load float addrspace(1)* %bptr, align 4 |
| 15 | %c = load float addrspace(1)* %cptr, align 4 |
| 16 | %f0 = call float @llvm.minnum.f32(float %a, float %b) nounwind readnone |
| 17 | %f1 = call float @llvm.minnum.f32(float %f0, float %c) nounwind readnone |
| 18 | store float %f1, float addrspace(1)* %out, align 4 |
| 19 | ret void |
| 20 | } |
| 21 | |
| 22 | ; Commute operand of second fmin |
| 23 | ; SI-LABEL: {{^}}test_fmin3_olt_1: |
| 24 | ; SI: buffer_load_dword [[REGA:v[0-9]+]] |
| 25 | ; SI: buffer_load_dword [[REGB:v[0-9]+]] |
| 26 | ; SI: buffer_load_dword [[REGC:v[0-9]+]] |
| 27 | ; SI: v_min3_f32 [[RESULT:v[0-9]+]], [[REGC]], [[REGB]], [[REGA]] |
| 28 | ; SI: buffer_store_dword [[RESULT]], |
| 29 | ; SI: s_endpgm |
| 30 | define void @test_fmin3_olt_1(float addrspace(1)* %out, float addrspace(1)* %aptr, float addrspace(1)* %bptr, float addrspace(1)* %cptr) nounwind { |
| 31 | %a = load float addrspace(1)* %aptr, align 4 |
| 32 | %b = load float addrspace(1)* %bptr, align 4 |
| 33 | %c = load float addrspace(1)* %cptr, align 4 |
| 34 | %f0 = call float @llvm.minnum.f32(float %a, float %b) nounwind readnone |
| 35 | %f1 = call float @llvm.minnum.f32(float %c, float %f0) nounwind readnone |
| 36 | store float %f1, float addrspace(1)* %out, align 4 |
| 37 | ret void |
| 38 | } |