blob: 0d478638219f7bb05a8b7ba4a91d0789312855c3 [file] [log] [blame]
Matt Arsenault4c537172014-03-31 18:21:18 +00001; 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
4declare i32 @llvm.AMDGPU.bfe.u32(i32, i32, i32) nounwind readnone
5
6; FUNC-LABEL: @bfe_u32_arg_arg_arg
7; SI: V_BFE_U32
8; EG: BFE_UINT
9define void @bfe_u32_arg_arg_arg(i32 addrspace(1)* %out, i32 %src0, i32 %src1, i32 %src2) nounwind {
10 %bfe_u32 = call i32 @llvm.AMDGPU.bfe.u32(i32 %src0, i32 %src1, i32 %src1) nounwind readnone
11 store i32 %bfe_u32, i32 addrspace(1)* %out, align 4
12 ret void
13}
14
15; FUNC-LABEL: @bfe_u32_arg_arg_imm
16; SI: V_BFE_U32
17; EG: BFE_UINT
18define void @bfe_u32_arg_arg_imm(i32 addrspace(1)* %out, i32 %src0, i32 %src1) nounwind {
19 %bfe_u32 = call i32 @llvm.AMDGPU.bfe.u32(i32 %src0, i32 %src1, i32 123) nounwind readnone
20 store i32 %bfe_u32, i32 addrspace(1)* %out, align 4
21 ret void
22}
23
24; FUNC-LABEL: @bfe_u32_arg_imm_arg
25; SI: V_BFE_U32
26; EG: BFE_UINT
27define void @bfe_u32_arg_imm_arg(i32 addrspace(1)* %out, i32 %src0, i32 %src2) nounwind {
28 %bfe_u32 = call i32 @llvm.AMDGPU.bfe.u32(i32 %src0, i32 123, i32 %src2) nounwind readnone
29 store i32 %bfe_u32, i32 addrspace(1)* %out, align 4
30 ret void
31}
32
33; FUNC-LABEL: @bfe_u32_imm_arg_arg
34; SI: V_BFE_U32
35; EG: BFE_UINT
36define void @bfe_u32_imm_arg_arg(i32 addrspace(1)* %out, i32 %src1, i32 %src2) nounwind {
37 %bfe_u32 = call i32 @llvm.AMDGPU.bfe.u32(i32 123, i32 %src1, i32 %src2) nounwind readnone
38 store i32 %bfe_u32, i32 addrspace(1)* %out, align 4
39 ret void
40}