Files
clang-p2996/llvm/test/CodeGen/AMDGPU/post-ra-sched-kill-bundle-use-inst.mir
Stanislav Mekhanoshin 3bffb1cd0e [AMDGPU] Use single cache policy operand
Replace individual operands GLC, SLC, and DLC with a single cache_policy
bitmask operand. This will reduce the number of operands in MIR and I hope
the amount of code. These operands are mostly 0 anyway.

Additional advantage that parser will accept these flags in any order unlike
now.

Differential Revision: https://reviews.llvm.org/D96469
2021-03-15 13:00:59 -07:00

43 lines
1.6 KiB
YAML

# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
# RUN: llc -mtriple=amdgcn-mesa-mesa3d -mcpu=gfx900 -run-pass=post-RA-sched -verify-machineinstrs -o - %s | FileCheck %s
# The scheduler was not inspecting the first instruction in the bundle
# when adding kill flags, so it would incorrectly mark the first use
# of $vgpr0 as killed.
---
name: kill_flag_use_first_bundle_inst
tracksRegLiveness: true
machineFunctionInfo:
isEntryFunction: true
body: |
bb.0:
liveins: $sgpr4_sgpr5, $sgpr7
; CHECK-LABEL: name: kill_flag_use_first_bundle_inst
; CHECK: liveins: $sgpr4_sgpr5, $sgpr7
; CHECK: renamable $sgpr0 = S_LOAD_DWORD_IMM killed renamable $sgpr4_sgpr5, 0, 0
; CHECK: $m0 = S_MOV_B32 -1
; CHECK: $vgpr0 = V_MOV_B32_e32 killed $sgpr0, implicit $exec, implicit $exec
; CHECK: BUNDLE implicit $vgpr0, implicit $m0, implicit $exec {
; CHECK: DS_GWS_INIT $vgpr0, 8, implicit $m0, implicit $exec
; CHECK: S_WAITCNT 0
; CHECK: }
; CHECK: BUNDLE implicit killed $vgpr0, implicit $m0, implicit $exec {
; CHECK: DS_GWS_BARRIER killed $vgpr0, 8, implicit $m0, implicit $exec
; CHECK: S_WAITCNT 0
; CHECK: }
renamable $sgpr0 = S_LOAD_DWORD_IMM killed renamable $sgpr4_sgpr5, 0, 0
$m0 = S_MOV_B32 -1
$vgpr0 = V_MOV_B32_e32 $sgpr0, implicit $exec, implicit $exec
BUNDLE implicit $vgpr0, implicit $m0, implicit $exec {
DS_GWS_INIT $vgpr0, 8, implicit $m0, implicit $exec
S_WAITCNT 0
}
BUNDLE implicit killed $vgpr0, implicit $m0, implicit $exec {
DS_GWS_BARRIER $vgpr0, 8, implicit $m0, implicit $exec
S_WAITCNT 0
}
...