[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / smrd-vccz-bug.ll
bloba8b0c8ed66afc5c8c2a903d7c827fe31e13f9e4a
1 ; RUN: llc -march=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=VCCZ-BUG %s
2 ; RUN: llc -march=amdgcn -mcpu=bonaire -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=VCCZ-BUG %s
3 ; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
5 ; GCN-FUNC: {{^}}vccz_workaround:
6 ; GCN: s_load_dword [[REG:s[0-9]+]], s[{{[0-9]+:[0-9]+}}],
7 ; GCN: v_cmp_neq_f32_e64 {{[^,]*}}, [[REG]], 0{{$}}
8 ; VCCZ-BUG: s_waitcnt lgkmcnt(0)
9 ; VCCZ-BUG: s_mov_b64 vcc, vcc
10 ; GCN-NOT: s_mov_b64 vcc, vcc
11 ; GCN: s_cbranch_vccnz [[EXIT:[0-9A-Za-z_]+]]
12 ; GCN: buffer_store_dword
13 ; GCN: [[EXIT]]:
14 ; GCN: s_endpgm
15 define amdgpu_kernel void @vccz_workaround(i32 addrspace(4)* %in, i32 addrspace(1)* %out, float %cond) {
16 entry:
17   %cnd = fcmp oeq float 0.0, %cond
18   %sgpr = load volatile i32, i32 addrspace(4)* %in
19   br i1 %cnd, label %if, label %endif
21 if:
22   store i32 %sgpr, i32 addrspace(1)* %out
23   br label %endif
25 endif:
26   ret void
29 ; GCN-FUNC: {{^}}vccz_noworkaround:
30 ; GCN: v_cmp_neq_f32_e32 vcc, 0, v{{[0-9]+}}
31 ; GCN-NOT: s_waitcnt lgkmcnt(0)
32 ; GCN-NOT: s_mov_b64 vcc, vcc
33 ; GCN: s_cbranch_vccnz [[EXIT:[0-9A-Za-z_]+]]
34 ; GCN: buffer_store_dword
35 ; GCN: [[EXIT]]:
36 ; GCN: s_endpgm
37 define amdgpu_kernel void @vccz_noworkaround(float addrspace(1)* %in, float addrspace(1)* %out) {
38 entry:
39   %vgpr = load volatile float, float addrspace(1)* %in
40   %cnd = fcmp oeq float 0.0, %vgpr
41   br i1 %cnd, label %if, label %endif
43 if:
44   store float %vgpr, float addrspace(1)* %out
45   br label %endif
47 endif:
48   ret void