File: amdgpu-export-kernel-runtime-handles.ll

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.4-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,236,516 kB
  • sloc: cpp: 7,619,569; ansic: 1,433,956; asm: 1,058,748; python: 252,181; f90: 94,671; objc: 70,753; lisp: 42,813; pascal: 18,401; sh: 8,601; ml: 5,111; perl: 4,720; makefile: 3,585; awk: 3,523; javascript: 2,272; xml: 892; fortran: 770
file content (62 lines) | stat: -rw-r--r-- 2,399 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --check-attributes --check-globals all --version 5
; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -amdgpu-export-kernel-runtime-handles < %s | FileCheck %s
; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -passes=amdgpu-export-kernel-runtime-handles < %s | FileCheck %s

%block.runtime.handle.t = type { ptr addrspace(1), i32, i32 }

; associated globals without the correct section should be ignored.
@block.handle = internal addrspace(1) externally_initialized constant %block.runtime.handle.t zeroinitializer, section ".amdgpu.kernel.runtime.handle"
@not.a.block.handle = internal addrspace(1) externally_initialized constant %block.runtime.handle.t zeroinitializer

;.
; CHECK: @block.handle = addrspace(1) externally_initialized constant %block.runtime.handle.t zeroinitializer, section ".amdgpu.kernel.runtime.handle"
; CHECK: @not.a.block.handle = internal addrspace(1) externally_initialized constant %block.runtime.handle.t zeroinitializer
;.
define internal amdgpu_kernel void @block_kernel() !associated !0 {
; CHECK-LABEL: define protected amdgpu_kernel void @block_kernel(
; CHECK-SAME: ) !associated [[META0:![0-9]+]] {
; CHECK-NEXT:    ret void
;
  ret void
}

define internal dso_local amdgpu_kernel void @dso_local_block_kernel() !associated !0 {
; CHECK-LABEL: define protected amdgpu_kernel void @dso_local_block_kernel(
; CHECK-SAME: ) !associated [[META0]] {
; CHECK-NEXT:    ret void
;
  ret void
}

define internal amdgpu_kernel void @not_block_kernel() !associated !1 {
; CHECK-LABEL: define internal amdgpu_kernel void @not_block_kernel(
; CHECK-SAME: ) !associated [[META1:![0-9]+]] {
; CHECK-NEXT:    ret void
;
  ret void
}

define internal amdgpu_kernel void @associated_null() !associated !2 {
; CHECK-LABEL: define internal amdgpu_kernel void @associated_null(
; CHECK-SAME: ) !associated [[META2:![0-9]+]] {
; CHECK-NEXT:    ret void
;
  ret void
}

define internal amdgpu_kernel void @no_metadata() {
; CHECK-LABEL: define internal amdgpu_kernel void @no_metadata() {
; CHECK-NEXT:    ret void
;
  ret void
}

!0 = !{ptr addrspace(1) @block.handle }
!1 = !{ptr addrspace(1) @not.a.block.handle }
!2 = !{ptr addrspace(1) null }

;.
; CHECK: [[META0]] = !{ptr addrspace(1) @block.handle}
; CHECK: [[META1]] = !{ptr addrspace(1) @not.a.block.handle}
; CHECK: [[META2]] = !{ptr addrspace(1) null}
;.