
Recent upstream trends have moved away from explicitly using `-verify-machineinstrs`, as it's already covered by the expensive checks. This PR removes almost all `-verify-machineinstrs` from tests in `llvm/test/CodeGen/AMDGPU/*.ll`, leaving only those tests where its removal currently causes failures.
135 lines
3.8 KiB
LLVM
135 lines
3.8 KiB
LLVM
; RUN: llc -mtriple=amdgcn < %s | FileCheck -allow-deprecated-dag-overlap -check-prefix=GCN -check-prefix=SI %s
|
|
; RUN: llc -mtriple=amdgcn -mcpu=bonaire < %s | FileCheck -allow-deprecated-dag-overlap -check-prefix=GCN -check-prefix=CI %s
|
|
; RUN: llc -mtriple=amdgcn -mcpu=tonga -mattr=-flat-for-global < %s | FileCheck -allow-deprecated-dag-overlap -check-prefix=GCN -check-prefix=VI %s
|
|
|
|
; GCN-LABEL: {{^}}global_store_v3i64:
|
|
; GCN-DAG: buffer_store_dwordx2 v{{\[[0-9]+:[0-9]+\]}}, off, s{{\[[0-9]+:[0-9]+\]}}, 0 offset:16
|
|
; GCN-DAG: buffer_store_dwordx4 v{{\[[0-9]+:[0-9]+\]}}, off, s{{\[[0-9]+:[0-9]+\]}}, 0{{$}}
|
|
define amdgpu_kernel void @global_store_v3i64(ptr addrspace(1) %out, <3 x i64> %x) {
|
|
store <3 x i64> %x, ptr addrspace(1) %out, align 32
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}global_store_v3i64_unaligned:
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
; GCN: buffer_store_byte
|
|
define amdgpu_kernel void @global_store_v3i64_unaligned(ptr addrspace(1) %out, <3 x i64> %x) {
|
|
store <3 x i64> %x, ptr addrspace(1) %out, align 1
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}local_store_v3i64:
|
|
; SI: ds_write2_b64
|
|
; SI: ds_write_b64
|
|
|
|
; CI: ds_write_b64
|
|
; CI: ds_write_b128
|
|
|
|
; VI: ds_write_b64
|
|
; VI: ds_write_b128
|
|
define amdgpu_kernel void @local_store_v3i64(ptr addrspace(3) %out, <3 x i64> %x) {
|
|
store <3 x i64> %x, ptr addrspace(3) %out, align 32
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}local_store_v3i64_unaligned:
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
; GCN: ds_write_b8
|
|
define amdgpu_kernel void @local_store_v3i64_unaligned(ptr addrspace(3) %out, <3 x i64> %x) {
|
|
store <3 x i64> %x, ptr addrspace(3) %out, align 1
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}global_truncstore_v3i64_to_v3i32:
|
|
; SI-DAG: buffer_store_dwordx2
|
|
; SI-DAG: buffer_store_dword v
|
|
; VI-DAG: buffer_store_dwordx3
|
|
define amdgpu_kernel void @global_truncstore_v3i64_to_v3i32(ptr addrspace(1) %out, <3 x i64> %x) {
|
|
%trunc = trunc <3 x i64> %x to <3 x i32>
|
|
store <3 x i32> %trunc, ptr addrspace(1) %out
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}global_truncstore_v3i64_to_v3i16:
|
|
; GCN-DAG: buffer_store_short
|
|
; GCN-DAG: buffer_store_dword v
|
|
define amdgpu_kernel void @global_truncstore_v3i64_to_v3i16(ptr addrspace(1) %out, <3 x i64> %x) {
|
|
%trunc = trunc <3 x i64> %x to <3 x i16>
|
|
store <3 x i16> %trunc, ptr addrspace(1) %out
|
|
ret void
|
|
}
|
|
|
|
|
|
; GCN-LABEL: {{^}}global_truncstore_v3i64_to_v3i8:
|
|
; GCN-DAG: buffer_store_short
|
|
; GCN-DAG: buffer_store_byte v
|
|
define amdgpu_kernel void @global_truncstore_v3i64_to_v3i8(ptr addrspace(1) %out, <3 x i64> %x) {
|
|
%trunc = trunc <3 x i64> %x to <3 x i8>
|
|
store <3 x i8> %trunc, ptr addrspace(1) %out
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}global_truncstore_v3i64_to_v3i1:
|
|
; GCN-DAG: buffer_store_byte v
|
|
; GCN-DAG: buffer_store_byte v
|
|
; GCN-DAG: buffer_store_byte v
|
|
define amdgpu_kernel void @global_truncstore_v3i64_to_v3i1(ptr addrspace(1) %out, <3 x i64> %x) {
|
|
%trunc = trunc <3 x i64> %x to <3 x i1>
|
|
store <3 x i1> %trunc, ptr addrspace(1) %out
|
|
ret void
|
|
}
|