-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathbuiltin_duplicates.stderr
More file actions
63 lines (63 loc) · 1.41 KB
/
builtin_duplicates.stderr
File metadata and controls
63 lines (63 loc) · 1.41 KB
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
63
OpCapability Shader
OpMemoryModel Logical Simple
OpEntryPoint GLCompute %1 "entry_1" %2
OpEntryPoint GLCompute %3 "entry_2" %2
OpExecutionMode %1 LocalSize 1 1 1
OpExecutionMode %3 LocalSize 1 1 1
OpName %5 "builtin_duplicates::entry_1"
OpName %6 "builtin_duplicates::sub_1"
OpName %7 "builtin_duplicates::sub_2"
OpName %8 "builtin_duplicates::entry_2"
OpDecorate %2 BuiltIn LocalInvocationIndex
%9 = OpTypeInt 32 0
%10 = OpTypePointer Input %9
%11 = OpTypeVoid
%12 = OpTypeFunction %11
%2 = OpVariable %10 Input
%13 = OpTypeFunction %11 %9
%14 = OpTypeFunction %9
%1 = OpFunction %11 None %12
%15 = OpLabel
%16 = OpLoad %9 %2
%17 = OpFunctionCall %11 %5 %16
OpNoLine
OpReturn
OpFunctionEnd
%5 = OpFunction %11 None %13
%18 = OpFunctionParameter %9
%19 = OpLabel
%20 = OpLoad %9 %2
%21 = OpLoad %9 %2
%22 = OpFunctionCall %9 %6
%23 = OpFunctionCall %9 %7
OpNoLine
OpReturn
OpFunctionEnd
%6 = OpFunction %9 DontInline %14
%24 = OpLabel
%25 = OpLoad %9 %2
OpNoLine
OpReturnValue %25
OpFunctionEnd
%7 = OpFunction %9 DontInline %14
%26 = OpLabel
%27 = OpLoad %9 %2
OpNoLine
OpReturnValue %27
OpFunctionEnd
%3 = OpFunction %11 None %12
%28 = OpLabel
%29 = OpLoad %9 %2
%30 = OpFunctionCall %11 %8 %29
OpNoLine
OpReturn
OpFunctionEnd
%8 = OpFunction %11 None %13
%31 = OpFunctionParameter %9
%32 = OpLabel
%33 = OpLoad %9 %2
%34 = OpFunctionCall %9 %6
%35 = OpFunctionCall %9 %7
OpNoLine
OpReturn
OpFunctionEnd