R600/SI: Expand vector fp <-> int conversions
[oota-llvm.git] / test / CodeGen / R600 / uint_to_fp.ll
1 ; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s --check-prefix=R600-CHECK
2 ; RUN: llc < %s -march=r600 -mcpu=SI | FileCheck %s --check-prefix=SI-CHECK
3
4 ; R600-CHECK: @uint_to_fp_v4i32
5 ; R600-CHECK: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
6 ; R600-CHECK: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
7 ; R600-CHECK: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
8 ; R600-CHECK: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
9 ; SI-CHECK: @uint_to_fp_v4i32
10 ; SI-CHECK: V_CVT_F32_U32_e32
11 ; SI-CHECK: V_CVT_F32_U32_e32
12 ; SI-CHECK: V_CVT_F32_U32_e32
13 ; SI-CHECK: V_CVT_F32_U32_e32
14 define void @uint_to_fp_v4i32(<4 x float> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
15   %value = load <4 x i32> addrspace(1) * %in
16   %result = uitofp <4 x i32> %value to <4 x float>
17   store <4 x float> %result, <4 x float> addrspace(1)* %out
18   ret void
19 }