Files
linux-packaging-mono/external/llvm/test/CodeGen/AMDGPU/sendmsg-m0-hazard.mir
Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

50 lines
1.4 KiB
YAML

# RUN: llc -march=amdgcn -mcpu=gfx900 -verify-machineinstrs -run-pass post-RA-hazard-rec %s -o - | FileCheck -check-prefixes=GCN,GFX9 %s
# RUN: llc -march=amdgcn -mcpu=fiji -verify-machineinstrs -run-pass post-RA-hazard-rec %s -o - | FileCheck -check-prefixes=GCN,VI %s
# RUN: llc -march=amdgcn -mcpu=hawaii -verify-machineinstrs -run-pass post-RA-hazard-rec %s -o - | FileCheck -check-prefixes=GCN,CI %s
# RUN: llc -march=amdgcn -mcpu=tahiti -verify-machineinstrs -run-pass post-RA-hazard-rec %s -o - | FileCheck -check-prefixes=GCN,SI %s
---
name: m0_sendmsg
body: |
; GCN-LABEL: name: m0_sendmsg
; GCN: %m0 = S_MOV_B32 -1
; VI-NEXT: S_NOP 0
; GFX9-NEXT: S_NOP 0
; GCN-NEXT: S_SENDMSG 3, implicit %exec, implicit %m0
bb.0:
%m0 = S_MOV_B32 -1
S_SENDMSG 3, implicit %exec, implicit %m0
S_ENDPGM
...
---
name: m0_sendmsghalt
body: |
; GCN-LABEL: name: m0_sendmsghalt
; GCN: %m0 = S_MOV_B32 -1
; VI-NEXT: S_NOP 0
; GFX9-NEXT: S_NOP 0
; GCN-NEXT: S_SENDMSGHALT 3, implicit %exec, implicit %m0
bb.0:
%m0 = S_MOV_B32 -1
S_SENDMSGHALT 3, implicit %exec, implicit %m0
S_ENDPGM
...
---
name: m0_ttracedata
body: |
; GCN-LABEL: name: m0_ttracedata
; GCN: %m0 = S_MOV_B32 -1
; VI-NEXT: S_NOP 0
; GFX9-NEXT: S_NOP 0
; GCN-NEXT: S_TTRACEDATA implicit %m0
bb.0:
%m0 = S_MOV_B32 -1
S_TTRACEDATA implicit %m0
S_ENDPGM
...