Home | History | Annotate | Download | only in R600
      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.bfi(i32, i32, i32) nounwind readnone
      5 
      6 ; FUNC-LABEL: @bfi_arg_arg_arg
      7 ; SI: V_BFI_B32
      8 ; EG: BFI_INT
      9 define void @bfi_arg_arg_arg(i32 addrspace(1)* %out, i32 %src0, i32 %src1, i32 %src2) nounwind {
     10   %bfi = call i32 @llvm.AMDGPU.bfi(i32 %src0, i32 %src1, i32 %src1) nounwind readnone
     11   store i32 %bfi, i32 addrspace(1)* %out, align 4
     12   ret void
     13 }
     14 
     15 ; FUNC-LABEL: @bfi_arg_arg_imm
     16 ; SI: V_BFI_B32
     17 ; EG: BFI_INT
     18 define void @bfi_arg_arg_imm(i32 addrspace(1)* %out, i32 %src0, i32 %src1) nounwind {
     19   %bfi = call i32 @llvm.AMDGPU.bfi(i32 %src0, i32 %src1, i32 123) nounwind readnone
     20   store i32 %bfi, i32 addrspace(1)* %out, align 4
     21   ret void
     22 }
     23 
     24 ; FUNC-LABEL: @bfi_arg_imm_arg
     25 ; SI: V_BFI_B32
     26 ; EG: BFI_INT
     27 define void @bfi_arg_imm_arg(i32 addrspace(1)* %out, i32 %src0, i32 %src2) nounwind {
     28   %bfi = call i32 @llvm.AMDGPU.bfi(i32 %src0, i32 123, i32 %src2) nounwind readnone
     29   store i32 %bfi, i32 addrspace(1)* %out, align 4
     30   ret void
     31 }
     32 
     33 ; FUNC-LABEL: @bfi_imm_arg_arg
     34 ; SI: V_BFI_B32
     35 ; EG: BFI_INT
     36 define void @bfi_imm_arg_arg(i32 addrspace(1)* %out, i32 %src1, i32 %src2) nounwind {
     37   %bfi = call i32 @llvm.AMDGPU.bfi(i32 123, i32 %src1, i32 %src2) nounwind readnone
     38   store i32 %bfi, i32 addrspace(1)* %out, align 4
     39   ret void
     40 }
     41 
     42