R600/SI: Add intrinsic for ldexp
[oota-llvm.git] / test / CodeGen / R600 / llvm.AMDGPU.ldexp.ll
1 ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
2
3 declare float @llvm.AMDGPU.ldexp.f32(float, i32) nounwind readnone
4 declare double @llvm.AMDGPU.ldexp.f64(double, i32) nounwind readnone
5
6 ; SI-LABEL: @test_ldexp_f32:
7 ; SI: V_LDEXP_F32
8 ; SI: S_ENDPGM
9 define void @test_ldexp_f32(float addrspace(1)* %out, float %a, i32 %b) nounwind {
10   %result = call float @llvm.AMDGPU.ldexp.f32(float %a, i32 %b) nounwind readnone
11   store float %result, float addrspace(1)* %out, align 4
12   ret void
13 }
14
15 ; SI-LABEL: @test_ldexp_f64:
16 ; SI: V_LDEXP_F64
17 ; SI: S_ENDPGM
18 define void @test_ldexp_f64(double addrspace(1)* %out, double %a, i32 %b) nounwind {
19   %result = call double @llvm.AMDGPU.ldexp.f64(double %a, i32 %b) nounwind readnone
20   store double %result, double addrspace(1)* %out, align 8
21   ret void
22 }