Similar to 806761a762.
For IR files without a target triple, -mtriple= specifies the full
target triple while -march= merely sets the architecture part of the
default target triple, leaving a target triple which may not make sense,
e.g. amdgpu-apple-darwin.
Therefore, -march= is error-prone and not recommended for tests without
a target triple. The issue has been benign as we recognize
$unknown-apple-darwin as ELF instead of rejecting it outrightly.
This patch changes AMDGPU tests to not rely on the default
OS/environment components. Tests that need fixes are not changed:
```
LLVM :: CodeGen/AMDGPU/fabs.f64.ll
LLVM :: CodeGen/AMDGPU/fabs.ll
LLVM :: CodeGen/AMDGPU/floor.ll
LLVM :: CodeGen/AMDGPU/fneg-fabs.f64.ll
LLVM :: CodeGen/AMDGPU/fneg-fabs.ll
LLVM :: CodeGen/AMDGPU/r600-infinite-loop-bug-while-reorganizing-vector.ll
LLVM :: CodeGen/AMDGPU/schedule-if-2.ll
```
211 lines
6.2 KiB
LLVM
211 lines
6.2 KiB
LLVM
; RUN: llc -mtriple=amdgcn -mcpu=gfx90a -verify-machineinstrs < %s | FileCheck --check-prefixes=GCN,GFX90A %s
|
|
; RUN: llc -mtriple=amdgcn -mcpu=gfx908 -verify-machineinstrs < %s | FileCheck --check-prefixes=GCN,GFX908 %s
|
|
|
|
; GCN-LABEL: {{^}}func_empty:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GCN: s_setpc_b64
|
|
define void @func_empty() #0 {
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}func_areg_4:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GCN: use agpr3
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GCN: s_setpc_b64
|
|
define void @func_areg_4() #0 {
|
|
call void asm sideeffect "; use agpr3", "~{a3}" ()
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}func_areg_32:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GCN: use agpr31
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GCN: s_setpc_b64
|
|
define void @func_areg_32() #0 {
|
|
call void asm sideeffect "; use agpr31", "~{a31}" ()
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}func_areg_33:
|
|
; GCN-NOT: a32
|
|
; GFX90A: v_accvgpr_read_b32 v0, a32 ; Reload Reuse
|
|
; GCN-NOT: a32
|
|
; GCN: use agpr32
|
|
; GCN-NOT: a32
|
|
; GFX90A: v_accvgpr_write_b32 a32, v0 ; Reload Reuse
|
|
; GCN-NOT: a32
|
|
; GCN: s_setpc_b64
|
|
define void @func_areg_33() #0 {
|
|
call void asm sideeffect "; use agpr32", "~{a32}" ()
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}func_areg_64:
|
|
; GFX908-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GFX90A: v_accvgpr_read_b32 v0, a63 ; Reload Reuse
|
|
; GCN: use agpr63
|
|
; GFX90A: v_accvgpr_write_b32 a63, v0 ; Reload Reuse
|
|
; GCN-NOT: v_accvgpr
|
|
; GCN: s_setpc_b64
|
|
define void @func_areg_64() #0 {
|
|
call void asm sideeffect "; use agpr63", "~{a63}" ()
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}func_areg_31_63:
|
|
; GFX908-NOT: buffer_
|
|
; GFX908-NOT: v_accvgpr
|
|
; GFX908-NOT: buffer
|
|
; GFX90A: v_accvgpr_read_b32 v0, a63 ; Reload Reuse
|
|
; GCN: use agpr31, agpr63
|
|
; GFX90A: v_accvgpr_write_b32 a63, v0 ; Reload Reuse
|
|
; GFX908-NOT: v_accvgpr
|
|
; GFX908-NOT: buffer
|
|
; GCN: s_setpc_b64
|
|
define void @func_areg_31_63() #0 {
|
|
call void asm sideeffect "; use agpr31, agpr63", "~{a31},~{a63}" ()
|
|
ret void
|
|
}
|
|
|
|
declare void @func_unknown() #0
|
|
|
|
; GCN-LABEL: {{^}}test_call_empty:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GCN: def a[0:31]
|
|
; GFX908-COUNT-8: v_accvgpr_read_b32
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GCN-NOT: buffer_
|
|
; GCN: s_swappc_b64
|
|
; GCN-NOT: buffer_
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GFX908-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], v[{{[0-9:]+}}]
|
|
; GFX90A-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], a[{{[0-9:]+}}]
|
|
; GCN: s_endpgm
|
|
define amdgpu_kernel void @test_call_empty() #0 {
|
|
bb:
|
|
%reg = call <32 x float> asm sideeffect "; def $0", "=a"()
|
|
call void @func_empty()
|
|
store volatile <32 x float> %reg, ptr addrspace(1) undef
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}test_call_areg4:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GFX908: def a[0:31]
|
|
; GFX90A: def a[4:35]
|
|
; GFX908-COUNT-8: v_accvgpr_read_b32
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GCN-NOT: buffer_
|
|
; GCN: s_swappc_b64
|
|
; GCN-NOT: buffer_
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GFX908-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], v[{{[0-9:]+}}]
|
|
; GFX90A-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], a[{{[0-9:]+}}]
|
|
; GCN: s_endpgm
|
|
define amdgpu_kernel void @test_call_areg4() #0 {
|
|
bb:
|
|
%reg = call <32 x float> asm sideeffect "; def $0", "=a"()
|
|
call void @func_areg_4()
|
|
store volatile <32 x float> %reg, ptr addrspace(1) undef
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}test_call_areg32:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GFX908: def a[0:31]
|
|
; GFX90A: def a[32:63]
|
|
; GFX908-COUNT-8: v_accvgpr_read_b32
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GCN-NOT: buffer_
|
|
; GCN: s_swappc_b64
|
|
; GCN-NOT: buffer_
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GFX908-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], v[{{[0-9:]+}}]
|
|
; GFX90A-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], a[{{[0-9:]+}}]
|
|
; GCN: s_endpgm
|
|
define amdgpu_kernel void @test_call_areg32() #0 {
|
|
bb:
|
|
%reg = call <32 x float> asm sideeffect "; def $0", "=a"()
|
|
call void @func_areg_32()
|
|
store volatile <32 x float> %reg, ptr addrspace(1) undef
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}test_call_areg64:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GCN: def a[0:31]
|
|
; GFX908-COUNT-8: v_accvgpr_read_b32
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GCN-NOT: buffer_
|
|
; GCN: s_swappc_b64
|
|
; GCN-NOT: buffer_
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GFX908-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], v[{{[0-9:]+}}]
|
|
; GFX90A-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], a[{{[0-9:]+}}]
|
|
; GCN: s_endpgm
|
|
define amdgpu_kernel void @test_call_areg64() #0 {
|
|
bb:
|
|
%reg = call <32 x float> asm sideeffect "; def $0", "=a"()
|
|
call void @func_areg_64()
|
|
store volatile <32 x float> %reg, ptr addrspace(1) undef
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}test_call_areg31_63:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GFX908: def a[0:31]
|
|
; GFX90A: def a[32:63]
|
|
; GFX908-COUNT-8: v_accvgpr_read_b32
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GCN-NOT: buffer_
|
|
; GCN: s_swappc_b64
|
|
; GCN-NOT: buffer_
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GFX908-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], v[{{[0-9:]+}}]
|
|
; GFX90A-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], a[{{[0-9:]+}}]
|
|
; GCN: s_endpgm
|
|
define amdgpu_kernel void @test_call_areg31_63() #0 {
|
|
bb:
|
|
%reg = call <32 x float> asm sideeffect "; def $0", "=a"()
|
|
call void @func_areg_31_63()
|
|
store volatile <32 x float> %reg, ptr addrspace(1) undef
|
|
ret void
|
|
}
|
|
|
|
; GCN-LABEL: {{^}}test_call_unknown:
|
|
; GCN-NOT: buffer_
|
|
; GCN-NOT: v_accvgpr
|
|
; GFX908: def a[0:31]
|
|
; GFX90A: def a[32:63]
|
|
; GFX908-COUNT-8: v_accvgpr_read_b32
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GCN-NOT: buffer_
|
|
; GCN: s_swappc_b64
|
|
; GCN-NOT: buffer_
|
|
; GFX90A-NOT: v_accvgpr
|
|
; GFX908-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], v[{{[0-9:]+}}]
|
|
; GFX90A-COUNT-8: global_store_dwordx4 v[{{[0-9:]+}}], a[{{[0-9:]+}}]
|
|
; GCN: s_endpgm
|
|
define amdgpu_kernel void @test_call_unknown() #0 {
|
|
bb:
|
|
%reg = call <32 x float> asm sideeffect "; def $0", "=a"()
|
|
call void @func_unknown()
|
|
store volatile <32 x float> %reg, ptr addrspace(1) undef
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { nounwind noinline "amdgpu-flat-work-group-size"="1,512" }
|