R600: Add BFE, BFI, and BFM intrinsics to help with writing tests.
[oota-llvm.git] / test / CodeGen / R600 / llvm.AMDGPU.bfe.i32.ll
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 -verify-machineinstrs < %s | FileCheck -check-prefix=EG -check-prefix=FUNC %s
3
4 declare i32 @llvm.AMDGPU.bfe.i32(i32, i32, i32) nounwind readnone
5
6 ; FUNC-LABEL: @bfe_i32_arg_arg_arg
7 ; SI: V_BFE_I32
8 ; EG: BFE_INT
9 define void @bfe_i32_arg_arg_arg(i32 addrspace(1)* %out, i32 %src0, i32 %src1, i32 %src2) nounwind {
10   %bfe_i32 = call i32 @llvm.AMDGPU.bfe.i32(i32 %src0, i32 %src1, i32 %src1) nounwind readnone
11   store i32 %bfe_i32, i32 addrspace(1)* %out, align 4
12   ret void
13 }
14
15 ; FUNC-LABEL: @bfe_i32_arg_arg_imm
16 ; SI: V_BFE_I32
17 ; EG: BFE_INT
18 define void @bfe_i32_arg_arg_imm(i32 addrspace(1)* %out, i32 %src0, i32 %src1) nounwind {
19   %bfe_i32 = call i32 @llvm.AMDGPU.bfe.i32(i32 %src0, i32 %src1, i32 123) nounwind readnone
20   store i32 %bfe_i32, i32 addrspace(1)* %out, align 4
21   ret void
22 }
23
24 ; FUNC-LABEL: @bfe_i32_arg_imm_arg
25 ; SI: V_BFE_I32
26 ; EG: BFE_INT
27 define void @bfe_i32_arg_imm_arg(i32 addrspace(1)* %out, i32 %src0, i32 %src2) nounwind {
28   %bfe_i32 = call i32 @llvm.AMDGPU.bfe.i32(i32 %src0, i32 123, i32 %src2) nounwind readnone
29   store i32 %bfe_i32, i32 addrspace(1)* %out, align 4
30   ret void
31 }
32
33 ; FUNC-LABEL: @bfe_i32_imm_arg_arg
34 ; SI: V_BFE_I32
35 ; EG: BFE_INT
36 define void @bfe_i32_imm_arg_arg(i32 addrspace(1)* %out, i32 %src1, i32 %src2) nounwind {
37   %bfe_i32 = call i32 @llvm.AMDGPU.bfe.i32(i32 123, i32 %src1, i32 %src2) nounwind readnone
38   store i32 %bfe_i32, i32 addrspace(1)* %out, align 4
39   ret void
40 }