2018-06-04 18:51:59 +02:00
|
|
|
# RUN: llc -march=amdgcn -mcpu=gfx803 -run-pass si-insert-waitcnts %s -o - | FileCheck -check-prefix=GFX89 %s
|
|
|
|
# RUN: llc -march=amdgcn -mcpu=gfx900 -run-pass si-insert-waitcnts %s -o - | FileCheck -check-prefix=GFX89 %s
|
2016-10-29 01:53:48 +02:00
|
|
|
|
|
|
|
--- |
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @flat_zero_waitcnt(i32 addrspace(1)* %global4,
|
2016-10-29 01:53:48 +02:00
|
|
|
<4 x i32> addrspace(1)* %global16,
|
2018-02-02 17:07:16 +01:00
|
|
|
i32* %flat4,
|
|
|
|
<4 x i32>* %flat16) {
|
2016-10-29 01:53:48 +02:00
|
|
|
ret void
|
|
|
|
}
|
2017-03-08 02:06:58 +01:00
|
|
|
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @single_fallthrough_successor_no_end_block_wait() {
|
2017-03-08 02:06:58 +01:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @single_branch_successor_not_next_block() {
|
2017-03-08 02:06:58 +01:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-10-29 01:53:48 +02:00
|
|
|
...
|
|
|
|
---
|
|
|
|
|
|
|
|
# CHECK-LABEL: name: flat_zero_waitcnt
|
|
|
|
|
|
|
|
# CHECK-LABEL: bb.0:
|
|
|
|
# CHECK: FLAT_LOAD_DWORD
|
|
|
|
# CHECK: FLAT_LOAD_DWORDX4
|
|
|
|
# Global loads will return in order so we should:
|
2018-05-07 16:43:28 +02:00
|
|
|
# s_waitcnt vmcnt(1) lgkmcnt(1)
|
|
|
|
# CHECK-NEXT: S_WAITCNT 369
|
2016-10-29 01:53:48 +02:00
|
|
|
|
|
|
|
# CHECK-LABEL: bb.1:
|
|
|
|
# CHECK: FLAT_LOAD_DWORD
|
2018-06-04 18:51:59 +02:00
|
|
|
# GFX89: S_WAITCNT 112
|
2016-10-29 01:53:48 +02:00
|
|
|
# CHECK: FLAT_LOAD_DWORDX4
|
|
|
|
|
|
|
|
# CHECK-LABEL: bb.2:
|
|
|
|
# CHECK: FLAT_LOAD_DWORD
|
2018-06-04 18:51:59 +02:00
|
|
|
# GFX89: S_WAITCNT 112
|
2016-10-29 01:53:48 +02:00
|
|
|
# CHECK: FLAT_LOAD_DWORDX4
|
2017-03-08 02:06:58 +01:00
|
|
|
|
2016-10-29 01:53:48 +02:00
|
|
|
name: flat_zero_waitcnt
|
|
|
|
|
|
|
|
body: |
|
|
|
|
bb.0:
|
|
|
|
successors: %bb.1
|
2018-01-31 23:04:26 +01:00
|
|
|
$vgpr0 = FLAT_LOAD_DWORD $vgpr1_vgpr2, 0, 0, 0, implicit $exec, implicit $flat_scr :: (load 4 from %ir.global4)
|
|
|
|
$vgpr3_vgpr4_vgpr5_vgpr6 = FLAT_LOAD_DWORDX4 $vgpr7_vgpr8, 0, 0, 0, implicit $exec, implicit $flat_scr :: (load 16 from %ir.global16)
|
|
|
|
$vgpr0 = V_MOV_B32_e32 $vgpr1, implicit $exec
|
2016-10-29 01:53:48 +02:00
|
|
|
S_BRANCH %bb.1
|
|
|
|
|
|
|
|
bb.1:
|
|
|
|
successors: %bb.2
|
2018-01-31 23:04:26 +01:00
|
|
|
$vgpr0 = FLAT_LOAD_DWORD $vgpr1_vgpr2, 0, 0, 0, implicit $exec, implicit $flat_scr
|
|
|
|
$vgpr3_vgpr4_vgpr5_vgpr6 = FLAT_LOAD_DWORDX4 $vgpr7_vgpr8, 0, 0, 0, implicit $exec, implicit $flat_scr :: (load 16 from %ir.global16)
|
|
|
|
$vgpr0 = V_MOV_B32_e32 $vgpr1, implicit $exec
|
2016-10-29 01:53:48 +02:00
|
|
|
S_BRANCH %bb.2
|
|
|
|
|
|
|
|
bb.2:
|
2018-01-31 23:04:26 +01:00
|
|
|
$vgpr0 = FLAT_LOAD_DWORD $vgpr1_vgpr2, 0, 0, 0, implicit $exec, implicit $flat_scr :: (load 4 from %ir.flat4)
|
|
|
|
$vgpr3_vgpr4_vgpr5_vgpr6 = FLAT_LOAD_DWORDX4 $vgpr7_vgpr8, 0, 0, 0, implicit $exec, implicit $flat_scr :: (load 16 from %ir.flat16)
|
|
|
|
$vgpr0 = V_MOV_B32_e32 $vgpr1, implicit $exec
|
2016-10-29 01:53:48 +02:00
|
|
|
S_ENDPGM
|
|
|
|
...
|
2017-03-08 02:06:58 +01:00
|
|
|
---
|
|
|
|
# There is only a single fallthrough successor block, so there's no
|
|
|
|
# need to wait immediately.
|
|
|
|
|
|
|
|
# CHECK-LABEL: name: single_fallthrough_successor_no_end_block_wait
|
2018-01-31 23:04:26 +01:00
|
|
|
# CHECK: $vgpr0 = FLAT_LOAD_DWORD $vgpr1_vgpr2
|
2017-03-08 02:06:58 +01:00
|
|
|
# CHECK-NOT: S_WAITCNT
|
|
|
|
|
|
|
|
# CHECK: bb.1:
|
|
|
|
# CHECK-NEXT: V_LSHLREV_B64
|
|
|
|
# CHECK-NEXT: S_WAITCNT 112
|
|
|
|
# CHECK-NEXT: FLAT_STORE_DWORD
|
|
|
|
name: single_fallthrough_successor_no_end_block_wait
|
|
|
|
|
|
|
|
body: |
|
|
|
|
bb.0:
|
|
|
|
successors: %bb.1
|
2018-01-31 23:04:26 +01:00
|
|
|
$vgpr0 = FLAT_LOAD_DWORD $vgpr1_vgpr2, 0, 0, 0, implicit $exec, implicit $flat_scr
|
2017-03-08 02:06:58 +01:00
|
|
|
|
|
|
|
bb.1:
|
2018-01-31 23:04:26 +01:00
|
|
|
$vgpr3_vgpr4 = V_LSHLREV_B64 4, $vgpr7_vgpr8, implicit $exec
|
|
|
|
FLAT_STORE_DWORD $vgpr3_vgpr4, $vgpr0, 0, 0, 0, implicit $exec, implicit $flat_scr
|
2017-03-08 02:06:58 +01:00
|
|
|
S_ENDPGM
|
|
|
|
...
|
|
|
|
---
|
|
|
|
# The block has a single predecessor with a single successor, but it
|
|
|
|
# is not the next block so it's non-obvious that the wait is not needed.
|
|
|
|
|
|
|
|
|
|
|
|
# CHECK-LABEL: name: single_branch_successor_not_next_block
|
|
|
|
|
|
|
|
# CHECK: bb.1
|
|
|
|
# CHECK-NEXT: FLAT_STORE_DWORD
|
|
|
|
# CHECK-NEXT: S_ENDPGM
|
|
|
|
|
|
|
|
# CHECK: bb.2:
|
|
|
|
# CHECK-NEXT: V_LSHLREV_B64
|
2018-05-07 16:43:28 +02:00
|
|
|
# CHECK-NEXT: S_WAITCNT 112
|
2017-03-08 02:06:58 +01:00
|
|
|
# CHECK-NEXT: FLAT_STORE_DWORD
|
|
|
|
name: single_branch_successor_not_next_block
|
|
|
|
|
|
|
|
body: |
|
|
|
|
bb.0:
|
|
|
|
successors: %bb.2
|
2018-01-31 23:04:26 +01:00
|
|
|
$vgpr0 = FLAT_LOAD_DWORD $vgpr1_vgpr2, 0, 0, 0, implicit $exec, implicit $flat_scr
|
2017-03-08 02:06:58 +01:00
|
|
|
S_BRANCH %bb.2
|
|
|
|
|
|
|
|
bb.1:
|
2018-01-31 23:04:26 +01:00
|
|
|
FLAT_STORE_DWORD $vgpr8_vgpr9, $vgpr10, 0, 0, 0, implicit $exec, implicit $flat_scr
|
2017-03-08 02:06:58 +01:00
|
|
|
S_ENDPGM
|
|
|
|
|
|
|
|
bb.2:
|
2018-01-31 23:04:26 +01:00
|
|
|
$vgpr3_vgpr4 = V_LSHLREV_B64 4, $vgpr7_vgpr8, implicit $exec
|
|
|
|
FLAT_STORE_DWORD $vgpr3_vgpr4, $vgpr0, 0, 0, 0, implicit $exec, implicit $flat_scr
|
2017-03-08 02:06:58 +01:00
|
|
|
S_ENDPGM
|
|
|
|
...
|