Matt Arsenault | 1c4571e | 2014-09-30 01:05:29 +0000 | [diff] [blame^] | 1 | ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s |
| 2 | ; RUN: llc -march=r600 -mcpu=redwood < %s | FileCheck -check-prefix=R600 -check-prefix=FUNC %s |
Tom Stellard | 5a6b0d8 | 2013-04-19 02:10:53 +0000 | [diff] [blame] | 3 | |
Matt Arsenault | 1c4571e | 2014-09-30 01:05:29 +0000 | [diff] [blame^] | 4 | |
| 5 | ; FUNC-LABEL: @s_sint_to_fp_i32_to_f32 |
| 6 | ; R600: INT_TO_FLT * T{{[0-9]+\.[XYZW]}}, KC0[2].Z |
| 7 | ; SI: V_CVT_F32_I32_e32 {{v[0-9]+}}, {{s[0-9]+$}} |
| 8 | define void @s_sint_to_fp_i32_to_f32(float addrspace(1)* %out, i32 %in) { |
| 9 | %result = sitofp i32 %in to float |
| 10 | store float %result, float addrspace(1)* %out |
| 11 | ret void |
| 12 | } |
| 13 | |
| 14 | ; FUNC-LABEL: @sint_to_fp_v2i32 |
| 15 | ; R600-DAG: INT_TO_FLT * T{{[0-9]+\.[XYZW]}}, KC0[2].W |
| 16 | ; R600-DAG: INT_TO_FLT * T{{[0-9]+\.[XYZW]}}, KC0[3].X |
| 17 | |
| 18 | ; SI: V_CVT_F32_I32_e32 |
| 19 | ; SI: V_CVT_F32_I32_e32 |
Tom Stellard | 0344cdf | 2013-08-01 15:23:42 +0000 | [diff] [blame] | 20 | define void @sint_to_fp_v2i32(<2 x float> addrspace(1)* %out, <2 x i32> %in) { |
| 21 | %result = sitofp <2 x i32> %in to <2 x float> |
| 22 | store <2 x float> %result, <2 x float> addrspace(1)* %out |
| 23 | ret void |
| 24 | } |
| 25 | |
Matt Arsenault | 1c4571e | 2014-09-30 01:05:29 +0000 | [diff] [blame^] | 26 | ; FUNC-LABEL: @sint_to_fp_v4i32 |
| 27 | ; R600: INT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} |
| 28 | ; R600: INT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} |
| 29 | ; R600: INT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} |
| 30 | ; R600: INT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}} |
| 31 | |
| 32 | ; SI: V_CVT_F32_I32_e32 |
| 33 | ; SI: V_CVT_F32_I32_e32 |
| 34 | ; SI: V_CVT_F32_I32_e32 |
| 35 | ; SI: V_CVT_F32_I32_e32 |
Tom Stellard | 5a6b0d8 | 2013-04-19 02:10:53 +0000 | [diff] [blame] | 36 | define void @sint_to_fp_v4i32(<4 x float> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) { |
| 37 | %value = load <4 x i32> addrspace(1) * %in |
| 38 | %result = sitofp <4 x i32> %value to <4 x float> |
| 39 | store <4 x float> %result, <4 x float> addrspace(1)* %out |
| 40 | ret void |
| 41 | } |
Matt Arsenault | aeca2fa | 2014-05-31 06:47:42 +0000 | [diff] [blame] | 42 | |
| 43 | ; FUNC-LABEL: @sint_to_fp_i1_f32: |
| 44 | ; SI: V_CMP_EQ_I32_e64 [[CMP:s\[[0-9]+:[0-9]\]]], |
Matt Arsenault | 1c4571e | 2014-09-30 01:05:29 +0000 | [diff] [blame^] | 45 | ; SI-NEXT: V_CNDMASK_B32_e64 [[RESULT:v[0-9]+]], 0, 1.0, [[CMP]] |
Matt Arsenault | aeca2fa | 2014-05-31 06:47:42 +0000 | [diff] [blame] | 46 | ; SI: BUFFER_STORE_DWORD [[RESULT]], |
| 47 | ; SI: S_ENDPGM |
| 48 | define void @sint_to_fp_i1_f32(float addrspace(1)* %out, i32 %in) { |
| 49 | %cmp = icmp eq i32 %in, 0 |
| 50 | %fp = uitofp i1 %cmp to float |
| 51 | store float %fp, float addrspace(1)* %out, align 4 |
| 52 | ret void |
| 53 | } |
| 54 | |
| 55 | ; FUNC-LABEL: @sint_to_fp_i1_f32_load: |
Matt Arsenault | 1c4571e | 2014-09-30 01:05:29 +0000 | [diff] [blame^] | 56 | ; SI: V_CNDMASK_B32_e64 [[RESULT:v[0-9]+]], 0, -1.0 |
Matt Arsenault | aeca2fa | 2014-05-31 06:47:42 +0000 | [diff] [blame] | 57 | ; SI: BUFFER_STORE_DWORD [[RESULT]], |
| 58 | ; SI: S_ENDPGM |
| 59 | define void @sint_to_fp_i1_f32_load(float addrspace(1)* %out, i1 %in) { |
| 60 | %fp = sitofp i1 %in to float |
| 61 | store float %fp, float addrspace(1)* %out, align 4 |
| 62 | ret void |
| 63 | } |