You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
610 B
26 lines
610 B
4 months ago
|
# RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=fiji -verify-machineinstrs -run-pass si-insert-waitcnts -o - %s | FileCheck %s
|
||
|
--- |
|
||
|
define float @entry_callee_wait(float %arg) #0 {
|
||
|
ret float %arg
|
||
|
}
|
||
|
|
||
|
attributes #0 = { nounwind }
|
||
|
...
|
||
|
---
|
||
|
# CHECK-LABEL: name: entry_callee_wait{{$}}
|
||
|
# CHECK: bb.0:
|
||
|
# CHECK-NEXT: S_WAITCNT 0{{$}}
|
||
|
# CHECK-NEXT: V_ADD_F32
|
||
|
# CHECK-NEXT: S_SETPC_B64
|
||
|
liveins:
|
||
|
- { reg: '$sgpr0_sgpr1' }
|
||
|
- { reg: '$vgpr0' }
|
||
|
|
||
|
name: entry_callee_wait
|
||
|
body: |
|
||
|
bb.0:
|
||
|
$vgpr0 = V_ADD_F32_e32 $vgpr0, $vgpr0, implicit $mode, implicit $exec
|
||
|
S_SETPC_B64 killed $sgpr0_sgpr1
|
||
|
|
||
|
...
|