You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.167
Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
parent
e19d552987
commit
b084638f15
@ -1,85 +0,0 @@
|
||||
; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
|
||||
|
||||
declare i32 @llvm.amdgcn.workitem.id.x() nounwind readnone
|
||||
|
||||
; Make sure the add and load are reduced to 32-bits even with the
|
||||
; bitcast to vector.
|
||||
; GCN-LABEL: {{^}}bitcast_int_to_vector_extract_0:
|
||||
; GCN-DAG: s_load_dword [[B:s[0-9]+]]
|
||||
; GCN-DAG: buffer_load_dword [[A:v[0-9]+]]
|
||||
; GCN: v_add_i32_e32 [[ADD:v[0-9]+]], vcc, [[B]], [[A]]
|
||||
; GCN: buffer_store_dword [[ADD]]
|
||||
define amdgpu_kernel void @bitcast_int_to_vector_extract_0(i32 addrspace(1)* %out, i64 addrspace(1)* %in, i64 %b) {
|
||||
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
||||
%gep = getelementptr i64, i64 addrspace(1)* %in, i32 %tid
|
||||
%a = load i64, i64 addrspace(1)* %gep
|
||||
%add = add i64 %a, %b
|
||||
%val.bc = bitcast i64 %add to <2 x i32>
|
||||
%extract = extractelement <2 x i32> %val.bc, i32 0
|
||||
store i32 %extract, i32 addrspace(1)* %out
|
||||
ret void
|
||||
}
|
||||
|
||||
; GCN-LABEL: {{^}}bitcast_fp_to_vector_extract_0:
|
||||
; GCN: buffer_load_dwordx2
|
||||
; GCN: v_add_f64
|
||||
; GCN: buffer_store_dword v
|
||||
define amdgpu_kernel void @bitcast_fp_to_vector_extract_0(i32 addrspace(1)* %out, double addrspace(1)* %in, double %b) {
|
||||
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
||||
%gep = getelementptr double, double addrspace(1)* %in, i32 %tid
|
||||
%a = load double, double addrspace(1)* %gep
|
||||
%add = fadd double %a, %b
|
||||
%val.bc = bitcast double %add to <2 x i32>
|
||||
%extract = extractelement <2 x i32> %val.bc, i32 0
|
||||
store i32 %extract, i32 addrspace(1)* %out
|
||||
ret void
|
||||
}
|
||||
|
||||
; GCN-LABEL: {{^}}bitcast_int_to_fpvector_extract_0:
|
||||
; GCN: buffer_load_dwordx2
|
||||
; GCN: v_add_i32
|
||||
; GCN: buffer_store_dword
|
||||
define amdgpu_kernel void @bitcast_int_to_fpvector_extract_0(float addrspace(1)* %out, i64 addrspace(1)* %in, i64 %b) {
|
||||
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
||||
%gep = getelementptr i64, i64 addrspace(1)* %in, i32 %tid
|
||||
%a = load i64, i64 addrspace(1)* %gep
|
||||
%add = add i64 %a, %b
|
||||
%val.bc = bitcast i64 %add to <2 x float>
|
||||
%extract = extractelement <2 x float> %val.bc, i32 0
|
||||
store float %extract, float addrspace(1)* %out
|
||||
ret void
|
||||
}
|
||||
|
||||
; GCN-LABEL: {{^}}no_extract_volatile_load_extract0:
|
||||
; GCN: buffer_load_dwordx4
|
||||
; GCN: buffer_store_dword v
|
||||
define amdgpu_kernel void @no_extract_volatile_load_extract0(i32 addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
|
||||
entry:
|
||||
%vec = load volatile <4 x i32>, <4 x i32> addrspace(1)* %in
|
||||
%elt0 = extractelement <4 x i32> %vec, i32 0
|
||||
store i32 %elt0, i32 addrspace(1)* %out
|
||||
ret void
|
||||
}
|
||||
|
||||
; GCN-LABEL: {{^}}no_extract_volatile_load_extract2:
|
||||
; GCN: buffer_load_dwordx4
|
||||
; GCN: buffer_store_dword v
|
||||
|
||||
define amdgpu_kernel void @no_extract_volatile_load_extract2(i32 addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
|
||||
entry:
|
||||
%vec = load volatile <4 x i32>, <4 x i32> addrspace(1)* %in
|
||||
%elt2 = extractelement <4 x i32> %vec, i32 2
|
||||
store i32 %elt2, i32 addrspace(1)* %out
|
||||
ret void
|
||||
}
|
||||
|
||||
; GCN-LABEL: {{^}}no_extract_volatile_load_dynextract:
|
||||
; GCN: buffer_load_dwordx4
|
||||
; GCN: buffer_store_dword v
|
||||
define amdgpu_kernel void @no_extract_volatile_load_dynextract(i32 addrspace(1)* %out, <4 x i32> addrspace(1)* %in, i32 %idx) {
|
||||
entry:
|
||||
%vec = load volatile <4 x i32>, <4 x i32> addrspace(1)* %in
|
||||
%eltN = extractelement <4 x i32> %vec, i32 %idx
|
||||
store i32 %eltN, i32 addrspace(1)* %out
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user