electra 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE-SPIRV-Headers.txt +26 -0
- data/LICENSE.txt +21 -0
- data/README.md +141 -0
- data/examples/example_shaders.rb +55 -0
- data/lib/electra/binary.rb +475 -0
- data/lib/electra/data_compat.rb +25 -0
- data/lib/electra/function.rb +380 -0
- data/lib/electra/grammar.rb +968 -0
- data/lib/electra/module.rb +299 -0
- data/lib/electra/type.rb +11 -0
- data/lib/electra/value.rb +39 -0
- data/lib/electra/version.rb +6 -0
- data/lib/electra.rb +32 -0
- data/sig/electra.rbs +105 -0
- metadata +58 -0
|
@@ -0,0 +1,968 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Derived from Khronos SPIRV-Headers 496543121ce6419f23d6fa5d7194ba66c36212d2 (MIT); do not edit manually.
|
|
3
|
+
# Source SHA256: c125a0fbf6730fde4625fef2618c4f7611ab42edf9b2ad5bb9291002b10bfad3
|
|
4
|
+
module Electra
|
|
5
|
+
INSTRUCTIONS = {
|
|
6
|
+
"OpNop" => [0, []],
|
|
7
|
+
"OpUndef" => [1, [["IdResultType", ""], ["IdResult", ""]]],
|
|
8
|
+
"OpSourceContinued" => [2, [["LiteralString", ""]]],
|
|
9
|
+
"OpSource" => [3, [["SourceLanguage", ""], ["LiteralInteger", ""], ["IdRef", "?"], ["LiteralString", "?"]]],
|
|
10
|
+
"OpSourceExtension" => [4, [["LiteralString", ""]]],
|
|
11
|
+
"OpName" => [5, [["IdRef", ""], ["LiteralString", ""]]],
|
|
12
|
+
"OpMemberName" => [6, [["IdRef", ""], ["LiteralInteger", ""], ["LiteralString", ""]]],
|
|
13
|
+
"OpString" => [7, [["IdResult", ""], ["LiteralString", ""]]],
|
|
14
|
+
"OpLine" => [8, [["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
15
|
+
"OpExtension" => [10, [["LiteralString", ""]]],
|
|
16
|
+
"OpExtInstImport" => [11, [["IdResult", ""], ["LiteralString", ""]]],
|
|
17
|
+
"OpExtInst" => [12, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralExtInstInteger", ""], ["IdRef", "*"]]],
|
|
18
|
+
"OpMemoryModel" => [14, [["AddressingModel", ""], ["MemoryModel", ""]]],
|
|
19
|
+
"OpEntryPoint" => [15, [["ExecutionModel", ""], ["IdRef", ""], ["LiteralString", ""], ["IdRef", "*"]]],
|
|
20
|
+
"OpExecutionMode" => [16, [["IdRef", ""], ["ExecutionMode", ""]]],
|
|
21
|
+
"OpCapability" => [17, [["Capability", ""]]],
|
|
22
|
+
"OpTypeVoid" => [19, [["IdResult", ""]]],
|
|
23
|
+
"OpTypeBool" => [20, [["IdResult", ""]]],
|
|
24
|
+
"OpTypeInt" => [21, [["IdResult", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
25
|
+
"OpTypeFloat" => [22, [["IdResult", ""], ["LiteralInteger", ""], ["FPEncoding", "?"]]],
|
|
26
|
+
"OpTypeVector" => [23, [["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
27
|
+
"OpTypeMatrix" => [24, [["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
28
|
+
"OpTypeImage" => [25, [["IdResult", ""], ["IdRef", ""], ["Dim", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["ImageFormat", ""], ["AccessQualifier", "?"]]],
|
|
29
|
+
"OpTypeSampler" => [26, [["IdResult", ""]]],
|
|
30
|
+
"OpTypeSampledImage" => [27, [["IdResult", ""], ["IdRef", ""]]],
|
|
31
|
+
"OpTypeArray" => [28, [["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
32
|
+
"OpTypeRuntimeArray" => [29, [["IdResult", ""], ["IdRef", ""]]],
|
|
33
|
+
"OpTypeStruct" => [30, [["IdResult", ""], ["IdRef", "*"]]],
|
|
34
|
+
"OpTypeOpaque" => [31, [["IdResult", ""], ["LiteralString", ""]]],
|
|
35
|
+
"OpTypePointer" => [32, [["IdResult", ""], ["StorageClass", ""], ["IdRef", ""]]],
|
|
36
|
+
"OpTypeFunction" => [33, [["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
37
|
+
"OpTypeEvent" => [34, [["IdResult", ""]]],
|
|
38
|
+
"OpTypeDeviceEvent" => [35, [["IdResult", ""]]],
|
|
39
|
+
"OpTypeReserveId" => [36, [["IdResult", ""]]],
|
|
40
|
+
"OpTypeQueue" => [37, [["IdResult", ""]]],
|
|
41
|
+
"OpTypePipe" => [38, [["IdResult", ""], ["AccessQualifier", ""]]],
|
|
42
|
+
"OpTypeForwardPointer" => [39, [["IdRef", ""], ["StorageClass", ""]]],
|
|
43
|
+
"OpConstantTrue" => [41, [["IdResultType", ""], ["IdResult", ""]]],
|
|
44
|
+
"OpConstantFalse" => [42, [["IdResultType", ""], ["IdResult", ""]]],
|
|
45
|
+
"OpConstant" => [43, [["IdResultType", ""], ["IdResult", ""], ["LiteralContextDependentNumber", ""]]],
|
|
46
|
+
"OpConstantComposite" => [44, [["IdResultType", ""], ["IdResult", ""], ["IdRef", "*"]]],
|
|
47
|
+
"OpConstantSampler" => [45, [["IdResultType", ""], ["IdResult", ""], ["SamplerAddressingMode", ""], ["LiteralInteger", ""], ["SamplerFilterMode", ""]]],
|
|
48
|
+
"OpConstantNull" => [46, [["IdResultType", ""], ["IdResult", ""]]],
|
|
49
|
+
"OpSpecConstantTrue" => [48, [["IdResultType", ""], ["IdResult", ""]]],
|
|
50
|
+
"OpSpecConstantFalse" => [49, [["IdResultType", ""], ["IdResult", ""]]],
|
|
51
|
+
"OpSpecConstant" => [50, [["IdResultType", ""], ["IdResult", ""], ["LiteralContextDependentNumber", ""]]],
|
|
52
|
+
"OpSpecConstantComposite" => [51, [["IdResultType", ""], ["IdResult", ""], ["IdRef", "*"]]],
|
|
53
|
+
"OpSpecConstantOp" => [52, [["IdResultType", ""], ["IdResult", ""], ["LiteralSpecConstantOpInteger", ""]]],
|
|
54
|
+
"OpFunction" => [54, [["IdResultType", ""], ["IdResult", ""], ["FunctionControl", ""], ["IdRef", ""]]],
|
|
55
|
+
"OpFunctionParameter" => [55, [["IdResultType", ""], ["IdResult", ""]]],
|
|
56
|
+
"OpFunctionEnd" => [56, []],
|
|
57
|
+
"OpFunctionCall" => [57, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
58
|
+
"OpVariable" => [59, [["IdResultType", ""], ["IdResult", ""], ["StorageClass", ""], ["IdRef", "?"]]],
|
|
59
|
+
"OpImageTexelPointer" => [60, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
60
|
+
"OpLoad" => [61, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
61
|
+
"OpStore" => [62, [["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
62
|
+
"OpCopyMemory" => [63, [["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"], ["MemoryAccess", "?"]]],
|
|
63
|
+
"OpCopyMemorySized" => [64, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"], ["MemoryAccess", "?"]]],
|
|
64
|
+
"OpAccessChain" => [65, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
65
|
+
"OpInBoundsAccessChain" => [66, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
66
|
+
"OpPtrAccessChain" => [67, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
67
|
+
"OpArrayLength" => [68, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
68
|
+
"OpGenericPtrMemSemantics" => [69, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
69
|
+
"OpInBoundsPtrAccessChain" => [70, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
70
|
+
"OpDecorate" => [71, [["IdRef", ""], ["Decoration", ""]]],
|
|
71
|
+
"OpMemberDecorate" => [72, [["IdRef", ""], ["LiteralInteger", ""], ["Decoration", ""]]],
|
|
72
|
+
"OpDecorationGroup" => [73, [["IdResult", ""]]],
|
|
73
|
+
"OpGroupDecorate" => [74, [["IdRef", ""], ["IdRef", "*"]]],
|
|
74
|
+
"OpGroupMemberDecorate" => [75, [["IdRef", ""], ["PairIdRefLiteralInteger", "*"]]],
|
|
75
|
+
"OpVectorExtractDynamic" => [77, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
76
|
+
"OpVectorInsertDynamic" => [78, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
77
|
+
"OpVectorShuffle" => [79, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["LiteralInteger", "*"]]],
|
|
78
|
+
"OpCompositeConstruct" => [80, [["IdResultType", ""], ["IdResult", ""], ["IdRef", "*"]]],
|
|
79
|
+
"OpCompositeExtract" => [81, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", "*"]]],
|
|
80
|
+
"OpCompositeInsert" => [82, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["LiteralInteger", "*"]]],
|
|
81
|
+
"OpCopyObject" => [83, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
82
|
+
"OpTranspose" => [84, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
83
|
+
"OpSampledImage" => [86, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
84
|
+
"OpImageSampleImplicitLod" => [87, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
85
|
+
"OpImageSampleExplicitLod" => [88, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", ""]]],
|
|
86
|
+
"OpImageSampleDrefImplicitLod" => [89, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
87
|
+
"OpImageSampleDrefExplicitLod" => [90, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", ""]]],
|
|
88
|
+
"OpImageSampleProjImplicitLod" => [91, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
89
|
+
"OpImageSampleProjExplicitLod" => [92, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", ""]]],
|
|
90
|
+
"OpImageSampleProjDrefImplicitLod" => [93, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
91
|
+
"OpImageSampleProjDrefExplicitLod" => [94, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", ""]]],
|
|
92
|
+
"OpImageFetch" => [95, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
93
|
+
"OpImageGather" => [96, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
94
|
+
"OpImageDrefGather" => [97, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
95
|
+
"OpImageRead" => [98, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
96
|
+
"OpImageWrite" => [99, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
97
|
+
"OpImage" => [100, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
98
|
+
"OpImageQueryFormat" => [101, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
99
|
+
"OpImageQueryOrder" => [102, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
100
|
+
"OpImageQuerySizeLod" => [103, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
101
|
+
"OpImageQuerySize" => [104, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
102
|
+
"OpImageQueryLod" => [105, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
103
|
+
"OpImageQueryLevels" => [106, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
104
|
+
"OpImageQuerySamples" => [107, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
105
|
+
"OpConvertFToU" => [109, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
106
|
+
"OpConvertFToS" => [110, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
107
|
+
"OpConvertSToF" => [111, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
108
|
+
"OpConvertUToF" => [112, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
109
|
+
"OpUConvert" => [113, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
110
|
+
"OpSConvert" => [114, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
111
|
+
"OpFConvert" => [115, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
112
|
+
"OpQuantizeToF16" => [116, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
113
|
+
"OpConvertPtrToU" => [117, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
114
|
+
"OpSatConvertSToU" => [118, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
115
|
+
"OpSatConvertUToS" => [119, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
116
|
+
"OpConvertUToPtr" => [120, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
117
|
+
"OpPtrCastToGeneric" => [121, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
118
|
+
"OpGenericCastToPtr" => [122, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
119
|
+
"OpGenericCastToPtrExplicit" => [123, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["StorageClass", ""]]],
|
|
120
|
+
"OpBitcast" => [124, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
121
|
+
"OpSNegate" => [126, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
122
|
+
"OpFNegate" => [127, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
123
|
+
"OpIAdd" => [128, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
124
|
+
"OpFAdd" => [129, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
125
|
+
"OpISub" => [130, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
126
|
+
"OpFSub" => [131, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
127
|
+
"OpIMul" => [132, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
128
|
+
"OpFMul" => [133, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
129
|
+
"OpUDiv" => [134, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
130
|
+
"OpSDiv" => [135, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
131
|
+
"OpFDiv" => [136, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
132
|
+
"OpUMod" => [137, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
133
|
+
"OpSRem" => [138, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
134
|
+
"OpSMod" => [139, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
135
|
+
"OpFRem" => [140, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
136
|
+
"OpFMod" => [141, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
137
|
+
"OpVectorTimesScalar" => [142, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
138
|
+
"OpMatrixTimesScalar" => [143, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
139
|
+
"OpVectorTimesMatrix" => [144, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
140
|
+
"OpMatrixTimesVector" => [145, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
141
|
+
"OpMatrixTimesMatrix" => [146, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
142
|
+
"OpOuterProduct" => [147, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
143
|
+
"OpDot" => [148, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
144
|
+
"OpIAddCarry" => [149, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
145
|
+
"OpISubBorrow" => [150, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
146
|
+
"OpUMulExtended" => [151, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
147
|
+
"OpSMulExtended" => [152, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
148
|
+
"OpAny" => [154, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
149
|
+
"OpAll" => [155, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
150
|
+
"OpIsNan" => [156, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
151
|
+
"OpIsInf" => [157, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
152
|
+
"OpIsFinite" => [158, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
153
|
+
"OpIsNormal" => [159, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
154
|
+
"OpSignBitSet" => [160, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
155
|
+
"OpLessOrGreater" => [161, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
156
|
+
"OpOrdered" => [162, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
157
|
+
"OpUnordered" => [163, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
158
|
+
"OpLogicalEqual" => [164, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
159
|
+
"OpLogicalNotEqual" => [165, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
160
|
+
"OpLogicalOr" => [166, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
161
|
+
"OpLogicalAnd" => [167, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
162
|
+
"OpLogicalNot" => [168, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
163
|
+
"OpSelect" => [169, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
164
|
+
"OpIEqual" => [170, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
165
|
+
"OpINotEqual" => [171, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
166
|
+
"OpUGreaterThan" => [172, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
167
|
+
"OpSGreaterThan" => [173, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
168
|
+
"OpUGreaterThanEqual" => [174, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
169
|
+
"OpSGreaterThanEqual" => [175, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
170
|
+
"OpULessThan" => [176, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
171
|
+
"OpSLessThan" => [177, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
172
|
+
"OpULessThanEqual" => [178, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
173
|
+
"OpSLessThanEqual" => [179, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
174
|
+
"OpFOrdEqual" => [180, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
175
|
+
"OpFUnordEqual" => [181, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
176
|
+
"OpFOrdNotEqual" => [182, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
177
|
+
"OpFUnordNotEqual" => [183, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
178
|
+
"OpFOrdLessThan" => [184, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
179
|
+
"OpFUnordLessThan" => [185, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
180
|
+
"OpFOrdGreaterThan" => [186, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
181
|
+
"OpFUnordGreaterThan" => [187, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
182
|
+
"OpFOrdLessThanEqual" => [188, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
183
|
+
"OpFUnordLessThanEqual" => [189, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
184
|
+
"OpFOrdGreaterThanEqual" => [190, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
185
|
+
"OpFUnordGreaterThanEqual" => [191, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
186
|
+
"OpShiftRightLogical" => [194, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
187
|
+
"OpShiftRightArithmetic" => [195, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
188
|
+
"OpShiftLeftLogical" => [196, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
189
|
+
"OpBitwiseOr" => [197, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
190
|
+
"OpBitwiseXor" => [198, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
191
|
+
"OpBitwiseAnd" => [199, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
192
|
+
"OpNot" => [200, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
193
|
+
"OpBitFieldInsert" => [201, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
194
|
+
"OpBitFieldSExtract" => [202, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
195
|
+
"OpBitFieldUExtract" => [203, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
196
|
+
"OpBitReverse" => [204, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
197
|
+
"OpBitCount" => [205, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
198
|
+
"OpDPdx" => [207, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
199
|
+
"OpDPdy" => [208, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
200
|
+
"OpFwidth" => [209, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
201
|
+
"OpDPdxFine" => [210, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
202
|
+
"OpDPdyFine" => [211, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
203
|
+
"OpFwidthFine" => [212, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
204
|
+
"OpDPdxCoarse" => [213, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
205
|
+
"OpDPdyCoarse" => [214, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
206
|
+
"OpFwidthCoarse" => [215, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
207
|
+
"OpEmitVertex" => [218, []],
|
|
208
|
+
"OpEndPrimitive" => [219, []],
|
|
209
|
+
"OpEmitStreamVertex" => [220, [["IdRef", ""]]],
|
|
210
|
+
"OpEndStreamPrimitive" => [221, [["IdRef", ""]]],
|
|
211
|
+
"OpControlBarrier" => [224, [["IdScope", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
212
|
+
"OpMemoryBarrier" => [225, [["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
213
|
+
"OpAtomicLoad" => [227, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
214
|
+
"OpAtomicStore" => [228, [["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
215
|
+
"OpAtomicExchange" => [229, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
216
|
+
"OpAtomicCompareExchange" => [230, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdMemorySemantics", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
217
|
+
"OpAtomicCompareExchangeWeak" => [231, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdMemorySemantics", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
218
|
+
"OpAtomicIIncrement" => [232, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
219
|
+
"OpAtomicIDecrement" => [233, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
220
|
+
"OpAtomicIAdd" => [234, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
221
|
+
"OpAtomicISub" => [235, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
222
|
+
"OpAtomicSMin" => [236, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
223
|
+
"OpAtomicUMin" => [237, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
224
|
+
"OpAtomicSMax" => [238, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
225
|
+
"OpAtomicUMax" => [239, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
226
|
+
"OpAtomicAnd" => [240, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
227
|
+
"OpAtomicOr" => [241, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
228
|
+
"OpAtomicXor" => [242, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
229
|
+
"OpPhi" => [245, [["IdResultType", ""], ["IdResult", ""], ["PairIdRefIdRef", "*"]]],
|
|
230
|
+
"OpLoopMerge" => [246, [["IdRef", ""], ["IdRef", ""], ["LoopControl", ""]]],
|
|
231
|
+
"OpSelectionMerge" => [247, [["IdRef", ""], ["SelectionControl", ""]]],
|
|
232
|
+
"OpLabel" => [248, [["IdResult", ""]]],
|
|
233
|
+
"OpBranch" => [249, [["IdRef", ""]]],
|
|
234
|
+
"OpBranchConditional" => [250, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["LiteralInteger", "*"]]],
|
|
235
|
+
"OpSwitch" => [251, [["IdRef", ""], ["IdRef", ""], ["PairLiteralIntegerIdRef", "*"]]],
|
|
236
|
+
"OpKill" => [252, []],
|
|
237
|
+
"OpReturn" => [253, []],
|
|
238
|
+
"OpReturnValue" => [254, [["IdRef", ""]]],
|
|
239
|
+
"OpUnreachable" => [255, []],
|
|
240
|
+
"OpLifetimeStart" => [256, [["IdRef", ""], ["LiteralInteger", ""]]],
|
|
241
|
+
"OpLifetimeStop" => [257, [["IdRef", ""], ["LiteralInteger", ""]]],
|
|
242
|
+
"OpGroupAsyncCopy" => [259, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
243
|
+
"OpGroupWaitEvents" => [260, [["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
244
|
+
"OpGroupAll" => [261, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
245
|
+
"OpGroupAny" => [262, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
246
|
+
"OpGroupBroadcast" => [263, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
247
|
+
"OpGroupIAdd" => [264, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
248
|
+
"OpGroupFAdd" => [265, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
249
|
+
"OpGroupFMin" => [266, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
250
|
+
"OpGroupUMin" => [267, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
251
|
+
"OpGroupSMin" => [268, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
252
|
+
"OpGroupFMax" => [269, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
253
|
+
"OpGroupUMax" => [270, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
254
|
+
"OpGroupSMax" => [271, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
255
|
+
"OpReadPipe" => [274, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
256
|
+
"OpWritePipe" => [275, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
257
|
+
"OpReservedReadPipe" => [276, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
258
|
+
"OpReservedWritePipe" => [277, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
259
|
+
"OpReserveReadPipePackets" => [278, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
260
|
+
"OpReserveWritePipePackets" => [279, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
261
|
+
"OpCommitReadPipe" => [280, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
262
|
+
"OpCommitWritePipe" => [281, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
263
|
+
"OpIsValidReserveId" => [282, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
264
|
+
"OpGetNumPipePackets" => [283, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
265
|
+
"OpGetMaxPipePackets" => [284, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
266
|
+
"OpGroupReserveReadPipePackets" => [285, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
267
|
+
"OpGroupReserveWritePipePackets" => [286, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
268
|
+
"OpGroupCommitReadPipe" => [287, [["IdScope", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
269
|
+
"OpGroupCommitWritePipe" => [288, [["IdScope", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
270
|
+
"OpEnqueueMarker" => [291, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
271
|
+
"OpEnqueueKernel" => [292, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
272
|
+
"OpGetKernelNDrangeSubGroupCount" => [293, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
273
|
+
"OpGetKernelNDrangeMaxSubGroupSize" => [294, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
274
|
+
"OpGetKernelWorkGroupSize" => [295, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
275
|
+
"OpGetKernelPreferredWorkGroupSizeMultiple" => [296, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
276
|
+
"OpRetainEvent" => [297, [["IdRef", ""]]],
|
|
277
|
+
"OpReleaseEvent" => [298, [["IdRef", ""]]],
|
|
278
|
+
"OpCreateUserEvent" => [299, [["IdResultType", ""], ["IdResult", ""]]],
|
|
279
|
+
"OpIsValidEvent" => [300, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
280
|
+
"OpSetUserEventStatus" => [301, [["IdRef", ""], ["IdRef", ""]]],
|
|
281
|
+
"OpCaptureEventProfilingInfo" => [302, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
282
|
+
"OpGetDefaultQueue" => [303, [["IdResultType", ""], ["IdResult", ""]]],
|
|
283
|
+
"OpBuildNDRange" => [304, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
284
|
+
"OpImageSparseSampleImplicitLod" => [305, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
285
|
+
"OpImageSparseSampleExplicitLod" => [306, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", ""]]],
|
|
286
|
+
"OpImageSparseSampleDrefImplicitLod" => [307, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
287
|
+
"OpImageSparseSampleDrefExplicitLod" => [308, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", ""]]],
|
|
288
|
+
"OpImageSparseSampleProjImplicitLod" => [309, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
289
|
+
"OpImageSparseSampleProjExplicitLod" => [310, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", ""]]],
|
|
290
|
+
"OpImageSparseSampleProjDrefImplicitLod" => [311, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
291
|
+
"OpImageSparseSampleProjDrefExplicitLod" => [312, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", ""]]],
|
|
292
|
+
"OpImageSparseFetch" => [313, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
293
|
+
"OpImageSparseGather" => [314, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
294
|
+
"OpImageSparseDrefGather" => [315, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
295
|
+
"OpImageSparseTexelsResident" => [316, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
296
|
+
"OpNoLine" => [317, []],
|
|
297
|
+
"OpAtomicFlagTestAndSet" => [318, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
298
|
+
"OpAtomicFlagClear" => [319, [["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
299
|
+
"OpImageSparseRead" => [320, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
300
|
+
"OpSizeOf" => [321, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
301
|
+
"OpTypePipeStorage" => [322, [["IdResult", ""]]],
|
|
302
|
+
"OpConstantPipeStorage" => [323, [["IdResultType", ""], ["IdResult", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
303
|
+
"OpCreatePipeFromPipeStorage" => [324, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
304
|
+
"OpGetKernelLocalSizeForSubgroupCount" => [325, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
305
|
+
"OpGetKernelMaxNumSubgroups" => [326, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
306
|
+
"OpTypeNamedBarrier" => [327, [["IdResult", ""]]],
|
|
307
|
+
"OpNamedBarrierInitialize" => [328, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
308
|
+
"OpMemoryNamedBarrier" => [329, [["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
309
|
+
"OpModuleProcessed" => [330, [["LiteralString", ""]]],
|
|
310
|
+
"OpExecutionModeId" => [331, [["IdRef", ""], ["ExecutionMode", ""]]],
|
|
311
|
+
"OpDecorateId" => [332, [["IdRef", ""], ["Decoration", ""]]],
|
|
312
|
+
"OpGroupNonUniformElect" => [333, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""]]],
|
|
313
|
+
"OpGroupNonUniformAll" => [334, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
314
|
+
"OpGroupNonUniformAny" => [335, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
315
|
+
"OpGroupNonUniformAllEqual" => [336, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
316
|
+
"OpGroupNonUniformBroadcast" => [337, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
317
|
+
"OpGroupNonUniformBroadcastFirst" => [338, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
318
|
+
"OpGroupNonUniformBallot" => [339, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
319
|
+
"OpGroupNonUniformInverseBallot" => [340, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
320
|
+
"OpGroupNonUniformBallotBitExtract" => [341, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
321
|
+
"OpGroupNonUniformBallotBitCount" => [342, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
322
|
+
"OpGroupNonUniformBallotFindLSB" => [343, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
323
|
+
"OpGroupNonUniformBallotFindMSB" => [344, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""]]],
|
|
324
|
+
"OpGroupNonUniformShuffle" => [345, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
325
|
+
"OpGroupNonUniformShuffleXor" => [346, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
326
|
+
"OpGroupNonUniformShuffleUp" => [347, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
327
|
+
"OpGroupNonUniformShuffleDown" => [348, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
328
|
+
"OpGroupNonUniformIAdd" => [349, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
329
|
+
"OpGroupNonUniformFAdd" => [350, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
330
|
+
"OpGroupNonUniformIMul" => [351, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
331
|
+
"OpGroupNonUniformFMul" => [352, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
332
|
+
"OpGroupNonUniformSMin" => [353, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
333
|
+
"OpGroupNonUniformUMin" => [354, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
334
|
+
"OpGroupNonUniformFMin" => [355, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
335
|
+
"OpGroupNonUniformSMax" => [356, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
336
|
+
"OpGroupNonUniformUMax" => [357, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
337
|
+
"OpGroupNonUniformFMax" => [358, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
338
|
+
"OpGroupNonUniformBitwiseAnd" => [359, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
339
|
+
"OpGroupNonUniformBitwiseOr" => [360, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
340
|
+
"OpGroupNonUniformBitwiseXor" => [361, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
341
|
+
"OpGroupNonUniformLogicalAnd" => [362, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
342
|
+
"OpGroupNonUniformLogicalOr" => [363, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
343
|
+
"OpGroupNonUniformLogicalXor" => [364, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
344
|
+
"OpGroupNonUniformQuadBroadcast" => [365, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
345
|
+
"OpGroupNonUniformQuadSwap" => [366, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
346
|
+
"OpCopyLogical" => [400, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
347
|
+
"OpPtrEqual" => [401, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
348
|
+
"OpPtrNotEqual" => [402, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
349
|
+
"OpPtrDiff" => [403, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
350
|
+
"OpColorAttachmentReadEXT" => [4160, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
351
|
+
"OpDepthAttachmentReadEXT" => [4161, [["IdResultType", ""], ["IdResult", ""], ["IdRef", "?"]]],
|
|
352
|
+
"OpStencilAttachmentReadEXT" => [4162, [["IdResultType", ""], ["IdResult", ""], ["IdRef", "?"]]],
|
|
353
|
+
"OpTypeTensorARM" => [4163, [["IdResult", ""], ["IdRef", ""], ["IdRef", "?"], ["IdRef", "?"]]],
|
|
354
|
+
"OpTensorReadARM" => [4164, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["TensorOperands", "?"]]],
|
|
355
|
+
"OpTensorWriteARM" => [4165, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["TensorOperands", "?"]]],
|
|
356
|
+
"OpTensorQuerySizeARM" => [4166, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
357
|
+
"OpGraphConstantARM" => [4181, [["IdResultType", ""], ["IdResult", ""], ["LiteralInteger", ""]]],
|
|
358
|
+
"OpGraphEntryPointARM" => [4182, [["IdRef", ""], ["LiteralString", ""], ["IdRef", "*"]]],
|
|
359
|
+
"OpGraphARM" => [4183, [["IdResultType", ""], ["IdResult", ""]]],
|
|
360
|
+
"OpGraphInputARM" => [4184, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
361
|
+
"OpGraphSetOutputARM" => [4185, [["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
362
|
+
"OpGraphEndARM" => [4186, []],
|
|
363
|
+
"OpTypeGraphARM" => [4190, [["IdResult", ""], ["LiteralInteger", ""], ["IdRef", "*"]]],
|
|
364
|
+
"OpBitcastExtractEXT" => [4195, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
365
|
+
"OpTerminateInvocation" => [4416, []],
|
|
366
|
+
"OpTypeUntypedPointerKHR" => [4417, [["IdResult", ""], ["StorageClass", ""]]],
|
|
367
|
+
"OpUntypedVariableKHR" => [4418, [["IdResultType", ""], ["IdResult", ""], ["StorageClass", ""], ["IdRef", "?"], ["IdRef", "?"]]],
|
|
368
|
+
"OpUntypedAccessChainKHR" => [4419, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
369
|
+
"OpUntypedInBoundsAccessChainKHR" => [4420, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
370
|
+
"OpSubgroupBallotKHR" => [4421, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
371
|
+
"OpSubgroupFirstInvocationKHR" => [4422, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
372
|
+
"OpUntypedPtrAccessChainKHR" => [4423, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
373
|
+
"OpUntypedInBoundsPtrAccessChainKHR" => [4424, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
374
|
+
"OpUntypedArrayLengthKHR" => [4425, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
375
|
+
"OpUntypedPrefetchKHR" => [4426, [["IdRef", ""], ["IdRef", ""], ["IdRef", "?"], ["IdRef", "?"], ["IdRef", "?"]]],
|
|
376
|
+
"OpFmaKHR" => [4427, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
377
|
+
"OpSubgroupAllKHR" => [4428, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
378
|
+
"OpSubgroupAnyKHR" => [4429, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
379
|
+
"OpSubgroupAllEqualKHR" => [4430, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
380
|
+
"OpGroupNonUniformRotateKHR" => [4431, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
381
|
+
"OpSubgroupReadInvocationKHR" => [4432, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
382
|
+
"OpExtInstWithForwardRefsKHR" => [4433, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralExtInstInteger", ""], ["IdRef", "*"]]],
|
|
383
|
+
"OpUntypedGroupAsyncCopyKHR" => [4434, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"], ["MemoryAccess", "?"]]],
|
|
384
|
+
"OpTraceRayKHR" => [4445, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
385
|
+
"OpExecuteCallableKHR" => [4446, [["IdRef", ""], ["IdRef", ""]]],
|
|
386
|
+
"OpConvertUToAccelerationStructureKHR" => [4447, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
387
|
+
"OpIgnoreIntersectionKHR" => [4448, []],
|
|
388
|
+
"OpTerminateRayKHR" => [4449, []],
|
|
389
|
+
"OpSDot" => [4450, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["PackedVectorFormat", "?"]]],
|
|
390
|
+
"OpUDot" => [4451, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["PackedVectorFormat", "?"]]],
|
|
391
|
+
"OpSUDot" => [4452, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["PackedVectorFormat", "?"]]],
|
|
392
|
+
"OpSDotAccSat" => [4453, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["PackedVectorFormat", "?"]]],
|
|
393
|
+
"OpUDotAccSat" => [4454, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["PackedVectorFormat", "?"]]],
|
|
394
|
+
"OpSUDotAccSat" => [4455, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["PackedVectorFormat", "?"]]],
|
|
395
|
+
"OpTypeCooperativeMatrixKHR" => [4456, [["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
396
|
+
"OpCooperativeMatrixLoadKHR" => [4457, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"], ["MemoryAccess", "?"]]],
|
|
397
|
+
"OpCooperativeMatrixStoreKHR" => [4458, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"], ["MemoryAccess", "?"]]],
|
|
398
|
+
"OpCooperativeMatrixMulAddKHR" => [4459, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["CooperativeMatrixOperands", "?"]]],
|
|
399
|
+
"OpCooperativeMatrixLengthKHR" => [4460, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
400
|
+
"OpConstantCompositeReplicateEXT" => [4461, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
401
|
+
"OpSpecConstantCompositeReplicateEXT" => [4462, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
402
|
+
"OpCompositeConstructReplicateEXT" => [4463, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
403
|
+
"OpTypeRayQueryKHR" => [4472, [["IdResult", ""]]],
|
|
404
|
+
"OpRayQueryInitializeKHR" => [4473, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
405
|
+
"OpRayQueryTerminateKHR" => [4474, [["IdRef", ""]]],
|
|
406
|
+
"OpRayQueryGenerateIntersectionKHR" => [4475, [["IdRef", ""], ["IdRef", ""]]],
|
|
407
|
+
"OpRayQueryConfirmIntersectionKHR" => [4476, [["IdRef", ""]]],
|
|
408
|
+
"OpRayQueryProceedKHR" => [4477, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
409
|
+
"OpRayQueryGetIntersectionTypeKHR" => [4479, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
410
|
+
"OpImageSampleWeightedQCOM" => [4480, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
411
|
+
"OpImageBoxFilterQCOM" => [4481, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
412
|
+
"OpImageBlockMatchSSDQCOM" => [4482, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
413
|
+
"OpImageBlockMatchSADQCOM" => [4483, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
414
|
+
"OpBitCastArrayQCOM" => [4497, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
415
|
+
"OpImageBlockMatchWindowSSDQCOM" => [4500, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
416
|
+
"OpImageBlockMatchWindowSADQCOM" => [4501, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
417
|
+
"OpImageBlockMatchGatherSSDQCOM" => [4502, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
418
|
+
"OpImageBlockMatchGatherSADQCOM" => [4503, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
419
|
+
"OpBFloat16MulAddQCOM" => [4505, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
420
|
+
"OpCompositeConstructCoopMatQCOM" => [4540, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
421
|
+
"OpCompositeExtractCoopMatQCOM" => [4541, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
422
|
+
"OpExtractSubArrayQCOM" => [4542, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
423
|
+
"OpImageGatherQCOM" => [4545, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
424
|
+
"OpGroupIAddNonUniformAMD" => [5000, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
425
|
+
"OpGroupFAddNonUniformAMD" => [5001, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
426
|
+
"OpGroupFMinNonUniformAMD" => [5002, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
427
|
+
"OpGroupUMinNonUniformAMD" => [5003, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
428
|
+
"OpGroupSMinNonUniformAMD" => [5004, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
429
|
+
"OpGroupFMaxNonUniformAMD" => [5005, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
430
|
+
"OpGroupUMaxNonUniformAMD" => [5006, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
431
|
+
"OpGroupSMaxNonUniformAMD" => [5007, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
432
|
+
"OpFragmentMaskFetchAMD" => [5011, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
433
|
+
"OpFragmentFetchAMD" => [5012, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
434
|
+
"OpReadClockKHR" => [5056, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""]]],
|
|
435
|
+
"OpAllocateNodePayloadsAMDX" => [5074, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
436
|
+
"OpEnqueueNodePayloadsAMDX" => [5075, [["IdRef", ""]]],
|
|
437
|
+
"OpTypeNodePayloadArrayAMDX" => [5076, [["IdResult", ""], ["IdRef", ""]]],
|
|
438
|
+
"OpFinishWritingNodePayloadAMDX" => [5078, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
439
|
+
"OpNodePayloadArrayLengthAMDX" => [5090, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
440
|
+
"OpIsNodePayloadValidAMDX" => [5101, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
441
|
+
"OpConstantStringAMDX" => [5103, [["IdResult", ""], ["LiteralString", ""]]],
|
|
442
|
+
"OpSpecConstantStringAMDX" => [5104, [["IdResult", ""], ["LiteralString", ""]]],
|
|
443
|
+
"OpGroupNonUniformQuadAllKHR" => [5110, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
444
|
+
"OpGroupNonUniformQuadAnyKHR" => [5111, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
445
|
+
"OpTypeBufferEXT" => [5115, [["IdResult", ""], ["StorageClass", ""]]],
|
|
446
|
+
"OpBufferPointerEXT" => [5119, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
447
|
+
"OpAbortKHR" => [5121, [["IdRef", ""], ["IdRef", ""]]],
|
|
448
|
+
"OpUntypedImageTexelPointerEXT" => [5126, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
449
|
+
"OpMemberDecorateIdEXT" => [5127, [["IdRef", ""], ["LiteralInteger", ""], ["Decoration", ""]]],
|
|
450
|
+
"OpConstantSizeOfEXT" => [5129, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
451
|
+
"OpConstantDataKHR" => [5147, [["IdResultType", ""], ["IdResult", ""], ["LiteralInteger", "*"]]],
|
|
452
|
+
"OpSpecConstantDataKHR" => [5148, [["IdResultType", ""], ["IdResult", ""], ["LiteralInteger", "*"]]],
|
|
453
|
+
"OpPoisonKHR" => [5158, [["IdResultType", ""], ["IdResult", ""]]],
|
|
454
|
+
"OpFreezeKHR" => [5159, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
455
|
+
"OpHitObjectRecordHitMotionNV" => [5249, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
456
|
+
"OpHitObjectRecordHitWithIndexMotionNV" => [5250, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
457
|
+
"OpHitObjectRecordMissMotionNV" => [5251, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
458
|
+
"OpHitObjectGetWorldToObjectNV" => [5252, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
459
|
+
"OpHitObjectGetObjectToWorldNV" => [5253, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
460
|
+
"OpHitObjectGetObjectRayDirectionNV" => [5254, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
461
|
+
"OpHitObjectGetObjectRayOriginNV" => [5255, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
462
|
+
"OpHitObjectTraceRayMotionNV" => [5256, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
463
|
+
"OpHitObjectGetShaderRecordBufferHandleNV" => [5257, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
464
|
+
"OpHitObjectGetShaderBindingTableRecordIndexNV" => [5258, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
465
|
+
"OpHitObjectRecordEmptyNV" => [5259, [["IdRef", ""]]],
|
|
466
|
+
"OpHitObjectTraceRayNV" => [5260, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
467
|
+
"OpHitObjectRecordHitNV" => [5261, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
468
|
+
"OpHitObjectRecordHitWithIndexNV" => [5262, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
469
|
+
"OpHitObjectRecordMissNV" => [5263, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
470
|
+
"OpHitObjectExecuteShaderNV" => [5264, [["IdRef", ""], ["IdRef", ""]]],
|
|
471
|
+
"OpHitObjectGetCurrentTimeNV" => [5265, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
472
|
+
"OpHitObjectGetAttributesNV" => [5266, [["IdRef", ""], ["IdRef", ""]]],
|
|
473
|
+
"OpHitObjectGetHitKindNV" => [5267, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
474
|
+
"OpHitObjectGetPrimitiveIndexNV" => [5268, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
475
|
+
"OpHitObjectGetGeometryIndexNV" => [5269, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
476
|
+
"OpHitObjectGetInstanceIdNV" => [5270, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
477
|
+
"OpHitObjectGetInstanceCustomIndexNV" => [5271, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
478
|
+
"OpHitObjectGetWorldRayDirectionNV" => [5272, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
479
|
+
"OpHitObjectGetWorldRayOriginNV" => [5273, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
480
|
+
"OpHitObjectGetRayTMaxNV" => [5274, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
481
|
+
"OpHitObjectGetRayTMinNV" => [5275, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
482
|
+
"OpHitObjectIsEmptyNV" => [5276, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
483
|
+
"OpHitObjectIsHitNV" => [5277, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
484
|
+
"OpHitObjectIsMissNV" => [5278, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
485
|
+
"OpReorderThreadWithHitObjectNV" => [5279, [["IdRef", ""], ["IdRef", "?"], ["IdRef", "?"]]],
|
|
486
|
+
"OpReorderThreadWithHintNV" => [5280, [["IdRef", ""], ["IdRef", ""]]],
|
|
487
|
+
"OpTypeHitObjectNV" => [5281, [["IdResult", ""]]],
|
|
488
|
+
"OpImageSampleFootprintNV" => [5283, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["ImageOperands", "?"]]],
|
|
489
|
+
"OpTypeVectorIdEXT" => [5288, [["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
490
|
+
"OpCooperativeVectorMatrixMulNV" => [5289, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"], ["CooperativeMatrixOperands", "?"]]],
|
|
491
|
+
"OpCooperativeVectorOuterProductAccumulateNV" => [5290, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
492
|
+
"OpCooperativeVectorReduceSumAccumulateNV" => [5291, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
493
|
+
"OpCooperativeVectorMatrixMulAddNV" => [5292, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"], ["CooperativeMatrixOperands", "?"]]],
|
|
494
|
+
"OpCooperativeMatrixConvertUseEXT" => [5293, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
495
|
+
"OpEmitMeshTasksEXT" => [5294, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
496
|
+
"OpSetMeshOutputsEXT" => [5295, [["IdRef", ""], ["IdRef", ""]]],
|
|
497
|
+
"OpGroupNonUniformPartitionEXT" => [5296, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
498
|
+
"OpWritePackedPrimitiveIndices4x8NV" => [5299, [["IdRef", ""], ["IdRef", ""]]],
|
|
499
|
+
"OpFetchMicroTriangleVertexPositionNV" => [5300, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
500
|
+
"OpFetchMicroTriangleVertexBarycentricNV" => [5301, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
501
|
+
"OpCooperativeVectorLoadNV" => [5302, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
502
|
+
"OpCooperativeVectorStoreNV" => [5303, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
503
|
+
"OpHitObjectRecordFromQueryEXT" => [5304, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
504
|
+
"OpHitObjectRecordMissEXT" => [5305, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
505
|
+
"OpHitObjectRecordMissMotionEXT" => [5306, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
506
|
+
"OpHitObjectGetIntersectionTriangleVertexPositionsEXT" => [5307, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
507
|
+
"OpHitObjectGetRayFlagsEXT" => [5308, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
508
|
+
"OpHitObjectSetShaderBindingTableRecordIndexEXT" => [5309, [["IdRef", ""], ["IdRef", ""]]],
|
|
509
|
+
"OpHitObjectReorderExecuteShaderEXT" => [5310, [["IdRef", ""], ["IdRef", ""], ["IdRef", "?"], ["IdRef", "?"]]],
|
|
510
|
+
"OpHitObjectTraceReorderExecuteEXT" => [5311, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"], ["IdRef", "?"]]],
|
|
511
|
+
"OpHitObjectTraceMotionReorderExecuteEXT" => [5312, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "?"], ["IdRef", "?"]]],
|
|
512
|
+
"OpTypeHitObjectEXT" => [5313, [["IdResult", ""]]],
|
|
513
|
+
"OpReorderThreadWithHintEXT" => [5314, [["IdRef", ""], ["IdRef", ""]]],
|
|
514
|
+
"OpReorderThreadWithHitObjectEXT" => [5315, [["IdRef", ""], ["IdRef", "?"], ["IdRef", "?"]]],
|
|
515
|
+
"OpHitObjectTraceRayEXT" => [5316, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
516
|
+
"OpHitObjectTraceRayMotionEXT" => [5317, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
517
|
+
"OpHitObjectRecordEmptyEXT" => [5318, [["IdRef", ""]]],
|
|
518
|
+
"OpHitObjectExecuteShaderEXT" => [5319, [["IdRef", ""], ["IdRef", ""]]],
|
|
519
|
+
"OpHitObjectGetCurrentTimeEXT" => [5320, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
520
|
+
"OpHitObjectGetAttributesEXT" => [5321, [["IdRef", ""], ["IdRef", ""]]],
|
|
521
|
+
"OpHitObjectGetHitKindEXT" => [5322, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
522
|
+
"OpHitObjectGetPrimitiveIndexEXT" => [5323, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
523
|
+
"OpHitObjectGetGeometryIndexEXT" => [5324, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
524
|
+
"OpHitObjectGetInstanceIdEXT" => [5325, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
525
|
+
"OpHitObjectGetInstanceCustomIndexEXT" => [5326, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
526
|
+
"OpHitObjectGetObjectRayOriginEXT" => [5327, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
527
|
+
"OpHitObjectGetObjectRayDirectionEXT" => [5328, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
528
|
+
"OpHitObjectGetWorldRayDirectionEXT" => [5329, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
529
|
+
"OpHitObjectGetWorldRayOriginEXT" => [5330, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
530
|
+
"OpHitObjectGetObjectToWorldEXT" => [5331, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
531
|
+
"OpHitObjectGetWorldToObjectEXT" => [5332, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
532
|
+
"OpHitObjectGetRayTMaxEXT" => [5333, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
533
|
+
"OpReportIntersectionKHR" => [5334, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
534
|
+
"OpIgnoreIntersectionNV" => [5335, []],
|
|
535
|
+
"OpTerminateRayNV" => [5336, []],
|
|
536
|
+
"OpTraceNV" => [5337, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
537
|
+
"OpTraceMotionNV" => [5338, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
538
|
+
"OpTraceRayMotionNV" => [5339, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
539
|
+
"OpRayQueryGetIntersectionTriangleVertexPositionsKHR" => [5340, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
540
|
+
"OpTypeAccelerationStructureKHR" => [5341, [["IdResult", ""]]],
|
|
541
|
+
"OpExecuteCallableNV" => [5344, [["IdRef", ""], ["IdRef", ""]]],
|
|
542
|
+
"OpRayQueryGetIntersectionClusterIdNV" => [5345, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
543
|
+
"OpHitObjectGetClusterIdNV" => [5346, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
544
|
+
"OpHitObjectGetRayTMinEXT" => [5347, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
545
|
+
"OpHitObjectGetShaderBindingTableRecordIndexEXT" => [5348, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
546
|
+
"OpHitObjectGetShaderRecordBufferHandleEXT" => [5349, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
547
|
+
"OpHitObjectIsEmptyEXT" => [5350, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
548
|
+
"OpHitObjectIsHitEXT" => [5351, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
549
|
+
"OpHitObjectIsMissEXT" => [5352, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
550
|
+
"OpTypeCooperativeMatrixNV" => [5358, [["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
551
|
+
"OpCooperativeMatrixLoadNV" => [5359, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
552
|
+
"OpCooperativeMatrixStoreNV" => [5360, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
553
|
+
"OpCooperativeMatrixMulAddNV" => [5361, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
554
|
+
"OpCooperativeMatrixLengthNV" => [5362, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
555
|
+
"OpCooperativeMatrixGetCoordinateEXT" => [5363, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
556
|
+
"OpBeginInvocationInterlockEXT" => [5364, []],
|
|
557
|
+
"OpEndInvocationInterlockEXT" => [5365, []],
|
|
558
|
+
"OpCooperativeMatrixReduceEXT" => [5366, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["CooperativeMatrixReduce", ""], ["IdRef", ""]]],
|
|
559
|
+
"OpCooperativeMatrixLoadTensorNV" => [5367, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", ""], ["TensorAddressingOperands", ""]]],
|
|
560
|
+
"OpCooperativeMatrixStoreTensorNV" => [5368, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", ""], ["TensorAddressingOperands", ""]]],
|
|
561
|
+
"OpCooperativeMatrixPerElementOpEXT" => [5369, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
562
|
+
"OpTypeTensorLayoutNV" => [5370, [["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
563
|
+
"OpTypeTensorViewNV" => [5371, [["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
564
|
+
"OpCreateTensorLayoutNV" => [5372, [["IdResultType", ""], ["IdResult", ""]]],
|
|
565
|
+
"OpTensorLayoutSetDimensionNV" => [5373, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
566
|
+
"OpTensorLayoutSetStrideNV" => [5374, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
567
|
+
"OpTensorLayoutSliceNV" => [5375, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
568
|
+
"OpTensorLayoutSetClampValueNV" => [5376, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
569
|
+
"OpCreateTensorViewNV" => [5377, [["IdResultType", ""], ["IdResult", ""]]],
|
|
570
|
+
"OpTensorViewSetDimensionNV" => [5378, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
571
|
+
"OpTensorViewSetStrideNV" => [5379, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
572
|
+
"OpDemoteToHelperInvocation" => [5380, []],
|
|
573
|
+
"OpIsHelperInvocationEXT" => [5381, [["IdResultType", ""], ["IdResult", ""]]],
|
|
574
|
+
"OpTensorViewSetClipNV" => [5382, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
575
|
+
"OpTensorLayoutSetBlockSizeNV" => [5384, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
576
|
+
"OpCooperativeMatrixTransposeNV" => [5390, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
577
|
+
"OpConvertUToImageNV" => [5391, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
578
|
+
"OpConvertUToSamplerNV" => [5392, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
579
|
+
"OpConvertImageToUNV" => [5393, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
580
|
+
"OpConvertSamplerToUNV" => [5394, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
581
|
+
"OpConvertUToSampledImageNV" => [5395, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
582
|
+
"OpConvertSampledImageToUNV" => [5396, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
583
|
+
"OpSamplerImageAddressingModeNV" => [5397, [["LiteralInteger", ""]]],
|
|
584
|
+
"OpRawAccessChainNV" => [5398, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["RawAccessChainOperands", "?"]]],
|
|
585
|
+
"OpRayQueryGetIntersectionSpherePositionNV" => [5427, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
586
|
+
"OpRayQueryGetIntersectionSphereRadiusNV" => [5428, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
587
|
+
"OpRayQueryGetIntersectionLSSPositionsNV" => [5429, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
588
|
+
"OpRayQueryGetIntersectionLSSRadiiNV" => [5430, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
589
|
+
"OpRayQueryGetIntersectionLSSHitValueNV" => [5431, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
590
|
+
"OpHitObjectGetSpherePositionNV" => [5432, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
591
|
+
"OpHitObjectGetSphereRadiusNV" => [5433, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
592
|
+
"OpHitObjectGetLSSPositionsNV" => [5434, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
593
|
+
"OpHitObjectGetLSSRadiiNV" => [5435, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
594
|
+
"OpHitObjectIsSphereHitNV" => [5436, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
595
|
+
"OpHitObjectIsLSSHitNV" => [5437, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
596
|
+
"OpRayQueryIsSphereHitNV" => [5438, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
597
|
+
"OpRayQueryIsLSSHitNV" => [5439, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
598
|
+
"OpSubgroupShuffleINTEL" => [5571, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
599
|
+
"OpSubgroupShuffleDownINTEL" => [5572, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
600
|
+
"OpSubgroupShuffleUpINTEL" => [5573, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
601
|
+
"OpSubgroupShuffleXorINTEL" => [5574, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
602
|
+
"OpSubgroupBlockReadINTEL" => [5575, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
603
|
+
"OpSubgroupBlockWriteINTEL" => [5576, [["IdRef", ""], ["IdRef", ""]]],
|
|
604
|
+
"OpSubgroupImageBlockReadINTEL" => [5577, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
605
|
+
"OpSubgroupImageBlockWriteINTEL" => [5578, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
606
|
+
"OpSubgroupImageMediaBlockReadINTEL" => [5580, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
607
|
+
"OpSubgroupImageMediaBlockWriteINTEL" => [5581, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
608
|
+
"OpUCountLeadingZerosINTEL" => [5585, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
609
|
+
"OpUCountTrailingZerosINTEL" => [5586, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
610
|
+
"OpAbsISubINTEL" => [5587, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
611
|
+
"OpAbsUSubINTEL" => [5588, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
612
|
+
"OpIAddSatINTEL" => [5589, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
613
|
+
"OpUAddSatINTEL" => [5590, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
614
|
+
"OpIAverageINTEL" => [5591, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
615
|
+
"OpUAverageINTEL" => [5592, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
616
|
+
"OpIAverageRoundedINTEL" => [5593, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
617
|
+
"OpUAverageRoundedINTEL" => [5594, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
618
|
+
"OpISubSatINTEL" => [5595, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
619
|
+
"OpUSubSatINTEL" => [5596, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
620
|
+
"OpIMul32x16INTEL" => [5597, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
621
|
+
"OpUMul32x16INTEL" => [5598, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
622
|
+
"OpConstantFunctionPointerINTEL" => [5600, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
623
|
+
"OpFunctionPointerCallINTEL" => [5601, [["IdResultType", ""], ["IdResult", ""], ["IdRef", "*"]]],
|
|
624
|
+
"OpAsmTargetINTEL" => [5609, [["IdResult", ""], ["LiteralString", ""]]],
|
|
625
|
+
"OpAsmINTEL" => [5610, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["LiteralString", ""], ["LiteralString", ""]]],
|
|
626
|
+
"OpAsmCallINTEL" => [5611, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", "*"]]],
|
|
627
|
+
"OpAtomicFMinEXT" => [5614, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
628
|
+
"OpAtomicFMaxEXT" => [5615, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
629
|
+
"OpAssumeTrueKHR" => [5630, [["IdRef", ""]]],
|
|
630
|
+
"OpExpectKHR" => [5631, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
631
|
+
"OpDecorateString" => [5632, [["IdRef", ""], ["Decoration", ""]]],
|
|
632
|
+
"OpMemberDecorateString" => [5633, [["IdRef", ""], ["LiteralInteger", ""], ["Decoration", ""]]],
|
|
633
|
+
"OpVmeImageINTEL" => [5699, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
634
|
+
"OpTypeVmeImageINTEL" => [5700, [["IdResult", ""], ["IdRef", ""]]],
|
|
635
|
+
"OpTypeAvcImePayloadINTEL" => [5701, [["IdResult", ""]]],
|
|
636
|
+
"OpTypeAvcRefPayloadINTEL" => [5702, [["IdResult", ""]]],
|
|
637
|
+
"OpTypeAvcSicPayloadINTEL" => [5703, [["IdResult", ""]]],
|
|
638
|
+
"OpTypeAvcMcePayloadINTEL" => [5704, [["IdResult", ""]]],
|
|
639
|
+
"OpTypeAvcMceResultINTEL" => [5705, [["IdResult", ""]]],
|
|
640
|
+
"OpTypeAvcImeResultINTEL" => [5706, [["IdResult", ""]]],
|
|
641
|
+
"OpTypeAvcImeResultSingleReferenceStreamoutINTEL" => [5707, [["IdResult", ""]]],
|
|
642
|
+
"OpTypeAvcImeResultDualReferenceStreamoutINTEL" => [5708, [["IdResult", ""]]],
|
|
643
|
+
"OpTypeAvcImeSingleReferenceStreaminINTEL" => [5709, [["IdResult", ""]]],
|
|
644
|
+
"OpTypeAvcImeDualReferenceStreaminINTEL" => [5710, [["IdResult", ""]]],
|
|
645
|
+
"OpTypeAvcRefResultINTEL" => [5711, [["IdResult", ""]]],
|
|
646
|
+
"OpTypeAvcSicResultINTEL" => [5712, [["IdResult", ""]]],
|
|
647
|
+
"OpSubgroupAvcMceGetDefaultInterBaseMultiReferencePenaltyINTEL" => [5713, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
648
|
+
"OpSubgroupAvcMceSetInterBaseMultiReferencePenaltyINTEL" => [5714, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
649
|
+
"OpSubgroupAvcMceGetDefaultInterShapePenaltyINTEL" => [5715, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
650
|
+
"OpSubgroupAvcMceSetInterShapePenaltyINTEL" => [5716, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
651
|
+
"OpSubgroupAvcMceGetDefaultInterDirectionPenaltyINTEL" => [5717, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
652
|
+
"OpSubgroupAvcMceSetInterDirectionPenaltyINTEL" => [5718, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
653
|
+
"OpSubgroupAvcMceGetDefaultIntraLumaShapePenaltyINTEL" => [5719, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
654
|
+
"OpSubgroupAvcMceGetDefaultInterMotionVectorCostTableINTEL" => [5720, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
655
|
+
"OpSubgroupAvcMceGetDefaultHighPenaltyCostTableINTEL" => [5721, [["IdResultType", ""], ["IdResult", ""]]],
|
|
656
|
+
"OpSubgroupAvcMceGetDefaultMediumPenaltyCostTableINTEL" => [5722, [["IdResultType", ""], ["IdResult", ""]]],
|
|
657
|
+
"OpSubgroupAvcMceGetDefaultLowPenaltyCostTableINTEL" => [5723, [["IdResultType", ""], ["IdResult", ""]]],
|
|
658
|
+
"OpSubgroupAvcMceSetMotionVectorCostFunctionINTEL" => [5724, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
659
|
+
"OpSubgroupAvcMceGetDefaultIntraLumaModePenaltyINTEL" => [5725, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
660
|
+
"OpSubgroupAvcMceGetDefaultNonDcLumaIntraPenaltyINTEL" => [5726, [["IdResultType", ""], ["IdResult", ""]]],
|
|
661
|
+
"OpSubgroupAvcMceGetDefaultIntraChromaModeBasePenaltyINTEL" => [5727, [["IdResultType", ""], ["IdResult", ""]]],
|
|
662
|
+
"OpSubgroupAvcMceSetAcOnlyHaarINTEL" => [5728, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
663
|
+
"OpSubgroupAvcMceSetSourceInterlacedFieldPolarityINTEL" => [5729, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
664
|
+
"OpSubgroupAvcMceSetSingleReferenceInterlacedFieldPolarityINTEL" => [5730, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
665
|
+
"OpSubgroupAvcMceSetDualReferenceInterlacedFieldPolaritiesINTEL" => [5731, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
666
|
+
"OpSubgroupAvcMceConvertToImePayloadINTEL" => [5732, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
667
|
+
"OpSubgroupAvcMceConvertToImeResultINTEL" => [5733, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
668
|
+
"OpSubgroupAvcMceConvertToRefPayloadINTEL" => [5734, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
669
|
+
"OpSubgroupAvcMceConvertToRefResultINTEL" => [5735, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
670
|
+
"OpSubgroupAvcMceConvertToSicPayloadINTEL" => [5736, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
671
|
+
"OpSubgroupAvcMceConvertToSicResultINTEL" => [5737, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
672
|
+
"OpSubgroupAvcMceGetMotionVectorsINTEL" => [5738, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
673
|
+
"OpSubgroupAvcMceGetInterDistortionsINTEL" => [5739, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
674
|
+
"OpSubgroupAvcMceGetBestInterDistortionsINTEL" => [5740, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
675
|
+
"OpSubgroupAvcMceGetInterMajorShapeINTEL" => [5741, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
676
|
+
"OpSubgroupAvcMceGetInterMinorShapeINTEL" => [5742, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
677
|
+
"OpSubgroupAvcMceGetInterDirectionsINTEL" => [5743, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
678
|
+
"OpSubgroupAvcMceGetInterMotionVectorCountINTEL" => [5744, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
679
|
+
"OpSubgroupAvcMceGetInterReferenceIdsINTEL" => [5745, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
680
|
+
"OpSubgroupAvcMceGetInterReferenceInterlacedFieldPolaritiesINTEL" => [5746, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
681
|
+
"OpSubgroupAvcImeInitializeINTEL" => [5747, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
682
|
+
"OpSubgroupAvcImeSetSingleReferenceINTEL" => [5748, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
683
|
+
"OpSubgroupAvcImeSetDualReferenceINTEL" => [5749, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
684
|
+
"OpSubgroupAvcImeRefWindowSizeINTEL" => [5750, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
685
|
+
"OpSubgroupAvcImeAdjustRefOffsetINTEL" => [5751, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
686
|
+
"OpSubgroupAvcImeConvertToMcePayloadINTEL" => [5752, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
687
|
+
"OpSubgroupAvcImeSetMaxMotionVectorCountINTEL" => [5753, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
688
|
+
"OpSubgroupAvcImeSetUnidirectionalMixDisableINTEL" => [5754, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
689
|
+
"OpSubgroupAvcImeSetEarlySearchTerminationThresholdINTEL" => [5755, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
690
|
+
"OpSubgroupAvcImeSetWeightedSadINTEL" => [5756, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
691
|
+
"OpSubgroupAvcImeEvaluateWithSingleReferenceINTEL" => [5757, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
692
|
+
"OpSubgroupAvcImeEvaluateWithDualReferenceINTEL" => [5758, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
693
|
+
"OpSubgroupAvcImeEvaluateWithSingleReferenceStreaminINTEL" => [5759, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
694
|
+
"OpSubgroupAvcImeEvaluateWithDualReferenceStreaminINTEL" => [5760, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
695
|
+
"OpSubgroupAvcImeEvaluateWithSingleReferenceStreamoutINTEL" => [5761, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
696
|
+
"OpSubgroupAvcImeEvaluateWithDualReferenceStreamoutINTEL" => [5762, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
697
|
+
"OpSubgroupAvcImeEvaluateWithSingleReferenceStreaminoutINTEL" => [5763, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
698
|
+
"OpSubgroupAvcImeEvaluateWithDualReferenceStreaminoutINTEL" => [5764, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
699
|
+
"OpSubgroupAvcImeConvertToMceResultINTEL" => [5765, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
700
|
+
"OpSubgroupAvcImeGetSingleReferenceStreaminINTEL" => [5766, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
701
|
+
"OpSubgroupAvcImeGetDualReferenceStreaminINTEL" => [5767, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
702
|
+
"OpSubgroupAvcImeStripSingleReferenceStreamoutINTEL" => [5768, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
703
|
+
"OpSubgroupAvcImeStripDualReferenceStreamoutINTEL" => [5769, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
704
|
+
"OpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeMotionVectorsINTEL" => [5770, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
705
|
+
"OpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeDistortionsINTEL" => [5771, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
706
|
+
"OpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeReferenceIdsINTEL" => [5772, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
707
|
+
"OpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeMotionVectorsINTEL" => [5773, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
708
|
+
"OpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeDistortionsINTEL" => [5774, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
709
|
+
"OpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeReferenceIdsINTEL" => [5775, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
710
|
+
"OpSubgroupAvcImeGetBorderReachedINTEL" => [5776, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
711
|
+
"OpSubgroupAvcImeGetTruncatedSearchIndicationINTEL" => [5777, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
712
|
+
"OpSubgroupAvcImeGetUnidirectionalEarlySearchTerminationINTEL" => [5778, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
713
|
+
"OpSubgroupAvcImeGetWeightingPatternMinimumMotionVectorINTEL" => [5779, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
714
|
+
"OpSubgroupAvcImeGetWeightingPatternMinimumDistortionINTEL" => [5780, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
715
|
+
"OpSubgroupAvcFmeInitializeINTEL" => [5781, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
716
|
+
"OpSubgroupAvcBmeInitializeINTEL" => [5782, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
717
|
+
"OpSubgroupAvcRefConvertToMcePayloadINTEL" => [5783, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
718
|
+
"OpSubgroupAvcRefSetBidirectionalMixDisableINTEL" => [5784, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
719
|
+
"OpSubgroupAvcRefSetBilinearFilterEnableINTEL" => [5785, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
720
|
+
"OpSubgroupAvcRefEvaluateWithSingleReferenceINTEL" => [5786, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
721
|
+
"OpSubgroupAvcRefEvaluateWithDualReferenceINTEL" => [5787, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
722
|
+
"OpSubgroupAvcRefEvaluateWithMultiReferenceINTEL" => [5788, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
723
|
+
"OpSubgroupAvcRefEvaluateWithMultiReferenceInterlacedINTEL" => [5789, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
724
|
+
"OpSubgroupAvcRefConvertToMceResultINTEL" => [5790, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
725
|
+
"OpSubgroupAvcSicInitializeINTEL" => [5791, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
726
|
+
"OpSubgroupAvcSicConfigureSkcINTEL" => [5792, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
727
|
+
"OpSubgroupAvcSicConfigureIpeLumaINTEL" => [5793, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
728
|
+
"OpSubgroupAvcSicConfigureIpeLumaChromaINTEL" => [5794, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
729
|
+
"OpSubgroupAvcSicGetMotionVectorMaskINTEL" => [5795, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
730
|
+
"OpSubgroupAvcSicConvertToMcePayloadINTEL" => [5796, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
731
|
+
"OpSubgroupAvcSicSetIntraLumaShapePenaltyINTEL" => [5797, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
732
|
+
"OpSubgroupAvcSicSetIntraLumaModeCostFunctionINTEL" => [5798, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
733
|
+
"OpSubgroupAvcSicSetIntraChromaModeCostFunctionINTEL" => [5799, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
734
|
+
"OpSubgroupAvcSicSetBilinearFilterEnableINTEL" => [5800, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
735
|
+
"OpSubgroupAvcSicSetSkcForwardTransformEnableINTEL" => [5801, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
736
|
+
"OpSubgroupAvcSicSetBlockBasedRawSkipSadINTEL" => [5802, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
737
|
+
"OpSubgroupAvcSicEvaluateIpeINTEL" => [5803, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
738
|
+
"OpSubgroupAvcSicEvaluateWithSingleReferenceINTEL" => [5804, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
739
|
+
"OpSubgroupAvcSicEvaluateWithDualReferenceINTEL" => [5805, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
740
|
+
"OpSubgroupAvcSicEvaluateWithMultiReferenceINTEL" => [5806, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
741
|
+
"OpSubgroupAvcSicEvaluateWithMultiReferenceInterlacedINTEL" => [5807, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
742
|
+
"OpSubgroupAvcSicConvertToMceResultINTEL" => [5808, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
743
|
+
"OpSubgroupAvcSicGetIpeLumaShapeINTEL" => [5809, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
744
|
+
"OpSubgroupAvcSicGetBestIpeLumaDistortionINTEL" => [5810, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
745
|
+
"OpSubgroupAvcSicGetBestIpeChromaDistortionINTEL" => [5811, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
746
|
+
"OpSubgroupAvcSicGetPackedIpeLumaModesINTEL" => [5812, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
747
|
+
"OpSubgroupAvcSicGetIpeChromaModeINTEL" => [5813, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
748
|
+
"OpSubgroupAvcSicGetPackedSkcLumaCountThresholdINTEL" => [5814, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
749
|
+
"OpSubgroupAvcSicGetPackedSkcLumaSumThresholdINTEL" => [5815, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
750
|
+
"OpSubgroupAvcSicGetInterRawSadsINTEL" => [5816, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
751
|
+
"OpVariableLengthArrayINTEL" => [5818, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
752
|
+
"OpSaveMemoryINTEL" => [5819, [["IdResultType", ""], ["IdResult", ""]]],
|
|
753
|
+
"OpRestoreMemoryINTEL" => [5820, [["IdRef", ""]]],
|
|
754
|
+
"OpArbitraryFloatSinCosPiALTERA" => [5840, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
755
|
+
"OpArbitraryFloatCastALTERA" => [5841, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
756
|
+
"OpArbitraryFloatCastFromIntALTERA" => [5842, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
757
|
+
"OpArbitraryFloatCastToIntALTERA" => [5843, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
758
|
+
"OpArbitraryFloatAddALTERA" => [5846, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
759
|
+
"OpArbitraryFloatSubALTERA" => [5847, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
760
|
+
"OpArbitraryFloatMulALTERA" => [5848, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
761
|
+
"OpArbitraryFloatDivALTERA" => [5849, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
762
|
+
"OpArbitraryFloatGTALTERA" => [5850, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
763
|
+
"OpArbitraryFloatGEALTERA" => [5851, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
764
|
+
"OpArbitraryFloatLTALTERA" => [5852, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
765
|
+
"OpArbitraryFloatLEALTERA" => [5853, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
766
|
+
"OpArbitraryFloatEQALTERA" => [5854, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""]]],
|
|
767
|
+
"OpArbitraryFloatRecipALTERA" => [5855, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
768
|
+
"OpArbitraryFloatRSqrtALTERA" => [5856, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
769
|
+
"OpArbitraryFloatCbrtALTERA" => [5857, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
770
|
+
"OpArbitraryFloatHypotALTERA" => [5858, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
771
|
+
"OpArbitraryFloatSqrtALTERA" => [5859, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
772
|
+
"OpArbitraryFloatLogINTEL" => [5860, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
773
|
+
"OpArbitraryFloatLog2INTEL" => [5861, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
774
|
+
"OpArbitraryFloatLog10INTEL" => [5862, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
775
|
+
"OpArbitraryFloatLog1pINTEL" => [5863, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
776
|
+
"OpArbitraryFloatExpINTEL" => [5864, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
777
|
+
"OpArbitraryFloatExp2INTEL" => [5865, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
778
|
+
"OpArbitraryFloatExp10INTEL" => [5866, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
779
|
+
"OpArbitraryFloatExpm1INTEL" => [5867, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
780
|
+
"OpArbitraryFloatSinINTEL" => [5868, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
781
|
+
"OpArbitraryFloatCosINTEL" => [5869, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
782
|
+
"OpArbitraryFloatSinCosINTEL" => [5870, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
783
|
+
"OpArbitraryFloatSinPiINTEL" => [5871, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
784
|
+
"OpArbitraryFloatCosPiINTEL" => [5872, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
785
|
+
"OpArbitraryFloatASinINTEL" => [5873, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
786
|
+
"OpArbitraryFloatASinPiINTEL" => [5874, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
787
|
+
"OpArbitraryFloatACosINTEL" => [5875, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
788
|
+
"OpArbitraryFloatACosPiINTEL" => [5876, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
789
|
+
"OpArbitraryFloatATanINTEL" => [5877, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
790
|
+
"OpArbitraryFloatATanPiINTEL" => [5878, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
791
|
+
"OpArbitraryFloatATan2INTEL" => [5879, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
792
|
+
"OpArbitraryFloatPowINTEL" => [5880, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
793
|
+
"OpArbitraryFloatPowRINTEL" => [5881, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
794
|
+
"OpArbitraryFloatPowNINTEL" => [5882, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
795
|
+
"OpLoopControlINTEL" => [5887, [["LiteralInteger", "*"]]],
|
|
796
|
+
"OpAliasDomainDeclINTEL" => [5911, [["IdResult", ""], ["IdRef", "?"]]],
|
|
797
|
+
"OpAliasScopeDeclINTEL" => [5912, [["IdResult", ""], ["IdRef", ""], ["IdRef", "?"]]],
|
|
798
|
+
"OpAliasScopeListDeclINTEL" => [5913, [["IdResult", ""], ["IdRef", "*"]]],
|
|
799
|
+
"OpFixedSqrtALTERA" => [5923, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
800
|
+
"OpFixedRecipALTERA" => [5924, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
801
|
+
"OpFixedRsqrtALTERA" => [5925, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
802
|
+
"OpFixedSinALTERA" => [5926, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
803
|
+
"OpFixedCosALTERA" => [5927, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
804
|
+
"OpFixedSinCosALTERA" => [5928, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
805
|
+
"OpFixedSinPiALTERA" => [5929, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
806
|
+
"OpFixedCosPiALTERA" => [5930, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
807
|
+
"OpFixedSinCosPiALTERA" => [5931, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
808
|
+
"OpFixedLogALTERA" => [5932, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
809
|
+
"OpFixedExpALTERA" => [5933, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
810
|
+
"OpPtrCastToCrossWorkgroupALTERA" => [5934, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
811
|
+
"OpCrossWorkgroupCastToPtrALTERA" => [5938, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
812
|
+
"OpReadPipeBlockingALTERA" => [5946, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
813
|
+
"OpWritePipeBlockingALTERA" => [5947, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
814
|
+
"OpFPGARegALTERA" => [5949, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
815
|
+
"OpRayQueryGetRayTMinKHR" => [6016, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
816
|
+
"OpRayQueryGetRayFlagsKHR" => [6017, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
817
|
+
"OpRayQueryGetIntersectionTKHR" => [6018, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
818
|
+
"OpRayQueryGetIntersectionInstanceCustomIndexKHR" => [6019, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
819
|
+
"OpRayQueryGetIntersectionInstanceIdKHR" => [6020, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
820
|
+
"OpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffsetKHR" => [6021, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
821
|
+
"OpRayQueryGetIntersectionGeometryIndexKHR" => [6022, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
822
|
+
"OpRayQueryGetIntersectionPrimitiveIndexKHR" => [6023, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
823
|
+
"OpRayQueryGetIntersectionBarycentricsKHR" => [6024, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
824
|
+
"OpRayQueryGetIntersectionFrontFaceKHR" => [6025, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
825
|
+
"OpRayQueryGetIntersectionCandidateAABBOpaqueKHR" => [6026, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
826
|
+
"OpRayQueryGetIntersectionObjectRayDirectionKHR" => [6027, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
827
|
+
"OpRayQueryGetIntersectionObjectRayOriginKHR" => [6028, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
828
|
+
"OpRayQueryGetWorldRayDirectionKHR" => [6029, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
829
|
+
"OpRayQueryGetWorldRayOriginKHR" => [6030, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
830
|
+
"OpRayQueryGetIntersectionObjectToWorldKHR" => [6031, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
831
|
+
"OpRayQueryGetIntersectionWorldToObjectKHR" => [6032, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
832
|
+
"OpAtomicFAddEXT" => [6035, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdScope", ""], ["IdMemorySemantics", ""], ["IdRef", ""]]],
|
|
833
|
+
"OpTypeBufferSurfaceINTEL" => [6086, [["IdResult", ""], ["AccessQualifier", ""]]],
|
|
834
|
+
"OpTypeStructContinuedINTEL" => [6090, [["IdRef", "*"]]],
|
|
835
|
+
"OpConstantCompositeContinuedINTEL" => [6091, [["IdRef", "*"]]],
|
|
836
|
+
"OpSpecConstantCompositeContinuedINTEL" => [6092, [["IdRef", "*"]]],
|
|
837
|
+
"OpCompositeConstructContinuedINTEL" => [6096, [["IdRef", "*"]]],
|
|
838
|
+
"OpConvertFToBF16INTEL" => [6116, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
839
|
+
"OpConvertBF16ToFINTEL" => [6117, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
840
|
+
"OpControlBarrierArriveEXT" => [6142, [["IdScope", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
841
|
+
"OpControlBarrierWaitEXT" => [6143, [["IdScope", ""], ["IdScope", ""], ["IdMemorySemantics", ""]]],
|
|
842
|
+
"OpArithmeticFenceEXT" => [6145, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
843
|
+
"OpTaskSequenceCreateALTERA" => [6163, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
844
|
+
"OpTaskSequenceAsyncALTERA" => [6164, [["IdRef", ""], ["IdRef", "*"]]],
|
|
845
|
+
"OpTaskSequenceGetALTERA" => [6165, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
846
|
+
"OpTaskSequenceReleaseALTERA" => [6166, [["IdRef", ""]]],
|
|
847
|
+
"OpTypeTaskSequenceALTERA" => [6199, [["IdResult", ""]]],
|
|
848
|
+
"OpSubgroupBlockPrefetchINTEL" => [6221, [["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
849
|
+
"OpSubgroup2DBlockLoadINTEL" => [6231, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
850
|
+
"OpSubgroup2DBlockLoadTransformINTEL" => [6232, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
851
|
+
"OpSubgroup2DBlockLoadTransposeINTEL" => [6233, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
852
|
+
"OpSubgroup2DBlockPrefetchINTEL" => [6234, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
853
|
+
"OpSubgroup2DBlockStoreINTEL" => [6235, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
854
|
+
"OpSubgroupMatrixMultiplyAccumulateINTEL" => [6237, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MatrixMultiplyAccumulateOperands", "?"]]],
|
|
855
|
+
"OpBitwiseFunctionINTEL" => [6242, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
856
|
+
"OpUntypedVariableLengthArrayINTEL" => [6244, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
857
|
+
"OpConditionalExtensionINTEL" => [6248, [["IdRef", ""], ["LiteralString", ""]]],
|
|
858
|
+
"OpConditionalEntryPointINTEL" => [6249, [["IdRef", ""], ["ExecutionModel", ""], ["IdRef", ""], ["LiteralString", ""], ["IdRef", "*"]]],
|
|
859
|
+
"OpConditionalCapabilityINTEL" => [6250, [["IdRef", ""], ["Capability", ""]]],
|
|
860
|
+
"OpSpecConstantTargetINTEL" => [6251, [["IdResultType", ""], ["IdResult", ""], ["LiteralInteger", ""], ["LiteralInteger", "*"]]],
|
|
861
|
+
"OpSpecConstantArchitectureINTEL" => [6252, [["IdResultType", ""], ["IdResult", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]],
|
|
862
|
+
"OpSpecConstantCapabilitiesINTEL" => [6253, [["IdResultType", ""], ["IdResult", ""], ["Capability", "*"]]],
|
|
863
|
+
"OpConditionalCopyObjectINTEL" => [6254, [["IdResultType", ""], ["IdResult", ""], ["IdRef", "*"]]],
|
|
864
|
+
"OpPredicatedLoadINTEL" => [6258, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
865
|
+
"OpPredicatedStoreINTEL" => [6259, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""], ["MemoryAccess", "?"]]],
|
|
866
|
+
"OpGroupIMulKHR" => [6401, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
867
|
+
"OpGroupFMulKHR" => [6402, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
868
|
+
"OpGroupBitwiseAndKHR" => [6403, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
869
|
+
"OpGroupBitwiseOrKHR" => [6404, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
870
|
+
"OpGroupBitwiseXorKHR" => [6405, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
871
|
+
"OpGroupLogicalAndKHR" => [6406, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
872
|
+
"OpGroupLogicalOrKHR" => [6407, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
873
|
+
"OpGroupLogicalXorKHR" => [6408, [["IdResultType", ""], ["IdResult", ""], ["IdScope", ""], ["GroupOperation", ""], ["IdRef", ""]]],
|
|
874
|
+
"OpRoundFToTF32INTEL" => [6426, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
875
|
+
"OpMaskedGatherINTEL" => [6428, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
876
|
+
"OpMaskedScatterINTEL" => [6429, [["IdRef", ""], ["IdRef", ""], ["LiteralInteger", ""], ["IdRef", ""]]],
|
|
877
|
+
"OpConvertHandleToImageINTEL" => [6529, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
878
|
+
"OpConvertHandleToSamplerINTEL" => [6530, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
879
|
+
"OpConvertHandleToSampledImageINTEL" => [6531, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""]]],
|
|
880
|
+
"OpFDot2MixAcc32VALVE" => [6916, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
881
|
+
"OpFDot2MixAcc16VALVE" => [6917, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
882
|
+
"OpFDot4MixAcc32VALVE" => [6918, [["IdResultType", ""], ["IdResult", ""], ["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]],
|
|
883
|
+
}.freeze
|
|
884
|
+
OPERAND_KINDS = {
|
|
885
|
+
"ImageOperands" => ["BitEnum", {"None" => [0, []], "Bias" => [1, [["IdRef", ""]]], "Lod" => [2, [["IdRef", ""]]], "Grad" => [4, [["IdRef", ""], ["IdRef", ""]]], "ConstOffset" => [8, [["IdRef", ""]]], "Offset" => [16, [["IdRef", ""]]], "ConstOffsets" => [32, [["IdRef", ""]]], "Sample" => [64, [["IdRef", ""]]], "MinLod" => [128, [["IdRef", ""]]], "MakeTexelAvailable" => [256, [["IdScope", ""]]], "MakeTexelVisible" => [512, [["IdScope", ""]]], "NonPrivateTexel" => [1024, []], "VolatileTexel" => [2048, []], "SignExtend" => [4096, []], "ZeroExtend" => [8192, []], "Nontemporal" => [16384, []], "Offsets" => [65536, [["IdRef", ""]]]}, []],
|
|
886
|
+
"FPFastMathMode" => ["BitEnum", {"None" => [0, []], "NotNaN" => [1, []], "NotInf" => [2, []], "NSZ" => [4, []], "AllowRecip" => [8, []], "Fast" => [16, []], "AllowContract" => [65536, []], "AllowReassoc" => [131072, []], "AllowTransform" => [262144, []]}, []],
|
|
887
|
+
"SelectionControl" => ["BitEnum", {"None" => [0, []], "Flatten" => [1, []], "DontFlatten" => [2, []]}, []],
|
|
888
|
+
"LoopControl" => ["BitEnum", {"None" => [0, []], "Unroll" => [1, []], "DontUnroll" => [2, []], "DependencyInfinite" => [4, []], "DependencyLength" => [8, [["LiteralInteger", ""]]], "MinIterations" => [16, [["LiteralInteger", ""]]], "MaxIterations" => [32, [["LiteralInteger", ""]]], "IterationMultiple" => [64, [["LiteralInteger", ""]]], "PeelCount" => [128, [["LiteralInteger", ""]]], "PartialCount" => [256, [["LiteralInteger", ""]]], "InitiationIntervalALTERA" => [65536, [["LiteralInteger", ""]]], "MaxConcurrencyALTERA" => [131072, [["LiteralInteger", ""]]], "DependencyArrayALTERA" => [262144, [["LiteralInteger", ""]]], "PipelineEnableALTERA" => [524288, [["LiteralInteger", ""]]], "LoopCoalesceALTERA" => [1048576, [["LiteralInteger", ""]]], "MaxInterleavingALTERA" => [2097152, [["LiteralInteger", ""]]], "SpeculatedIterationsALTERA" => [4194304, [["LiteralInteger", ""]]], "NoFusionALTERA" => [8388608, []], "LoopCountALTERA" => [16777216, [["LiteralInteger", ""]]], "MaxReinvocationDelayALTERA" => [33554432, [["LiteralInteger", ""]]], "MultipleWaitQueuesQCOM" => [268435456, [["LiteralInteger", ""]]]}, []],
|
|
889
|
+
"FunctionControl" => ["BitEnum", {"None" => [0, []], "Inline" => [1, []], "DontInline" => [2, []], "Pure" => [4, []], "Const" => [8, []], "OptNoneEXT" => [65536, []]}, []],
|
|
890
|
+
"MemorySemantics" => ["BitEnum", {"Relaxed" => [0, []], "Acquire" => [2, []], "Release" => [4, []], "AcquireRelease" => [8, []], "SequentiallyConsistent" => [16, []], "UniformMemory" => [64, []], "SubgroupMemory" => [128, []], "WorkgroupMemory" => [256, []], "CrossWorkgroupMemory" => [512, []], "AtomicCounterMemory" => [1024, []], "ImageMemory" => [2048, []], "OutputMemory" => [4096, []], "MakeAvailable" => [8192, []], "MakeVisible" => [16384, []], "Volatile" => [32768, []]}, []],
|
|
891
|
+
"MemoryAccess" => ["BitEnum", {"None" => [0, []], "Volatile" => [1, []], "Aligned" => [2, [["LiteralInteger", ""]]], "Nontemporal" => [4, []], "MakePointerAvailable" => [8, [["IdScope", ""]]], "MakePointerVisible" => [16, [["IdScope", ""]]], "NonPrivatePointer" => [32, []], "AliasScopeINTELMask" => [65536, [["IdRef", ""]]], "NoAliasINTELMask" => [131072, [["IdRef", ""]]]}, []],
|
|
892
|
+
"KernelProfilingInfo" => ["BitEnum", {"None" => [0, []], "CmdExecTime" => [1, []]}, []],
|
|
893
|
+
"RayFlags" => ["BitEnum", {"NoneKHR" => [0, []], "OpaqueKHR" => [1, []], "NoOpaqueKHR" => [2, []], "TerminateOnFirstHitKHR" => [4, []], "SkipClosestHitShaderKHR" => [8, []], "CullBackFacingTrianglesKHR" => [16, []], "CullFrontFacingTrianglesKHR" => [32, []], "CullOpaqueKHR" => [64, []], "CullNoOpaqueKHR" => [128, []], "SkipTrianglesKHR" => [256, []], "SkipAABBsKHR" => [512, []], "ForceOpacityMicromap2StateKHR" => [1024, []]}, []],
|
|
894
|
+
"FragmentShadingRate" => ["BitEnum", {"Vertical2Pixels" => [1, []], "Vertical4Pixels" => [2, []], "Horizontal2Pixels" => [4, []], "Horizontal4Pixels" => [8, []]}, []],
|
|
895
|
+
"RawAccessChainOperands" => ["BitEnum", {"None" => [0, []], "RobustnessPerComponentNV" => [1, []], "RobustnessPerElementNV" => [2, []]}, []],
|
|
896
|
+
"SourceLanguage" => ["ValueEnum", {"Unknown" => [0, []], "ESSL" => [1, []], "GLSL" => [2, []], "OpenCL_C" => [3, []], "OpenCL_CPP" => [4, []], "HLSL" => [5, []], "CPP_for_OpenCL" => [6, []], "SYCL" => [7, []], "HERO_C" => [8, []], "NZSL" => [9, []], "WGSL" => [10, []], "Slang" => [11, []], "Zig" => [12, []], "Rust" => [13, []], "Pred" => [14, []], "ApilaJai" => [15, []]}, []],
|
|
897
|
+
"ExecutionModel" => ["ValueEnum", {"Vertex" => [0, []], "TessellationControl" => [1, []], "TessellationEvaluation" => [2, []], "Geometry" => [3, []], "Fragment" => [4, []], "GLCompute" => [5, []], "Kernel" => [6, []], "TaskNV" => [5267, []], "MeshNV" => [5268, []], "RayGenerationKHR" => [5313, []], "IntersectionKHR" => [5314, []], "AnyHitKHR" => [5315, []], "ClosestHitKHR" => [5316, []], "MissKHR" => [5317, []], "CallableKHR" => [5318, []], "TaskEXT" => [5364, []], "MeshEXT" => [5365, []]}, []],
|
|
898
|
+
"AddressingModel" => ["ValueEnum", {"Logical" => [0, []], "Physical32" => [1, []], "Physical64" => [2, []], "PhysicalStorageBuffer64" => [5348, []]}, []],
|
|
899
|
+
"MemoryModel" => ["ValueEnum", {"Simple" => [0, []], "GLSL450" => [1, []], "OpenCL" => [2, []], "Vulkan" => [3, []]}, []],
|
|
900
|
+
"ExecutionMode" => ["ValueEnum", {"Invocations" => [0, [["LiteralInteger", ""]]], "SpacingEqual" => [1, []], "SpacingFractionalEven" => [2, []], "SpacingFractionalOdd" => [3, []], "VertexOrderCw" => [4, []], "VertexOrderCcw" => [5, []], "PixelCenterInteger" => [6, []], "OriginUpperLeft" => [7, []], "OriginLowerLeft" => [8, []], "EarlyFragmentTests" => [9, []], "PointMode" => [10, []], "Xfb" => [11, []], "DepthReplacing" => [12, []], "DepthGreater" => [14, []], "DepthLess" => [15, []], "DepthUnchanged" => [16, []], "LocalSize" => [17, [["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]], "LocalSizeHint" => [18, [["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]], "InputPoints" => [19, []], "InputLines" => [20, []], "InputLinesAdjacency" => [21, []], "Triangles" => [22, []], "InputTrianglesAdjacency" => [23, []], "Quads" => [24, []], "Isolines" => [25, []], "OutputVertices" => [26, [["LiteralInteger", ""]]], "OutputPoints" => [27, []], "OutputLineStrip" => [28, []], "OutputTriangleStrip" => [29, []], "VecTypeHint" => [30, [["LiteralInteger", ""]]], "ContractionOff" => [31, []], "Initializer" => [33, []], "Finalizer" => [34, []], "SubgroupSize" => [35, [["LiteralInteger", ""]]], "SubgroupsPerWorkgroup" => [36, [["LiteralInteger", ""]]], "SubgroupsPerWorkgroupId" => [37, [["IdRef", ""]]], "LocalSizeId" => [38, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]], "LocalSizeHintId" => [39, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]], "NonCoherentColorAttachmentReadEXT" => [4169, []], "NonCoherentDepthAttachmentReadEXT" => [4170, []], "NonCoherentStencilAttachmentReadEXT" => [4171, []], "SubgroupUniformControlFlowKHR" => [4421, []], "PostDepthCoverage" => [4446, []], "DenormPreserve" => [4459, [["LiteralInteger", ""]]], "DenormFlushToZero" => [4460, [["LiteralInteger", ""]]], "SignedZeroInfNanPreserve" => [4461, [["LiteralInteger", ""]]], "RoundingModeRTE" => [4462, [["LiteralInteger", ""]]], "RoundingModeRTZ" => [4463, [["LiteralInteger", ""]]], "NonCoherentTileAttachmentReadQCOM" => [4489, []], "TileShadingRateQCOM" => [4490, [["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]], "SubgroupSizeHalfQCOM" => [4507, []], "SubgroupSizeFullQCOM" => [4508, []], "EarlyAndLateFragmentTestsAMD" => [5017, []], "StencilRefReplacingEXT" => [5027, []], "CoalescingAMDX" => [5069, []], "IsApiEntryAMDX" => [5070, [["IdRef", ""]]], "MaxNodeRecursionAMDX" => [5071, [["IdRef", ""]]], "StaticNumWorkgroupsAMDX" => [5072, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]], "ShaderIndexAMDX" => [5073, [["IdRef", ""]]], "MaxNumWorkgroupsAMDX" => [5077, [["IdRef", ""], ["IdRef", ""], ["IdRef", ""]]], "StencilRefUnchangedFrontAMD" => [5079, []], "StencilRefGreaterFrontAMD" => [5080, []], "StencilRefLessFrontAMD" => [5081, []], "StencilRefUnchangedBackAMD" => [5082, []], "StencilRefGreaterBackAMD" => [5083, []], "StencilRefLessBackAMD" => [5084, []], "QuadDerivativesKHR" => [5088, []], "RequireFullQuadsKHR" => [5089, []], "SharesInputWithAMDX" => [5102, [["IdRef", ""], ["IdRef", ""]]], "ArithmeticPoisonKHR" => [5157, []], "OutputLinesEXT" => [5269, []], "OutputPrimitivesEXT" => [5270, [["LiteralInteger", ""]]], "DerivativeGroupQuadsKHR" => [5289, []], "DerivativeGroupLinearKHR" => [5290, []], "OutputTrianglesEXT" => [5298, []], "PixelInterlockOrderedEXT" => [5366, []], "PixelInterlockUnorderedEXT" => [5367, []], "SampleInterlockOrderedEXT" => [5368, []], "SampleInterlockUnorderedEXT" => [5369, []], "ShadingRateInterlockOrderedEXT" => [5370, []], "ShadingRateInterlockUnorderedEXT" => [5371, []], "Shader64BitIndexingEXT" => [5427, []], "SharedLocalMemorySizeINTEL" => [5618, [["LiteralInteger", ""]]], "RoundingModeRTPINTEL" => [5620, [["LiteralInteger", ""]]], "RoundingModeRTNINTEL" => [5621, [["LiteralInteger", ""]]], "FloatingPointModeALTINTEL" => [5622, [["LiteralInteger", ""]]], "FloatingPointModeIEEEINTEL" => [5623, [["LiteralInteger", ""]]], "MaxWorkgroupSizeINTEL" => [5893, [["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]], "MaxWorkDimINTEL" => [5894, [["LiteralInteger", ""]]], "NoGlobalOffsetINTEL" => [5895, []], "NumSIMDWorkitemsINTEL" => [5896, [["LiteralInteger", ""]]], "SchedulerTargetFmaxMhzINTEL" => [5903, [["LiteralInteger", ""]]], "MaximallyReconvergesKHR" => [6023, []], "FPFastMathDefault" => [6028, [["IdRef", ""], ["IdRef", ""]]], "OpacityMicromapIdKHR" => [6031, [["IdRef", ""]]], "StreamingInterfaceINTEL" => [6154, [["LiteralInteger", ""]]], "RegisterMapInterfaceINTEL" => [6160, [["LiteralInteger", ""]]], "NamedBarrierCountINTEL" => [6417, [["LiteralInteger", ""]]], "MaximumRegistersINTEL" => [6461, [["LiteralInteger", ""]]], "MaximumRegistersIdINTEL" => [6462, [["IdRef", ""]]], "NamedMaximumRegistersINTEL" => [6463, [["NamedMaximumNumberOfRegisters", ""]]]}, []],
|
|
901
|
+
"StorageClass" => ["ValueEnum", {"UniformConstant" => [0, []], "Input" => [1, []], "Uniform" => [2, []], "Output" => [3, []], "Workgroup" => [4, []], "CrossWorkgroup" => [5, []], "Private" => [6, []], "Function" => [7, []], "Generic" => [8, []], "PushConstant" => [9, []], "AtomicCounter" => [10, []], "Image" => [11, []], "StorageBuffer" => [12, []], "TileImageEXT" => [4172, []], "TileAttachmentQCOM" => [4491, []], "NodePayloadAMDX" => [5068, []], "CallableDataKHR" => [5328, []], "IncomingCallableDataKHR" => [5329, []], "RayPayloadKHR" => [5338, []], "HitAttributeKHR" => [5339, []], "IncomingRayPayloadKHR" => [5342, []], "ShaderRecordBufferKHR" => [5343, []], "PhysicalStorageBuffer" => [5349, []], "HitObjectAttributeNV" => [5385, []], "TaskPayloadWorkgroupEXT" => [5402, []], "HitObjectAttributeEXT" => [5411, []], "CodeSectionINTEL" => [5605, []], "DeviceOnlyALTERA" => [5936, []], "HostOnlyALTERA" => [5937, []]}, []],
|
|
902
|
+
"Dim" => ["ValueEnum", {"1D" => [0, []], "2D" => [1, []], "3D" => [2, []], "Cube" => [3, []], "Rect" => [4, []], "Buffer" => [5, []], "SubpassData" => [6, []], "TileImageDataEXT" => [4173, []]}, []],
|
|
903
|
+
"SamplerAddressingMode" => ["ValueEnum", {"None" => [0, []], "ClampToEdge" => [1, []], "Clamp" => [2, []], "Repeat" => [3, []], "RepeatMirrored" => [4, []]}, []],
|
|
904
|
+
"SamplerFilterMode" => ["ValueEnum", {"Nearest" => [0, []], "Linear" => [1, []]}, []],
|
|
905
|
+
"ImageFormat" => ["ValueEnum", {"Unknown" => [0, []], "Rgba32f" => [1, []], "Rgba16f" => [2, []], "R32f" => [3, []], "Rgba8" => [4, []], "Rgba8Snorm" => [5, []], "Rg32f" => [6, []], "Rg16f" => [7, []], "R11fG11fB10f" => [8, []], "R16f" => [9, []], "Rgba16" => [10, []], "Rgb10A2" => [11, []], "Rg16" => [12, []], "Rg8" => [13, []], "R16" => [14, []], "R8" => [15, []], "Rgba16Snorm" => [16, []], "Rg16Snorm" => [17, []], "Rg8Snorm" => [18, []], "R16Snorm" => [19, []], "R8Snorm" => [20, []], "Rgba32i" => [21, []], "Rgba16i" => [22, []], "Rgba8i" => [23, []], "R32i" => [24, []], "Rg32i" => [25, []], "Rg16i" => [26, []], "Rg8i" => [27, []], "R16i" => [28, []], "R8i" => [29, []], "Rgba32ui" => [30, []], "Rgba16ui" => [31, []], "Rgba8ui" => [32, []], "R32ui" => [33, []], "Rgb10a2ui" => [34, []], "Rg32ui" => [35, []], "Rg16ui" => [36, []], "Rg8ui" => [37, []], "R16ui" => [38, []], "R8ui" => [39, []], "R64ui" => [40, []], "R64i" => [41, []]}, []],
|
|
906
|
+
"ImageChannelOrder" => ["ValueEnum", {"R" => [0, []], "A" => [1, []], "RG" => [2, []], "RA" => [3, []], "RGB" => [4, []], "RGBA" => [5, []], "BGRA" => [6, []], "ARGB" => [7, []], "Intensity" => [8, []], "Luminance" => [9, []], "Rx" => [10, []], "RGx" => [11, []], "RGBx" => [12, []], "Depth" => [13, []], "DepthStencil" => [14, []], "sRGB" => [15, []], "sRGBx" => [16, []], "sRGBA" => [17, []], "sBGRA" => [18, []], "ABGR" => [19, []]}, []],
|
|
907
|
+
"ImageChannelDataType" => ["ValueEnum", {"SnormInt8" => [0, []], "SnormInt16" => [1, []], "UnormInt8" => [2, []], "UnormInt16" => [3, []], "UnormShort565" => [4, []], "UnormShort555" => [5, []], "UnormInt101010" => [6, []], "SignedInt8" => [7, []], "SignedInt16" => [8, []], "SignedInt32" => [9, []], "UnsignedInt8" => [10, []], "UnsignedInt16" => [11, []], "UnsignedInt32" => [12, []], "HalfFloat" => [13, []], "Float" => [14, []], "UnormInt24" => [15, []], "UnormInt101010_2" => [16, []], "UnormInt10X6EXT" => [17, []], "UnsignedIntRaw10EXT" => [19, []], "UnsignedIntRaw12EXT" => [20, []], "UnormInt2_101010EXT" => [21, []], "UnsignedInt10X6EXT" => [22, []], "UnsignedInt12X4EXT" => [23, []], "UnsignedInt14X2EXT" => [24, []], "UnormInt12X4EXT" => [25, []], "UnormInt14X2EXT" => [26, []]}, []],
|
|
908
|
+
"FPRoundingMode" => ["ValueEnum", {"RTE" => [0, []], "RTZ" => [1, []], "RTP" => [2, []], "RTN" => [3, []]}, []],
|
|
909
|
+
"FPDenormMode" => ["ValueEnum", {"Preserve" => [0, []], "FlushToZero" => [1, []]}, []],
|
|
910
|
+
"QuantizationModes" => ["ValueEnum", {"TRN" => [0, []], "TRN_ZERO" => [1, []], "RND" => [2, []], "RND_ZERO" => [3, []], "RND_INF" => [4, []], "RND_MIN_INF" => [5, []], "RND_CONV" => [6, []], "RND_CONV_ODD" => [7, []]}, []],
|
|
911
|
+
"FPOperationMode" => ["ValueEnum", {"IEEE" => [0, []], "ALT" => [1, []]}, []],
|
|
912
|
+
"OverflowModes" => ["ValueEnum", {"WRAP" => [0, []], "SAT" => [1, []], "SAT_ZERO" => [2, []], "SAT_SYM" => [3, []]}, []],
|
|
913
|
+
"LinkageType" => ["ValueEnum", {"Export" => [0, []], "Import" => [1, []], "LinkOnceODR" => [2, []], "WeakAMD" => [3, []]}, []],
|
|
914
|
+
"AccessQualifier" => ["ValueEnum", {"ReadOnly" => [0, []], "WriteOnly" => [1, []], "ReadWrite" => [2, []]}, []],
|
|
915
|
+
"HostAccessQualifier" => ["ValueEnum", {"NoneINTEL" => [0, []], "ReadINTEL" => [1, []], "WriteINTEL" => [2, []], "ReadWriteINTEL" => [3, []]}, []],
|
|
916
|
+
"FunctionParameterAttribute" => ["ValueEnum", {"Zext" => [0, []], "Sext" => [1, []], "ByVal" => [2, []], "Sret" => [3, []], "NoAlias" => [4, []], "NoCapture" => [5, []], "NoWrite" => [6, []], "NoReadWrite" => [7, []], "RuntimeAlignedALTERA" => [5940, []]}, []],
|
|
917
|
+
"Decoration" => ["ValueEnum", {"RelaxedPrecision" => [0, []], "SpecId" => [1, [["LiteralInteger", ""]]], "Block" => [2, []], "BufferBlock" => [3, []], "RowMajor" => [4, []], "ColMajor" => [5, []], "ArrayStride" => [6, [["LiteralInteger", ""]]], "MatrixStride" => [7, [["LiteralInteger", ""]]], "GLSLShared" => [8, []], "GLSLPacked" => [9, []], "CPacked" => [10, []], "BuiltIn" => [11, [["BuiltIn", ""]]], "NoPerspective" => [13, []], "Flat" => [14, []], "Patch" => [15, []], "Centroid" => [16, []], "Sample" => [17, []], "Invariant" => [18, []], "Restrict" => [19, []], "Aliased" => [20, []], "Volatile" => [21, []], "Constant" => [22, []], "Coherent" => [23, []], "NonWritable" => [24, []], "NonReadable" => [25, []], "Uniform" => [26, []], "UniformId" => [27, [["IdScope", ""]]], "SaturatedConversion" => [28, []], "Stream" => [29, [["LiteralInteger", ""]]], "Location" => [30, [["LiteralInteger", ""]]], "Component" => [31, [["LiteralInteger", ""]]], "Index" => [32, [["LiteralInteger", ""]]], "Binding" => [33, [["LiteralInteger", ""]]], "DescriptorSet" => [34, [["LiteralInteger", ""]]], "Offset" => [35, [["LiteralInteger", ""]]], "XfbBuffer" => [36, [["LiteralInteger", ""]]], "XfbStride" => [37, [["LiteralInteger", ""]]], "FuncParamAttr" => [38, [["FunctionParameterAttribute", ""]]], "FPRoundingMode" => [39, [["FPRoundingMode", ""]]], "FPFastMathMode" => [40, [["FPFastMathMode", ""]]], "LinkageAttributes" => [41, [["LiteralString", ""], ["LinkageType", ""]]], "NoContraction" => [42, []], "InputAttachmentIndex" => [43, [["LiteralInteger", ""]]], "Alignment" => [44, [["LiteralInteger", ""]]], "MaxByteOffset" => [45, [["LiteralInteger", ""]]], "AlignmentId" => [46, [["IdRef", ""]]], "MaxByteOffsetId" => [47, [["IdRef", ""]]], "SaturatedToLargestFloat8NormalConversionEXT" => [4216, []], "NoSignedWrap" => [4469, []], "NoUnsignedWrap" => [4470, []], "WeightTextureQCOM" => [4487, []], "BlockMatchTextureQCOM" => [4488, []], "BlockMatchSamplerQCOM" => [4499, []], "ExplicitInterpAMD" => [4999, []], "NodeSharesPayloadLimitsWithAMDX" => [5019, [["IdRef", ""]]], "NodeMaxPayloadsAMDX" => [5020, [["IdRef", ""]]], "TrackFinishWritingAMDX" => [5078, []], "PayloadNodeNameAMDX" => [5091, [["IdRef", ""]]], "PayloadNodeBaseIndexAMDX" => [5098, [["IdRef", ""]]], "PayloadNodeSparseArrayAMDX" => [5099, []], "PayloadNodeArraySizeAMDX" => [5100, [["IdRef", ""]]], "PayloadDispatchIndirectAMDX" => [5105, []], "ArrayStrideIdEXT" => [5124, [["IdRef", ""]]], "OffsetIdEXT" => [5125, [["IdRef", ""]]], "UTFEncodedKHR" => [5145, []], "OverrideCoverageNV" => [5248, []], "PassthroughNV" => [5250, []], "ViewportRelativeNV" => [5252, []], "SecondaryViewportRelativeNV" => [5256, [["LiteralInteger", ""]]], "PerPrimitiveEXT" => [5271, []], "PerViewNV" => [5272, []], "PerTaskNV" => [5273, []], "PerVertexKHR" => [5285, []], "NonUniform" => [5300, []], "RestrictPointer" => [5355, []], "AliasedPointer" => [5356, []], "MemberOffsetNV" => [5358, [["LiteralInteger", ""]]], "HitObjectShaderRecordBufferNV" => [5386, []], "HitObjectShaderRecordBufferEXT" => [5389, []], "BankNV" => [5397, [["LiteralInteger", ""]]], "BindlessSamplerNV" => [5398, []], "BindlessImageNV" => [5399, []], "BoundSamplerNV" => [5400, []], "BoundImageNV" => [5401, []], "CooperativeMatrixTransposeEXT" => [5440, []], "SIMTCallINTEL" => [5599, [["LiteralInteger", ""]]], "ReferencedIndirectlyINTEL" => [5602, []], "ClobberINTEL" => [5607, [["LiteralString", ""]]], "SideEffectsINTEL" => [5608, []], "VectorComputeVariableINTEL" => [5624, []], "FuncParamIOKindINTEL" => [5625, [["LiteralInteger", ""]]], "VectorComputeFunctionINTEL" => [5626, []], "StackCallINTEL" => [5627, []], "GlobalVariableOffsetINTEL" => [5628, [["LiteralInteger", ""]]], "CounterBuffer" => [5634, [["IdRef", ""]]], "UserSemantic" => [5635, [["LiteralString", ""]]], "UserTypeGOOGLE" => [5636, [["LiteralString", ""]]], "FunctionRoundingModeINTEL" => [5822, [["LiteralInteger", ""], ["FPRoundingMode", ""]]], "FunctionDenormModeINTEL" => [5823, [["LiteralInteger", ""], ["FPDenormMode", ""]]], "RegisterALTERA" => [5825, []], "MemoryALTERA" => [5826, [["LiteralString", ""]]], "NumbanksALTERA" => [5827, [["LiteralInteger", ""]]], "BankwidthALTERA" => [5828, [["LiteralInteger", ""]]], "MaxPrivateCopiesALTERA" => [5829, [["LiteralInteger", ""]]], "SinglepumpALTERA" => [5830, []], "DoublepumpALTERA" => [5831, []], "MaxReplicatesALTERA" => [5832, [["LiteralInteger", ""]]], "SimpleDualPortALTERA" => [5833, []], "MergeALTERA" => [5834, [["LiteralString", ""], ["LiteralString", ""]]], "BankBitsALTERA" => [5835, [["LiteralInteger", "*"]]], "ForcePow2DepthALTERA" => [5836, [["LiteralInteger", ""]]], "StridesizeALTERA" => [5883, [["LiteralInteger", ""]]], "WordsizeALTERA" => [5884, [["LiteralInteger", ""]]], "TrueDualPortALTERA" => [5885, []], "BurstCoalesceALTERA" => [5899, []], "CacheSizeALTERA" => [5900, [["LiteralInteger", ""]]], "DontStaticallyCoalesceALTERA" => [5901, []], "PrefetchALTERA" => [5902, [["LiteralInteger", ""]]], "StallEnableALTERA" => [5905, []], "FuseLoopsInFunctionALTERA" => [5907, []], "MathOpDSPModeALTERA" => [5909, [["LiteralInteger", ""], ["LiteralInteger", ""]]], "AliasScopeINTEL" => [5914, [["IdRef", ""]]], "NoAliasINTEL" => [5915, [["IdRef", ""]]], "InitiationIntervalALTERA" => [5917, [["LiteralInteger", ""]]], "MaxConcurrencyALTERA" => [5918, [["LiteralInteger", ""]]], "PipelineEnableALTERA" => [5919, [["LiteralInteger", ""]]], "BufferLocationALTERA" => [5921, [["LiteralInteger", ""]]], "IOPipeStorageALTERA" => [5944, [["LiteralInteger", ""]]], "FunctionFloatingPointModeINTEL" => [6080, [["LiteralInteger", ""], ["FPOperationMode", ""]]], "SingleElementVectorINTEL" => [6085, []], "VectorComputeCallableFunctionINTEL" => [6087, []], "MediaBlockIOINTEL" => [6140, []], "StallFreeALTERA" => [6151, []], "FPMaxErrorDecorationINTEL" => [6170, [["LiteralFloat", ""]]], "LatencyControlLabelALTERA" => [6172, [["LiteralInteger", ""]]], "LatencyControlConstraintALTERA" => [6173, [["LiteralInteger", ""], ["LiteralInteger", ""], ["LiteralInteger", ""]]], "ConduitKernelArgumentALTERA" => [6175, []], "RegisterMapKernelArgumentALTERA" => [6176, []], "MMHostInterfaceAddressWidthALTERA" => [6177, [["LiteralInteger", ""]]], "MMHostInterfaceDataWidthALTERA" => [6178, [["LiteralInteger", ""]]], "MMHostInterfaceLatencyALTERA" => [6179, [["LiteralInteger", ""]]], "MMHostInterfaceReadWriteModeALTERA" => [6180, [["AccessQualifier", ""]]], "MMHostInterfaceMaxBurstALTERA" => [6181, [["LiteralInteger", ""]]], "MMHostInterfaceWaitRequestALTERA" => [6182, [["LiteralInteger", ""]]], "StableKernelArgumentALTERA" => [6183, []], "HostAccessINTEL" => [6188, [["HostAccessQualifier", ""], ["LiteralString", ""]]], "InitModeALTERA" => [6190, [["InitializationModeQualifier", ""]]], "ImplementInRegisterMapALTERA" => [6191, [["LiteralInteger", ""]]], "ConditionalINTEL" => [6247, [["IdRef", ""]]], "CacheControlLoadINTEL" => [6442, [["LiteralInteger", ""], ["LoadCacheControl", ""]]], "CacheControlStoreINTEL" => [6443, [["LiteralInteger", ""], ["StoreCacheControl", ""]]], "IntrinsicSAMSUNG" => [7040, [["LiteralInteger", ""]]]}, []],
|
|
918
|
+
"BuiltIn" => ["ValueEnum", {"Position" => [0, []], "PointSize" => [1, []], "ClipDistance" => [3, []], "CullDistance" => [4, []], "VertexId" => [5, []], "InstanceId" => [6, []], "PrimitiveId" => [7, []], "InvocationId" => [8, []], "Layer" => [9, []], "ViewportIndex" => [10, []], "TessLevelOuter" => [11, []], "TessLevelInner" => [12, []], "TessCoord" => [13, []], "PatchVertices" => [14, []], "FragCoord" => [15, []], "PointCoord" => [16, []], "FrontFacing" => [17, []], "SampleId" => [18, []], "SamplePosition" => [19, []], "SampleMask" => [20, []], "FragDepth" => [22, []], "HelperInvocation" => [23, []], "NumWorkgroups" => [24, []], "WorkgroupSize" => [25, []], "WorkgroupId" => [26, []], "LocalInvocationId" => [27, []], "GlobalInvocationId" => [28, []], "LocalInvocationIndex" => [29, []], "WorkDim" => [30, []], "GlobalSize" => [31, []], "EnqueuedWorkgroupSize" => [32, []], "GlobalOffset" => [33, []], "GlobalLinearId" => [34, []], "SubgroupSize" => [36, []], "SubgroupMaxSize" => [37, []], "NumSubgroups" => [38, []], "NumEnqueuedSubgroups" => [39, []], "SubgroupId" => [40, []], "SubgroupLocalInvocationId" => [41, []], "VertexIndex" => [42, []], "InstanceIndex" => [43, []], "CoreIDARM" => [4160, []], "CoreCountARM" => [4161, []], "CoreMaxIDARM" => [4162, []], "WarpIDARM" => [4163, []], "WarpMaxIDARM" => [4164, []], "SubgroupEqMask" => [4416, []], "SubgroupGeMask" => [4417, []], "SubgroupGtMask" => [4418, []], "SubgroupLeMask" => [4419, []], "SubgroupLtMask" => [4420, []], "BaseVertex" => [4424, []], "BaseInstance" => [4425, []], "DrawIndex" => [4426, []], "PrimitiveShadingRateKHR" => [4432, []], "DeviceIndex" => [4438, []], "ViewIndex" => [4440, []], "ShadingRateKHR" => [4444, []], "TileOffsetQCOM" => [4492, []], "TileDimensionQCOM" => [4493, []], "TileApronSizeQCOM" => [4494, []], "BaryCoordNoPerspAMD" => [4992, []], "BaryCoordNoPerspCentroidAMD" => [4993, []], "BaryCoordNoPerspSampleAMD" => [4994, []], "BaryCoordSmoothAMD" => [4995, []], "BaryCoordSmoothCentroidAMD" => [4996, []], "BaryCoordSmoothSampleAMD" => [4997, []], "BaryCoordPullModelAMD" => [4998, []], "FragStencilRefEXT" => [5014, []], "RemainingRecursionLevelsAMDX" => [5021, []], "ShaderIndexAMDX" => [5073, []], "SamplerHeapEXT" => [5122, []], "ResourceHeapEXT" => [5123, []], "ViewportMaskNV" => [5253, []], "SecondaryPositionNV" => [5257, []], "SecondaryViewportMaskNV" => [5258, []], "PositionPerViewNV" => [5261, []], "ViewportMaskPerViewNV" => [5262, []], "FullyCoveredEXT" => [5264, []], "TaskCountNV" => [5274, []], "PrimitiveCountNV" => [5275, []], "PrimitiveIndicesNV" => [5276, []], "ClipDistancePerViewNV" => [5277, []], "CullDistancePerViewNV" => [5278, []], "LayerPerViewNV" => [5279, []], "MeshViewCountNV" => [5280, []], "MeshViewIndicesNV" => [5281, []], "BaryCoordKHR" => [5286, []], "BaryCoordNoPerspKHR" => [5287, []], "FragSizeEXT" => [5292, []], "FragInvocationCountEXT" => [5293, []], "PrimitivePointIndicesEXT" => [5294, []], "PrimitiveLineIndicesEXT" => [5295, []], "PrimitiveTriangleIndicesEXT" => [5296, []], "CullPrimitiveEXT" => [5299, []], "LaunchIdKHR" => [5319, []], "LaunchSizeKHR" => [5320, []], "WorldRayOriginKHR" => [5321, []], "WorldRayDirectionKHR" => [5322, []], "ObjectRayOriginKHR" => [5323, []], "ObjectRayDirectionKHR" => [5324, []], "RayTminKHR" => [5325, []], "RayTmaxKHR" => [5326, []], "InstanceCustomIndexKHR" => [5327, []], "ObjectToWorldKHR" => [5330, []], "WorldToObjectKHR" => [5331, []], "HitTNV" => [5332, []], "HitKindKHR" => [5333, []], "CurrentRayTimeNV" => [5334, []], "HitTriangleVertexPositionsKHR" => [5335, []], "HitMicroTriangleVertexPositionsNV" => [5337, []], "HitMicroTriangleVertexBarycentricsNV" => [5344, []], "IncomingRayFlagsKHR" => [5351, []], "RayGeometryIndexKHR" => [5352, []], "HitIsSphereNV" => [5359, []], "HitIsLSSNV" => [5360, []], "HitSpherePositionNV" => [5361, []], "WarpsPerSMNV" => [5374, []], "SMCountNV" => [5375, []], "WarpIDNV" => [5376, []], "SMIDNV" => [5377, []], "HitLSSPositionsNV" => [5396, []], "HitKindFrontFacingMicroTriangleNV" => [5405, []], "HitKindBackFacingMicroTriangleNV" => [5406, []], "HitSphereRadiusNV" => [5420, []], "HitLSSRadiiNV" => [5421, []], "ClusterIDNV" => [5436, []], "CullMaskKHR" => [6021, []]}, []],
|
|
919
|
+
"Scope" => ["ValueEnum", {"CrossDevice" => [0, []], "Device" => [1, []], "Workgroup" => [2, []], "Subgroup" => [3, []], "Invocation" => [4, []], "QueueFamily" => [5, []], "ShaderCallKHR" => [6, []]}, []],
|
|
920
|
+
"GroupOperation" => ["ValueEnum", {"Reduce" => [0, []], "InclusiveScan" => [1, []], "ExclusiveScan" => [2, []], "ClusteredReduce" => [3, []], "PartitionedReduceEXT" => [6, []], "PartitionedInclusiveScanEXT" => [7, []], "PartitionedExclusiveScanEXT" => [8, []]}, []],
|
|
921
|
+
"KernelEnqueueFlags" => ["ValueEnum", {"NoWait" => [0, []], "WaitKernel" => [1, []], "WaitWorkGroup" => [2, []]}, []],
|
|
922
|
+
"Capability" => ["ValueEnum", {"Matrix" => [0, []], "Shader" => [1, []], "Geometry" => [2, []], "Tessellation" => [3, []], "Addresses" => [4, []], "Linkage" => [5, []], "Kernel" => [6, []], "Vector16" => [7, []], "Float16Buffer" => [8, []], "Float16" => [9, []], "Float64" => [10, []], "Int64" => [11, []], "Int64Atomics" => [12, []], "ImageBasic" => [13, []], "ImageReadWrite" => [14, []], "ImageMipmap" => [15, []], "Pipes" => [17, []], "Groups" => [18, []], "DeviceEnqueue" => [19, []], "LiteralSampler" => [20, []], "AtomicStorage" => [21, []], "Int16" => [22, []], "TessellationPointSize" => [23, []], "GeometryPointSize" => [24, []], "ImageGatherExtended" => [25, []], "StorageImageMultisample" => [27, []], "UniformBufferArrayDynamicIndexing" => [28, []], "SampledImageArrayDynamicIndexing" => [29, []], "StorageBufferArrayDynamicIndexing" => [30, []], "StorageImageArrayDynamicIndexing" => [31, []], "ClipDistance" => [32, []], "CullDistance" => [33, []], "ImageCubeArray" => [34, []], "SampleRateShading" => [35, []], "ImageRect" => [36, []], "SampledRect" => [37, []], "GenericPointer" => [38, []], "Int8" => [39, []], "InputAttachment" => [40, []], "SparseResidency" => [41, []], "MinLod" => [42, []], "Sampled1D" => [43, []], "Image1D" => [44, []], "SampledCubeArray" => [45, []], "SampledBuffer" => [46, []], "ImageBuffer" => [47, []], "ImageMSArray" => [48, []], "StorageImageExtendedFormats" => [49, []], "ImageQuery" => [50, []], "DerivativeControl" => [51, []], "InterpolationFunction" => [52, []], "TransformFeedback" => [53, []], "GeometryStreams" => [54, []], "StorageImageReadWithoutFormat" => [55, []], "StorageImageWriteWithoutFormat" => [56, []], "MultiViewport" => [57, []], "SubgroupDispatch" => [58, []], "NamedBarrier" => [59, []], "PipeStorage" => [60, []], "GroupNonUniform" => [61, []], "GroupNonUniformVote" => [62, []], "GroupNonUniformArithmetic" => [63, []], "GroupNonUniformBallot" => [64, []], "GroupNonUniformShuffle" => [65, []], "GroupNonUniformShuffleRelative" => [66, []], "GroupNonUniformClustered" => [67, []], "GroupNonUniformQuad" => [68, []], "ShaderLayer" => [69, []], "ShaderViewportIndex" => [70, []], "UniformDecoration" => [71, []], "CoreBuiltinsARM" => [4165, []], "TileImageColorReadAccessEXT" => [4166, []], "TileImageDepthReadAccessEXT" => [4167, []], "TileImageStencilReadAccessEXT" => [4168, []], "TensorsARM" => [4174, []], "StorageTensorArrayDynamicIndexingARM" => [4175, []], "StorageTensorArrayNonUniformIndexingARM" => [4176, []], "GraphARM" => [4191, []], "CooperativeMatrixLayoutsARM" => [4201, []], "Float8EXT" => [4212, []], "Float8CooperativeMatrixEXT" => [4213, []], "Float6EXT" => [4228, []], "Float4EXT" => [4229, []], "Float8UnsignedE8M0EXT" => [4230, []], "MXInt8EXT" => [4231, []], "BitcastExtractEXT" => [4232, []], "FragmentShadingRateKHR" => [4422, []], "SubgroupBallotKHR" => [4423, []], "DrawParameters" => [4427, []], "WorkgroupMemoryExplicitLayoutKHR" => [4428, []], "WorkgroupMemoryExplicitLayout8BitAccessKHR" => [4429, []], "WorkgroupMemoryExplicitLayout16BitAccessKHR" => [4430, []], "SubgroupVoteKHR" => [4431, []], "StorageBuffer16BitAccess" => [4433, []], "UniformAndStorageBuffer16BitAccess" => [4434, []], "StoragePushConstant16" => [4435, []], "StorageInputOutput16" => [4436, []], "DeviceGroup" => [4437, []], "MultiView" => [4439, []], "VariablePointersStorageBuffer" => [4441, []], "VariablePointers" => [4442, []], "AtomicStorageOps" => [4445, []], "SampleMaskPostDepthCoverage" => [4447, []], "StorageBuffer8BitAccess" => [4448, []], "UniformAndStorageBuffer8BitAccess" => [4449, []], "StoragePushConstant8" => [4450, []], "DenormPreserve" => [4464, []], "DenormFlushToZero" => [4465, []], "SignedZeroInfNanPreserve" => [4466, []], "RoundingModeRTE" => [4467, []], "RoundingModeRTZ" => [4468, []], "RayQueryProvisionalKHR" => [4471, []], "RayQueryKHR" => [4472, []], "UntypedPointersKHR" => [4473, []], "RayTraversalPrimitiveCullingKHR" => [4478, []], "RayTracingKHR" => [4479, []], "TextureSampleWeightedQCOM" => [4484, []], "TextureBoxFilterQCOM" => [4485, []], "TextureBlockMatchQCOM" => [4486, []], "TileShadingQCOM" => [4495, []], "CooperativeMatrixConversionQCOM" => [4496, []], "TextureBlockMatch2QCOM" => [4498, []], "BFloat16MulAddQCOM" => [4504, []], "SubgroupSizeQCOM" => [4506, []], "MultipleWaitQueuesQCOM" => [4539, []], "ImageGatherLinearQCOM" => [4543, []], "ImageGatherExtendedModesQCOM" => [4544, []], "Float16ImageAMD" => [5008, []], "ImageGatherBiasLodAMD" => [5009, []], "FragmentMaskAMD" => [5010, []], "StencilExportEXT" => [5013, []], "ImageReadWriteLodAMD" => [5015, []], "Int64ImageEXT" => [5016, []], "ShaderClockKHR" => [5055, []], "ShaderEnqueueAMDX" => [5067, []], "QuadControlKHR" => [5087, []], "Int4TypeINTEL" => [5112, []], "Int4CooperativeMatrixINTEL" => [5114, []], "BFloat16TypeKHR" => [5116, []], "BFloat16DotProductKHR" => [5117, []], "BFloat16CooperativeMatrixKHR" => [5118, []], "AbortKHR" => [5120, []], "DescriptorHeapEXT" => [5128, []], "ConstantDataKHR" => [5146, []], "PoisonFreezeKHR" => [5156, []], "WeakLinkageAMD" => [5181, []], "SampleMaskOverrideCoverageNV" => [5249, []], "GeometryShaderPassthroughNV" => [5251, []], "ShaderViewportIndexLayerEXT" => [5254, []], "ShaderViewportMaskNV" => [5255, []], "ShaderStereoViewNV" => [5259, []], "PerViewAttributesNV" => [5260, []], "FragmentFullyCoveredEXT" => [5265, []], "MeshShadingNV" => [5266, []], "ImageFootprintNV" => [5282, []], "MeshShadingEXT" => [5283, []], "FragmentBarycentricKHR" => [5284, []], "ComputeDerivativeGroupQuadsKHR" => [5288, []], "FragmentDensityEXT" => [5291, []], "GroupNonUniformPartitionedEXT" => [5297, []], "ShaderNonUniform" => [5301, []], "RuntimeDescriptorArray" => [5302, []], "InputAttachmentArrayDynamicIndexing" => [5303, []], "UniformTexelBufferArrayDynamicIndexing" => [5304, []], "StorageTexelBufferArrayDynamicIndexing" => [5305, []], "UniformBufferArrayNonUniformIndexing" => [5306, []], "SampledImageArrayNonUniformIndexing" => [5307, []], "StorageBufferArrayNonUniformIndexing" => [5308, []], "StorageImageArrayNonUniformIndexing" => [5309, []], "InputAttachmentArrayNonUniformIndexing" => [5310, []], "UniformTexelBufferArrayNonUniformIndexing" => [5311, []], "StorageTexelBufferArrayNonUniformIndexing" => [5312, []], "RayTracingPositionFetchKHR" => [5336, []], "RayTracingNV" => [5340, []], "RayTracingMotionBlurNV" => [5341, []], "VulkanMemoryModel" => [5345, []], "VulkanMemoryModelDeviceScope" => [5346, []], "PhysicalStorageBufferAddresses" => [5347, []], "ComputeDerivativeGroupLinearKHR" => [5350, []], "RayTracingProvisionalKHR" => [5353, []], "CooperativeMatrixNV" => [5357, []], "FragmentShaderSampleInterlockEXT" => [5363, []], "FragmentShaderShadingRateInterlockEXT" => [5372, []], "ShaderSMBuiltinsNV" => [5373, []], "FragmentShaderPixelInterlockEXT" => [5378, []], "DemoteToHelperInvocation" => [5379, []], "DisplacementMicromapNV" => [5380, []], "RayTracingOpacityMicromapKHR" => [5381, []], "ShaderInvocationReorderNV" => [5383, []], "ShaderInvocationReorderEXT" => [5388, []], "BindlessTextureNV" => [5390, []], "RayQueryPositionFetchKHR" => [5391, []], "CooperativeVectorNV" => [5394, []], "AtomicFloat16VectorNV" => [5404, []], "RayTracingDisplacementMicromapNV" => [5409, []], "RawAccessChainsNV" => [5414, []], "RayTracingSpheresGeometryNV" => [5418, []], "RayTracingLinearSweptSpheresGeometryNV" => [5419, []], "PushConstantBanksNV" => [5423, []], "LongVectorEXT" => [5425, []], "Shader64BitIndexingEXT" => [5426, []], "CooperativeMatrixConversionsEXT" => [5429, []], "CooperativeMatrixReductionsEXT" => [5430, []], "CooperativeMatrixConversionsNV" => [5431, []], "CooperativeMatrixPerElementOperationsEXT" => [5432, []], "CooperativeMatrixTensorAddressingNV" => [5433, []], "CooperativeMatrixBlockLoadsNV" => [5434, []], "CooperativeVectorTrainingNV" => [5435, []], "RayTracingClusterAccelerationStructureNV" => [5437, []], "CooperativeMatrixGetCoordinateEXT" => [5438, []], "TensorAddressingNV" => [5439, []], "CooperativeMatrixDecodeVectorNV" => [5447, []], "SubgroupShuffleINTEL" => [5568, []], "SubgroupBufferBlockIOINTEL" => [5569, []], "SubgroupImageBlockIOINTEL" => [5570, []], "SubgroupImageMediaBlockIOINTEL" => [5579, []], "RoundToInfinityINTEL" => [5582, []], "FloatingPointModeINTEL" => [5583, []], "IntegerFunctions2INTEL" => [5584, []], "FunctionPointersINTEL" => [5603, []], "IndirectReferencesINTEL" => [5604, []], "AsmINTEL" => [5606, []], "AtomicFloat32MinMaxEXT" => [5612, []], "AtomicFloat64MinMaxEXT" => [5613, []], "AtomicFloat16MinMaxEXT" => [5616, []], "VectorComputeINTEL" => [5617, []], "VectorAnyINTEL" => [5619, []], "ExpectAssumeKHR" => [5629, []], "SubgroupAvcMotionEstimationINTEL" => [5696, []], "SubgroupAvcMotionEstimationIntraINTEL" => [5697, []], "SubgroupAvcMotionEstimationChromaINTEL" => [5698, []], "VariableLengthArrayINTEL" => [5817, []], "FunctionFloatControlINTEL" => [5821, []], "FPGAMemoryAttributesALTERA" => [5824, []], "FPFastMathModeINTEL" => [5837, []], "ArbitraryPrecisionIntegersALTERA" => [5844, []], "ArbitraryPrecisionFloatingPointALTERA" => [5845, []], "UnstructuredLoopControlsINTEL" => [5886, []], "FPGALoopControlsALTERA" => [5888, []], "KernelAttributesINTEL" => [5892, []], "FPGAKernelAttributesINTEL" => [5897, []], "FPGAMemoryAccessesALTERA" => [5898, []], "FPGAClusterAttributesALTERA" => [5904, []], "LoopFuseALTERA" => [5906, []], "FPGADSPControlALTERA" => [5908, []], "MemoryAccessAliasingINTEL" => [5910, []], "FPGAInvocationPipeliningAttributesALTERA" => [5916, []], "FPGABufferLocationALTERA" => [5920, []], "ArbitraryPrecisionFixedPointALTERA" => [5922, []], "USMStorageClassesALTERA" => [5935, []], "RuntimeAlignedAttributeALTERA" => [5939, []], "IOPipesALTERA" => [5943, []], "BlockingPipesALTERA" => [5945, []], "FPGARegALTERA" => [5948, []], "DotProductInputAll" => [6016, []], "DotProductInput4x8Bit" => [6017, []], "DotProductInput4x8BitPacked" => [6018, []], "DotProduct" => [6019, []], "RayCullMaskKHR" => [6020, []], "CooperativeMatrixKHR" => [6022, []], "ReplicatedCompositesEXT" => [6024, []], "BitInstructions" => [6025, []], "GroupNonUniformRotateKHR" => [6026, []], "FloatControls2" => [6029, []], "FMAKHR" => [6030, []], "RayTracingOpacityMicromapExecutionModeKHR" => [6032, []], "AtomicFloat32AddEXT" => [6033, []], "AtomicFloat64AddEXT" => [6034, []], "LongCompositesINTEL" => [6089, []], "OptNoneEXT" => [6094, []], "AtomicFloat16AddEXT" => [6095, []], "DebugInfoModuleINTEL" => [6114, []], "BFloat16ConversionINTEL" => [6115, []], "SplitBarrierEXT" => [6141, []], "ArithmeticFenceEXT" => [6144, []], "FPGAClusterAttributesV2ALTERA" => [6150, []], "FPGAKernelAttributesv2INTEL" => [6161, []], "TaskSequenceALTERA" => [6162, []], "FPMaxErrorINTEL" => [6169, []], "FPGALatencyControlALTERA" => [6171, []], "FPGAArgumentInterfacesALTERA" => [6174, []], "GlobalVariableHostAccessINTEL" => [6187, []], "GlobalVariableFPGADecorationsALTERA" => [6189, []], "SubgroupBufferPrefetchINTEL" => [6220, []], "Subgroup2DBlockIOINTEL" => [6228, []], "Subgroup2DBlockTransformINTEL" => [6229, []], "Subgroup2DBlockTransposeINTEL" => [6230, []], "SubgroupMatrixMultiplyAccumulateINTEL" => [6236, []], "TernaryBitwiseFunctionINTEL" => [6241, []], "UntypedVariableLengthArrayINTEL" => [6243, []], "SpecConditionalINTEL" => [6245, []], "FunctionVariantsINTEL" => [6246, []], "PredicatedIOINTEL" => [6257, []], "RoundedDivideSqrtINTEL" => [6265, []], "GroupUniformArithmeticKHR" => [6400, []], "TensorFloat32RoundingINTEL" => [6425, []], "MaskedGatherScatterINTEL" => [6427, []], "CacheControlsINTEL" => [6441, []], "RegisterLimitsINTEL" => [6460, []], "BindlessImagesINTEL" => [6528, []], "DotProductFloat16AccFloat32VALVE" => [6912, []], "DotProductFloat16AccFloat16VALVE" => [6913, []], "DotProductBFloat16AccVALVE" => [6914, []], "DotProductFloat8AccFloat32VALVE" => [6915, []], "IntrinsicSAMSUNG" => [7041, []]}, []],
|
|
923
|
+
"RayQueryIntersection" => ["ValueEnum", {"RayQueryCandidateIntersectionKHR" => [0, []], "RayQueryCommittedIntersectionKHR" => [1, []]}, []],
|
|
924
|
+
"RayQueryCommittedIntersectionType" => ["ValueEnum", {"RayQueryCommittedIntersectionNoneKHR" => [0, []], "RayQueryCommittedIntersectionTriangleKHR" => [1, []], "RayQueryCommittedIntersectionGeneratedKHR" => [2, []]}, []],
|
|
925
|
+
"RayQueryCandidateIntersectionType" => ["ValueEnum", {"RayQueryCandidateIntersectionTriangleKHR" => [0, []], "RayQueryCandidateIntersectionAABBKHR" => [1, []]}, []],
|
|
926
|
+
"PackedVectorFormat" => ["ValueEnum", {"PackedVectorFormat4x8Bit" => [0, []]}, []],
|
|
927
|
+
"CooperativeMatrixOperands" => ["BitEnum", {"NoneKHR" => [0, []], "MatrixASignedComponentsKHR" => [1, []], "MatrixBSignedComponentsKHR" => [2, []], "MatrixCSignedComponentsKHR" => [4, []], "MatrixResultSignedComponentsKHR" => [8, []], "SaturatingAccumulationKHR" => [16, []]}, []],
|
|
928
|
+
"CooperativeMatrixLayout" => ["ValueEnum", {"RowMajorKHR" => [0, []], "ColumnMajorKHR" => [1, []], "RowBlockedInterleavedARM" => [4202, []], "ColumnBlockedInterleavedARM" => [4203, []]}, []],
|
|
929
|
+
"CooperativeMatrixUse" => ["ValueEnum", {"MatrixAKHR" => [0, []], "MatrixBKHR" => [1, []], "MatrixAccumulatorKHR" => [2, []]}, []],
|
|
930
|
+
"CooperativeMatrixReduce" => ["BitEnum", {"Row" => [1, []], "Column" => [2, []], "2x2" => [4, []]}, []],
|
|
931
|
+
"TensorClampMode" => ["ValueEnum", {"Undefined" => [0, []], "Constant" => [1, []], "ClampToEdge" => [2, []], "Repeat" => [3, []], "RepeatMirrored" => [4, []]}, []],
|
|
932
|
+
"TensorAddressingOperands" => ["BitEnum", {"None" => [0, []], "TensorView" => [1, [["IdRef", ""]]], "DecodeFunc" => [2, [["IdRef", ""]]], "DecodeVectorFunc" => [4, [["IdRef", ""]]]}, []],
|
|
933
|
+
"InitializationModeQualifier" => ["ValueEnum", {"InitOnDeviceReprogramALTERA" => [0, []], "InitOnDeviceResetALTERA" => [1, []]}, []],
|
|
934
|
+
"LoadCacheControl" => ["ValueEnum", {"UncachedINTEL" => [0, []], "CachedINTEL" => [1, []], "StreamingINTEL" => [2, []], "InvalidateAfterReadINTEL" => [3, []], "ConstCachedINTEL" => [4, []]}, []],
|
|
935
|
+
"StoreCacheControl" => ["ValueEnum", {"UncachedINTEL" => [0, []], "WriteThroughINTEL" => [1, []], "WriteBackINTEL" => [2, []], "StreamingINTEL" => [3, []]}, []],
|
|
936
|
+
"NamedMaximumNumberOfRegisters" => ["ValueEnum", {"AutoINTEL" => [0, []]}, []],
|
|
937
|
+
"MatrixMultiplyAccumulateOperands" => ["BitEnum", {"None" => [0, []], "MatrixASignedComponentsINTEL" => [1, []], "MatrixBSignedComponentsINTEL" => [2, []], "MatrixCBFloat16INTEL" => [4, []], "MatrixResultBFloat16INTEL" => [8, []], "MatrixAPackedInt8INTEL" => [16, []], "MatrixBPackedInt8INTEL" => [32, []], "MatrixAPackedInt4INTEL" => [64, []], "MatrixBPackedInt4INTEL" => [128, []], "MatrixATF32INTEL" => [256, []], "MatrixBTF32INTEL" => [512, []], "MatrixAPackedFloat16INTEL" => [1024, []], "MatrixBPackedFloat16INTEL" => [2048, []], "MatrixAPackedBFloat16INTEL" => [4096, []], "MatrixBPackedBFloat16INTEL" => [8192, []]}, []],
|
|
938
|
+
"FPEncoding" => ["ValueEnum", {"BFloat16KHR" => [0, []], "Float8E4M3EXT" => [4214, []], "Float8E5M2EXT" => [4215, []], "Float6E2M3EXT" => [4223, []], "Float6E3M2EXT" => [4224, []], "Float4E2M1EXT" => [4225, []], "Float8UnsignedE8M0EXT" => [4226, []], "MXInt8EXT" => [4227, []]}, []],
|
|
939
|
+
"CooperativeVectorMatrixLayout" => ["ValueEnum", {"RowMajorNV" => [0, []], "ColumnMajorNV" => [1, []], "InferencingOptimalNV" => [2, []], "TrainingOptimalNV" => [3, []]}, []],
|
|
940
|
+
"ComponentType" => ["ValueEnum", {"Float16NV" => [0, []], "Float32NV" => [1, []], "Float64NV" => [2, []], "SignedInt8NV" => [3, []], "SignedInt16NV" => [4, []], "SignedInt32NV" => [5, []], "SignedInt64NV" => [6, []], "UnsignedInt8NV" => [7, []], "UnsignedInt16NV" => [8, []], "UnsignedInt32NV" => [9, []], "UnsignedInt64NV" => [10, []], "SignedInt8PackedNV" => [1000491000, []], "UnsignedInt8PackedNV" => [1000491001, []], "FloatE4M3NV" => [1000491002, []], "FloatE5M2NV" => [1000491003, []]}, []],
|
|
941
|
+
"GatherModes" => ["ValueEnum", {"Gather4x1QCOM" => [0, []], "GatherDQCOM" => [1, []], "GatherH2QCOM" => [2, []], "GatherV2QCOM" => [3, []]}, []],
|
|
942
|
+
"IdResultType" => ["Id", {}, []],
|
|
943
|
+
"IdResult" => ["Id", {}, []],
|
|
944
|
+
"IdMemorySemantics" => ["Id", {}, []],
|
|
945
|
+
"IdScope" => ["Id", {}, []],
|
|
946
|
+
"IdRef" => ["Id", {}, []],
|
|
947
|
+
"LiteralInteger" => ["Literal", {}, []],
|
|
948
|
+
"LiteralString" => ["Literal", {}, []],
|
|
949
|
+
"LiteralFloat" => ["Literal", {}, []],
|
|
950
|
+
"LiteralContextDependentNumber" => ["Literal", {}, []],
|
|
951
|
+
"LiteralExtInstInteger" => ["Literal", {}, []],
|
|
952
|
+
"LiteralSpecConstantOpInteger" => ["Literal", {}, []],
|
|
953
|
+
"PairLiteralIntegerIdRef" => ["Composite", {}, ["LiteralInteger", "IdRef"]],
|
|
954
|
+
"PairIdRefLiteralInteger" => ["Composite", {}, ["IdRef", "LiteralInteger"]],
|
|
955
|
+
"PairIdRefIdRef" => ["Composite", {}, ["IdRef", "IdRef"]],
|
|
956
|
+
"TensorOperands" => ["BitEnum", {"NoneARM" => [0, []], "NontemporalARM" => [1, []], "OutOfBoundsValueARM" => [2, [["IdRef", ""]]], "MakeElementAvailableARM" => [4, [["IdRef", ""]]], "MakeElementVisibleARM" => [8, [["IdRef", ""]]], "NonPrivateElementARM" => [16, []]}, []],
|
|
957
|
+
}.freeze
|
|
958
|
+
OPCODES = INSTRUCTIONS.to_h { |name, (opcode, operands)| [opcode, [name, operands]] }.freeze
|
|
959
|
+
GLSL_INSTRUCTIONS = {"Round" => 1, "RoundEven" => 2, "Trunc" => 3, "FAbs" => 4, "SAbs" => 5, "FSign" => 6, "SSign" => 7, "Floor" => 8, "Ceil" => 9, "Fract" => 10, "Radians" => 11, "Degrees" => 12, "Sin" => 13, "Cos" => 14, "Tan" => 15, "Asin" => 16, "Acos" => 17, "Atan" => 18, "Sinh" => 19, "Cosh" => 20, "Tanh" => 21, "Asinh" => 22, "Acosh" => 23, "Atanh" => 24, "Atan2" => 25, "Pow" => 26, "Exp" => 27, "Log" => 28, "Exp2" => 29, "Log2" => 30, "Sqrt" => 31, "InverseSqrt" => 32, "Determinant" => 33, "MatrixInverse" => 34, "Modf" => 35, "ModfStruct" => 36, "FMin" => 37, "UMin" => 38, "SMin" => 39, "FMax" => 40, "UMax" => 41, "SMax" => 42, "FClamp" => 43, "UClamp" => 44, "SClamp" => 45, "FMix" => 46, "IMix" => 47, "Step" => 48, "SmoothStep" => 49, "Fma" => 50, "Frexp" => 51, "FrexpStruct" => 52, "Ldexp" => 53, "PackSnorm4x8" => 54, "PackUnorm4x8" => 55, "PackSnorm2x16" => 56, "PackUnorm2x16" => 57, "PackHalf2x16" => 58, "PackDouble2x32" => 59, "UnpackSnorm2x16" => 60, "UnpackUnorm2x16" => 61, "UnpackHalf2x16" => 62, "UnpackSnorm4x8" => 63, "UnpackUnorm4x8" => 64, "UnpackDouble2x32" => 65, "Length" => 66, "Distance" => 67, "Cross" => 68, "Normalize" => 69, "FaceForward" => 70, "Reflect" => 71, "Refract" => 72, "FindILsb" => 73, "FindSMsb" => 74, "FindUMsb" => 75, "InterpolateAtCentroid" => 76, "InterpolateAtSample" => 77, "InterpolateAtOffset" => 78, "NMin" => 79, "NMax" => 80, "NClamp" => 81}.freeze
|
|
960
|
+
freeze_tree = lambda do |value|
|
|
961
|
+
case value
|
|
962
|
+
when Hash then value.each { |key, item| freeze_tree.call(key); freeze_tree.call(item) }
|
|
963
|
+
when Array then value.each { |item| freeze_tree.call(item) }
|
|
964
|
+
end
|
|
965
|
+
value.freeze
|
|
966
|
+
end
|
|
967
|
+
[INSTRUCTIONS, OPERAND_KINDS, OPCODES, GLSL_INSTRUCTIONS].each { |table| freeze_tree.call(table) }
|
|
968
|
+
end
|