File: OpConvertUToPtr_widening.spvasm

package info (click to toggle)
spirv-llvm-translator-14 14.0.11-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,640 kB
  • sloc: cpp: 47,664; lisp: 3,704; sh: 153; python: 43; makefile: 33
file content (26 lines) | stat: -rw-r--r-- 970 bytes parent folder | download | duplicates (3)
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
; REQUIRES: spirv-as
; RUN: spirv-as --target-env spv1.0 -o %t.spv %s
; RUN: spirv-val %t.spv
; RUN: llvm-spirv -r -o - %t.spv | llvm-dis | FileCheck %s
               OpCapability Addresses
               OpCapability Kernel
               OpCapability Int16
               OpMemoryModel Physical32 OpenCL
               OpEntryPoint Kernel %1 "testWideningUToPtr"
               OpName %a "a"
               OpName %entry "entry"
       %uint = OpTypeInt 32 0
     %uint_0 = OpConstant %uint 0
     %ushort = OpTypeInt 16 0
       %void = OpTypeVoid
%_ptr_CrossWorkgroup_uint = OpTypePointer CrossWorkgroup %uint
          %9 = OpTypeFunction %void %ushort
          %1 = OpFunction %void None %9
          %a = OpFunctionParameter %ushort
      %entry = OpLabel
         %10 = OpConvertUToPtr %_ptr_CrossWorkgroup_uint %a
               OpStore %10 %uint_0 Aligned 4
               OpReturn
               OpFunctionEnd

; CHECK: inttoptr i16 %a to i32 addrspace(1)*