File: different_function_parameter_count_src.spvasm

package info (click to toggle)
spirv-tools 2025.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,588 kB
  • sloc: cpp: 470,407; javascript: 5,893; python: 3,326; ansic: 488; sh: 450; ruby: 88; makefile: 18; lisp: 9
file content (46 lines) | stat: -rw-r--r-- 1,591 bytes parent folder | download | duplicates (15)
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
;; Test where src and dst have a function with different parameter count.
; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 10
; Bound: 25
; Schema: 0
               OpCapability Shader
          %1 = OpExtInstImport "GLSL.std.450"
               OpMemoryModel Logical GLSL450
               OpEntryPoint Fragment %4 "main" %20
               OpExecutionMode %4 OriginUpperLeft
               OpSource ESSL 320
               OpName %4 "main"
               OpName %11 "f(vf2;"
               OpName %10 "v"
               OpName %20 "o"
               OpName %23 "param"
               OpDecorate %20 RelaxedPrecision
               OpDecorate %20 Location 0
          %2 = OpTypeVoid
          %3 = OpTypeFunction %2
          %6 = OpTypeFloat 32
          %7 = OpTypeVector %6 2
          %8 = OpTypePointer Function %7
          %9 = OpTypeFunction %7 %8
         %14 = OpConstant %6 0.5
         %15 = OpConstantComposite %7 %14 %14
         %19 = OpTypePointer Output %7
         %20 = OpVariable %19 Output
         %21 = OpConstant %6 0
         %22 = OpConstantComposite %7 %21 %21
          %4 = OpFunction %2 None %3
          %5 = OpLabel
         %23 = OpVariable %8 Function
               OpStore %23 %22
         %24 = OpFunctionCall %7 %11 %23
               OpStore %20 %24
               OpReturn
               OpFunctionEnd
         %11 = OpFunction %7 None %9
         %10 = OpFunctionParameter %8
         %12 = OpLabel
         %13 = OpLoad %7 %10
         %16 = OpFAdd %7 %13 %15
               OpReturnValue %16
               OpFunctionEnd