annotate test/CodeGen/AMDGPU/fence-amdgiz.ll @ 146:3fc4d5c3e21e

set tail call flag for code segment in CGCAll
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 19:23:36 +0900
parents 3a76565eade5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
121
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
1 ; RUN: llc -mtriple=amdgcn-amd-amdhsa-amdgizcl -mcpu=kaveri < %s | FileCheck %s
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
2
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
3 target datalayout = "e-p:64:64-p1:64:64-p2:64:64-p3:32:32-p4:32:32-p5:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-A5"
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
4
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
5 ; CHECK-LABEL: atomic_fence
134
3a76565eade5 update 5.0.1
mir3636
parents: 121
diff changeset
6 ; CHECK: %bb.0:
121
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
7 ; CHECK-NOT: ATOMIC_FENCE
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
8 ; CHECK-NEXT: s_waitcnt vmcnt(0)
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
9 ; CHECK-NEXT: buffer_wbinvl1_vol
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
10 ; CHECK-NEXT: s_endpgm
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
11 define amdgpu_kernel void @atomic_fence() {
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
12 fence acquire
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
13 ret void
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
14 }
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
15