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
```
27 lines
873 B
YAML
27 lines
873 B
YAML
# RUN: llc -mtriple=amdgcn -mcpu=gfx900 -run-pass=si-insert-waitcnts -verify-machineinstrs %s -o - | FileCheck -check-prefix=GCN %s
|
|
|
|
# Check that the waitcnt propogates info in the case of a single basic block loop
|
|
|
|
# GCN-LABEL: waitcnt-loop-single-basic-block
|
|
# GCN: bb.0
|
|
# GCN: S_WAITCNT 3952
|
|
# GCN-NEXT: GLOBAL_STORE_DWORD
|
|
# GCN: S_WAITCNT 3953
|
|
# GCN-NEXT: GLOBAL_STORE_DWORD
|
|
|
|
...
|
|
name: waitcnt-loop-single-basic-block
|
|
body: |
|
|
bb.0:
|
|
S_BRANCH %bb.1
|
|
bb.1:
|
|
GLOBAL_STORE_DWORD $vgpr7_vgpr8, $vgpr11, 0, 0, implicit $exec
|
|
$vgpr21 = GLOBAL_LOAD_DWORD $vgpr4_vgpr5, 0, 0, implicit $exec
|
|
$vgpr10 = GLOBAL_LOAD_DWORD $vgpr10_vgpr11, 0, 0, implicit $exec
|
|
GLOBAL_STORE_DWORD $vgpr14_vgpr15, $vgpr21, 0, 0, implicit $exec
|
|
$vgpr11 = GLOBAL_LOAD_DWORD $vgpr11_vgpr12, 0, 0, implicit $exec
|
|
S_CBRANCH_SCC1 %bb.1, implicit $scc
|
|
bb.2:
|
|
S_ENDPGM 0
|
|
...
|