mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
56077f5796
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218776 91177308-0d34-0410-b5e6-96231b3b80d8
41 lines
1.3 KiB
LLVM
41 lines
1.3 KiB
LLVM
; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
|
; RUN: llc -march=r600 -mcpu=redwood -verify-machineinstrs < %s | FileCheck -check-prefix=EG -check-prefix=FUNC %s
|
|
|
|
declare i32 @llvm.AMDGPU.bfm(i32, i32) nounwind readnone
|
|
|
|
; FUNC-LABEL: {{^}}bfm_arg_arg:
|
|
; SI: V_BFM
|
|
; EG: BFM_INT
|
|
define void @bfm_arg_arg(i32 addrspace(1)* %out, i32 %src0, i32 %src1) nounwind {
|
|
%bfm = call i32 @llvm.AMDGPU.bfm(i32 %src0, i32 %src1) nounwind readnone
|
|
store i32 %bfm, i32 addrspace(1)* %out, align 4
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}bfm_arg_imm:
|
|
; SI: V_BFM
|
|
; EG: BFM_INT
|
|
define void @bfm_arg_imm(i32 addrspace(1)* %out, i32 %src0) nounwind {
|
|
%bfm = call i32 @llvm.AMDGPU.bfm(i32 %src0, i32 123) nounwind readnone
|
|
store i32 %bfm, i32 addrspace(1)* %out, align 4
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}bfm_imm_arg:
|
|
; SI: V_BFM
|
|
; EG: BFM_INT
|
|
define void @bfm_imm_arg(i32 addrspace(1)* %out, i32 %src1) nounwind {
|
|
%bfm = call i32 @llvm.AMDGPU.bfm(i32 123, i32 %src1) nounwind readnone
|
|
store i32 %bfm, i32 addrspace(1)* %out, align 4
|
|
ret void
|
|
}
|
|
|
|
; FUNC-LABEL: {{^}}bfm_imm_imm:
|
|
; SI: V_BFM
|
|
; EG: BFM_INT
|
|
define void @bfm_imm_imm(i32 addrspace(1)* %out) nounwind {
|
|
%bfm = call i32 @llvm.AMDGPU.bfm(i32 123, i32 456) nounwind readnone
|
|
store i32 %bfm, i32 addrspace(1)* %out, align 4
|
|
ret void
|
|
}
|