Matt Arsenault | b0df925 | 2014-07-10 03:22:20 +0000 | [diff] [blame] | 1 | ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s |
| 2 | |
Tim Northover | fd7e424 | 2014-07-17 10:51:23 +0000 | [diff] [blame^] | 3 | declare i16 @llvm.convert.to.fp16.f32(float) nounwind readnone |
Matt Arsenault | b0df925 | 2014-07-10 03:22:20 +0000 | [diff] [blame] | 4 | |
| 5 | ; SI-LABEL: @test_convert_fp16_to_fp32: |
| 6 | ; SI: BUFFER_LOAD_DWORD [[VAL:v[0-9]+]] |
| 7 | ; SI: V_CVT_F16_F32_e32 [[RESULT:v[0-9]+]], [[VAL]] |
| 8 | ; SI: BUFFER_STORE_SHORT [[RESULT]] |
| 9 | define void @test_convert_fp16_to_fp32(i16 addrspace(1)* noalias %out, float addrspace(1)* noalias %in) nounwind { |
| 10 | %val = load float addrspace(1)* %in, align 4 |
Tim Northover | fd7e424 | 2014-07-17 10:51:23 +0000 | [diff] [blame^] | 11 | %cvt = call i16 @llvm.convert.to.fp16.f32(float %val) nounwind readnone |
Matt Arsenault | b0df925 | 2014-07-10 03:22:20 +0000 | [diff] [blame] | 12 | store i16 %cvt, i16 addrspace(1)* %out, align 2 |
| 13 | ret void |
| 14 | } |