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
```
56 lines
1.9 KiB
YAML
56 lines
1.9 KiB
YAML
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
|
|
# RUN: llc -mtriple=amdgcn -verify-machineinstrs -run-pass=si-optimize-exec-masking-pre-ra %s -o - | FileCheck -check-prefix=GXN %s
|
|
|
|
# FIXME: This is a miscompile, and the s_or_b64s need to be preserved.
|
|
|
|
---
|
|
name: invalid_end_cf_fold_0
|
|
tracksRegLiveness: true
|
|
liveins:
|
|
- { reg: '$vgpr0', virtual-reg: '%0' }
|
|
- { reg: '$sgpr0_sgpr1', virtual-reg: '%1' }
|
|
machineFunctionInfo:
|
|
isEntryFunction: true
|
|
body: |
|
|
; GXN-LABEL: name: invalid_end_cf_fold_0
|
|
; GXN: bb.0:
|
|
; GXN-NEXT: successors: %bb.1(0x80000000)
|
|
; GXN-NEXT: liveins: $vgpr0, $sgpr0_sgpr1
|
|
; GXN-NEXT: {{ $}}
|
|
; GXN-NEXT: [[COPY:%[0-9]+]]:sgpr_64 = COPY $sgpr0_sgpr1
|
|
; GXN-NEXT: [[COPY1:%[0-9]+]]:sgpr_64 = COPY $exec
|
|
; GXN-NEXT: $exec = S_OR_B64 $exec, [[COPY]], implicit-def $scc
|
|
; GXN-NEXT: [[COPY2:%[0-9]+]]:sgpr_64 = COPY $exec
|
|
; GXN-NEXT: {{ $}}
|
|
; GXN-NEXT: bb.1:
|
|
; GXN-NEXT: successors: %bb.2(0x80000000)
|
|
; GXN-NEXT: {{ $}}
|
|
; GXN-NEXT: $exec = S_OR_B64 $exec, [[COPY1]], implicit-def $scc
|
|
; GXN-NEXT: {{ $}}
|
|
; GXN-NEXT: bb.2:
|
|
; GXN-NEXT: $exec = S_OR_B64 $exec, [[COPY2]], implicit-def $scc
|
|
; GXN-NEXT: [[DEF:%[0-9]+]]:vgpr_32 = IMPLICIT_DEF
|
|
; GXN-NEXT: [[DEF1:%[0-9]+]]:vgpr_32 = IMPLICIT_DEF
|
|
; GXN-NEXT: DS_WRITE_B32 [[DEF]], [[DEF1]], 0, 0, implicit $m0, implicit $exec :: (store (s32), addrspace 3)
|
|
; GXN-NEXT: S_ENDPGM 0
|
|
bb.0:
|
|
liveins: $vgpr0, $sgpr0_sgpr1
|
|
|
|
%0:sgpr_64 = COPY $sgpr0_sgpr1
|
|
%1:sgpr_64 = COPY $exec
|
|
$exec = S_OR_B64 $exec, %0, implicit-def $scc
|
|
%2:sgpr_64 = COPY $exec
|
|
|
|
bb.1:
|
|
$exec = S_OR_B64 $exec, %1, implicit-def $scc
|
|
|
|
bb.2:
|
|
$exec = S_OR_B64 $exec, %2, implicit-def $scc
|
|
|
|
%5:vgpr_32 = IMPLICIT_DEF
|
|
%6:vgpr_32 = IMPLICIT_DEF
|
|
DS_WRITE_B32 %5, %6, 0, 0, implicit $m0, implicit $exec :: (store (s32), addrspace 3)
|
|
S_ENDPGM 0
|
|
|
|
...
|