Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.queue.ptr.ll
blob7e16358f741819f93835605a662ca0e85604bb6d
1 ; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
2 ; RUN: not llc -mtriple=amdgcn-unknown-unknown -mcpu=kaveri -verify-machineinstrs < %s 2>&1 | FileCheck -check-prefix=ERROR %s
4 ; ERROR: in function test{{.*}}: unsupported hsa intrinsic without hsa target
6 ; GCN-LABEL: {{^}}test:
7 ; GCN: s_load_dword s{{[0-9]+}}, s[6:7], 0x0
8 ; GCN: .amdhsa_user_sgpr_queue_ptr 1
9 define amdgpu_kernel void @test(ptr addrspace(1) %out) {
10   %queue_ptr = call noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0
11   %value = load i32, ptr addrspace(4) %queue_ptr
12   store i32 %value, ptr addrspace(1) %out
13   ret void
16 ; FIXME: Should really be able to delete the load
17 ; GCN-LABEL: {{^}}test_ub:
18 ; GCN: s_load_dword s{{[0-9]+}}, s[0:1], 0x0
19 ; GCN: .amdhsa_user_sgpr_queue_ptr 0
20 define amdgpu_kernel void @test_ub(ptr addrspace(1) %out) #1 {
21   %queue_ptr = call noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0
22   %value = load i32, ptr addrspace(4) %queue_ptr
23   store i32 %value, ptr addrspace(1) %out
24   ret void
27 declare noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0
29 attributes #0 = { nounwind readnone }
30 attributes #1 = { "amdgpu-no-queue-ptr" }
32 !llvm.module.flags = !{!0}
33 !0 = !{i32 1, !"amdhsa_code_object_version", i32 400}