forked from OSchip/llvm-project
AMDGPU: Remove llvm.AMDGPU.flbit intrinsic
llvm-svn: 295754
This commit is contained in:
parent
e0bf7d02f0
commit
c2a44e4c3c
|
@ -17,9 +17,6 @@ let TargetPrefix = "AMDGPU", isTarget = 1 in {
|
|||
def int_AMDGPU_kill : Intrinsic<[], [llvm_float_ty], []>;
|
||||
def int_AMDGPU_kilp : Intrinsic<[], [], []>;
|
||||
|
||||
// Deprecated in favor of llvm.amdgcn.sffbh
|
||||
def int_AMDGPU_flbit_i32 : Intrinsic<[llvm_i32_ty], [llvm_i32_ty], [IntrNoMem]>;
|
||||
|
||||
// Deprecated in favor of expanded bit operations
|
||||
def int_AMDGPU_bfe_i32 : Intrinsic<[llvm_i32_ty], [llvm_i32_ty, llvm_i32_ty, llvm_i32_ty], [IntrNoMem]>;
|
||||
def int_AMDGPU_bfe_u32 : Intrinsic<[llvm_i32_ty], [llvm_i32_ty, llvm_i32_ty, llvm_i32_ty], [IntrNoMem]>;
|
||||
|
|
|
@ -2809,7 +2809,6 @@ SDValue SITargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
|
|||
return DAG.getNode(AMDGPUISD::FMUL_LEGACY, DL, VT,
|
||||
Op.getOperand(1), Op.getOperand(2));
|
||||
case Intrinsic::amdgcn_sffbh:
|
||||
case AMDGPUIntrinsic::AMDGPU_flbit_i32: // Legacy name.
|
||||
return DAG.getNode(AMDGPUISD::FFBH_I32, DL, VT, Op.getOperand(1));
|
||||
default:
|
||||
return AMDGPUTargetLowering::LowerOperation(Op, DAG);
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
|
||||
|
||||
declare i32 @llvm.amdgcn.sffbh.i32(i32) #1
|
||||
declare i32 @llvm.AMDGPU.flbit.i32(i32) #1
|
||||
|
||||
; FUNC-LABEL: {{^}}s_flbit:
|
||||
; GCN: s_load_dword [[VAL:s[0-9]+]],
|
||||
|
@ -26,29 +25,5 @@ define void @v_flbit(i32 addrspace(1)* noalias %out, i32 addrspace(1)* noalias %
|
|||
ret void
|
||||
}
|
||||
|
||||
; FUNC-LABEL: {{^}}legacy_s_flbit:
|
||||
; GCN: s_load_dword [[VAL:s[0-9]+]],
|
||||
; GCN: s_flbit_i32 [[SRESULT:s[0-9]+]], [[VAL]]
|
||||
; GCN: v_mov_b32_e32 [[VRESULT:v[0-9]+]], [[SRESULT]]
|
||||
; GCN: buffer_store_dword [[VRESULT]],
|
||||
; GCN: s_endpgm
|
||||
define void @legacy_s_flbit(i32 addrspace(1)* noalias %out, i32 %val) nounwind {
|
||||
%r = call i32 @llvm.AMDGPU.flbit.i32(i32 %val) nounwind readnone
|
||||
store i32 %r, i32 addrspace(1)* %out, align 4
|
||||
ret void
|
||||
}
|
||||
|
||||
; FUNC-LABEL: {{^}}legacy_v_flbit:
|
||||
; GCN: buffer_load_dword [[VAL:v[0-9]+]],
|
||||
; GCN: v_ffbh_i32_e32 [[RESULT:v[0-9]+]], [[VAL]]
|
||||
; GCN: buffer_store_dword [[RESULT]],
|
||||
; GCN: s_endpgm
|
||||
define void @legacy_v_flbit(i32 addrspace(1)* noalias %out, i32 addrspace(1)* noalias %valptr) nounwind {
|
||||
%val = load i32, i32 addrspace(1)* %valptr, align 4
|
||||
%r = call i32 @llvm.AMDGPU.flbit.i32(i32 %val) nounwind readnone
|
||||
store i32 %r, i32 addrspace(1)* %out, align 4
|
||||
ret void
|
||||
}
|
||||
|
||||
attributes #0 = { nounwind }
|
||||
attributes #1 = { nounwind readnone }
|
||||
|
|
Loading…
Reference in New Issue