File: OpDecorateString_UserSemantic.spvasm

package info (click to toggle)
spirv-llvm-translator-14 14.0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,700 kB
  • sloc: cpp: 47,811; lisp: 3,704; sh: 153; python: 43; makefile: 41
file content (33 lines) | stat: -rw-r--r-- 1,424 bytes parent folder | download
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
; REQUIRES: spirv-as
; RUN: spirv-as --target-env spv1.4 -o %t.spv %s
; RUN: spirv-val %t.spv
; RUN: llvm-spirv --opaque-pointers -r -o - %t.spv | llvm-dis -opaque-pointers | FileCheck %s

; SPIR-V
; Version: 1.4
; Generator: Khronos LLVM/SPIR-V Translator; 14
; Bound: 40
; Schema: 0
               OpCapability Addresses
               OpCapability Linkage
               OpCapability Kernel
               OpMemoryModel Physical64 OpenCL
               OpEntryPoint Kernel %kernel "test"
               ; Note: this is decorating a variable in the function storage class, which
               ; is not actually valid according to the SPIR-V spec, but is processed by
               ; the SPIR-V LLVM Translator and not rejected by spirv-val.
               OpDecorateString %temp UserSemantic "foo"
; CHECK: [[STR:@[0-9_.]+]] = {{.*}}foo
; CHECK: call void @llvm.var.annotation(ptr %{{.*}}, ptr getelementptr inbounds ([4 x i8], ptr [[STR]], i32 0, i32 0), ptr undef, i32 undef, ptr undef)
       %uint = OpTypeInt 32 0
       %void = OpTypeVoid
 %kernel_sig = OpTypeFunction %void %uint
   %ptr_uint = OpTypePointer Function %uint
     %kernel = OpFunction %void None %kernel_sig
          %a = OpFunctionParameter %uint
      %entry = OpLabel
       %temp = OpVariable %ptr_uint Function
        %add = OpIAdd %uint %a %a
               OpStore %temp %add Aligned 4
               OpReturn
               OpFunctionEnd