brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · afb80e6 Raw
34 lines · plain
1; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=kaveri < %s | FileCheck -check-prefix=GCN %s2; RUN: not llc -mtriple=amdgcn-unknown-unknown -mcpu=kaveri < %s 2>&1 | FileCheck -check-prefix=ERROR %s3 4; ERROR: in function test{{.*}}: unsupported hsa intrinsic without hsa target5 6; GCN-LABEL: {{^}}test:7; GCN: s_load_dword s{{[0-9]+}}, s[6:7], 0x08; GCN: .amdhsa_user_sgpr_queue_ptr 19define amdgpu_kernel void @test(ptr addrspace(1) %out) {10  %queue_ptr = call noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #011  %value = load i32, ptr addrspace(4) %queue_ptr12  store i32 %value, ptr addrspace(1) %out13  ret void14}15 16; FIXME: Should really be able to delete the load17; GCN-LABEL: {{^}}test_ub:18; GCN: s_load_dword s{{[0-9]+}}, s[0:1], 0x019; GCN: .amdhsa_user_sgpr_queue_ptr 020define amdgpu_kernel void @test_ub(ptr addrspace(1) %out) #1 {21  %queue_ptr = call noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #022  %value = load i32, ptr addrspace(4) %queue_ptr23  store i32 %value, ptr addrspace(1) %out24  ret void25}26 27declare noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #028 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