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 3 4; ERROR: in function test{{.*}}: unsupported hsa intrinsic without hsa target 5 6; GCN-LABEL: {{^}}test: 7; GCN: s_load_dword s{{[0-9]+}}, s[6:7], 0x0 8; GCN: .amdhsa_user_sgpr_queue_ptr 1 9define 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 14} 15 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 20define 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 25} 26 27declare noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0 28 29attributes #0 = { nounwind readnone } 30attributes #1 = { "amdgpu-no-queue-ptr" } 31 32!llvm.module.flags = !{!0} 33!0 = !{i32 1, !"amdhsa_code_object_version", i32 400} 34