252
|
1 ; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
|
150
|
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: enable_sgpr_queue_ptr = 1
|
|
8 ; GCN: s_load_dword s{{[0-9]+}}, s[4:5], 0x0
|
252
|
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
|
150
|
13 ret void
|
|
14 }
|
|
15
|
252
|
16 declare noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0
|
150
|
17
|
|
18 attributes #0 = { nounwind readnone }
|
252
|
19
|
|
20 !llvm.module.flags = !{!0}
|
|
21 !0 = !{i32 1, !"amdgpu_code_object_version", i32 200}
|