R600/SI: Add a stub GCNTargetMachine
[oota-llvm.git] / test / CodeGen / R600 / uint_to_fp.ll
1 ; RUN: llc -march=amdgcn -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
3
4 ; FUNC-LABEL: {{^}}uint_to_fp_i32_to_f32:
5 ; R600-DAG: UINT_TO_FLT * T{{[0-9]+\.[XYZW]}}, KC0[2].Z
6
7 ; SI: v_cvt_f32_u32_e32
8 ; SI: s_endpgm
9 define void @uint_to_fp_i32_to_f32(float addrspace(1)* %out, i32 %in) {
10   %result = uitofp i32 %in to float
11   store float %result, float addrspace(1)* %out
12   ret void
13 }
14
15 ; FUNC-LABEL: {{^}}uint_to_fp_v2i32_to_v2f32:
16 ; R600-DAG: UINT_TO_FLT * T{{[0-9]+\.[XYZW]}}, KC0[2].W
17 ; R600-DAG: UINT_TO_FLT * T{{[0-9]+\.[XYZW]}}, KC0[3].X
18
19 ; SI: v_cvt_f32_u32_e32
20 ; SI: v_cvt_f32_u32_e32
21 ; SI: s_endpgm
22 define void @uint_to_fp_v2i32_to_v2f32(<2 x float> addrspace(1)* %out, <2 x i32> %in) {
23   %result = uitofp <2 x i32> %in to <2 x float>
24   store <2 x float> %result, <2 x float> addrspace(1)* %out
25   ret void
26 }
27
28 ; FUNC-LABEL: {{^}}uint_to_fp_v4i32_to_v4f32:
29 ; R600: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
30 ; R600: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
31 ; R600: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
32 ; R600: UINT_TO_FLT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
33
34 ; SI: v_cvt_f32_u32_e32
35 ; SI: v_cvt_f32_u32_e32
36 ; SI: v_cvt_f32_u32_e32
37 ; SI: v_cvt_f32_u32_e32
38 ; SI: s_endpgm
39 define void @uint_to_fp_v4i32_to_v4f32(<4 x float> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
40   %value = load <4 x i32> addrspace(1) * %in
41   %result = uitofp <4 x i32> %value to <4 x float>
42   store <4 x float> %result, <4 x float> addrspace(1)* %out
43   ret void
44 }
45
46 ; FUNC-LABEL: {{^}}uint_to_fp_i64_to_f32:
47 ; R600: UINT_TO_FLT
48 ; R600: UINT_TO_FLT
49 ; R600: MULADD_IEEE
50 ; SI: v_cvt_f32_u32_e32
51 ; SI: v_cvt_f32_u32_e32
52 ; SI: v_mad_f32
53 ; SI: s_endpgm
54 define void @uint_to_fp_i64_to_f32(float addrspace(1)* %out, i64 %in) {
55 entry:
56   %0 = uitofp i64 %in to float
57   store float %0, float addrspace(1)* %out
58   ret void
59 }
60
61 ; FUNC-LABEL: {{^}}uint_to_fp_i1_to_f32:
62 ; SI: v_cmp_eq_i32_e64 [[CMP:s\[[0-9]+:[0-9]\]]],
63 ; SI-NEXT: v_cndmask_b32_e64 [[RESULT:v[0-9]+]], 0.0, 1.0, [[CMP]]
64 ; SI: buffer_store_dword [[RESULT]],
65 ; SI: s_endpgm
66 define void @uint_to_fp_i1_to_f32(float addrspace(1)* %out, i32 %in) {
67   %cmp = icmp eq i32 %in, 0
68   %fp = uitofp i1 %cmp to float
69   store float %fp, float addrspace(1)* %out, align 4
70   ret void
71 }
72
73 ; FUNC-LABEL: {{^}}uint_to_fp_i1_to_f32_load:
74 ; SI: v_cndmask_b32_e64 [[RESULT:v[0-9]+]], 0, 1.0
75 ; SI: buffer_store_dword [[RESULT]],
76 ; SI: s_endpgm
77 define void @uint_to_fp_i1_to_f32_load(float addrspace(1)* %out, i1 %in) {
78   %fp = uitofp i1 %in to float
79   store float %fp, float addrspace(1)* %out, align 4
80   ret void
81 }