34f90d31839c1689b18f17012bf4bb4f654e6f4f
[platform/upstream/SPIRV-Headers.git] / include / spirv / unified1 / spirv.h
1 /*
2 ** Copyright (c) 2014-2020 The Khronos Group Inc.
3 ** 
4 ** Permission is hereby granted, free of charge, to any person obtaining a copy
5 ** of this software and/or associated documentation files (the "Materials"),
6 ** to deal in the Materials without restriction, including without limitation
7 ** the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 ** and/or sell copies of the Materials, and to permit persons to whom the
9 ** Materials are furnished to do so, subject to the following conditions:
10 ** 
11 ** The above copyright notice and this permission notice shall be included in
12 ** all copies or substantial portions of the Materials.
13 ** 
14 ** MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS
15 ** STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND
16 ** HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ 
17 ** 
18 ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 ** OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 ** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 ** THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 ** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 ** FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS
24 ** IN THE MATERIALS.
25 */
26
27 /*
28 ** This header is automatically generated by the same tool that creates
29 ** the Binary Section of the SPIR-V specification.
30 */
31
32 /*
33 ** Enumeration tokens for SPIR-V, in various styles:
34 **   C, C++, C++11, JSON, Lua, Python, C#, D
35 ** 
36 ** - C will have tokens with a "Spv" prefix, e.g.: SpvSourceLanguageGLSL
37 ** - C++ will have tokens in the "spv" name space, e.g.: spv::SourceLanguageGLSL
38 ** - C++11 will use enum classes in the spv namespace, e.g.: spv::SourceLanguage::GLSL
39 ** - Lua will use tables, e.g.: spv.SourceLanguage.GLSL
40 ** - Python will use dictionaries, e.g.: spv['SourceLanguage']['GLSL']
41 ** - C# will use enum classes in the Specification class located in the "Spv" namespace,
42 **     e.g.: Spv.Specification.SourceLanguage.GLSL
43 ** - D will have tokens under the "spv" module, e.g: spv.SourceLanguage.GLSL
44 ** 
45 ** Some tokens act like mask values, which can be OR'd together,
46 ** while others are mutually exclusive.  The mask-like ones have
47 ** "Mask" in their name, and a parallel enum that has the shift
48 ** amount (1 << x) for each corresponding enumerant.
49 */
50
51 #ifndef spirv_H
52 #define spirv_H
53
54 typedef unsigned int SpvId;
55
56 #define SPV_VERSION 0x10500
57 #define SPV_REVISION 4
58
59 static const unsigned int SpvMagicNumber = 0x07230203;
60 static const unsigned int SpvVersion = 0x00010500;
61 static const unsigned int SpvRevision = 4;
62 static const unsigned int SpvOpCodeMask = 0xffff;
63 static const unsigned int SpvWordCountShift = 16;
64
65 typedef enum SpvSourceLanguage_ {
66     SpvSourceLanguageUnknown = 0,
67     SpvSourceLanguageESSL = 1,
68     SpvSourceLanguageGLSL = 2,
69     SpvSourceLanguageOpenCL_C = 3,
70     SpvSourceLanguageOpenCL_CPP = 4,
71     SpvSourceLanguageHLSL = 5,
72     SpvSourceLanguageCPP_for_OpenCL = 6,
73     SpvSourceLanguageMax = 0x7fffffff,
74 } SpvSourceLanguage;
75
76 typedef enum SpvExecutionModel_ {
77     SpvExecutionModelVertex = 0,
78     SpvExecutionModelTessellationControl = 1,
79     SpvExecutionModelTessellationEvaluation = 2,
80     SpvExecutionModelGeometry = 3,
81     SpvExecutionModelFragment = 4,
82     SpvExecutionModelGLCompute = 5,
83     SpvExecutionModelKernel = 6,
84     SpvExecutionModelTaskNV = 5267,
85     SpvExecutionModelMeshNV = 5268,
86     SpvExecutionModelRayGenerationKHR = 5313,
87     SpvExecutionModelRayGenerationNV = 5313,
88     SpvExecutionModelIntersectionKHR = 5314,
89     SpvExecutionModelIntersectionNV = 5314,
90     SpvExecutionModelAnyHitKHR = 5315,
91     SpvExecutionModelAnyHitNV = 5315,
92     SpvExecutionModelClosestHitKHR = 5316,
93     SpvExecutionModelClosestHitNV = 5316,
94     SpvExecutionModelMissKHR = 5317,
95     SpvExecutionModelMissNV = 5317,
96     SpvExecutionModelCallableKHR = 5318,
97     SpvExecutionModelCallableNV = 5318,
98     SpvExecutionModelMax = 0x7fffffff,
99 } SpvExecutionModel;
100
101 typedef enum SpvAddressingModel_ {
102     SpvAddressingModelLogical = 0,
103     SpvAddressingModelPhysical32 = 1,
104     SpvAddressingModelPhysical64 = 2,
105     SpvAddressingModelPhysicalStorageBuffer64 = 5348,
106     SpvAddressingModelPhysicalStorageBuffer64EXT = 5348,
107     SpvAddressingModelMax = 0x7fffffff,
108 } SpvAddressingModel;
109
110 typedef enum SpvMemoryModel_ {
111     SpvMemoryModelSimple = 0,
112     SpvMemoryModelGLSL450 = 1,
113     SpvMemoryModelOpenCL = 2,
114     SpvMemoryModelVulkan = 3,
115     SpvMemoryModelVulkanKHR = 3,
116     SpvMemoryModelMax = 0x7fffffff,
117 } SpvMemoryModel;
118
119 typedef enum SpvExecutionMode_ {
120     SpvExecutionModeInvocations = 0,
121     SpvExecutionModeSpacingEqual = 1,
122     SpvExecutionModeSpacingFractionalEven = 2,
123     SpvExecutionModeSpacingFractionalOdd = 3,
124     SpvExecutionModeVertexOrderCw = 4,
125     SpvExecutionModeVertexOrderCcw = 5,
126     SpvExecutionModePixelCenterInteger = 6,
127     SpvExecutionModeOriginUpperLeft = 7,
128     SpvExecutionModeOriginLowerLeft = 8,
129     SpvExecutionModeEarlyFragmentTests = 9,
130     SpvExecutionModePointMode = 10,
131     SpvExecutionModeXfb = 11,
132     SpvExecutionModeDepthReplacing = 12,
133     SpvExecutionModeDepthGreater = 14,
134     SpvExecutionModeDepthLess = 15,
135     SpvExecutionModeDepthUnchanged = 16,
136     SpvExecutionModeLocalSize = 17,
137     SpvExecutionModeLocalSizeHint = 18,
138     SpvExecutionModeInputPoints = 19,
139     SpvExecutionModeInputLines = 20,
140     SpvExecutionModeInputLinesAdjacency = 21,
141     SpvExecutionModeTriangles = 22,
142     SpvExecutionModeInputTrianglesAdjacency = 23,
143     SpvExecutionModeQuads = 24,
144     SpvExecutionModeIsolines = 25,
145     SpvExecutionModeOutputVertices = 26,
146     SpvExecutionModeOutputPoints = 27,
147     SpvExecutionModeOutputLineStrip = 28,
148     SpvExecutionModeOutputTriangleStrip = 29,
149     SpvExecutionModeVecTypeHint = 30,
150     SpvExecutionModeContractionOff = 31,
151     SpvExecutionModeInitializer = 33,
152     SpvExecutionModeFinalizer = 34,
153     SpvExecutionModeSubgroupSize = 35,
154     SpvExecutionModeSubgroupsPerWorkgroup = 36,
155     SpvExecutionModeSubgroupsPerWorkgroupId = 37,
156     SpvExecutionModeLocalSizeId = 38,
157     SpvExecutionModeLocalSizeHintId = 39,
158     SpvExecutionModeSubgroupUniformControlFlowKHR = 4421,
159     SpvExecutionModePostDepthCoverage = 4446,
160     SpvExecutionModeDenormPreserve = 4459,
161     SpvExecutionModeDenormFlushToZero = 4460,
162     SpvExecutionModeSignedZeroInfNanPreserve = 4461,
163     SpvExecutionModeRoundingModeRTE = 4462,
164     SpvExecutionModeRoundingModeRTZ = 4463,
165     SpvExecutionModeStencilRefReplacingEXT = 5027,
166     SpvExecutionModeOutputLinesNV = 5269,
167     SpvExecutionModeOutputPrimitivesNV = 5270,
168     SpvExecutionModeDerivativeGroupQuadsNV = 5289,
169     SpvExecutionModeDerivativeGroupLinearNV = 5290,
170     SpvExecutionModeOutputTrianglesNV = 5298,
171     SpvExecutionModePixelInterlockOrderedEXT = 5366,
172     SpvExecutionModePixelInterlockUnorderedEXT = 5367,
173     SpvExecutionModeSampleInterlockOrderedEXT = 5368,
174     SpvExecutionModeSampleInterlockUnorderedEXT = 5369,
175     SpvExecutionModeShadingRateInterlockOrderedEXT = 5370,
176     SpvExecutionModeShadingRateInterlockUnorderedEXT = 5371,
177     SpvExecutionModeSharedLocalMemorySizeINTEL = 5618,
178     SpvExecutionModeRoundingModeRTPINTEL = 5620,
179     SpvExecutionModeRoundingModeRTNINTEL = 5621,
180     SpvExecutionModeFloatingPointModeALTINTEL = 5622,
181     SpvExecutionModeFloatingPointModeIEEEINTEL = 5623,
182     SpvExecutionModeMaxWorkgroupSizeINTEL = 5893,
183     SpvExecutionModeMaxWorkDimINTEL = 5894,
184     SpvExecutionModeNoGlobalOffsetINTEL = 5895,
185     SpvExecutionModeNumSIMDWorkitemsINTEL = 5896,
186     SpvExecutionModeSchedulerTargetFmaxMhzINTEL = 5903,
187     SpvExecutionModeMax = 0x7fffffff,
188 } SpvExecutionMode;
189
190 typedef enum SpvStorageClass_ {
191     SpvStorageClassUniformConstant = 0,
192     SpvStorageClassInput = 1,
193     SpvStorageClassUniform = 2,
194     SpvStorageClassOutput = 3,
195     SpvStorageClassWorkgroup = 4,
196     SpvStorageClassCrossWorkgroup = 5,
197     SpvStorageClassPrivate = 6,
198     SpvStorageClassFunction = 7,
199     SpvStorageClassGeneric = 8,
200     SpvStorageClassPushConstant = 9,
201     SpvStorageClassAtomicCounter = 10,
202     SpvStorageClassImage = 11,
203     SpvStorageClassStorageBuffer = 12,
204     SpvStorageClassCallableDataKHR = 5328,
205     SpvStorageClassCallableDataNV = 5328,
206     SpvStorageClassIncomingCallableDataKHR = 5329,
207     SpvStorageClassIncomingCallableDataNV = 5329,
208     SpvStorageClassRayPayloadKHR = 5338,
209     SpvStorageClassRayPayloadNV = 5338,
210     SpvStorageClassHitAttributeKHR = 5339,
211     SpvStorageClassHitAttributeNV = 5339,
212     SpvStorageClassIncomingRayPayloadKHR = 5342,
213     SpvStorageClassIncomingRayPayloadNV = 5342,
214     SpvStorageClassShaderRecordBufferKHR = 5343,
215     SpvStorageClassShaderRecordBufferNV = 5343,
216     SpvStorageClassPhysicalStorageBuffer = 5349,
217     SpvStorageClassPhysicalStorageBufferEXT = 5349,
218     SpvStorageClassCodeSectionINTEL = 5605,
219     SpvStorageClassDeviceOnlyINTEL = 5936,
220     SpvStorageClassHostOnlyINTEL = 5937,
221     SpvStorageClassMax = 0x7fffffff,
222 } SpvStorageClass;
223
224 typedef enum SpvDim_ {
225     SpvDim1D = 0,
226     SpvDim2D = 1,
227     SpvDim3D = 2,
228     SpvDimCube = 3,
229     SpvDimRect = 4,
230     SpvDimBuffer = 5,
231     SpvDimSubpassData = 6,
232     SpvDimMax = 0x7fffffff,
233 } SpvDim;
234
235 typedef enum SpvSamplerAddressingMode_ {
236     SpvSamplerAddressingModeNone = 0,
237     SpvSamplerAddressingModeClampToEdge = 1,
238     SpvSamplerAddressingModeClamp = 2,
239     SpvSamplerAddressingModeRepeat = 3,
240     SpvSamplerAddressingModeRepeatMirrored = 4,
241     SpvSamplerAddressingModeMax = 0x7fffffff,
242 } SpvSamplerAddressingMode;
243
244 typedef enum SpvSamplerFilterMode_ {
245     SpvSamplerFilterModeNearest = 0,
246     SpvSamplerFilterModeLinear = 1,
247     SpvSamplerFilterModeMax = 0x7fffffff,
248 } SpvSamplerFilterMode;
249
250 typedef enum SpvImageFormat_ {
251     SpvImageFormatUnknown = 0,
252     SpvImageFormatRgba32f = 1,
253     SpvImageFormatRgba16f = 2,
254     SpvImageFormatR32f = 3,
255     SpvImageFormatRgba8 = 4,
256     SpvImageFormatRgba8Snorm = 5,
257     SpvImageFormatRg32f = 6,
258     SpvImageFormatRg16f = 7,
259     SpvImageFormatR11fG11fB10f = 8,
260     SpvImageFormatR16f = 9,
261     SpvImageFormatRgba16 = 10,
262     SpvImageFormatRgb10A2 = 11,
263     SpvImageFormatRg16 = 12,
264     SpvImageFormatRg8 = 13,
265     SpvImageFormatR16 = 14,
266     SpvImageFormatR8 = 15,
267     SpvImageFormatRgba16Snorm = 16,
268     SpvImageFormatRg16Snorm = 17,
269     SpvImageFormatRg8Snorm = 18,
270     SpvImageFormatR16Snorm = 19,
271     SpvImageFormatR8Snorm = 20,
272     SpvImageFormatRgba32i = 21,
273     SpvImageFormatRgba16i = 22,
274     SpvImageFormatRgba8i = 23,
275     SpvImageFormatR32i = 24,
276     SpvImageFormatRg32i = 25,
277     SpvImageFormatRg16i = 26,
278     SpvImageFormatRg8i = 27,
279     SpvImageFormatR16i = 28,
280     SpvImageFormatR8i = 29,
281     SpvImageFormatRgba32ui = 30,
282     SpvImageFormatRgba16ui = 31,
283     SpvImageFormatRgba8ui = 32,
284     SpvImageFormatR32ui = 33,
285     SpvImageFormatRgb10a2ui = 34,
286     SpvImageFormatRg32ui = 35,
287     SpvImageFormatRg16ui = 36,
288     SpvImageFormatRg8ui = 37,
289     SpvImageFormatR16ui = 38,
290     SpvImageFormatR8ui = 39,
291     SpvImageFormatR64ui = 40,
292     SpvImageFormatR64i = 41,
293     SpvImageFormatMax = 0x7fffffff,
294 } SpvImageFormat;
295
296 typedef enum SpvImageChannelOrder_ {
297     SpvImageChannelOrderR = 0,
298     SpvImageChannelOrderA = 1,
299     SpvImageChannelOrderRG = 2,
300     SpvImageChannelOrderRA = 3,
301     SpvImageChannelOrderRGB = 4,
302     SpvImageChannelOrderRGBA = 5,
303     SpvImageChannelOrderBGRA = 6,
304     SpvImageChannelOrderARGB = 7,
305     SpvImageChannelOrderIntensity = 8,
306     SpvImageChannelOrderLuminance = 9,
307     SpvImageChannelOrderRx = 10,
308     SpvImageChannelOrderRGx = 11,
309     SpvImageChannelOrderRGBx = 12,
310     SpvImageChannelOrderDepth = 13,
311     SpvImageChannelOrderDepthStencil = 14,
312     SpvImageChannelOrdersRGB = 15,
313     SpvImageChannelOrdersRGBx = 16,
314     SpvImageChannelOrdersRGBA = 17,
315     SpvImageChannelOrdersBGRA = 18,
316     SpvImageChannelOrderABGR = 19,
317     SpvImageChannelOrderMax = 0x7fffffff,
318 } SpvImageChannelOrder;
319
320 typedef enum SpvImageChannelDataType_ {
321     SpvImageChannelDataTypeSnormInt8 = 0,
322     SpvImageChannelDataTypeSnormInt16 = 1,
323     SpvImageChannelDataTypeUnormInt8 = 2,
324     SpvImageChannelDataTypeUnormInt16 = 3,
325     SpvImageChannelDataTypeUnormShort565 = 4,
326     SpvImageChannelDataTypeUnormShort555 = 5,
327     SpvImageChannelDataTypeUnormInt101010 = 6,
328     SpvImageChannelDataTypeSignedInt8 = 7,
329     SpvImageChannelDataTypeSignedInt16 = 8,
330     SpvImageChannelDataTypeSignedInt32 = 9,
331     SpvImageChannelDataTypeUnsignedInt8 = 10,
332     SpvImageChannelDataTypeUnsignedInt16 = 11,
333     SpvImageChannelDataTypeUnsignedInt32 = 12,
334     SpvImageChannelDataTypeHalfFloat = 13,
335     SpvImageChannelDataTypeFloat = 14,
336     SpvImageChannelDataTypeUnormInt24 = 15,
337     SpvImageChannelDataTypeUnormInt101010_2 = 16,
338     SpvImageChannelDataTypeMax = 0x7fffffff,
339 } SpvImageChannelDataType;
340
341 typedef enum SpvImageOperandsShift_ {
342     SpvImageOperandsBiasShift = 0,
343     SpvImageOperandsLodShift = 1,
344     SpvImageOperandsGradShift = 2,
345     SpvImageOperandsConstOffsetShift = 3,
346     SpvImageOperandsOffsetShift = 4,
347     SpvImageOperandsConstOffsetsShift = 5,
348     SpvImageOperandsSampleShift = 6,
349     SpvImageOperandsMinLodShift = 7,
350     SpvImageOperandsMakeTexelAvailableShift = 8,
351     SpvImageOperandsMakeTexelAvailableKHRShift = 8,
352     SpvImageOperandsMakeTexelVisibleShift = 9,
353     SpvImageOperandsMakeTexelVisibleKHRShift = 9,
354     SpvImageOperandsNonPrivateTexelShift = 10,
355     SpvImageOperandsNonPrivateTexelKHRShift = 10,
356     SpvImageOperandsVolatileTexelShift = 11,
357     SpvImageOperandsVolatileTexelKHRShift = 11,
358     SpvImageOperandsSignExtendShift = 12,
359     SpvImageOperandsZeroExtendShift = 13,
360     SpvImageOperandsMax = 0x7fffffff,
361 } SpvImageOperandsShift;
362
363 typedef enum SpvImageOperandsMask_ {
364     SpvImageOperandsMaskNone = 0,
365     SpvImageOperandsBiasMask = 0x00000001,
366     SpvImageOperandsLodMask = 0x00000002,
367     SpvImageOperandsGradMask = 0x00000004,
368     SpvImageOperandsConstOffsetMask = 0x00000008,
369     SpvImageOperandsOffsetMask = 0x00000010,
370     SpvImageOperandsConstOffsetsMask = 0x00000020,
371     SpvImageOperandsSampleMask = 0x00000040,
372     SpvImageOperandsMinLodMask = 0x00000080,
373     SpvImageOperandsMakeTexelAvailableMask = 0x00000100,
374     SpvImageOperandsMakeTexelAvailableKHRMask = 0x00000100,
375     SpvImageOperandsMakeTexelVisibleMask = 0x00000200,
376     SpvImageOperandsMakeTexelVisibleKHRMask = 0x00000200,
377     SpvImageOperandsNonPrivateTexelMask = 0x00000400,
378     SpvImageOperandsNonPrivateTexelKHRMask = 0x00000400,
379     SpvImageOperandsVolatileTexelMask = 0x00000800,
380     SpvImageOperandsVolatileTexelKHRMask = 0x00000800,
381     SpvImageOperandsSignExtendMask = 0x00001000,
382     SpvImageOperandsZeroExtendMask = 0x00002000,
383 } SpvImageOperandsMask;
384
385 typedef enum SpvFPFastMathModeShift_ {
386     SpvFPFastMathModeNotNaNShift = 0,
387     SpvFPFastMathModeNotInfShift = 1,
388     SpvFPFastMathModeNSZShift = 2,
389     SpvFPFastMathModeAllowRecipShift = 3,
390     SpvFPFastMathModeFastShift = 4,
391     SpvFPFastMathModeAllowContractFastINTELShift = 16,
392     SpvFPFastMathModeAllowReassocINTELShift = 17,
393     SpvFPFastMathModeMax = 0x7fffffff,
394 } SpvFPFastMathModeShift;
395
396 typedef enum SpvFPFastMathModeMask_ {
397     SpvFPFastMathModeMaskNone = 0,
398     SpvFPFastMathModeNotNaNMask = 0x00000001,
399     SpvFPFastMathModeNotInfMask = 0x00000002,
400     SpvFPFastMathModeNSZMask = 0x00000004,
401     SpvFPFastMathModeAllowRecipMask = 0x00000008,
402     SpvFPFastMathModeFastMask = 0x00000010,
403     SpvFPFastMathModeAllowContractFastINTELMask = 0x00010000,
404     SpvFPFastMathModeAllowReassocINTELMask = 0x00020000,
405 } SpvFPFastMathModeMask;
406
407 typedef enum SpvFPRoundingMode_ {
408     SpvFPRoundingModeRTE = 0,
409     SpvFPRoundingModeRTZ = 1,
410     SpvFPRoundingModeRTP = 2,
411     SpvFPRoundingModeRTN = 3,
412     SpvFPRoundingModeMax = 0x7fffffff,
413 } SpvFPRoundingMode;
414
415 typedef enum SpvLinkageType_ {
416     SpvLinkageTypeExport = 0,
417     SpvLinkageTypeImport = 1,
418     SpvLinkageTypeLinkOnceODR = 2,
419     SpvLinkageTypeMax = 0x7fffffff,
420 } SpvLinkageType;
421
422 typedef enum SpvAccessQualifier_ {
423     SpvAccessQualifierReadOnly = 0,
424     SpvAccessQualifierWriteOnly = 1,
425     SpvAccessQualifierReadWrite = 2,
426     SpvAccessQualifierMax = 0x7fffffff,
427 } SpvAccessQualifier;
428
429 typedef enum SpvFunctionParameterAttribute_ {
430     SpvFunctionParameterAttributeZext = 0,
431     SpvFunctionParameterAttributeSext = 1,
432     SpvFunctionParameterAttributeByVal = 2,
433     SpvFunctionParameterAttributeSret = 3,
434     SpvFunctionParameterAttributeNoAlias = 4,
435     SpvFunctionParameterAttributeNoCapture = 5,
436     SpvFunctionParameterAttributeNoWrite = 6,
437     SpvFunctionParameterAttributeNoReadWrite = 7,
438     SpvFunctionParameterAttributeMax = 0x7fffffff,
439 } SpvFunctionParameterAttribute;
440
441 typedef enum SpvDecoration_ {
442     SpvDecorationRelaxedPrecision = 0,
443     SpvDecorationSpecId = 1,
444     SpvDecorationBlock = 2,
445     SpvDecorationBufferBlock = 3,
446     SpvDecorationRowMajor = 4,
447     SpvDecorationColMajor = 5,
448     SpvDecorationArrayStride = 6,
449     SpvDecorationMatrixStride = 7,
450     SpvDecorationGLSLShared = 8,
451     SpvDecorationGLSLPacked = 9,
452     SpvDecorationCPacked = 10,
453     SpvDecorationBuiltIn = 11,
454     SpvDecorationNoPerspective = 13,
455     SpvDecorationFlat = 14,
456     SpvDecorationPatch = 15,
457     SpvDecorationCentroid = 16,
458     SpvDecorationSample = 17,
459     SpvDecorationInvariant = 18,
460     SpvDecorationRestrict = 19,
461     SpvDecorationAliased = 20,
462     SpvDecorationVolatile = 21,
463     SpvDecorationConstant = 22,
464     SpvDecorationCoherent = 23,
465     SpvDecorationNonWritable = 24,
466     SpvDecorationNonReadable = 25,
467     SpvDecorationUniform = 26,
468     SpvDecorationUniformId = 27,
469     SpvDecorationSaturatedConversion = 28,
470     SpvDecorationStream = 29,
471     SpvDecorationLocation = 30,
472     SpvDecorationComponent = 31,
473     SpvDecorationIndex = 32,
474     SpvDecorationBinding = 33,
475     SpvDecorationDescriptorSet = 34,
476     SpvDecorationOffset = 35,
477     SpvDecorationXfbBuffer = 36,
478     SpvDecorationXfbStride = 37,
479     SpvDecorationFuncParamAttr = 38,
480     SpvDecorationFPRoundingMode = 39,
481     SpvDecorationFPFastMathMode = 40,
482     SpvDecorationLinkageAttributes = 41,
483     SpvDecorationNoContraction = 42,
484     SpvDecorationInputAttachmentIndex = 43,
485     SpvDecorationAlignment = 44,
486     SpvDecorationMaxByteOffset = 45,
487     SpvDecorationAlignmentId = 46,
488     SpvDecorationMaxByteOffsetId = 47,
489     SpvDecorationNoSignedWrap = 4469,
490     SpvDecorationNoUnsignedWrap = 4470,
491     SpvDecorationExplicitInterpAMD = 4999,
492     SpvDecorationOverrideCoverageNV = 5248,
493     SpvDecorationPassthroughNV = 5250,
494     SpvDecorationViewportRelativeNV = 5252,
495     SpvDecorationSecondaryViewportRelativeNV = 5256,
496     SpvDecorationPerPrimitiveNV = 5271,
497     SpvDecorationPerViewNV = 5272,
498     SpvDecorationPerTaskNV = 5273,
499     SpvDecorationPerVertexNV = 5285,
500     SpvDecorationNonUniform = 5300,
501     SpvDecorationNonUniformEXT = 5300,
502     SpvDecorationRestrictPointer = 5355,
503     SpvDecorationRestrictPointerEXT = 5355,
504     SpvDecorationAliasedPointer = 5356,
505     SpvDecorationAliasedPointerEXT = 5356,
506     SpvDecorationSIMTCallINTEL = 5599,
507     SpvDecorationReferencedIndirectlyINTEL = 5602,
508     SpvDecorationClobberINTEL = 5607,
509     SpvDecorationSideEffectsINTEL = 5608,
510     SpvDecorationVectorComputeVariableINTEL = 5624,
511     SpvDecorationFuncParamIOKindINTEL = 5625,
512     SpvDecorationVectorComputeFunctionINTEL = 5626,
513     SpvDecorationStackCallINTEL = 5627,
514     SpvDecorationGlobalVariableOffsetINTEL = 5628,
515     SpvDecorationCounterBuffer = 5634,
516     SpvDecorationHlslCounterBufferGOOGLE = 5634,
517     SpvDecorationHlslSemanticGOOGLE = 5635,
518     SpvDecorationUserSemantic = 5635,
519     SpvDecorationUserTypeGOOGLE = 5636,
520     SpvDecorationFunctionRoundingModeINTEL = 5822,
521     SpvDecorationFunctionDenormModeINTEL = 5823,
522     SpvDecorationRegisterINTEL = 5825,
523     SpvDecorationMemoryINTEL = 5826,
524     SpvDecorationNumbanksINTEL = 5827,
525     SpvDecorationBankwidthINTEL = 5828,
526     SpvDecorationMaxPrivateCopiesINTEL = 5829,
527     SpvDecorationSinglepumpINTEL = 5830,
528     SpvDecorationDoublepumpINTEL = 5831,
529     SpvDecorationMaxReplicatesINTEL = 5832,
530     SpvDecorationSimpleDualPortINTEL = 5833,
531     SpvDecorationMergeINTEL = 5834,
532     SpvDecorationBankBitsINTEL = 5835,
533     SpvDecorationForcePow2DepthINTEL = 5836,
534     SpvDecorationBurstCoalesceINTEL = 5899,
535     SpvDecorationCacheSizeINTEL = 5900,
536     SpvDecorationDontStaticallyCoalesceINTEL = 5901,
537     SpvDecorationPrefetchINTEL = 5902,
538     SpvDecorationStallEnableINTEL = 5905,
539     SpvDecorationFuseLoopsInFunctionINTEL = 5907,
540     SpvDecorationBufferLocationINTEL = 5921,
541     SpvDecorationIOPipeStorageINTEL = 5944,
542     SpvDecorationFunctionFloatingPointModeINTEL = 6080,
543     SpvDecorationSingleElementVectorINTEL = 6085,
544     SpvDecorationVectorComputeCallableFunctionINTEL = 6087,
545     SpvDecorationMax = 0x7fffffff,
546 } SpvDecoration;
547
548 typedef enum SpvBuiltIn_ {
549     SpvBuiltInPosition = 0,
550     SpvBuiltInPointSize = 1,
551     SpvBuiltInClipDistance = 3,
552     SpvBuiltInCullDistance = 4,
553     SpvBuiltInVertexId = 5,
554     SpvBuiltInInstanceId = 6,
555     SpvBuiltInPrimitiveId = 7,
556     SpvBuiltInInvocationId = 8,
557     SpvBuiltInLayer = 9,
558     SpvBuiltInViewportIndex = 10,
559     SpvBuiltInTessLevelOuter = 11,
560     SpvBuiltInTessLevelInner = 12,
561     SpvBuiltInTessCoord = 13,
562     SpvBuiltInPatchVertices = 14,
563     SpvBuiltInFragCoord = 15,
564     SpvBuiltInPointCoord = 16,
565     SpvBuiltInFrontFacing = 17,
566     SpvBuiltInSampleId = 18,
567     SpvBuiltInSamplePosition = 19,
568     SpvBuiltInSampleMask = 20,
569     SpvBuiltInFragDepth = 22,
570     SpvBuiltInHelperInvocation = 23,
571     SpvBuiltInNumWorkgroups = 24,
572     SpvBuiltInWorkgroupSize = 25,
573     SpvBuiltInWorkgroupId = 26,
574     SpvBuiltInLocalInvocationId = 27,
575     SpvBuiltInGlobalInvocationId = 28,
576     SpvBuiltInLocalInvocationIndex = 29,
577     SpvBuiltInWorkDim = 30,
578     SpvBuiltInGlobalSize = 31,
579     SpvBuiltInEnqueuedWorkgroupSize = 32,
580     SpvBuiltInGlobalOffset = 33,
581     SpvBuiltInGlobalLinearId = 34,
582     SpvBuiltInSubgroupSize = 36,
583     SpvBuiltInSubgroupMaxSize = 37,
584     SpvBuiltInNumSubgroups = 38,
585     SpvBuiltInNumEnqueuedSubgroups = 39,
586     SpvBuiltInSubgroupId = 40,
587     SpvBuiltInSubgroupLocalInvocationId = 41,
588     SpvBuiltInVertexIndex = 42,
589     SpvBuiltInInstanceIndex = 43,
590     SpvBuiltInSubgroupEqMask = 4416,
591     SpvBuiltInSubgroupEqMaskKHR = 4416,
592     SpvBuiltInSubgroupGeMask = 4417,
593     SpvBuiltInSubgroupGeMaskKHR = 4417,
594     SpvBuiltInSubgroupGtMask = 4418,
595     SpvBuiltInSubgroupGtMaskKHR = 4418,
596     SpvBuiltInSubgroupLeMask = 4419,
597     SpvBuiltInSubgroupLeMaskKHR = 4419,
598     SpvBuiltInSubgroupLtMask = 4420,
599     SpvBuiltInSubgroupLtMaskKHR = 4420,
600     SpvBuiltInBaseVertex = 4424,
601     SpvBuiltInBaseInstance = 4425,
602     SpvBuiltInDrawIndex = 4426,
603     SpvBuiltInPrimitiveShadingRateKHR = 4432,
604     SpvBuiltInDeviceIndex = 4438,
605     SpvBuiltInViewIndex = 4440,
606     SpvBuiltInShadingRateKHR = 4444,
607     SpvBuiltInBaryCoordNoPerspAMD = 4992,
608     SpvBuiltInBaryCoordNoPerspCentroidAMD = 4993,
609     SpvBuiltInBaryCoordNoPerspSampleAMD = 4994,
610     SpvBuiltInBaryCoordSmoothAMD = 4995,
611     SpvBuiltInBaryCoordSmoothCentroidAMD = 4996,
612     SpvBuiltInBaryCoordSmoothSampleAMD = 4997,
613     SpvBuiltInBaryCoordPullModelAMD = 4998,
614     SpvBuiltInFragStencilRefEXT = 5014,
615     SpvBuiltInViewportMaskNV = 5253,
616     SpvBuiltInSecondaryPositionNV = 5257,
617     SpvBuiltInSecondaryViewportMaskNV = 5258,
618     SpvBuiltInPositionPerViewNV = 5261,
619     SpvBuiltInViewportMaskPerViewNV = 5262,
620     SpvBuiltInFullyCoveredEXT = 5264,
621     SpvBuiltInTaskCountNV = 5274,
622     SpvBuiltInPrimitiveCountNV = 5275,
623     SpvBuiltInPrimitiveIndicesNV = 5276,
624     SpvBuiltInClipDistancePerViewNV = 5277,
625     SpvBuiltInCullDistancePerViewNV = 5278,
626     SpvBuiltInLayerPerViewNV = 5279,
627     SpvBuiltInMeshViewCountNV = 5280,
628     SpvBuiltInMeshViewIndicesNV = 5281,
629     SpvBuiltInBaryCoordNV = 5286,
630     SpvBuiltInBaryCoordNoPerspNV = 5287,
631     SpvBuiltInFragSizeEXT = 5292,
632     SpvBuiltInFragmentSizeNV = 5292,
633     SpvBuiltInFragInvocationCountEXT = 5293,
634     SpvBuiltInInvocationsPerPixelNV = 5293,
635     SpvBuiltInLaunchIdKHR = 5319,
636     SpvBuiltInLaunchIdNV = 5319,
637     SpvBuiltInLaunchSizeKHR = 5320,
638     SpvBuiltInLaunchSizeNV = 5320,
639     SpvBuiltInWorldRayOriginKHR = 5321,
640     SpvBuiltInWorldRayOriginNV = 5321,
641     SpvBuiltInWorldRayDirectionKHR = 5322,
642     SpvBuiltInWorldRayDirectionNV = 5322,
643     SpvBuiltInObjectRayOriginKHR = 5323,
644     SpvBuiltInObjectRayOriginNV = 5323,
645     SpvBuiltInObjectRayDirectionKHR = 5324,
646     SpvBuiltInObjectRayDirectionNV = 5324,
647     SpvBuiltInRayTminKHR = 5325,
648     SpvBuiltInRayTminNV = 5325,
649     SpvBuiltInRayTmaxKHR = 5326,
650     SpvBuiltInRayTmaxNV = 5326,
651     SpvBuiltInInstanceCustomIndexKHR = 5327,
652     SpvBuiltInInstanceCustomIndexNV = 5327,
653     SpvBuiltInObjectToWorldKHR = 5330,
654     SpvBuiltInObjectToWorldNV = 5330,
655     SpvBuiltInWorldToObjectKHR = 5331,
656     SpvBuiltInWorldToObjectNV = 5331,
657     SpvBuiltInHitTNV = 5332,
658     SpvBuiltInHitKindKHR = 5333,
659     SpvBuiltInHitKindNV = 5333,
660     SpvBuiltInIncomingRayFlagsKHR = 5351,
661     SpvBuiltInIncomingRayFlagsNV = 5351,
662     SpvBuiltInRayGeometryIndexKHR = 5352,
663     SpvBuiltInWarpsPerSMNV = 5374,
664     SpvBuiltInSMCountNV = 5375,
665     SpvBuiltInWarpIDNV = 5376,
666     SpvBuiltInSMIDNV = 5377,
667     SpvBuiltInMax = 0x7fffffff,
668 } SpvBuiltIn;
669
670 typedef enum SpvSelectionControlShift_ {
671     SpvSelectionControlFlattenShift = 0,
672     SpvSelectionControlDontFlattenShift = 1,
673     SpvSelectionControlMax = 0x7fffffff,
674 } SpvSelectionControlShift;
675
676 typedef enum SpvSelectionControlMask_ {
677     SpvSelectionControlMaskNone = 0,
678     SpvSelectionControlFlattenMask = 0x00000001,
679     SpvSelectionControlDontFlattenMask = 0x00000002,
680 } SpvSelectionControlMask;
681
682 typedef enum SpvLoopControlShift_ {
683     SpvLoopControlUnrollShift = 0,
684     SpvLoopControlDontUnrollShift = 1,
685     SpvLoopControlDependencyInfiniteShift = 2,
686     SpvLoopControlDependencyLengthShift = 3,
687     SpvLoopControlMinIterationsShift = 4,
688     SpvLoopControlMaxIterationsShift = 5,
689     SpvLoopControlIterationMultipleShift = 6,
690     SpvLoopControlPeelCountShift = 7,
691     SpvLoopControlPartialCountShift = 8,
692     SpvLoopControlInitiationIntervalINTELShift = 16,
693     SpvLoopControlMaxConcurrencyINTELShift = 17,
694     SpvLoopControlDependencyArrayINTELShift = 18,
695     SpvLoopControlPipelineEnableINTELShift = 19,
696     SpvLoopControlLoopCoalesceINTELShift = 20,
697     SpvLoopControlMaxInterleavingINTELShift = 21,
698     SpvLoopControlSpeculatedIterationsINTELShift = 22,
699     SpvLoopControlNoFusionINTELShift = 23,
700     SpvLoopControlMax = 0x7fffffff,
701 } SpvLoopControlShift;
702
703 typedef enum SpvLoopControlMask_ {
704     SpvLoopControlMaskNone = 0,
705     SpvLoopControlUnrollMask = 0x00000001,
706     SpvLoopControlDontUnrollMask = 0x00000002,
707     SpvLoopControlDependencyInfiniteMask = 0x00000004,
708     SpvLoopControlDependencyLengthMask = 0x00000008,
709     SpvLoopControlMinIterationsMask = 0x00000010,
710     SpvLoopControlMaxIterationsMask = 0x00000020,
711     SpvLoopControlIterationMultipleMask = 0x00000040,
712     SpvLoopControlPeelCountMask = 0x00000080,
713     SpvLoopControlPartialCountMask = 0x00000100,
714     SpvLoopControlInitiationIntervalINTELMask = 0x00010000,
715     SpvLoopControlMaxConcurrencyINTELMask = 0x00020000,
716     SpvLoopControlDependencyArrayINTELMask = 0x00040000,
717     SpvLoopControlPipelineEnableINTELMask = 0x00080000,
718     SpvLoopControlLoopCoalesceINTELMask = 0x00100000,
719     SpvLoopControlMaxInterleavingINTELMask = 0x00200000,
720     SpvLoopControlSpeculatedIterationsINTELMask = 0x00400000,
721     SpvLoopControlNoFusionINTELMask = 0x00800000,
722 } SpvLoopControlMask;
723
724 typedef enum SpvFunctionControlShift_ {
725     SpvFunctionControlInlineShift = 0,
726     SpvFunctionControlDontInlineShift = 1,
727     SpvFunctionControlPureShift = 2,
728     SpvFunctionControlConstShift = 3,
729     SpvFunctionControlMax = 0x7fffffff,
730 } SpvFunctionControlShift;
731
732 typedef enum SpvFunctionControlMask_ {
733     SpvFunctionControlMaskNone = 0,
734     SpvFunctionControlInlineMask = 0x00000001,
735     SpvFunctionControlDontInlineMask = 0x00000002,
736     SpvFunctionControlPureMask = 0x00000004,
737     SpvFunctionControlConstMask = 0x00000008,
738 } SpvFunctionControlMask;
739
740 typedef enum SpvMemorySemanticsShift_ {
741     SpvMemorySemanticsAcquireShift = 1,
742     SpvMemorySemanticsReleaseShift = 2,
743     SpvMemorySemanticsAcquireReleaseShift = 3,
744     SpvMemorySemanticsSequentiallyConsistentShift = 4,
745     SpvMemorySemanticsUniformMemoryShift = 6,
746     SpvMemorySemanticsSubgroupMemoryShift = 7,
747     SpvMemorySemanticsWorkgroupMemoryShift = 8,
748     SpvMemorySemanticsCrossWorkgroupMemoryShift = 9,
749     SpvMemorySemanticsAtomicCounterMemoryShift = 10,
750     SpvMemorySemanticsImageMemoryShift = 11,
751     SpvMemorySemanticsOutputMemoryShift = 12,
752     SpvMemorySemanticsOutputMemoryKHRShift = 12,
753     SpvMemorySemanticsMakeAvailableShift = 13,
754     SpvMemorySemanticsMakeAvailableKHRShift = 13,
755     SpvMemorySemanticsMakeVisibleShift = 14,
756     SpvMemorySemanticsMakeVisibleKHRShift = 14,
757     SpvMemorySemanticsVolatileShift = 15,
758     SpvMemorySemanticsMax = 0x7fffffff,
759 } SpvMemorySemanticsShift;
760
761 typedef enum SpvMemorySemanticsMask_ {
762     SpvMemorySemanticsMaskNone = 0,
763     SpvMemorySemanticsAcquireMask = 0x00000002,
764     SpvMemorySemanticsReleaseMask = 0x00000004,
765     SpvMemorySemanticsAcquireReleaseMask = 0x00000008,
766     SpvMemorySemanticsSequentiallyConsistentMask = 0x00000010,
767     SpvMemorySemanticsUniformMemoryMask = 0x00000040,
768     SpvMemorySemanticsSubgroupMemoryMask = 0x00000080,
769     SpvMemorySemanticsWorkgroupMemoryMask = 0x00000100,
770     SpvMemorySemanticsCrossWorkgroupMemoryMask = 0x00000200,
771     SpvMemorySemanticsAtomicCounterMemoryMask = 0x00000400,
772     SpvMemorySemanticsImageMemoryMask = 0x00000800,
773     SpvMemorySemanticsOutputMemoryMask = 0x00001000,
774     SpvMemorySemanticsOutputMemoryKHRMask = 0x00001000,
775     SpvMemorySemanticsMakeAvailableMask = 0x00002000,
776     SpvMemorySemanticsMakeAvailableKHRMask = 0x00002000,
777     SpvMemorySemanticsMakeVisibleMask = 0x00004000,
778     SpvMemorySemanticsMakeVisibleKHRMask = 0x00004000,
779     SpvMemorySemanticsVolatileMask = 0x00008000,
780 } SpvMemorySemanticsMask;
781
782 typedef enum SpvMemoryAccessShift_ {
783     SpvMemoryAccessVolatileShift = 0,
784     SpvMemoryAccessAlignedShift = 1,
785     SpvMemoryAccessNontemporalShift = 2,
786     SpvMemoryAccessMakePointerAvailableShift = 3,
787     SpvMemoryAccessMakePointerAvailableKHRShift = 3,
788     SpvMemoryAccessMakePointerVisibleShift = 4,
789     SpvMemoryAccessMakePointerVisibleKHRShift = 4,
790     SpvMemoryAccessNonPrivatePointerShift = 5,
791     SpvMemoryAccessNonPrivatePointerKHRShift = 5,
792     SpvMemoryAccessMax = 0x7fffffff,
793 } SpvMemoryAccessShift;
794
795 typedef enum SpvMemoryAccessMask_ {
796     SpvMemoryAccessMaskNone = 0,
797     SpvMemoryAccessVolatileMask = 0x00000001,
798     SpvMemoryAccessAlignedMask = 0x00000002,
799     SpvMemoryAccessNontemporalMask = 0x00000004,
800     SpvMemoryAccessMakePointerAvailableMask = 0x00000008,
801     SpvMemoryAccessMakePointerAvailableKHRMask = 0x00000008,
802     SpvMemoryAccessMakePointerVisibleMask = 0x00000010,
803     SpvMemoryAccessMakePointerVisibleKHRMask = 0x00000010,
804     SpvMemoryAccessNonPrivatePointerMask = 0x00000020,
805     SpvMemoryAccessNonPrivatePointerKHRMask = 0x00000020,
806 } SpvMemoryAccessMask;
807
808 typedef enum SpvScope_ {
809     SpvScopeCrossDevice = 0,
810     SpvScopeDevice = 1,
811     SpvScopeWorkgroup = 2,
812     SpvScopeSubgroup = 3,
813     SpvScopeInvocation = 4,
814     SpvScopeQueueFamily = 5,
815     SpvScopeQueueFamilyKHR = 5,
816     SpvScopeShaderCallKHR = 6,
817     SpvScopeMax = 0x7fffffff,
818 } SpvScope;
819
820 typedef enum SpvGroupOperation_ {
821     SpvGroupOperationReduce = 0,
822     SpvGroupOperationInclusiveScan = 1,
823     SpvGroupOperationExclusiveScan = 2,
824     SpvGroupOperationClusteredReduce = 3,
825     SpvGroupOperationPartitionedReduceNV = 6,
826     SpvGroupOperationPartitionedInclusiveScanNV = 7,
827     SpvGroupOperationPartitionedExclusiveScanNV = 8,
828     SpvGroupOperationMax = 0x7fffffff,
829 } SpvGroupOperation;
830
831 typedef enum SpvKernelEnqueueFlags_ {
832     SpvKernelEnqueueFlagsNoWait = 0,
833     SpvKernelEnqueueFlagsWaitKernel = 1,
834     SpvKernelEnqueueFlagsWaitWorkGroup = 2,
835     SpvKernelEnqueueFlagsMax = 0x7fffffff,
836 } SpvKernelEnqueueFlags;
837
838 typedef enum SpvKernelProfilingInfoShift_ {
839     SpvKernelProfilingInfoCmdExecTimeShift = 0,
840     SpvKernelProfilingInfoMax = 0x7fffffff,
841 } SpvKernelProfilingInfoShift;
842
843 typedef enum SpvKernelProfilingInfoMask_ {
844     SpvKernelProfilingInfoMaskNone = 0,
845     SpvKernelProfilingInfoCmdExecTimeMask = 0x00000001,
846 } SpvKernelProfilingInfoMask;
847
848 typedef enum SpvCapability_ {
849     SpvCapabilityMatrix = 0,
850     SpvCapabilityShader = 1,
851     SpvCapabilityGeometry = 2,
852     SpvCapabilityTessellation = 3,
853     SpvCapabilityAddresses = 4,
854     SpvCapabilityLinkage = 5,
855     SpvCapabilityKernel = 6,
856     SpvCapabilityVector16 = 7,
857     SpvCapabilityFloat16Buffer = 8,
858     SpvCapabilityFloat16 = 9,
859     SpvCapabilityFloat64 = 10,
860     SpvCapabilityInt64 = 11,
861     SpvCapabilityInt64Atomics = 12,
862     SpvCapabilityImageBasic = 13,
863     SpvCapabilityImageReadWrite = 14,
864     SpvCapabilityImageMipmap = 15,
865     SpvCapabilityPipes = 17,
866     SpvCapabilityGroups = 18,
867     SpvCapabilityDeviceEnqueue = 19,
868     SpvCapabilityLiteralSampler = 20,
869     SpvCapabilityAtomicStorage = 21,
870     SpvCapabilityInt16 = 22,
871     SpvCapabilityTessellationPointSize = 23,
872     SpvCapabilityGeometryPointSize = 24,
873     SpvCapabilityImageGatherExtended = 25,
874     SpvCapabilityStorageImageMultisample = 27,
875     SpvCapabilityUniformBufferArrayDynamicIndexing = 28,
876     SpvCapabilitySampledImageArrayDynamicIndexing = 29,
877     SpvCapabilityStorageBufferArrayDynamicIndexing = 30,
878     SpvCapabilityStorageImageArrayDynamicIndexing = 31,
879     SpvCapabilityClipDistance = 32,
880     SpvCapabilityCullDistance = 33,
881     SpvCapabilityImageCubeArray = 34,
882     SpvCapabilitySampleRateShading = 35,
883     SpvCapabilityImageRect = 36,
884     SpvCapabilitySampledRect = 37,
885     SpvCapabilityGenericPointer = 38,
886     SpvCapabilityInt8 = 39,
887     SpvCapabilityInputAttachment = 40,
888     SpvCapabilitySparseResidency = 41,
889     SpvCapabilityMinLod = 42,
890     SpvCapabilitySampled1D = 43,
891     SpvCapabilityImage1D = 44,
892     SpvCapabilitySampledCubeArray = 45,
893     SpvCapabilitySampledBuffer = 46,
894     SpvCapabilityImageBuffer = 47,
895     SpvCapabilityImageMSArray = 48,
896     SpvCapabilityStorageImageExtendedFormats = 49,
897     SpvCapabilityImageQuery = 50,
898     SpvCapabilityDerivativeControl = 51,
899     SpvCapabilityInterpolationFunction = 52,
900     SpvCapabilityTransformFeedback = 53,
901     SpvCapabilityGeometryStreams = 54,
902     SpvCapabilityStorageImageReadWithoutFormat = 55,
903     SpvCapabilityStorageImageWriteWithoutFormat = 56,
904     SpvCapabilityMultiViewport = 57,
905     SpvCapabilitySubgroupDispatch = 58,
906     SpvCapabilityNamedBarrier = 59,
907     SpvCapabilityPipeStorage = 60,
908     SpvCapabilityGroupNonUniform = 61,
909     SpvCapabilityGroupNonUniformVote = 62,
910     SpvCapabilityGroupNonUniformArithmetic = 63,
911     SpvCapabilityGroupNonUniformBallot = 64,
912     SpvCapabilityGroupNonUniformShuffle = 65,
913     SpvCapabilityGroupNonUniformShuffleRelative = 66,
914     SpvCapabilityGroupNonUniformClustered = 67,
915     SpvCapabilityGroupNonUniformQuad = 68,
916     SpvCapabilityShaderLayer = 69,
917     SpvCapabilityShaderViewportIndex = 70,
918     SpvCapabilityFragmentShadingRateKHR = 4422,
919     SpvCapabilitySubgroupBallotKHR = 4423,
920     SpvCapabilityDrawParameters = 4427,
921     SpvCapabilityWorkgroupMemoryExplicitLayoutKHR = 4428,
922     SpvCapabilityWorkgroupMemoryExplicitLayout8BitAccessKHR = 4429,
923     SpvCapabilityWorkgroupMemoryExplicitLayout16BitAccessKHR = 4430,
924     SpvCapabilitySubgroupVoteKHR = 4431,
925     SpvCapabilityStorageBuffer16BitAccess = 4433,
926     SpvCapabilityStorageUniformBufferBlock16 = 4433,
927     SpvCapabilityStorageUniform16 = 4434,
928     SpvCapabilityUniformAndStorageBuffer16BitAccess = 4434,
929     SpvCapabilityStoragePushConstant16 = 4435,
930     SpvCapabilityStorageInputOutput16 = 4436,
931     SpvCapabilityDeviceGroup = 4437,
932     SpvCapabilityMultiView = 4439,
933     SpvCapabilityVariablePointersStorageBuffer = 4441,
934     SpvCapabilityVariablePointers = 4442,
935     SpvCapabilityAtomicStorageOps = 4445,
936     SpvCapabilitySampleMaskPostDepthCoverage = 4447,
937     SpvCapabilityStorageBuffer8BitAccess = 4448,
938     SpvCapabilityUniformAndStorageBuffer8BitAccess = 4449,
939     SpvCapabilityStoragePushConstant8 = 4450,
940     SpvCapabilityDenormPreserve = 4464,
941     SpvCapabilityDenormFlushToZero = 4465,
942     SpvCapabilitySignedZeroInfNanPreserve = 4466,
943     SpvCapabilityRoundingModeRTE = 4467,
944     SpvCapabilityRoundingModeRTZ = 4468,
945     SpvCapabilityRayQueryProvisionalKHR = 4471,
946     SpvCapabilityRayQueryKHR = 4472,
947     SpvCapabilityRayTraversalPrimitiveCullingKHR = 4478,
948     SpvCapabilityRayTracingKHR = 4479,
949     SpvCapabilityFloat16ImageAMD = 5008,
950     SpvCapabilityImageGatherBiasLodAMD = 5009,
951     SpvCapabilityFragmentMaskAMD = 5010,
952     SpvCapabilityStencilExportEXT = 5013,
953     SpvCapabilityImageReadWriteLodAMD = 5015,
954     SpvCapabilityInt64ImageEXT = 5016,
955     SpvCapabilityShaderClockKHR = 5055,
956     SpvCapabilitySampleMaskOverrideCoverageNV = 5249,
957     SpvCapabilityGeometryShaderPassthroughNV = 5251,
958     SpvCapabilityShaderViewportIndexLayerEXT = 5254,
959     SpvCapabilityShaderViewportIndexLayerNV = 5254,
960     SpvCapabilityShaderViewportMaskNV = 5255,
961     SpvCapabilityShaderStereoViewNV = 5259,
962     SpvCapabilityPerViewAttributesNV = 5260,
963     SpvCapabilityFragmentFullyCoveredEXT = 5265,
964     SpvCapabilityMeshShadingNV = 5266,
965     SpvCapabilityImageFootprintNV = 5282,
966     SpvCapabilityFragmentBarycentricNV = 5284,
967     SpvCapabilityComputeDerivativeGroupQuadsNV = 5288,
968     SpvCapabilityFragmentDensityEXT = 5291,
969     SpvCapabilityShadingRateNV = 5291,
970     SpvCapabilityGroupNonUniformPartitionedNV = 5297,
971     SpvCapabilityShaderNonUniform = 5301,
972     SpvCapabilityShaderNonUniformEXT = 5301,
973     SpvCapabilityRuntimeDescriptorArray = 5302,
974     SpvCapabilityRuntimeDescriptorArrayEXT = 5302,
975     SpvCapabilityInputAttachmentArrayDynamicIndexing = 5303,
976     SpvCapabilityInputAttachmentArrayDynamicIndexingEXT = 5303,
977     SpvCapabilityUniformTexelBufferArrayDynamicIndexing = 5304,
978     SpvCapabilityUniformTexelBufferArrayDynamicIndexingEXT = 5304,
979     SpvCapabilityStorageTexelBufferArrayDynamicIndexing = 5305,
980     SpvCapabilityStorageTexelBufferArrayDynamicIndexingEXT = 5305,
981     SpvCapabilityUniformBufferArrayNonUniformIndexing = 5306,
982     SpvCapabilityUniformBufferArrayNonUniformIndexingEXT = 5306,
983     SpvCapabilitySampledImageArrayNonUniformIndexing = 5307,
984     SpvCapabilitySampledImageArrayNonUniformIndexingEXT = 5307,
985     SpvCapabilityStorageBufferArrayNonUniformIndexing = 5308,
986     SpvCapabilityStorageBufferArrayNonUniformIndexingEXT = 5308,
987     SpvCapabilityStorageImageArrayNonUniformIndexing = 5309,
988     SpvCapabilityStorageImageArrayNonUniformIndexingEXT = 5309,
989     SpvCapabilityInputAttachmentArrayNonUniformIndexing = 5310,
990     SpvCapabilityInputAttachmentArrayNonUniformIndexingEXT = 5310,
991     SpvCapabilityUniformTexelBufferArrayNonUniformIndexing = 5311,
992     SpvCapabilityUniformTexelBufferArrayNonUniformIndexingEXT = 5311,
993     SpvCapabilityStorageTexelBufferArrayNonUniformIndexing = 5312,
994     SpvCapabilityStorageTexelBufferArrayNonUniformIndexingEXT = 5312,
995     SpvCapabilityRayTracingNV = 5340,
996     SpvCapabilityVulkanMemoryModel = 5345,
997     SpvCapabilityVulkanMemoryModelKHR = 5345,
998     SpvCapabilityVulkanMemoryModelDeviceScope = 5346,
999     SpvCapabilityVulkanMemoryModelDeviceScopeKHR = 5346,
1000     SpvCapabilityPhysicalStorageBufferAddresses = 5347,
1001     SpvCapabilityPhysicalStorageBufferAddressesEXT = 5347,
1002     SpvCapabilityComputeDerivativeGroupLinearNV = 5350,
1003     SpvCapabilityRayTracingProvisionalKHR = 5353,
1004     SpvCapabilityCooperativeMatrixNV = 5357,
1005     SpvCapabilityFragmentShaderSampleInterlockEXT = 5363,
1006     SpvCapabilityFragmentShaderShadingRateInterlockEXT = 5372,
1007     SpvCapabilityShaderSMBuiltinsNV = 5373,
1008     SpvCapabilityFragmentShaderPixelInterlockEXT = 5378,
1009     SpvCapabilityDemoteToHelperInvocationEXT = 5379,
1010     SpvCapabilitySubgroupShuffleINTEL = 5568,
1011     SpvCapabilitySubgroupBufferBlockIOINTEL = 5569,
1012     SpvCapabilitySubgroupImageBlockIOINTEL = 5570,
1013     SpvCapabilitySubgroupImageMediaBlockIOINTEL = 5579,
1014     SpvCapabilityRoundToInfinityINTEL = 5582,
1015     SpvCapabilityFloatingPointModeINTEL = 5583,
1016     SpvCapabilityIntegerFunctions2INTEL = 5584,
1017     SpvCapabilityFunctionPointersINTEL = 5603,
1018     SpvCapabilityIndirectReferencesINTEL = 5604,
1019     SpvCapabilityAsmINTEL = 5606,
1020     SpvCapabilityAtomicFloat32MinMaxEXT = 5612,
1021     SpvCapabilityAtomicFloat64MinMaxEXT = 5613,
1022     SpvCapabilityAtomicFloat16MinMaxEXT = 5616,
1023     SpvCapabilityVectorComputeINTEL = 5617,
1024     SpvCapabilityVectorAnyINTEL = 5619,
1025     SpvCapabilityExpectAssumeKHR = 5629,
1026     SpvCapabilitySubgroupAvcMotionEstimationINTEL = 5696,
1027     SpvCapabilitySubgroupAvcMotionEstimationIntraINTEL = 5697,
1028     SpvCapabilitySubgroupAvcMotionEstimationChromaINTEL = 5698,
1029     SpvCapabilityVariableLengthArrayINTEL = 5817,
1030     SpvCapabilityFunctionFloatControlINTEL = 5821,
1031     SpvCapabilityFPGAMemoryAttributesINTEL = 5824,
1032     SpvCapabilityFPFastMathModeINTEL = 5837,
1033     SpvCapabilityArbitraryPrecisionIntegersINTEL = 5844,
1034     SpvCapabilityArbitraryPrecisionFloatingPointINTEL = 5845,
1035     SpvCapabilityUnstructuredLoopControlsINTEL = 5886,
1036     SpvCapabilityFPGALoopControlsINTEL = 5888,
1037     SpvCapabilityKernelAttributesINTEL = 5892,
1038     SpvCapabilityFPGAKernelAttributesINTEL = 5897,
1039     SpvCapabilityFPGAMemoryAccessesINTEL = 5898,
1040     SpvCapabilityFPGAClusterAttributesINTEL = 5904,
1041     SpvCapabilityLoopFuseINTEL = 5906,
1042     SpvCapabilityFPGABufferLocationINTEL = 5920,
1043     SpvCapabilityArbitraryPrecisionFixedPointINTEL = 5922,
1044     SpvCapabilityUSMStorageClassesINTEL = 5935,
1045     SpvCapabilityIOPipesINTEL = 5943,
1046     SpvCapabilityBlockingPipesINTEL = 5945,
1047     SpvCapabilityFPGARegINTEL = 5948,
1048     SpvCapabilityDotProductInputAllKHR = 6016,
1049     SpvCapabilityDotProductInput4x8BitKHR = 6017,
1050     SpvCapabilityDotProductInput4x8BitPackedKHR = 6018,
1051     SpvCapabilityDotProductKHR = 6019,
1052     SpvCapabilityBitInstructions = 6025,
1053     SpvCapabilityAtomicFloat32AddEXT = 6033,
1054     SpvCapabilityAtomicFloat64AddEXT = 6034,
1055     SpvCapabilityLongConstantCompositeINTEL = 6089,
1056     SpvCapabilityAtomicFloat16AddEXT = 6095,
1057     SpvCapabilityDebugInfoModuleINTEL = 6114,
1058     SpvCapabilityMax = 0x7fffffff,
1059 } SpvCapability;
1060
1061 typedef enum SpvRayFlagsShift_ {
1062     SpvRayFlagsOpaqueKHRShift = 0,
1063     SpvRayFlagsNoOpaqueKHRShift = 1,
1064     SpvRayFlagsTerminateOnFirstHitKHRShift = 2,
1065     SpvRayFlagsSkipClosestHitShaderKHRShift = 3,
1066     SpvRayFlagsCullBackFacingTrianglesKHRShift = 4,
1067     SpvRayFlagsCullFrontFacingTrianglesKHRShift = 5,
1068     SpvRayFlagsCullOpaqueKHRShift = 6,
1069     SpvRayFlagsCullNoOpaqueKHRShift = 7,
1070     SpvRayFlagsSkipTrianglesKHRShift = 8,
1071     SpvRayFlagsSkipAABBsKHRShift = 9,
1072     SpvRayFlagsMax = 0x7fffffff,
1073 } SpvRayFlagsShift;
1074
1075 typedef enum SpvRayFlagsMask_ {
1076     SpvRayFlagsMaskNone = 0,
1077     SpvRayFlagsOpaqueKHRMask = 0x00000001,
1078     SpvRayFlagsNoOpaqueKHRMask = 0x00000002,
1079     SpvRayFlagsTerminateOnFirstHitKHRMask = 0x00000004,
1080     SpvRayFlagsSkipClosestHitShaderKHRMask = 0x00000008,
1081     SpvRayFlagsCullBackFacingTrianglesKHRMask = 0x00000010,
1082     SpvRayFlagsCullFrontFacingTrianglesKHRMask = 0x00000020,
1083     SpvRayFlagsCullOpaqueKHRMask = 0x00000040,
1084     SpvRayFlagsCullNoOpaqueKHRMask = 0x00000080,
1085     SpvRayFlagsSkipTrianglesKHRMask = 0x00000100,
1086     SpvRayFlagsSkipAABBsKHRMask = 0x00000200,
1087 } SpvRayFlagsMask;
1088
1089 typedef enum SpvRayQueryIntersection_ {
1090     SpvRayQueryIntersectionRayQueryCandidateIntersectionKHR = 0,
1091     SpvRayQueryIntersectionRayQueryCommittedIntersectionKHR = 1,
1092     SpvRayQueryIntersectionMax = 0x7fffffff,
1093 } SpvRayQueryIntersection;
1094
1095 typedef enum SpvRayQueryCommittedIntersectionType_ {
1096     SpvRayQueryCommittedIntersectionTypeRayQueryCommittedIntersectionNoneKHR = 0,
1097     SpvRayQueryCommittedIntersectionTypeRayQueryCommittedIntersectionTriangleKHR = 1,
1098     SpvRayQueryCommittedIntersectionTypeRayQueryCommittedIntersectionGeneratedKHR = 2,
1099     SpvRayQueryCommittedIntersectionTypeMax = 0x7fffffff,
1100 } SpvRayQueryCommittedIntersectionType;
1101
1102 typedef enum SpvRayQueryCandidateIntersectionType_ {
1103     SpvRayQueryCandidateIntersectionTypeRayQueryCandidateIntersectionTriangleKHR = 0,
1104     SpvRayQueryCandidateIntersectionTypeRayQueryCandidateIntersectionAABBKHR = 1,
1105     SpvRayQueryCandidateIntersectionTypeMax = 0x7fffffff,
1106 } SpvRayQueryCandidateIntersectionType;
1107
1108 typedef enum SpvFragmentShadingRateShift_ {
1109     SpvFragmentShadingRateVertical2PixelsShift = 0,
1110     SpvFragmentShadingRateVertical4PixelsShift = 1,
1111     SpvFragmentShadingRateHorizontal2PixelsShift = 2,
1112     SpvFragmentShadingRateHorizontal4PixelsShift = 3,
1113     SpvFragmentShadingRateMax = 0x7fffffff,
1114 } SpvFragmentShadingRateShift;
1115
1116 typedef enum SpvFragmentShadingRateMask_ {
1117     SpvFragmentShadingRateMaskNone = 0,
1118     SpvFragmentShadingRateVertical2PixelsMask = 0x00000001,
1119     SpvFragmentShadingRateVertical4PixelsMask = 0x00000002,
1120     SpvFragmentShadingRateHorizontal2PixelsMask = 0x00000004,
1121     SpvFragmentShadingRateHorizontal4PixelsMask = 0x00000008,
1122 } SpvFragmentShadingRateMask;
1123
1124 typedef enum SpvFPDenormMode_ {
1125     SpvFPDenormModePreserve = 0,
1126     SpvFPDenormModeFlushToZero = 1,
1127     SpvFPDenormModeMax = 0x7fffffff,
1128 } SpvFPDenormMode;
1129
1130 typedef enum SpvFPOperationMode_ {
1131     SpvFPOperationModeIEEE = 0,
1132     SpvFPOperationModeALT = 1,
1133     SpvFPOperationModeMax = 0x7fffffff,
1134 } SpvFPOperationMode;
1135
1136 typedef enum SpvQuantizationModes_ {
1137     SpvQuantizationModesTRN = 0,
1138     SpvQuantizationModesTRN_ZERO = 1,
1139     SpvQuantizationModesRND = 2,
1140     SpvQuantizationModesRND_ZERO = 3,
1141     SpvQuantizationModesRND_INF = 4,
1142     SpvQuantizationModesRND_MIN_INF = 5,
1143     SpvQuantizationModesRND_CONV = 6,
1144     SpvQuantizationModesRND_CONV_ODD = 7,
1145     SpvQuantizationModesMax = 0x7fffffff,
1146 } SpvQuantizationModes;
1147
1148 typedef enum SpvOverflowModes_ {
1149     SpvOverflowModesWRAP = 0,
1150     SpvOverflowModesSAT = 1,
1151     SpvOverflowModesSAT_ZERO = 2,
1152     SpvOverflowModesSAT_SYM = 3,
1153     SpvOverflowModesMax = 0x7fffffff,
1154 } SpvOverflowModes;
1155
1156 typedef enum SpvPackedVectorFormat_ {
1157     SpvPackedVectorFormatPackedVectorFormat4x8BitKHR = 0,
1158     SpvPackedVectorFormatMax = 0x7fffffff,
1159 } SpvPackedVectorFormat;
1160
1161 typedef enum SpvOp_ {
1162     SpvOpNop = 0,
1163     SpvOpUndef = 1,
1164     SpvOpSourceContinued = 2,
1165     SpvOpSource = 3,
1166     SpvOpSourceExtension = 4,
1167     SpvOpName = 5,
1168     SpvOpMemberName = 6,
1169     SpvOpString = 7,
1170     SpvOpLine = 8,
1171     SpvOpExtension = 10,
1172     SpvOpExtInstImport = 11,
1173     SpvOpExtInst = 12,
1174     SpvOpMemoryModel = 14,
1175     SpvOpEntryPoint = 15,
1176     SpvOpExecutionMode = 16,
1177     SpvOpCapability = 17,
1178     SpvOpTypeVoid = 19,
1179     SpvOpTypeBool = 20,
1180     SpvOpTypeInt = 21,
1181     SpvOpTypeFloat = 22,
1182     SpvOpTypeVector = 23,
1183     SpvOpTypeMatrix = 24,
1184     SpvOpTypeImage = 25,
1185     SpvOpTypeSampler = 26,
1186     SpvOpTypeSampledImage = 27,
1187     SpvOpTypeArray = 28,
1188     SpvOpTypeRuntimeArray = 29,
1189     SpvOpTypeStruct = 30,
1190     SpvOpTypeOpaque = 31,
1191     SpvOpTypePointer = 32,
1192     SpvOpTypeFunction = 33,
1193     SpvOpTypeEvent = 34,
1194     SpvOpTypeDeviceEvent = 35,
1195     SpvOpTypeReserveId = 36,
1196     SpvOpTypeQueue = 37,
1197     SpvOpTypePipe = 38,
1198     SpvOpTypeForwardPointer = 39,
1199     SpvOpConstantTrue = 41,
1200     SpvOpConstantFalse = 42,
1201     SpvOpConstant = 43,
1202     SpvOpConstantComposite = 44,
1203     SpvOpConstantSampler = 45,
1204     SpvOpConstantNull = 46,
1205     SpvOpSpecConstantTrue = 48,
1206     SpvOpSpecConstantFalse = 49,
1207     SpvOpSpecConstant = 50,
1208     SpvOpSpecConstantComposite = 51,
1209     SpvOpSpecConstantOp = 52,
1210     SpvOpFunction = 54,
1211     SpvOpFunctionParameter = 55,
1212     SpvOpFunctionEnd = 56,
1213     SpvOpFunctionCall = 57,
1214     SpvOpVariable = 59,
1215     SpvOpImageTexelPointer = 60,
1216     SpvOpLoad = 61,
1217     SpvOpStore = 62,
1218     SpvOpCopyMemory = 63,
1219     SpvOpCopyMemorySized = 64,
1220     SpvOpAccessChain = 65,
1221     SpvOpInBoundsAccessChain = 66,
1222     SpvOpPtrAccessChain = 67,
1223     SpvOpArrayLength = 68,
1224     SpvOpGenericPtrMemSemantics = 69,
1225     SpvOpInBoundsPtrAccessChain = 70,
1226     SpvOpDecorate = 71,
1227     SpvOpMemberDecorate = 72,
1228     SpvOpDecorationGroup = 73,
1229     SpvOpGroupDecorate = 74,
1230     SpvOpGroupMemberDecorate = 75,
1231     SpvOpVectorExtractDynamic = 77,
1232     SpvOpVectorInsertDynamic = 78,
1233     SpvOpVectorShuffle = 79,
1234     SpvOpCompositeConstruct = 80,
1235     SpvOpCompositeExtract = 81,
1236     SpvOpCompositeInsert = 82,
1237     SpvOpCopyObject = 83,
1238     SpvOpTranspose = 84,
1239     SpvOpSampledImage = 86,
1240     SpvOpImageSampleImplicitLod = 87,
1241     SpvOpImageSampleExplicitLod = 88,
1242     SpvOpImageSampleDrefImplicitLod = 89,
1243     SpvOpImageSampleDrefExplicitLod = 90,
1244     SpvOpImageSampleProjImplicitLod = 91,
1245     SpvOpImageSampleProjExplicitLod = 92,
1246     SpvOpImageSampleProjDrefImplicitLod = 93,
1247     SpvOpImageSampleProjDrefExplicitLod = 94,
1248     SpvOpImageFetch = 95,
1249     SpvOpImageGather = 96,
1250     SpvOpImageDrefGather = 97,
1251     SpvOpImageRead = 98,
1252     SpvOpImageWrite = 99,
1253     SpvOpImage = 100,
1254     SpvOpImageQueryFormat = 101,
1255     SpvOpImageQueryOrder = 102,
1256     SpvOpImageQuerySizeLod = 103,
1257     SpvOpImageQuerySize = 104,
1258     SpvOpImageQueryLod = 105,
1259     SpvOpImageQueryLevels = 106,
1260     SpvOpImageQuerySamples = 107,
1261     SpvOpConvertFToU = 109,
1262     SpvOpConvertFToS = 110,
1263     SpvOpConvertSToF = 111,
1264     SpvOpConvertUToF = 112,
1265     SpvOpUConvert = 113,
1266     SpvOpSConvert = 114,
1267     SpvOpFConvert = 115,
1268     SpvOpQuantizeToF16 = 116,
1269     SpvOpConvertPtrToU = 117,
1270     SpvOpSatConvertSToU = 118,
1271     SpvOpSatConvertUToS = 119,
1272     SpvOpConvertUToPtr = 120,
1273     SpvOpPtrCastToGeneric = 121,
1274     SpvOpGenericCastToPtr = 122,
1275     SpvOpGenericCastToPtrExplicit = 123,
1276     SpvOpBitcast = 124,
1277     SpvOpSNegate = 126,
1278     SpvOpFNegate = 127,
1279     SpvOpIAdd = 128,
1280     SpvOpFAdd = 129,
1281     SpvOpISub = 130,
1282     SpvOpFSub = 131,
1283     SpvOpIMul = 132,
1284     SpvOpFMul = 133,
1285     SpvOpUDiv = 134,
1286     SpvOpSDiv = 135,
1287     SpvOpFDiv = 136,
1288     SpvOpUMod = 137,
1289     SpvOpSRem = 138,
1290     SpvOpSMod = 139,
1291     SpvOpFRem = 140,
1292     SpvOpFMod = 141,
1293     SpvOpVectorTimesScalar = 142,
1294     SpvOpMatrixTimesScalar = 143,
1295     SpvOpVectorTimesMatrix = 144,
1296     SpvOpMatrixTimesVector = 145,
1297     SpvOpMatrixTimesMatrix = 146,
1298     SpvOpOuterProduct = 147,
1299     SpvOpDot = 148,
1300     SpvOpIAddCarry = 149,
1301     SpvOpISubBorrow = 150,
1302     SpvOpUMulExtended = 151,
1303     SpvOpSMulExtended = 152,
1304     SpvOpAny = 154,
1305     SpvOpAll = 155,
1306     SpvOpIsNan = 156,
1307     SpvOpIsInf = 157,
1308     SpvOpIsFinite = 158,
1309     SpvOpIsNormal = 159,
1310     SpvOpSignBitSet = 160,
1311     SpvOpLessOrGreater = 161,
1312     SpvOpOrdered = 162,
1313     SpvOpUnordered = 163,
1314     SpvOpLogicalEqual = 164,
1315     SpvOpLogicalNotEqual = 165,
1316     SpvOpLogicalOr = 166,
1317     SpvOpLogicalAnd = 167,
1318     SpvOpLogicalNot = 168,
1319     SpvOpSelect = 169,
1320     SpvOpIEqual = 170,
1321     SpvOpINotEqual = 171,
1322     SpvOpUGreaterThan = 172,
1323     SpvOpSGreaterThan = 173,
1324     SpvOpUGreaterThanEqual = 174,
1325     SpvOpSGreaterThanEqual = 175,
1326     SpvOpULessThan = 176,
1327     SpvOpSLessThan = 177,
1328     SpvOpULessThanEqual = 178,
1329     SpvOpSLessThanEqual = 179,
1330     SpvOpFOrdEqual = 180,
1331     SpvOpFUnordEqual = 181,
1332     SpvOpFOrdNotEqual = 182,
1333     SpvOpFUnordNotEqual = 183,
1334     SpvOpFOrdLessThan = 184,
1335     SpvOpFUnordLessThan = 185,
1336     SpvOpFOrdGreaterThan = 186,
1337     SpvOpFUnordGreaterThan = 187,
1338     SpvOpFOrdLessThanEqual = 188,
1339     SpvOpFUnordLessThanEqual = 189,
1340     SpvOpFOrdGreaterThanEqual = 190,
1341     SpvOpFUnordGreaterThanEqual = 191,
1342     SpvOpShiftRightLogical = 194,
1343     SpvOpShiftRightArithmetic = 195,
1344     SpvOpShiftLeftLogical = 196,
1345     SpvOpBitwiseOr = 197,
1346     SpvOpBitwiseXor = 198,
1347     SpvOpBitwiseAnd = 199,
1348     SpvOpNot = 200,
1349     SpvOpBitFieldInsert = 201,
1350     SpvOpBitFieldSExtract = 202,
1351     SpvOpBitFieldUExtract = 203,
1352     SpvOpBitReverse = 204,
1353     SpvOpBitCount = 205,
1354     SpvOpDPdx = 207,
1355     SpvOpDPdy = 208,
1356     SpvOpFwidth = 209,
1357     SpvOpDPdxFine = 210,
1358     SpvOpDPdyFine = 211,
1359     SpvOpFwidthFine = 212,
1360     SpvOpDPdxCoarse = 213,
1361     SpvOpDPdyCoarse = 214,
1362     SpvOpFwidthCoarse = 215,
1363     SpvOpEmitVertex = 218,
1364     SpvOpEndPrimitive = 219,
1365     SpvOpEmitStreamVertex = 220,
1366     SpvOpEndStreamPrimitive = 221,
1367     SpvOpControlBarrier = 224,
1368     SpvOpMemoryBarrier = 225,
1369     SpvOpAtomicLoad = 227,
1370     SpvOpAtomicStore = 228,
1371     SpvOpAtomicExchange = 229,
1372     SpvOpAtomicCompareExchange = 230,
1373     SpvOpAtomicCompareExchangeWeak = 231,
1374     SpvOpAtomicIIncrement = 232,
1375     SpvOpAtomicIDecrement = 233,
1376     SpvOpAtomicIAdd = 234,
1377     SpvOpAtomicISub = 235,
1378     SpvOpAtomicSMin = 236,
1379     SpvOpAtomicUMin = 237,
1380     SpvOpAtomicSMax = 238,
1381     SpvOpAtomicUMax = 239,
1382     SpvOpAtomicAnd = 240,
1383     SpvOpAtomicOr = 241,
1384     SpvOpAtomicXor = 242,
1385     SpvOpPhi = 245,
1386     SpvOpLoopMerge = 246,
1387     SpvOpSelectionMerge = 247,
1388     SpvOpLabel = 248,
1389     SpvOpBranch = 249,
1390     SpvOpBranchConditional = 250,
1391     SpvOpSwitch = 251,
1392     SpvOpKill = 252,
1393     SpvOpReturn = 253,
1394     SpvOpReturnValue = 254,
1395     SpvOpUnreachable = 255,
1396     SpvOpLifetimeStart = 256,
1397     SpvOpLifetimeStop = 257,
1398     SpvOpGroupAsyncCopy = 259,
1399     SpvOpGroupWaitEvents = 260,
1400     SpvOpGroupAll = 261,
1401     SpvOpGroupAny = 262,
1402     SpvOpGroupBroadcast = 263,
1403     SpvOpGroupIAdd = 264,
1404     SpvOpGroupFAdd = 265,
1405     SpvOpGroupFMin = 266,
1406     SpvOpGroupUMin = 267,
1407     SpvOpGroupSMin = 268,
1408     SpvOpGroupFMax = 269,
1409     SpvOpGroupUMax = 270,
1410     SpvOpGroupSMax = 271,
1411     SpvOpReadPipe = 274,
1412     SpvOpWritePipe = 275,
1413     SpvOpReservedReadPipe = 276,
1414     SpvOpReservedWritePipe = 277,
1415     SpvOpReserveReadPipePackets = 278,
1416     SpvOpReserveWritePipePackets = 279,
1417     SpvOpCommitReadPipe = 280,
1418     SpvOpCommitWritePipe = 281,
1419     SpvOpIsValidReserveId = 282,
1420     SpvOpGetNumPipePackets = 283,
1421     SpvOpGetMaxPipePackets = 284,
1422     SpvOpGroupReserveReadPipePackets = 285,
1423     SpvOpGroupReserveWritePipePackets = 286,
1424     SpvOpGroupCommitReadPipe = 287,
1425     SpvOpGroupCommitWritePipe = 288,
1426     SpvOpEnqueueMarker = 291,
1427     SpvOpEnqueueKernel = 292,
1428     SpvOpGetKernelNDrangeSubGroupCount = 293,
1429     SpvOpGetKernelNDrangeMaxSubGroupSize = 294,
1430     SpvOpGetKernelWorkGroupSize = 295,
1431     SpvOpGetKernelPreferredWorkGroupSizeMultiple = 296,
1432     SpvOpRetainEvent = 297,
1433     SpvOpReleaseEvent = 298,
1434     SpvOpCreateUserEvent = 299,
1435     SpvOpIsValidEvent = 300,
1436     SpvOpSetUserEventStatus = 301,
1437     SpvOpCaptureEventProfilingInfo = 302,
1438     SpvOpGetDefaultQueue = 303,
1439     SpvOpBuildNDRange = 304,
1440     SpvOpImageSparseSampleImplicitLod = 305,
1441     SpvOpImageSparseSampleExplicitLod = 306,
1442     SpvOpImageSparseSampleDrefImplicitLod = 307,
1443     SpvOpImageSparseSampleDrefExplicitLod = 308,
1444     SpvOpImageSparseSampleProjImplicitLod = 309,
1445     SpvOpImageSparseSampleProjExplicitLod = 310,
1446     SpvOpImageSparseSampleProjDrefImplicitLod = 311,
1447     SpvOpImageSparseSampleProjDrefExplicitLod = 312,
1448     SpvOpImageSparseFetch = 313,
1449     SpvOpImageSparseGather = 314,
1450     SpvOpImageSparseDrefGather = 315,
1451     SpvOpImageSparseTexelsResident = 316,
1452     SpvOpNoLine = 317,
1453     SpvOpAtomicFlagTestAndSet = 318,
1454     SpvOpAtomicFlagClear = 319,
1455     SpvOpImageSparseRead = 320,
1456     SpvOpSizeOf = 321,
1457     SpvOpTypePipeStorage = 322,
1458     SpvOpConstantPipeStorage = 323,
1459     SpvOpCreatePipeFromPipeStorage = 324,
1460     SpvOpGetKernelLocalSizeForSubgroupCount = 325,
1461     SpvOpGetKernelMaxNumSubgroups = 326,
1462     SpvOpTypeNamedBarrier = 327,
1463     SpvOpNamedBarrierInitialize = 328,
1464     SpvOpMemoryNamedBarrier = 329,
1465     SpvOpModuleProcessed = 330,
1466     SpvOpExecutionModeId = 331,
1467     SpvOpDecorateId = 332,
1468     SpvOpGroupNonUniformElect = 333,
1469     SpvOpGroupNonUniformAll = 334,
1470     SpvOpGroupNonUniformAny = 335,
1471     SpvOpGroupNonUniformAllEqual = 336,
1472     SpvOpGroupNonUniformBroadcast = 337,
1473     SpvOpGroupNonUniformBroadcastFirst = 338,
1474     SpvOpGroupNonUniformBallot = 339,
1475     SpvOpGroupNonUniformInverseBallot = 340,
1476     SpvOpGroupNonUniformBallotBitExtract = 341,
1477     SpvOpGroupNonUniformBallotBitCount = 342,
1478     SpvOpGroupNonUniformBallotFindLSB = 343,
1479     SpvOpGroupNonUniformBallotFindMSB = 344,
1480     SpvOpGroupNonUniformShuffle = 345,
1481     SpvOpGroupNonUniformShuffleXor = 346,
1482     SpvOpGroupNonUniformShuffleUp = 347,
1483     SpvOpGroupNonUniformShuffleDown = 348,
1484     SpvOpGroupNonUniformIAdd = 349,
1485     SpvOpGroupNonUniformFAdd = 350,
1486     SpvOpGroupNonUniformIMul = 351,
1487     SpvOpGroupNonUniformFMul = 352,
1488     SpvOpGroupNonUniformSMin = 353,
1489     SpvOpGroupNonUniformUMin = 354,
1490     SpvOpGroupNonUniformFMin = 355,
1491     SpvOpGroupNonUniformSMax = 356,
1492     SpvOpGroupNonUniformUMax = 357,
1493     SpvOpGroupNonUniformFMax = 358,
1494     SpvOpGroupNonUniformBitwiseAnd = 359,
1495     SpvOpGroupNonUniformBitwiseOr = 360,
1496     SpvOpGroupNonUniformBitwiseXor = 361,
1497     SpvOpGroupNonUniformLogicalAnd = 362,
1498     SpvOpGroupNonUniformLogicalOr = 363,
1499     SpvOpGroupNonUniformLogicalXor = 364,
1500     SpvOpGroupNonUniformQuadBroadcast = 365,
1501     SpvOpGroupNonUniformQuadSwap = 366,
1502     SpvOpCopyLogical = 400,
1503     SpvOpPtrEqual = 401,
1504     SpvOpPtrNotEqual = 402,
1505     SpvOpPtrDiff = 403,
1506     SpvOpTerminateInvocation = 4416,
1507     SpvOpSubgroupBallotKHR = 4421,
1508     SpvOpSubgroupFirstInvocationKHR = 4422,
1509     SpvOpSubgroupAllKHR = 4428,
1510     SpvOpSubgroupAnyKHR = 4429,
1511     SpvOpSubgroupAllEqualKHR = 4430,
1512     SpvOpSubgroupReadInvocationKHR = 4432,
1513     SpvOpTraceRayKHR = 4445,
1514     SpvOpExecuteCallableKHR = 4446,
1515     SpvOpConvertUToAccelerationStructureKHR = 4447,
1516     SpvOpIgnoreIntersectionKHR = 4448,
1517     SpvOpTerminateRayKHR = 4449,
1518     SpvOpSDotKHR = 4450,
1519     SpvOpUDotKHR = 4451,
1520     SpvOpSUDotKHR = 4452,
1521     SpvOpSDotAccSatKHR = 4453,
1522     SpvOpUDotAccSatKHR = 4454,
1523     SpvOpSUDotAccSatKHR = 4455,
1524     SpvOpTypeRayQueryKHR = 4472,
1525     SpvOpRayQueryInitializeKHR = 4473,
1526     SpvOpRayQueryTerminateKHR = 4474,
1527     SpvOpRayQueryGenerateIntersectionKHR = 4475,
1528     SpvOpRayQueryConfirmIntersectionKHR = 4476,
1529     SpvOpRayQueryProceedKHR = 4477,
1530     SpvOpRayQueryGetIntersectionTypeKHR = 4479,
1531     SpvOpGroupIAddNonUniformAMD = 5000,
1532     SpvOpGroupFAddNonUniformAMD = 5001,
1533     SpvOpGroupFMinNonUniformAMD = 5002,
1534     SpvOpGroupUMinNonUniformAMD = 5003,
1535     SpvOpGroupSMinNonUniformAMD = 5004,
1536     SpvOpGroupFMaxNonUniformAMD = 5005,
1537     SpvOpGroupUMaxNonUniformAMD = 5006,
1538     SpvOpGroupSMaxNonUniformAMD = 5007,
1539     SpvOpFragmentMaskFetchAMD = 5011,
1540     SpvOpFragmentFetchAMD = 5012,
1541     SpvOpReadClockKHR = 5056,
1542     SpvOpImageSampleFootprintNV = 5283,
1543     SpvOpGroupNonUniformPartitionNV = 5296,
1544     SpvOpWritePackedPrimitiveIndices4x8NV = 5299,
1545     SpvOpReportIntersectionKHR = 5334,
1546     SpvOpReportIntersectionNV = 5334,
1547     SpvOpIgnoreIntersectionNV = 5335,
1548     SpvOpTerminateRayNV = 5336,
1549     SpvOpTraceNV = 5337,
1550     SpvOpTypeAccelerationStructureKHR = 5341,
1551     SpvOpTypeAccelerationStructureNV = 5341,
1552     SpvOpExecuteCallableNV = 5344,
1553     SpvOpTypeCooperativeMatrixNV = 5358,
1554     SpvOpCooperativeMatrixLoadNV = 5359,
1555     SpvOpCooperativeMatrixStoreNV = 5360,
1556     SpvOpCooperativeMatrixMulAddNV = 5361,
1557     SpvOpCooperativeMatrixLengthNV = 5362,
1558     SpvOpBeginInvocationInterlockEXT = 5364,
1559     SpvOpEndInvocationInterlockEXT = 5365,
1560     SpvOpDemoteToHelperInvocationEXT = 5380,
1561     SpvOpIsHelperInvocationEXT = 5381,
1562     SpvOpSubgroupShuffleINTEL = 5571,
1563     SpvOpSubgroupShuffleDownINTEL = 5572,
1564     SpvOpSubgroupShuffleUpINTEL = 5573,
1565     SpvOpSubgroupShuffleXorINTEL = 5574,
1566     SpvOpSubgroupBlockReadINTEL = 5575,
1567     SpvOpSubgroupBlockWriteINTEL = 5576,
1568     SpvOpSubgroupImageBlockReadINTEL = 5577,
1569     SpvOpSubgroupImageBlockWriteINTEL = 5578,
1570     SpvOpSubgroupImageMediaBlockReadINTEL = 5580,
1571     SpvOpSubgroupImageMediaBlockWriteINTEL = 5581,
1572     SpvOpUCountLeadingZerosINTEL = 5585,
1573     SpvOpUCountTrailingZerosINTEL = 5586,
1574     SpvOpAbsISubINTEL = 5587,
1575     SpvOpAbsUSubINTEL = 5588,
1576     SpvOpIAddSatINTEL = 5589,
1577     SpvOpUAddSatINTEL = 5590,
1578     SpvOpIAverageINTEL = 5591,
1579     SpvOpUAverageINTEL = 5592,
1580     SpvOpIAverageRoundedINTEL = 5593,
1581     SpvOpUAverageRoundedINTEL = 5594,
1582     SpvOpISubSatINTEL = 5595,
1583     SpvOpUSubSatINTEL = 5596,
1584     SpvOpIMul32x16INTEL = 5597,
1585     SpvOpUMul32x16INTEL = 5598,
1586     SpvOpConstFunctionPointerINTEL = 5600,
1587     SpvOpFunctionPointerCallINTEL = 5601,
1588     SpvOpAsmTargetINTEL = 5609,
1589     SpvOpAsmINTEL = 5610,
1590     SpvOpAsmCallINTEL = 5611,
1591     SpvOpAtomicFMinEXT = 5614,
1592     SpvOpAtomicFMaxEXT = 5615,
1593     SpvOpAssumeTrueKHR = 5630,
1594     SpvOpExpectKHR = 5631,
1595     SpvOpDecorateString = 5632,
1596     SpvOpDecorateStringGOOGLE = 5632,
1597     SpvOpMemberDecorateString = 5633,
1598     SpvOpMemberDecorateStringGOOGLE = 5633,
1599     SpvOpVmeImageINTEL = 5699,
1600     SpvOpTypeVmeImageINTEL = 5700,
1601     SpvOpTypeAvcImePayloadINTEL = 5701,
1602     SpvOpTypeAvcRefPayloadINTEL = 5702,
1603     SpvOpTypeAvcSicPayloadINTEL = 5703,
1604     SpvOpTypeAvcMcePayloadINTEL = 5704,
1605     SpvOpTypeAvcMceResultINTEL = 5705,
1606     SpvOpTypeAvcImeResultINTEL = 5706,
1607     SpvOpTypeAvcImeResultSingleReferenceStreamoutINTEL = 5707,
1608     SpvOpTypeAvcImeResultDualReferenceStreamoutINTEL = 5708,
1609     SpvOpTypeAvcImeSingleReferenceStreaminINTEL = 5709,
1610     SpvOpTypeAvcImeDualReferenceStreaminINTEL = 5710,
1611     SpvOpTypeAvcRefResultINTEL = 5711,
1612     SpvOpTypeAvcSicResultINTEL = 5712,
1613     SpvOpSubgroupAvcMceGetDefaultInterBaseMultiReferencePenaltyINTEL = 5713,
1614     SpvOpSubgroupAvcMceSetInterBaseMultiReferencePenaltyINTEL = 5714,
1615     SpvOpSubgroupAvcMceGetDefaultInterShapePenaltyINTEL = 5715,
1616     SpvOpSubgroupAvcMceSetInterShapePenaltyINTEL = 5716,
1617     SpvOpSubgroupAvcMceGetDefaultInterDirectionPenaltyINTEL = 5717,
1618     SpvOpSubgroupAvcMceSetInterDirectionPenaltyINTEL = 5718,
1619     SpvOpSubgroupAvcMceGetDefaultIntraLumaShapePenaltyINTEL = 5719,
1620     SpvOpSubgroupAvcMceGetDefaultInterMotionVectorCostTableINTEL = 5720,
1621     SpvOpSubgroupAvcMceGetDefaultHighPenaltyCostTableINTEL = 5721,
1622     SpvOpSubgroupAvcMceGetDefaultMediumPenaltyCostTableINTEL = 5722,
1623     SpvOpSubgroupAvcMceGetDefaultLowPenaltyCostTableINTEL = 5723,
1624     SpvOpSubgroupAvcMceSetMotionVectorCostFunctionINTEL = 5724,
1625     SpvOpSubgroupAvcMceGetDefaultIntraLumaModePenaltyINTEL = 5725,
1626     SpvOpSubgroupAvcMceGetDefaultNonDcLumaIntraPenaltyINTEL = 5726,
1627     SpvOpSubgroupAvcMceGetDefaultIntraChromaModeBasePenaltyINTEL = 5727,
1628     SpvOpSubgroupAvcMceSetAcOnlyHaarINTEL = 5728,
1629     SpvOpSubgroupAvcMceSetSourceInterlacedFieldPolarityINTEL = 5729,
1630     SpvOpSubgroupAvcMceSetSingleReferenceInterlacedFieldPolarityINTEL = 5730,
1631     SpvOpSubgroupAvcMceSetDualReferenceInterlacedFieldPolaritiesINTEL = 5731,
1632     SpvOpSubgroupAvcMceConvertToImePayloadINTEL = 5732,
1633     SpvOpSubgroupAvcMceConvertToImeResultINTEL = 5733,
1634     SpvOpSubgroupAvcMceConvertToRefPayloadINTEL = 5734,
1635     SpvOpSubgroupAvcMceConvertToRefResultINTEL = 5735,
1636     SpvOpSubgroupAvcMceConvertToSicPayloadINTEL = 5736,
1637     SpvOpSubgroupAvcMceConvertToSicResultINTEL = 5737,
1638     SpvOpSubgroupAvcMceGetMotionVectorsINTEL = 5738,
1639     SpvOpSubgroupAvcMceGetInterDistortionsINTEL = 5739,
1640     SpvOpSubgroupAvcMceGetBestInterDistortionsINTEL = 5740,
1641     SpvOpSubgroupAvcMceGetInterMajorShapeINTEL = 5741,
1642     SpvOpSubgroupAvcMceGetInterMinorShapeINTEL = 5742,
1643     SpvOpSubgroupAvcMceGetInterDirectionsINTEL = 5743,
1644     SpvOpSubgroupAvcMceGetInterMotionVectorCountINTEL = 5744,
1645     SpvOpSubgroupAvcMceGetInterReferenceIdsINTEL = 5745,
1646     SpvOpSubgroupAvcMceGetInterReferenceInterlacedFieldPolaritiesINTEL = 5746,
1647     SpvOpSubgroupAvcImeInitializeINTEL = 5747,
1648     SpvOpSubgroupAvcImeSetSingleReferenceINTEL = 5748,
1649     SpvOpSubgroupAvcImeSetDualReferenceINTEL = 5749,
1650     SpvOpSubgroupAvcImeRefWindowSizeINTEL = 5750,
1651     SpvOpSubgroupAvcImeAdjustRefOffsetINTEL = 5751,
1652     SpvOpSubgroupAvcImeConvertToMcePayloadINTEL = 5752,
1653     SpvOpSubgroupAvcImeSetMaxMotionVectorCountINTEL = 5753,
1654     SpvOpSubgroupAvcImeSetUnidirectionalMixDisableINTEL = 5754,
1655     SpvOpSubgroupAvcImeSetEarlySearchTerminationThresholdINTEL = 5755,
1656     SpvOpSubgroupAvcImeSetWeightedSadINTEL = 5756,
1657     SpvOpSubgroupAvcImeEvaluateWithSingleReferenceINTEL = 5757,
1658     SpvOpSubgroupAvcImeEvaluateWithDualReferenceINTEL = 5758,
1659     SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreaminINTEL = 5759,
1660     SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreaminINTEL = 5760,
1661     SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreamoutINTEL = 5761,
1662     SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreamoutINTEL = 5762,
1663     SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreaminoutINTEL = 5763,
1664     SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreaminoutINTEL = 5764,
1665     SpvOpSubgroupAvcImeConvertToMceResultINTEL = 5765,
1666     SpvOpSubgroupAvcImeGetSingleReferenceStreaminINTEL = 5766,
1667     SpvOpSubgroupAvcImeGetDualReferenceStreaminINTEL = 5767,
1668     SpvOpSubgroupAvcImeStripSingleReferenceStreamoutINTEL = 5768,
1669     SpvOpSubgroupAvcImeStripDualReferenceStreamoutINTEL = 5769,
1670     SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeMotionVectorsINTEL = 5770,
1671     SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeDistortionsINTEL = 5771,
1672     SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeReferenceIdsINTEL = 5772,
1673     SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeMotionVectorsINTEL = 5773,
1674     SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeDistortionsINTEL = 5774,
1675     SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeReferenceIdsINTEL = 5775,
1676     SpvOpSubgroupAvcImeGetBorderReachedINTEL = 5776,
1677     SpvOpSubgroupAvcImeGetTruncatedSearchIndicationINTEL = 5777,
1678     SpvOpSubgroupAvcImeGetUnidirectionalEarlySearchTerminationINTEL = 5778,
1679     SpvOpSubgroupAvcImeGetWeightingPatternMinimumMotionVectorINTEL = 5779,
1680     SpvOpSubgroupAvcImeGetWeightingPatternMinimumDistortionINTEL = 5780,
1681     SpvOpSubgroupAvcFmeInitializeINTEL = 5781,
1682     SpvOpSubgroupAvcBmeInitializeINTEL = 5782,
1683     SpvOpSubgroupAvcRefConvertToMcePayloadINTEL = 5783,
1684     SpvOpSubgroupAvcRefSetBidirectionalMixDisableINTEL = 5784,
1685     SpvOpSubgroupAvcRefSetBilinearFilterEnableINTEL = 5785,
1686     SpvOpSubgroupAvcRefEvaluateWithSingleReferenceINTEL = 5786,
1687     SpvOpSubgroupAvcRefEvaluateWithDualReferenceINTEL = 5787,
1688     SpvOpSubgroupAvcRefEvaluateWithMultiReferenceINTEL = 5788,
1689     SpvOpSubgroupAvcRefEvaluateWithMultiReferenceInterlacedINTEL = 5789,
1690     SpvOpSubgroupAvcRefConvertToMceResultINTEL = 5790,
1691     SpvOpSubgroupAvcSicInitializeINTEL = 5791,
1692     SpvOpSubgroupAvcSicConfigureSkcINTEL = 5792,
1693     SpvOpSubgroupAvcSicConfigureIpeLumaINTEL = 5793,
1694     SpvOpSubgroupAvcSicConfigureIpeLumaChromaINTEL = 5794,
1695     SpvOpSubgroupAvcSicGetMotionVectorMaskINTEL = 5795,
1696     SpvOpSubgroupAvcSicConvertToMcePayloadINTEL = 5796,
1697     SpvOpSubgroupAvcSicSetIntraLumaShapePenaltyINTEL = 5797,
1698     SpvOpSubgroupAvcSicSetIntraLumaModeCostFunctionINTEL = 5798,
1699     SpvOpSubgroupAvcSicSetIntraChromaModeCostFunctionINTEL = 5799,
1700     SpvOpSubgroupAvcSicSetBilinearFilterEnableINTEL = 5800,
1701     SpvOpSubgroupAvcSicSetSkcForwardTransformEnableINTEL = 5801,
1702     SpvOpSubgroupAvcSicSetBlockBasedRawSkipSadINTEL = 5802,
1703     SpvOpSubgroupAvcSicEvaluateIpeINTEL = 5803,
1704     SpvOpSubgroupAvcSicEvaluateWithSingleReferenceINTEL = 5804,
1705     SpvOpSubgroupAvcSicEvaluateWithDualReferenceINTEL = 5805,
1706     SpvOpSubgroupAvcSicEvaluateWithMultiReferenceINTEL = 5806,
1707     SpvOpSubgroupAvcSicEvaluateWithMultiReferenceInterlacedINTEL = 5807,
1708     SpvOpSubgroupAvcSicConvertToMceResultINTEL = 5808,
1709     SpvOpSubgroupAvcSicGetIpeLumaShapeINTEL = 5809,
1710     SpvOpSubgroupAvcSicGetBestIpeLumaDistortionINTEL = 5810,
1711     SpvOpSubgroupAvcSicGetBestIpeChromaDistortionINTEL = 5811,
1712     SpvOpSubgroupAvcSicGetPackedIpeLumaModesINTEL = 5812,
1713     SpvOpSubgroupAvcSicGetIpeChromaModeINTEL = 5813,
1714     SpvOpSubgroupAvcSicGetPackedSkcLumaCountThresholdINTEL = 5814,
1715     SpvOpSubgroupAvcSicGetPackedSkcLumaSumThresholdINTEL = 5815,
1716     SpvOpSubgroupAvcSicGetInterRawSadsINTEL = 5816,
1717     SpvOpVariableLengthArrayINTEL = 5818,
1718     SpvOpSaveMemoryINTEL = 5819,
1719     SpvOpRestoreMemoryINTEL = 5820,
1720     SpvOpArbitraryFloatSinCosPiINTEL = 5840,
1721     SpvOpArbitraryFloatCastINTEL = 5841,
1722     SpvOpArbitraryFloatCastFromIntINTEL = 5842,
1723     SpvOpArbitraryFloatCastToIntINTEL = 5843,
1724     SpvOpArbitraryFloatAddINTEL = 5846,
1725     SpvOpArbitraryFloatSubINTEL = 5847,
1726     SpvOpArbitraryFloatMulINTEL = 5848,
1727     SpvOpArbitraryFloatDivINTEL = 5849,
1728     SpvOpArbitraryFloatGTINTEL = 5850,
1729     SpvOpArbitraryFloatGEINTEL = 5851,
1730     SpvOpArbitraryFloatLTINTEL = 5852,
1731     SpvOpArbitraryFloatLEINTEL = 5853,
1732     SpvOpArbitraryFloatEQINTEL = 5854,
1733     SpvOpArbitraryFloatRecipINTEL = 5855,
1734     SpvOpArbitraryFloatRSqrtINTEL = 5856,
1735     SpvOpArbitraryFloatCbrtINTEL = 5857,
1736     SpvOpArbitraryFloatHypotINTEL = 5858,
1737     SpvOpArbitraryFloatSqrtINTEL = 5859,
1738     SpvOpArbitraryFloatLogINTEL = 5860,
1739     SpvOpArbitraryFloatLog2INTEL = 5861,
1740     SpvOpArbitraryFloatLog10INTEL = 5862,
1741     SpvOpArbitraryFloatLog1pINTEL = 5863,
1742     SpvOpArbitraryFloatExpINTEL = 5864,
1743     SpvOpArbitraryFloatExp2INTEL = 5865,
1744     SpvOpArbitraryFloatExp10INTEL = 5866,
1745     SpvOpArbitraryFloatExpm1INTEL = 5867,
1746     SpvOpArbitraryFloatSinINTEL = 5868,
1747     SpvOpArbitraryFloatCosINTEL = 5869,
1748     SpvOpArbitraryFloatSinCosINTEL = 5870,
1749     SpvOpArbitraryFloatSinPiINTEL = 5871,
1750     SpvOpArbitraryFloatCosPiINTEL = 5872,
1751     SpvOpArbitraryFloatASinINTEL = 5873,
1752     SpvOpArbitraryFloatASinPiINTEL = 5874,
1753     SpvOpArbitraryFloatACosINTEL = 5875,
1754     SpvOpArbitraryFloatACosPiINTEL = 5876,
1755     SpvOpArbitraryFloatATanINTEL = 5877,
1756     SpvOpArbitraryFloatATanPiINTEL = 5878,
1757     SpvOpArbitraryFloatATan2INTEL = 5879,
1758     SpvOpArbitraryFloatPowINTEL = 5880,
1759     SpvOpArbitraryFloatPowRINTEL = 5881,
1760     SpvOpArbitraryFloatPowNINTEL = 5882,
1761     SpvOpLoopControlINTEL = 5887,
1762     SpvOpFixedSqrtINTEL = 5923,
1763     SpvOpFixedRecipINTEL = 5924,
1764     SpvOpFixedRsqrtINTEL = 5925,
1765     SpvOpFixedSinINTEL = 5926,
1766     SpvOpFixedCosINTEL = 5927,
1767     SpvOpFixedSinCosINTEL = 5928,
1768     SpvOpFixedSinPiINTEL = 5929,
1769     SpvOpFixedCosPiINTEL = 5930,
1770     SpvOpFixedSinCosPiINTEL = 5931,
1771     SpvOpFixedLogINTEL = 5932,
1772     SpvOpFixedExpINTEL = 5933,
1773     SpvOpPtrCastToCrossWorkgroupINTEL = 5934,
1774     SpvOpCrossWorkgroupCastToPtrINTEL = 5938,
1775     SpvOpReadPipeBlockingINTEL = 5946,
1776     SpvOpWritePipeBlockingINTEL = 5947,
1777     SpvOpFPGARegINTEL = 5949,
1778     SpvOpRayQueryGetRayTMinKHR = 6016,
1779     SpvOpRayQueryGetRayFlagsKHR = 6017,
1780     SpvOpRayQueryGetIntersectionTKHR = 6018,
1781     SpvOpRayQueryGetIntersectionInstanceCustomIndexKHR = 6019,
1782     SpvOpRayQueryGetIntersectionInstanceIdKHR = 6020,
1783     SpvOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffsetKHR = 6021,
1784     SpvOpRayQueryGetIntersectionGeometryIndexKHR = 6022,
1785     SpvOpRayQueryGetIntersectionPrimitiveIndexKHR = 6023,
1786     SpvOpRayQueryGetIntersectionBarycentricsKHR = 6024,
1787     SpvOpRayQueryGetIntersectionFrontFaceKHR = 6025,
1788     SpvOpRayQueryGetIntersectionCandidateAABBOpaqueKHR = 6026,
1789     SpvOpRayQueryGetIntersectionObjectRayDirectionKHR = 6027,
1790     SpvOpRayQueryGetIntersectionObjectRayOriginKHR = 6028,
1791     SpvOpRayQueryGetWorldRayDirectionKHR = 6029,
1792     SpvOpRayQueryGetWorldRayOriginKHR = 6030,
1793     SpvOpRayQueryGetIntersectionObjectToWorldKHR = 6031,
1794     SpvOpRayQueryGetIntersectionWorldToObjectKHR = 6032,
1795     SpvOpAtomicFAddEXT = 6035,
1796     SpvOpTypeBufferSurfaceINTEL = 6086,
1797     SpvOpTypeStructContinuedINTEL = 6090,
1798     SpvOpConstantCompositeContinuedINTEL = 6091,
1799     SpvOpSpecConstantCompositeContinuedINTEL = 6092,
1800     SpvOpMax = 0x7fffffff,
1801 } SpvOp;
1802
1803 #ifdef SPV_ENABLE_UTILITY_CODE
1804 inline void SpvHasResultAndType(SpvOp opcode, bool *hasResult, bool *hasResultType) {
1805     *hasResult = *hasResultType = false;
1806     switch (opcode) {
1807     default: /* unknown opcode */ break;
1808     case SpvOpNop: *hasResult = false; *hasResultType = false; break;
1809     case SpvOpUndef: *hasResult = true; *hasResultType = true; break;
1810     case SpvOpSourceContinued: *hasResult = false; *hasResultType = false; break;
1811     case SpvOpSource: *hasResult = false; *hasResultType = false; break;
1812     case SpvOpSourceExtension: *hasResult = false; *hasResultType = false; break;
1813     case SpvOpName: *hasResult = false; *hasResultType = false; break;
1814     case SpvOpMemberName: *hasResult = false; *hasResultType = false; break;
1815     case SpvOpString: *hasResult = true; *hasResultType = false; break;
1816     case SpvOpLine: *hasResult = false; *hasResultType = false; break;
1817     case SpvOpExtension: *hasResult = false; *hasResultType = false; break;
1818     case SpvOpExtInstImport: *hasResult = true; *hasResultType = false; break;
1819     case SpvOpExtInst: *hasResult = true; *hasResultType = true; break;
1820     case SpvOpMemoryModel: *hasResult = false; *hasResultType = false; break;
1821     case SpvOpEntryPoint: *hasResult = false; *hasResultType = false; break;
1822     case SpvOpExecutionMode: *hasResult = false; *hasResultType = false; break;
1823     case SpvOpCapability: *hasResult = false; *hasResultType = false; break;
1824     case SpvOpTypeVoid: *hasResult = true; *hasResultType = false; break;
1825     case SpvOpTypeBool: *hasResult = true; *hasResultType = false; break;
1826     case SpvOpTypeInt: *hasResult = true; *hasResultType = false; break;
1827     case SpvOpTypeFloat: *hasResult = true; *hasResultType = false; break;
1828     case SpvOpTypeVector: *hasResult = true; *hasResultType = false; break;
1829     case SpvOpTypeMatrix: *hasResult = true; *hasResultType = false; break;
1830     case SpvOpTypeImage: *hasResult = true; *hasResultType = false; break;
1831     case SpvOpTypeSampler: *hasResult = true; *hasResultType = false; break;
1832     case SpvOpTypeSampledImage: *hasResult = true; *hasResultType = false; break;
1833     case SpvOpTypeArray: *hasResult = true; *hasResultType = false; break;
1834     case SpvOpTypeRuntimeArray: *hasResult = true; *hasResultType = false; break;
1835     case SpvOpTypeStruct: *hasResult = true; *hasResultType = false; break;
1836     case SpvOpTypeOpaque: *hasResult = true; *hasResultType = false; break;
1837     case SpvOpTypePointer: *hasResult = true; *hasResultType = false; break;
1838     case SpvOpTypeFunction: *hasResult = true; *hasResultType = false; break;
1839     case SpvOpTypeEvent: *hasResult = true; *hasResultType = false; break;
1840     case SpvOpTypeDeviceEvent: *hasResult = true; *hasResultType = false; break;
1841     case SpvOpTypeReserveId: *hasResult = true; *hasResultType = false; break;
1842     case SpvOpTypeQueue: *hasResult = true; *hasResultType = false; break;
1843     case SpvOpTypePipe: *hasResult = true; *hasResultType = false; break;
1844     case SpvOpTypeForwardPointer: *hasResult = false; *hasResultType = false; break;
1845     case SpvOpConstantTrue: *hasResult = true; *hasResultType = true; break;
1846     case SpvOpConstantFalse: *hasResult = true; *hasResultType = true; break;
1847     case SpvOpConstant: *hasResult = true; *hasResultType = true; break;
1848     case SpvOpConstantComposite: *hasResult = true; *hasResultType = true; break;
1849     case SpvOpConstantSampler: *hasResult = true; *hasResultType = true; break;
1850     case SpvOpConstantNull: *hasResult = true; *hasResultType = true; break;
1851     case SpvOpSpecConstantTrue: *hasResult = true; *hasResultType = true; break;
1852     case SpvOpSpecConstantFalse: *hasResult = true; *hasResultType = true; break;
1853     case SpvOpSpecConstant: *hasResult = true; *hasResultType = true; break;
1854     case SpvOpSpecConstantComposite: *hasResult = true; *hasResultType = true; break;
1855     case SpvOpSpecConstantOp: *hasResult = true; *hasResultType = true; break;
1856     case SpvOpFunction: *hasResult = true; *hasResultType = true; break;
1857     case SpvOpFunctionParameter: *hasResult = true; *hasResultType = true; break;
1858     case SpvOpFunctionEnd: *hasResult = false; *hasResultType = false; break;
1859     case SpvOpFunctionCall: *hasResult = true; *hasResultType = true; break;
1860     case SpvOpVariable: *hasResult = true; *hasResultType = true; break;
1861     case SpvOpImageTexelPointer: *hasResult = true; *hasResultType = true; break;
1862     case SpvOpLoad: *hasResult = true; *hasResultType = true; break;
1863     case SpvOpStore: *hasResult = false; *hasResultType = false; break;
1864     case SpvOpCopyMemory: *hasResult = false; *hasResultType = false; break;
1865     case SpvOpCopyMemorySized: *hasResult = false; *hasResultType = false; break;
1866     case SpvOpAccessChain: *hasResult = true; *hasResultType = true; break;
1867     case SpvOpInBoundsAccessChain: *hasResult = true; *hasResultType = true; break;
1868     case SpvOpPtrAccessChain: *hasResult = true; *hasResultType = true; break;
1869     case SpvOpArrayLength: *hasResult = true; *hasResultType = true; break;
1870     case SpvOpGenericPtrMemSemantics: *hasResult = true; *hasResultType = true; break;
1871     case SpvOpInBoundsPtrAccessChain: *hasResult = true; *hasResultType = true; break;
1872     case SpvOpDecorate: *hasResult = false; *hasResultType = false; break;
1873     case SpvOpMemberDecorate: *hasResult = false; *hasResultType = false; break;
1874     case SpvOpDecorationGroup: *hasResult = true; *hasResultType = false; break;
1875     case SpvOpGroupDecorate: *hasResult = false; *hasResultType = false; break;
1876     case SpvOpGroupMemberDecorate: *hasResult = false; *hasResultType = false; break;
1877     case SpvOpVectorExtractDynamic: *hasResult = true; *hasResultType = true; break;
1878     case SpvOpVectorInsertDynamic: *hasResult = true; *hasResultType = true; break;
1879     case SpvOpVectorShuffle: *hasResult = true; *hasResultType = true; break;
1880     case SpvOpCompositeConstruct: *hasResult = true; *hasResultType = true; break;
1881     case SpvOpCompositeExtract: *hasResult = true; *hasResultType = true; break;
1882     case SpvOpCompositeInsert: *hasResult = true; *hasResultType = true; break;
1883     case SpvOpCopyObject: *hasResult = true; *hasResultType = true; break;
1884     case SpvOpTranspose: *hasResult = true; *hasResultType = true; break;
1885     case SpvOpSampledImage: *hasResult = true; *hasResultType = true; break;
1886     case SpvOpImageSampleImplicitLod: *hasResult = true; *hasResultType = true; break;
1887     case SpvOpImageSampleExplicitLod: *hasResult = true; *hasResultType = true; break;
1888     case SpvOpImageSampleDrefImplicitLod: *hasResult = true; *hasResultType = true; break;
1889     case SpvOpImageSampleDrefExplicitLod: *hasResult = true; *hasResultType = true; break;
1890     case SpvOpImageSampleProjImplicitLod: *hasResult = true; *hasResultType = true; break;
1891     case SpvOpImageSampleProjExplicitLod: *hasResult = true; *hasResultType = true; break;
1892     case SpvOpImageSampleProjDrefImplicitLod: *hasResult = true; *hasResultType = true; break;
1893     case SpvOpImageSampleProjDrefExplicitLod: *hasResult = true; *hasResultType = true; break;
1894     case SpvOpImageFetch: *hasResult = true; *hasResultType = true; break;
1895     case SpvOpImageGather: *hasResult = true; *hasResultType = true; break;
1896     case SpvOpImageDrefGather: *hasResult = true; *hasResultType = true; break;
1897     case SpvOpImageRead: *hasResult = true; *hasResultType = true; break;
1898     case SpvOpImageWrite: *hasResult = false; *hasResultType = false; break;
1899     case SpvOpImage: *hasResult = true; *hasResultType = true; break;
1900     case SpvOpImageQueryFormat: *hasResult = true; *hasResultType = true; break;
1901     case SpvOpImageQueryOrder: *hasResult = true; *hasResultType = true; break;
1902     case SpvOpImageQuerySizeLod: *hasResult = true; *hasResultType = true; break;
1903     case SpvOpImageQuerySize: *hasResult = true; *hasResultType = true; break;
1904     case SpvOpImageQueryLod: *hasResult = true; *hasResultType = true; break;
1905     case SpvOpImageQueryLevels: *hasResult = true; *hasResultType = true; break;
1906     case SpvOpImageQuerySamples: *hasResult = true; *hasResultType = true; break;
1907     case SpvOpConvertFToU: *hasResult = true; *hasResultType = true; break;
1908     case SpvOpConvertFToS: *hasResult = true; *hasResultType = true; break;
1909     case SpvOpConvertSToF: *hasResult = true; *hasResultType = true; break;
1910     case SpvOpConvertUToF: *hasResult = true; *hasResultType = true; break;
1911     case SpvOpUConvert: *hasResult = true; *hasResultType = true; break;
1912     case SpvOpSConvert: *hasResult = true; *hasResultType = true; break;
1913     case SpvOpFConvert: *hasResult = true; *hasResultType = true; break;
1914     case SpvOpQuantizeToF16: *hasResult = true; *hasResultType = true; break;
1915     case SpvOpConvertPtrToU: *hasResult = true; *hasResultType = true; break;
1916     case SpvOpSatConvertSToU: *hasResult = true; *hasResultType = true; break;
1917     case SpvOpSatConvertUToS: *hasResult = true; *hasResultType = true; break;
1918     case SpvOpConvertUToPtr: *hasResult = true; *hasResultType = true; break;
1919     case SpvOpPtrCastToGeneric: *hasResult = true; *hasResultType = true; break;
1920     case SpvOpGenericCastToPtr: *hasResult = true; *hasResultType = true; break;
1921     case SpvOpGenericCastToPtrExplicit: *hasResult = true; *hasResultType = true; break;
1922     case SpvOpBitcast: *hasResult = true; *hasResultType = true; break;
1923     case SpvOpSNegate: *hasResult = true; *hasResultType = true; break;
1924     case SpvOpFNegate: *hasResult = true; *hasResultType = true; break;
1925     case SpvOpIAdd: *hasResult = true; *hasResultType = true; break;
1926     case SpvOpFAdd: *hasResult = true; *hasResultType = true; break;
1927     case SpvOpISub: *hasResult = true; *hasResultType = true; break;
1928     case SpvOpFSub: *hasResult = true; *hasResultType = true; break;
1929     case SpvOpIMul: *hasResult = true; *hasResultType = true; break;
1930     case SpvOpFMul: *hasResult = true; *hasResultType = true; break;
1931     case SpvOpUDiv: *hasResult = true; *hasResultType = true; break;
1932     case SpvOpSDiv: *hasResult = true; *hasResultType = true; break;
1933     case SpvOpFDiv: *hasResult = true; *hasResultType = true; break;
1934     case SpvOpUMod: *hasResult = true; *hasResultType = true; break;
1935     case SpvOpSRem: *hasResult = true; *hasResultType = true; break;
1936     case SpvOpSMod: *hasResult = true; *hasResultType = true; break;
1937     case SpvOpFRem: *hasResult = true; *hasResultType = true; break;
1938     case SpvOpFMod: *hasResult = true; *hasResultType = true; break;
1939     case SpvOpVectorTimesScalar: *hasResult = true; *hasResultType = true; break;
1940     case SpvOpMatrixTimesScalar: *hasResult = true; *hasResultType = true; break;
1941     case SpvOpVectorTimesMatrix: *hasResult = true; *hasResultType = true; break;
1942     case SpvOpMatrixTimesVector: *hasResult = true; *hasResultType = true; break;
1943     case SpvOpMatrixTimesMatrix: *hasResult = true; *hasResultType = true; break;
1944     case SpvOpOuterProduct: *hasResult = true; *hasResultType = true; break;
1945     case SpvOpDot: *hasResult = true; *hasResultType = true; break;
1946     case SpvOpIAddCarry: *hasResult = true; *hasResultType = true; break;
1947     case SpvOpISubBorrow: *hasResult = true; *hasResultType = true; break;
1948     case SpvOpUMulExtended: *hasResult = true; *hasResultType = true; break;
1949     case SpvOpSMulExtended: *hasResult = true; *hasResultType = true; break;
1950     case SpvOpAny: *hasResult = true; *hasResultType = true; break;
1951     case SpvOpAll: *hasResult = true; *hasResultType = true; break;
1952     case SpvOpIsNan: *hasResult = true; *hasResultType = true; break;
1953     case SpvOpIsInf: *hasResult = true; *hasResultType = true; break;
1954     case SpvOpIsFinite: *hasResult = true; *hasResultType = true; break;
1955     case SpvOpIsNormal: *hasResult = true; *hasResultType = true; break;
1956     case SpvOpSignBitSet: *hasResult = true; *hasResultType = true; break;
1957     case SpvOpLessOrGreater: *hasResult = true; *hasResultType = true; break;
1958     case SpvOpOrdered: *hasResult = true; *hasResultType = true; break;
1959     case SpvOpUnordered: *hasResult = true; *hasResultType = true; break;
1960     case SpvOpLogicalEqual: *hasResult = true; *hasResultType = true; break;
1961     case SpvOpLogicalNotEqual: *hasResult = true; *hasResultType = true; break;
1962     case SpvOpLogicalOr: *hasResult = true; *hasResultType = true; break;
1963     case SpvOpLogicalAnd: *hasResult = true; *hasResultType = true; break;
1964     case SpvOpLogicalNot: *hasResult = true; *hasResultType = true; break;
1965     case SpvOpSelect: *hasResult = true; *hasResultType = true; break;
1966     case SpvOpIEqual: *hasResult = true; *hasResultType = true; break;
1967     case SpvOpINotEqual: *hasResult = true; *hasResultType = true; break;
1968     case SpvOpUGreaterThan: *hasResult = true; *hasResultType = true; break;
1969     case SpvOpSGreaterThan: *hasResult = true; *hasResultType = true; break;
1970     case SpvOpUGreaterThanEqual: *hasResult = true; *hasResultType = true; break;
1971     case SpvOpSGreaterThanEqual: *hasResult = true; *hasResultType = true; break;
1972     case SpvOpULessThan: *hasResult = true; *hasResultType = true; break;
1973     case SpvOpSLessThan: *hasResult = true; *hasResultType = true; break;
1974     case SpvOpULessThanEqual: *hasResult = true; *hasResultType = true; break;
1975     case SpvOpSLessThanEqual: *hasResult = true; *hasResultType = true; break;
1976     case SpvOpFOrdEqual: *hasResult = true; *hasResultType = true; break;
1977     case SpvOpFUnordEqual: *hasResult = true; *hasResultType = true; break;
1978     case SpvOpFOrdNotEqual: *hasResult = true; *hasResultType = true; break;
1979     case SpvOpFUnordNotEqual: *hasResult = true; *hasResultType = true; break;
1980     case SpvOpFOrdLessThan: *hasResult = true; *hasResultType = true; break;
1981     case SpvOpFUnordLessThan: *hasResult = true; *hasResultType = true; break;
1982     case SpvOpFOrdGreaterThan: *hasResult = true; *hasResultType = true; break;
1983     case SpvOpFUnordGreaterThan: *hasResult = true; *hasResultType = true; break;
1984     case SpvOpFOrdLessThanEqual: *hasResult = true; *hasResultType = true; break;
1985     case SpvOpFUnordLessThanEqual: *hasResult = true; *hasResultType = true; break;
1986     case SpvOpFOrdGreaterThanEqual: *hasResult = true; *hasResultType = true; break;
1987     case SpvOpFUnordGreaterThanEqual: *hasResult = true; *hasResultType = true; break;
1988     case SpvOpShiftRightLogical: *hasResult = true; *hasResultType = true; break;
1989     case SpvOpShiftRightArithmetic: *hasResult = true; *hasResultType = true; break;
1990     case SpvOpShiftLeftLogical: *hasResult = true; *hasResultType = true; break;
1991     case SpvOpBitwiseOr: *hasResult = true; *hasResultType = true; break;
1992     case SpvOpBitwiseXor: *hasResult = true; *hasResultType = true; break;
1993     case SpvOpBitwiseAnd: *hasResult = true; *hasResultType = true; break;
1994     case SpvOpNot: *hasResult = true; *hasResultType = true; break;
1995     case SpvOpBitFieldInsert: *hasResult = true; *hasResultType = true; break;
1996     case SpvOpBitFieldSExtract: *hasResult = true; *hasResultType = true; break;
1997     case SpvOpBitFieldUExtract: *hasResult = true; *hasResultType = true; break;
1998     case SpvOpBitReverse: *hasResult = true; *hasResultType = true; break;
1999     case SpvOpBitCount: *hasResult = true; *hasResultType = true; break;
2000     case SpvOpDPdx: *hasResult = true; *hasResultType = true; break;
2001     case SpvOpDPdy: *hasResult = true; *hasResultType = true; break;
2002     case SpvOpFwidth: *hasResult = true; *hasResultType = true; break;
2003     case SpvOpDPdxFine: *hasResult = true; *hasResultType = true; break;
2004     case SpvOpDPdyFine: *hasResult = true; *hasResultType = true; break;
2005     case SpvOpFwidthFine: *hasResult = true; *hasResultType = true; break;
2006     case SpvOpDPdxCoarse: *hasResult = true; *hasResultType = true; break;
2007     case SpvOpDPdyCoarse: *hasResult = true; *hasResultType = true; break;
2008     case SpvOpFwidthCoarse: *hasResult = true; *hasResultType = true; break;
2009     case SpvOpEmitVertex: *hasResult = false; *hasResultType = false; break;
2010     case SpvOpEndPrimitive: *hasResult = false; *hasResultType = false; break;
2011     case SpvOpEmitStreamVertex: *hasResult = false; *hasResultType = false; break;
2012     case SpvOpEndStreamPrimitive: *hasResult = false; *hasResultType = false; break;
2013     case SpvOpControlBarrier: *hasResult = false; *hasResultType = false; break;
2014     case SpvOpMemoryBarrier: *hasResult = false; *hasResultType = false; break;
2015     case SpvOpAtomicLoad: *hasResult = true; *hasResultType = true; break;
2016     case SpvOpAtomicStore: *hasResult = false; *hasResultType = false; break;
2017     case SpvOpAtomicExchange: *hasResult = true; *hasResultType = true; break;
2018     case SpvOpAtomicCompareExchange: *hasResult = true; *hasResultType = true; break;
2019     case SpvOpAtomicCompareExchangeWeak: *hasResult = true; *hasResultType = true; break;
2020     case SpvOpAtomicIIncrement: *hasResult = true; *hasResultType = true; break;
2021     case SpvOpAtomicIDecrement: *hasResult = true; *hasResultType = true; break;
2022     case SpvOpAtomicIAdd: *hasResult = true; *hasResultType = true; break;
2023     case SpvOpAtomicISub: *hasResult = true; *hasResultType = true; break;
2024     case SpvOpAtomicSMin: *hasResult = true; *hasResultType = true; break;
2025     case SpvOpAtomicUMin: *hasResult = true; *hasResultType = true; break;
2026     case SpvOpAtomicSMax: *hasResult = true; *hasResultType = true; break;
2027     case SpvOpAtomicUMax: *hasResult = true; *hasResultType = true; break;
2028     case SpvOpAtomicAnd: *hasResult = true; *hasResultType = true; break;
2029     case SpvOpAtomicOr: *hasResult = true; *hasResultType = true; break;
2030     case SpvOpAtomicXor: *hasResult = true; *hasResultType = true; break;
2031     case SpvOpPhi: *hasResult = true; *hasResultType = true; break;
2032     case SpvOpLoopMerge: *hasResult = false; *hasResultType = false; break;
2033     case SpvOpSelectionMerge: *hasResult = false; *hasResultType = false; break;
2034     case SpvOpLabel: *hasResult = true; *hasResultType = false; break;
2035     case SpvOpBranch: *hasResult = false; *hasResultType = false; break;
2036     case SpvOpBranchConditional: *hasResult = false; *hasResultType = false; break;
2037     case SpvOpSwitch: *hasResult = false; *hasResultType = false; break;
2038     case SpvOpKill: *hasResult = false; *hasResultType = false; break;
2039     case SpvOpReturn: *hasResult = false; *hasResultType = false; break;
2040     case SpvOpReturnValue: *hasResult = false; *hasResultType = false; break;
2041     case SpvOpUnreachable: *hasResult = false; *hasResultType = false; break;
2042     case SpvOpLifetimeStart: *hasResult = false; *hasResultType = false; break;
2043     case SpvOpLifetimeStop: *hasResult = false; *hasResultType = false; break;
2044     case SpvOpGroupAsyncCopy: *hasResult = true; *hasResultType = true; break;
2045     case SpvOpGroupWaitEvents: *hasResult = false; *hasResultType = false; break;
2046     case SpvOpGroupAll: *hasResult = true; *hasResultType = true; break;
2047     case SpvOpGroupAny: *hasResult = true; *hasResultType = true; break;
2048     case SpvOpGroupBroadcast: *hasResult = true; *hasResultType = true; break;
2049     case SpvOpGroupIAdd: *hasResult = true; *hasResultType = true; break;
2050     case SpvOpGroupFAdd: *hasResult = true; *hasResultType = true; break;
2051     case SpvOpGroupFMin: *hasResult = true; *hasResultType = true; break;
2052     case SpvOpGroupUMin: *hasResult = true; *hasResultType = true; break;
2053     case SpvOpGroupSMin: *hasResult = true; *hasResultType = true; break;
2054     case SpvOpGroupFMax: *hasResult = true; *hasResultType = true; break;
2055     case SpvOpGroupUMax: *hasResult = true; *hasResultType = true; break;
2056     case SpvOpGroupSMax: *hasResult = true; *hasResultType = true; break;
2057     case SpvOpReadPipe: *hasResult = true; *hasResultType = true; break;
2058     case SpvOpWritePipe: *hasResult = true; *hasResultType = true; break;
2059     case SpvOpReservedReadPipe: *hasResult = true; *hasResultType = true; break;
2060     case SpvOpReservedWritePipe: *hasResult = true; *hasResultType = true; break;
2061     case SpvOpReserveReadPipePackets: *hasResult = true; *hasResultType = true; break;
2062     case SpvOpReserveWritePipePackets: *hasResult = true; *hasResultType = true; break;
2063     case SpvOpCommitReadPipe: *hasResult = false; *hasResultType = false; break;
2064     case SpvOpCommitWritePipe: *hasResult = false; *hasResultType = false; break;
2065     case SpvOpIsValidReserveId: *hasResult = true; *hasResultType = true; break;
2066     case SpvOpGetNumPipePackets: *hasResult = true; *hasResultType = true; break;
2067     case SpvOpGetMaxPipePackets: *hasResult = true; *hasResultType = true; break;
2068     case SpvOpGroupReserveReadPipePackets: *hasResult = true; *hasResultType = true; break;
2069     case SpvOpGroupReserveWritePipePackets: *hasResult = true; *hasResultType = true; break;
2070     case SpvOpGroupCommitReadPipe: *hasResult = false; *hasResultType = false; break;
2071     case SpvOpGroupCommitWritePipe: *hasResult = false; *hasResultType = false; break;
2072     case SpvOpEnqueueMarker: *hasResult = true; *hasResultType = true; break;
2073     case SpvOpEnqueueKernel: *hasResult = true; *hasResultType = true; break;
2074     case SpvOpGetKernelNDrangeSubGroupCount: *hasResult = true; *hasResultType = true; break;
2075     case SpvOpGetKernelNDrangeMaxSubGroupSize: *hasResult = true; *hasResultType = true; break;
2076     case SpvOpGetKernelWorkGroupSize: *hasResult = true; *hasResultType = true; break;
2077     case SpvOpGetKernelPreferredWorkGroupSizeMultiple: *hasResult = true; *hasResultType = true; break;
2078     case SpvOpRetainEvent: *hasResult = false; *hasResultType = false; break;
2079     case SpvOpReleaseEvent: *hasResult = false; *hasResultType = false; break;
2080     case SpvOpCreateUserEvent: *hasResult = true; *hasResultType = true; break;
2081     case SpvOpIsValidEvent: *hasResult = true; *hasResultType = true; break;
2082     case SpvOpSetUserEventStatus: *hasResult = false; *hasResultType = false; break;
2083     case SpvOpCaptureEventProfilingInfo: *hasResult = false; *hasResultType = false; break;
2084     case SpvOpGetDefaultQueue: *hasResult = true; *hasResultType = true; break;
2085     case SpvOpBuildNDRange: *hasResult = true; *hasResultType = true; break;
2086     case SpvOpImageSparseSampleImplicitLod: *hasResult = true; *hasResultType = true; break;
2087     case SpvOpImageSparseSampleExplicitLod: *hasResult = true; *hasResultType = true; break;
2088     case SpvOpImageSparseSampleDrefImplicitLod: *hasResult = true; *hasResultType = true; break;
2089     case SpvOpImageSparseSampleDrefExplicitLod: *hasResult = true; *hasResultType = true; break;
2090     case SpvOpImageSparseSampleProjImplicitLod: *hasResult = true; *hasResultType = true; break;
2091     case SpvOpImageSparseSampleProjExplicitLod: *hasResult = true; *hasResultType = true; break;
2092     case SpvOpImageSparseSampleProjDrefImplicitLod: *hasResult = true; *hasResultType = true; break;
2093     case SpvOpImageSparseSampleProjDrefExplicitLod: *hasResult = true; *hasResultType = true; break;
2094     case SpvOpImageSparseFetch: *hasResult = true; *hasResultType = true; break;
2095     case SpvOpImageSparseGather: *hasResult = true; *hasResultType = true; break;
2096     case SpvOpImageSparseDrefGather: *hasResult = true; *hasResultType = true; break;
2097     case SpvOpImageSparseTexelsResident: *hasResult = true; *hasResultType = true; break;
2098     case SpvOpNoLine: *hasResult = false; *hasResultType = false; break;
2099     case SpvOpAtomicFlagTestAndSet: *hasResult = true; *hasResultType = true; break;
2100     case SpvOpAtomicFlagClear: *hasResult = false; *hasResultType = false; break;
2101     case SpvOpImageSparseRead: *hasResult = true; *hasResultType = true; break;
2102     case SpvOpSizeOf: *hasResult = true; *hasResultType = true; break;
2103     case SpvOpTypePipeStorage: *hasResult = true; *hasResultType = false; break;
2104     case SpvOpConstantPipeStorage: *hasResult = true; *hasResultType = true; break;
2105     case SpvOpCreatePipeFromPipeStorage: *hasResult = true; *hasResultType = true; break;
2106     case SpvOpGetKernelLocalSizeForSubgroupCount: *hasResult = true; *hasResultType = true; break;
2107     case SpvOpGetKernelMaxNumSubgroups: *hasResult = true; *hasResultType = true; break;
2108     case SpvOpTypeNamedBarrier: *hasResult = true; *hasResultType = false; break;
2109     case SpvOpNamedBarrierInitialize: *hasResult = true; *hasResultType = true; break;
2110     case SpvOpMemoryNamedBarrier: *hasResult = false; *hasResultType = false; break;
2111     case SpvOpModuleProcessed: *hasResult = false; *hasResultType = false; break;
2112     case SpvOpExecutionModeId: *hasResult = false; *hasResultType = false; break;
2113     case SpvOpDecorateId: *hasResult = false; *hasResultType = false; break;
2114     case SpvOpGroupNonUniformElect: *hasResult = true; *hasResultType = true; break;
2115     case SpvOpGroupNonUniformAll: *hasResult = true; *hasResultType = true; break;
2116     case SpvOpGroupNonUniformAny: *hasResult = true; *hasResultType = true; break;
2117     case SpvOpGroupNonUniformAllEqual: *hasResult = true; *hasResultType = true; break;
2118     case SpvOpGroupNonUniformBroadcast: *hasResult = true; *hasResultType = true; break;
2119     case SpvOpGroupNonUniformBroadcastFirst: *hasResult = true; *hasResultType = true; break;
2120     case SpvOpGroupNonUniformBallot: *hasResult = true; *hasResultType = true; break;
2121     case SpvOpGroupNonUniformInverseBallot: *hasResult = true; *hasResultType = true; break;
2122     case SpvOpGroupNonUniformBallotBitExtract: *hasResult = true; *hasResultType = true; break;
2123     case SpvOpGroupNonUniformBallotBitCount: *hasResult = true; *hasResultType = true; break;
2124     case SpvOpGroupNonUniformBallotFindLSB: *hasResult = true; *hasResultType = true; break;
2125     case SpvOpGroupNonUniformBallotFindMSB: *hasResult = true; *hasResultType = true; break;
2126     case SpvOpGroupNonUniformShuffle: *hasResult = true; *hasResultType = true; break;
2127     case SpvOpGroupNonUniformShuffleXor: *hasResult = true; *hasResultType = true; break;
2128     case SpvOpGroupNonUniformShuffleUp: *hasResult = true; *hasResultType = true; break;
2129     case SpvOpGroupNonUniformShuffleDown: *hasResult = true; *hasResultType = true; break;
2130     case SpvOpGroupNonUniformIAdd: *hasResult = true; *hasResultType = true; break;
2131     case SpvOpGroupNonUniformFAdd: *hasResult = true; *hasResultType = true; break;
2132     case SpvOpGroupNonUniformIMul: *hasResult = true; *hasResultType = true; break;
2133     case SpvOpGroupNonUniformFMul: *hasResult = true; *hasResultType = true; break;
2134     case SpvOpGroupNonUniformSMin: *hasResult = true; *hasResultType = true; break;
2135     case SpvOpGroupNonUniformUMin: *hasResult = true; *hasResultType = true; break;
2136     case SpvOpGroupNonUniformFMin: *hasResult = true; *hasResultType = true; break;
2137     case SpvOpGroupNonUniformSMax: *hasResult = true; *hasResultType = true; break;
2138     case SpvOpGroupNonUniformUMax: *hasResult = true; *hasResultType = true; break;
2139     case SpvOpGroupNonUniformFMax: *hasResult = true; *hasResultType = true; break;
2140     case SpvOpGroupNonUniformBitwiseAnd: *hasResult = true; *hasResultType = true; break;
2141     case SpvOpGroupNonUniformBitwiseOr: *hasResult = true; *hasResultType = true; break;
2142     case SpvOpGroupNonUniformBitwiseXor: *hasResult = true; *hasResultType = true; break;
2143     case SpvOpGroupNonUniformLogicalAnd: *hasResult = true; *hasResultType = true; break;
2144     case SpvOpGroupNonUniformLogicalOr: *hasResult = true; *hasResultType = true; break;
2145     case SpvOpGroupNonUniformLogicalXor: *hasResult = true; *hasResultType = true; break;
2146     case SpvOpGroupNonUniformQuadBroadcast: *hasResult = true; *hasResultType = true; break;
2147     case SpvOpGroupNonUniformQuadSwap: *hasResult = true; *hasResultType = true; break;
2148     case SpvOpCopyLogical: *hasResult = true; *hasResultType = true; break;
2149     case SpvOpPtrEqual: *hasResult = true; *hasResultType = true; break;
2150     case SpvOpPtrNotEqual: *hasResult = true; *hasResultType = true; break;
2151     case SpvOpPtrDiff: *hasResult = true; *hasResultType = true; break;
2152     case SpvOpTerminateInvocation: *hasResult = false; *hasResultType = false; break;
2153     case SpvOpSubgroupBallotKHR: *hasResult = true; *hasResultType = true; break;
2154     case SpvOpSubgroupFirstInvocationKHR: *hasResult = true; *hasResultType = true; break;
2155     case SpvOpSubgroupAllKHR: *hasResult = true; *hasResultType = true; break;
2156     case SpvOpSubgroupAnyKHR: *hasResult = true; *hasResultType = true; break;
2157     case SpvOpSubgroupAllEqualKHR: *hasResult = true; *hasResultType = true; break;
2158     case SpvOpSubgroupReadInvocationKHR: *hasResult = true; *hasResultType = true; break;
2159     case SpvOpTraceRayKHR: *hasResult = false; *hasResultType = false; break;
2160     case SpvOpExecuteCallableKHR: *hasResult = false; *hasResultType = false; break;
2161     case SpvOpConvertUToAccelerationStructureKHR: *hasResult = true; *hasResultType = true; break;
2162     case SpvOpIgnoreIntersectionKHR: *hasResult = false; *hasResultType = false; break;
2163     case SpvOpTerminateRayKHR: *hasResult = false; *hasResultType = false; break;
2164     case SpvOpSDotKHR: *hasResult = true; *hasResultType = true; break;
2165     case SpvOpUDotKHR: *hasResult = true; *hasResultType = true; break;
2166     case SpvOpSUDotKHR: *hasResult = true; *hasResultType = true; break;
2167     case SpvOpSDotAccSatKHR: *hasResult = true; *hasResultType = true; break;
2168     case SpvOpUDotAccSatKHR: *hasResult = true; *hasResultType = true; break;
2169     case SpvOpSUDotAccSatKHR: *hasResult = true; *hasResultType = true; break;
2170     case SpvOpTypeRayQueryKHR: *hasResult = true; *hasResultType = false; break;
2171     case SpvOpRayQueryInitializeKHR: *hasResult = false; *hasResultType = false; break;
2172     case SpvOpRayQueryTerminateKHR: *hasResult = false; *hasResultType = false; break;
2173     case SpvOpRayQueryGenerateIntersectionKHR: *hasResult = false; *hasResultType = false; break;
2174     case SpvOpRayQueryConfirmIntersectionKHR: *hasResult = false; *hasResultType = false; break;
2175     case SpvOpRayQueryProceedKHR: *hasResult = true; *hasResultType = true; break;
2176     case SpvOpRayQueryGetIntersectionTypeKHR: *hasResult = true; *hasResultType = true; break;
2177     case SpvOpGroupIAddNonUniformAMD: *hasResult = true; *hasResultType = true; break;
2178     case SpvOpGroupFAddNonUniformAMD: *hasResult = true; *hasResultType = true; break;
2179     case SpvOpGroupFMinNonUniformAMD: *hasResult = true; *hasResultType = true; break;
2180     case SpvOpGroupUMinNonUniformAMD: *hasResult = true; *hasResultType = true; break;
2181     case SpvOpGroupSMinNonUniformAMD: *hasResult = true; *hasResultType = true; break;
2182     case SpvOpGroupFMaxNonUniformAMD: *hasResult = true; *hasResultType = true; break;
2183     case SpvOpGroupUMaxNonUniformAMD: *hasResult = true; *hasResultType = true; break;
2184     case SpvOpGroupSMaxNonUniformAMD: *hasResult = true; *hasResultType = true; break;
2185     case SpvOpFragmentMaskFetchAMD: *hasResult = true; *hasResultType = true; break;
2186     case SpvOpFragmentFetchAMD: *hasResult = true; *hasResultType = true; break;
2187     case SpvOpReadClockKHR: *hasResult = true; *hasResultType = true; break;
2188     case SpvOpImageSampleFootprintNV: *hasResult = true; *hasResultType = true; break;
2189     case SpvOpGroupNonUniformPartitionNV: *hasResult = true; *hasResultType = true; break;
2190     case SpvOpWritePackedPrimitiveIndices4x8NV: *hasResult = false; *hasResultType = false; break;
2191     case SpvOpReportIntersectionNV: *hasResult = true; *hasResultType = true; break;
2192     case SpvOpIgnoreIntersectionNV: *hasResult = false; *hasResultType = false; break;
2193     case SpvOpTerminateRayNV: *hasResult = false; *hasResultType = false; break;
2194     case SpvOpTraceNV: *hasResult = false; *hasResultType = false; break;
2195     case SpvOpTypeAccelerationStructureNV: *hasResult = true; *hasResultType = false; break;
2196     case SpvOpExecuteCallableNV: *hasResult = false; *hasResultType = false; break;
2197     case SpvOpTypeCooperativeMatrixNV: *hasResult = true; *hasResultType = false; break;
2198     case SpvOpCooperativeMatrixLoadNV: *hasResult = true; *hasResultType = true; break;
2199     case SpvOpCooperativeMatrixStoreNV: *hasResult = false; *hasResultType = false; break;
2200     case SpvOpCooperativeMatrixMulAddNV: *hasResult = true; *hasResultType = true; break;
2201     case SpvOpCooperativeMatrixLengthNV: *hasResult = true; *hasResultType = true; break;
2202     case SpvOpBeginInvocationInterlockEXT: *hasResult = false; *hasResultType = false; break;
2203     case SpvOpEndInvocationInterlockEXT: *hasResult = false; *hasResultType = false; break;
2204     case SpvOpDemoteToHelperInvocationEXT: *hasResult = false; *hasResultType = false; break;
2205     case SpvOpIsHelperInvocationEXT: *hasResult = true; *hasResultType = true; break;
2206     case SpvOpSubgroupShuffleINTEL: *hasResult = true; *hasResultType = true; break;
2207     case SpvOpSubgroupShuffleDownINTEL: *hasResult = true; *hasResultType = true; break;
2208     case SpvOpSubgroupShuffleUpINTEL: *hasResult = true; *hasResultType = true; break;
2209     case SpvOpSubgroupShuffleXorINTEL: *hasResult = true; *hasResultType = true; break;
2210     case SpvOpSubgroupBlockReadINTEL: *hasResult = true; *hasResultType = true; break;
2211     case SpvOpSubgroupBlockWriteINTEL: *hasResult = false; *hasResultType = false; break;
2212     case SpvOpSubgroupImageBlockReadINTEL: *hasResult = true; *hasResultType = true; break;
2213     case SpvOpSubgroupImageBlockWriteINTEL: *hasResult = false; *hasResultType = false; break;
2214     case SpvOpSubgroupImageMediaBlockReadINTEL: *hasResult = true; *hasResultType = true; break;
2215     case SpvOpSubgroupImageMediaBlockWriteINTEL: *hasResult = false; *hasResultType = false; break;
2216     case SpvOpUCountLeadingZerosINTEL: *hasResult = true; *hasResultType = true; break;
2217     case SpvOpUCountTrailingZerosINTEL: *hasResult = true; *hasResultType = true; break;
2218     case SpvOpAbsISubINTEL: *hasResult = true; *hasResultType = true; break;
2219     case SpvOpAbsUSubINTEL: *hasResult = true; *hasResultType = true; break;
2220     case SpvOpIAddSatINTEL: *hasResult = true; *hasResultType = true; break;
2221     case SpvOpUAddSatINTEL: *hasResult = true; *hasResultType = true; break;
2222     case SpvOpIAverageINTEL: *hasResult = true; *hasResultType = true; break;
2223     case SpvOpUAverageINTEL: *hasResult = true; *hasResultType = true; break;
2224     case SpvOpIAverageRoundedINTEL: *hasResult = true; *hasResultType = true; break;
2225     case SpvOpUAverageRoundedINTEL: *hasResult = true; *hasResultType = true; break;
2226     case SpvOpISubSatINTEL: *hasResult = true; *hasResultType = true; break;
2227     case SpvOpUSubSatINTEL: *hasResult = true; *hasResultType = true; break;
2228     case SpvOpIMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
2229     case SpvOpUMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
2230     case SpvOpConstFunctionPointerINTEL: *hasResult = true; *hasResultType = true; break;
2231     case SpvOpFunctionPointerCallINTEL: *hasResult = true; *hasResultType = true; break;
2232     case SpvOpAsmTargetINTEL: *hasResult = true; *hasResultType = true; break;
2233     case SpvOpAsmINTEL: *hasResult = true; *hasResultType = true; break;
2234     case SpvOpAsmCallINTEL: *hasResult = true; *hasResultType = true; break;
2235     case SpvOpAtomicFMinEXT: *hasResult = true; *hasResultType = true; break;
2236     case SpvOpAtomicFMaxEXT: *hasResult = true; *hasResultType = true; break;
2237     case SpvOpAssumeTrueKHR: *hasResult = false; *hasResultType = false; break;
2238     case SpvOpExpectKHR: *hasResult = true; *hasResultType = true; break;
2239     case SpvOpDecorateString: *hasResult = false; *hasResultType = false; break;
2240     case SpvOpMemberDecorateString: *hasResult = false; *hasResultType = false; break;
2241     case SpvOpVmeImageINTEL: *hasResult = true; *hasResultType = true; break;
2242     case SpvOpTypeVmeImageINTEL: *hasResult = true; *hasResultType = false; break;
2243     case SpvOpTypeAvcImePayloadINTEL: *hasResult = true; *hasResultType = false; break;
2244     case SpvOpTypeAvcRefPayloadINTEL: *hasResult = true; *hasResultType = false; break;
2245     case SpvOpTypeAvcSicPayloadINTEL: *hasResult = true; *hasResultType = false; break;
2246     case SpvOpTypeAvcMcePayloadINTEL: *hasResult = true; *hasResultType = false; break;
2247     case SpvOpTypeAvcMceResultINTEL: *hasResult = true; *hasResultType = false; break;
2248     case SpvOpTypeAvcImeResultINTEL: *hasResult = true; *hasResultType = false; break;
2249     case SpvOpTypeAvcImeResultSingleReferenceStreamoutINTEL: *hasResult = true; *hasResultType = false; break;
2250     case SpvOpTypeAvcImeResultDualReferenceStreamoutINTEL: *hasResult = true; *hasResultType = false; break;
2251     case SpvOpTypeAvcImeSingleReferenceStreaminINTEL: *hasResult = true; *hasResultType = false; break;
2252     case SpvOpTypeAvcImeDualReferenceStreaminINTEL: *hasResult = true; *hasResultType = false; break;
2253     case SpvOpTypeAvcRefResultINTEL: *hasResult = true; *hasResultType = false; break;
2254     case SpvOpTypeAvcSicResultINTEL: *hasResult = true; *hasResultType = false; break;
2255     case SpvOpSubgroupAvcMceGetDefaultInterBaseMultiReferencePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2256     case SpvOpSubgroupAvcMceSetInterBaseMultiReferencePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2257     case SpvOpSubgroupAvcMceGetDefaultInterShapePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2258     case SpvOpSubgroupAvcMceSetInterShapePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2259     case SpvOpSubgroupAvcMceGetDefaultInterDirectionPenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2260     case SpvOpSubgroupAvcMceSetInterDirectionPenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2261     case SpvOpSubgroupAvcMceGetDefaultIntraLumaShapePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2262     case SpvOpSubgroupAvcMceGetDefaultInterMotionVectorCostTableINTEL: *hasResult = true; *hasResultType = true; break;
2263     case SpvOpSubgroupAvcMceGetDefaultHighPenaltyCostTableINTEL: *hasResult = true; *hasResultType = true; break;
2264     case SpvOpSubgroupAvcMceGetDefaultMediumPenaltyCostTableINTEL: *hasResult = true; *hasResultType = true; break;
2265     case SpvOpSubgroupAvcMceGetDefaultLowPenaltyCostTableINTEL: *hasResult = true; *hasResultType = true; break;
2266     case SpvOpSubgroupAvcMceSetMotionVectorCostFunctionINTEL: *hasResult = true; *hasResultType = true; break;
2267     case SpvOpSubgroupAvcMceGetDefaultIntraLumaModePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2268     case SpvOpSubgroupAvcMceGetDefaultNonDcLumaIntraPenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2269     case SpvOpSubgroupAvcMceGetDefaultIntraChromaModeBasePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2270     case SpvOpSubgroupAvcMceSetAcOnlyHaarINTEL: *hasResult = true; *hasResultType = true; break;
2271     case SpvOpSubgroupAvcMceSetSourceInterlacedFieldPolarityINTEL: *hasResult = true; *hasResultType = true; break;
2272     case SpvOpSubgroupAvcMceSetSingleReferenceInterlacedFieldPolarityINTEL: *hasResult = true; *hasResultType = true; break;
2273     case SpvOpSubgroupAvcMceSetDualReferenceInterlacedFieldPolaritiesINTEL: *hasResult = true; *hasResultType = true; break;
2274     case SpvOpSubgroupAvcMceConvertToImePayloadINTEL: *hasResult = true; *hasResultType = true; break;
2275     case SpvOpSubgroupAvcMceConvertToImeResultINTEL: *hasResult = true; *hasResultType = true; break;
2276     case SpvOpSubgroupAvcMceConvertToRefPayloadINTEL: *hasResult = true; *hasResultType = true; break;
2277     case SpvOpSubgroupAvcMceConvertToRefResultINTEL: *hasResult = true; *hasResultType = true; break;
2278     case SpvOpSubgroupAvcMceConvertToSicPayloadINTEL: *hasResult = true; *hasResultType = true; break;
2279     case SpvOpSubgroupAvcMceConvertToSicResultINTEL: *hasResult = true; *hasResultType = true; break;
2280     case SpvOpSubgroupAvcMceGetMotionVectorsINTEL: *hasResult = true; *hasResultType = true; break;
2281     case SpvOpSubgroupAvcMceGetInterDistortionsINTEL: *hasResult = true; *hasResultType = true; break;
2282     case SpvOpSubgroupAvcMceGetBestInterDistortionsINTEL: *hasResult = true; *hasResultType = true; break;
2283     case SpvOpSubgroupAvcMceGetInterMajorShapeINTEL: *hasResult = true; *hasResultType = true; break;
2284     case SpvOpSubgroupAvcMceGetInterMinorShapeINTEL: *hasResult = true; *hasResultType = true; break;
2285     case SpvOpSubgroupAvcMceGetInterDirectionsINTEL: *hasResult = true; *hasResultType = true; break;
2286     case SpvOpSubgroupAvcMceGetInterMotionVectorCountINTEL: *hasResult = true; *hasResultType = true; break;
2287     case SpvOpSubgroupAvcMceGetInterReferenceIdsINTEL: *hasResult = true; *hasResultType = true; break;
2288     case SpvOpSubgroupAvcMceGetInterReferenceInterlacedFieldPolaritiesINTEL: *hasResult = true; *hasResultType = true; break;
2289     case SpvOpSubgroupAvcImeInitializeINTEL: *hasResult = true; *hasResultType = true; break;
2290     case SpvOpSubgroupAvcImeSetSingleReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2291     case SpvOpSubgroupAvcImeSetDualReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2292     case SpvOpSubgroupAvcImeRefWindowSizeINTEL: *hasResult = true; *hasResultType = true; break;
2293     case SpvOpSubgroupAvcImeAdjustRefOffsetINTEL: *hasResult = true; *hasResultType = true; break;
2294     case SpvOpSubgroupAvcImeConvertToMcePayloadINTEL: *hasResult = true; *hasResultType = true; break;
2295     case SpvOpSubgroupAvcImeSetMaxMotionVectorCountINTEL: *hasResult = true; *hasResultType = true; break;
2296     case SpvOpSubgroupAvcImeSetUnidirectionalMixDisableINTEL: *hasResult = true; *hasResultType = true; break;
2297     case SpvOpSubgroupAvcImeSetEarlySearchTerminationThresholdINTEL: *hasResult = true; *hasResultType = true; break;
2298     case SpvOpSubgroupAvcImeSetWeightedSadINTEL: *hasResult = true; *hasResultType = true; break;
2299     case SpvOpSubgroupAvcImeEvaluateWithSingleReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2300     case SpvOpSubgroupAvcImeEvaluateWithDualReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2301     case SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreaminINTEL: *hasResult = true; *hasResultType = true; break;
2302     case SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreaminINTEL: *hasResult = true; *hasResultType = true; break;
2303     case SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreamoutINTEL: *hasResult = true; *hasResultType = true; break;
2304     case SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreamoutINTEL: *hasResult = true; *hasResultType = true; break;
2305     case SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreaminoutINTEL: *hasResult = true; *hasResultType = true; break;
2306     case SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreaminoutINTEL: *hasResult = true; *hasResultType = true; break;
2307     case SpvOpSubgroupAvcImeConvertToMceResultINTEL: *hasResult = true; *hasResultType = true; break;
2308     case SpvOpSubgroupAvcImeGetSingleReferenceStreaminINTEL: *hasResult = true; *hasResultType = true; break;
2309     case SpvOpSubgroupAvcImeGetDualReferenceStreaminINTEL: *hasResult = true; *hasResultType = true; break;
2310     case SpvOpSubgroupAvcImeStripSingleReferenceStreamoutINTEL: *hasResult = true; *hasResultType = true; break;
2311     case SpvOpSubgroupAvcImeStripDualReferenceStreamoutINTEL: *hasResult = true; *hasResultType = true; break;
2312     case SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeMotionVectorsINTEL: *hasResult = true; *hasResultType = true; break;
2313     case SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeDistortionsINTEL: *hasResult = true; *hasResultType = true; break;
2314     case SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeReferenceIdsINTEL: *hasResult = true; *hasResultType = true; break;
2315     case SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeMotionVectorsINTEL: *hasResult = true; *hasResultType = true; break;
2316     case SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeDistortionsINTEL: *hasResult = true; *hasResultType = true; break;
2317     case SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeReferenceIdsINTEL: *hasResult = true; *hasResultType = true; break;
2318     case SpvOpSubgroupAvcImeGetBorderReachedINTEL: *hasResult = true; *hasResultType = true; break;
2319     case SpvOpSubgroupAvcImeGetTruncatedSearchIndicationINTEL: *hasResult = true; *hasResultType = true; break;
2320     case SpvOpSubgroupAvcImeGetUnidirectionalEarlySearchTerminationINTEL: *hasResult = true; *hasResultType = true; break;
2321     case SpvOpSubgroupAvcImeGetWeightingPatternMinimumMotionVectorINTEL: *hasResult = true; *hasResultType = true; break;
2322     case SpvOpSubgroupAvcImeGetWeightingPatternMinimumDistortionINTEL: *hasResult = true; *hasResultType = true; break;
2323     case SpvOpSubgroupAvcFmeInitializeINTEL: *hasResult = true; *hasResultType = true; break;
2324     case SpvOpSubgroupAvcBmeInitializeINTEL: *hasResult = true; *hasResultType = true; break;
2325     case SpvOpSubgroupAvcRefConvertToMcePayloadINTEL: *hasResult = true; *hasResultType = true; break;
2326     case SpvOpSubgroupAvcRefSetBidirectionalMixDisableINTEL: *hasResult = true; *hasResultType = true; break;
2327     case SpvOpSubgroupAvcRefSetBilinearFilterEnableINTEL: *hasResult = true; *hasResultType = true; break;
2328     case SpvOpSubgroupAvcRefEvaluateWithSingleReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2329     case SpvOpSubgroupAvcRefEvaluateWithDualReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2330     case SpvOpSubgroupAvcRefEvaluateWithMultiReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2331     case SpvOpSubgroupAvcRefEvaluateWithMultiReferenceInterlacedINTEL: *hasResult = true; *hasResultType = true; break;
2332     case SpvOpSubgroupAvcRefConvertToMceResultINTEL: *hasResult = true; *hasResultType = true; break;
2333     case SpvOpSubgroupAvcSicInitializeINTEL: *hasResult = true; *hasResultType = true; break;
2334     case SpvOpSubgroupAvcSicConfigureSkcINTEL: *hasResult = true; *hasResultType = true; break;
2335     case SpvOpSubgroupAvcSicConfigureIpeLumaINTEL: *hasResult = true; *hasResultType = true; break;
2336     case SpvOpSubgroupAvcSicConfigureIpeLumaChromaINTEL: *hasResult = true; *hasResultType = true; break;
2337     case SpvOpSubgroupAvcSicGetMotionVectorMaskINTEL: *hasResult = true; *hasResultType = true; break;
2338     case SpvOpSubgroupAvcSicConvertToMcePayloadINTEL: *hasResult = true; *hasResultType = true; break;
2339     case SpvOpSubgroupAvcSicSetIntraLumaShapePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
2340     case SpvOpSubgroupAvcSicSetIntraLumaModeCostFunctionINTEL: *hasResult = true; *hasResultType = true; break;
2341     case SpvOpSubgroupAvcSicSetIntraChromaModeCostFunctionINTEL: *hasResult = true; *hasResultType = true; break;
2342     case SpvOpSubgroupAvcSicSetBilinearFilterEnableINTEL: *hasResult = true; *hasResultType = true; break;
2343     case SpvOpSubgroupAvcSicSetSkcForwardTransformEnableINTEL: *hasResult = true; *hasResultType = true; break;
2344     case SpvOpSubgroupAvcSicSetBlockBasedRawSkipSadINTEL: *hasResult = true; *hasResultType = true; break;
2345     case SpvOpSubgroupAvcSicEvaluateIpeINTEL: *hasResult = true; *hasResultType = true; break;
2346     case SpvOpSubgroupAvcSicEvaluateWithSingleReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2347     case SpvOpSubgroupAvcSicEvaluateWithDualReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2348     case SpvOpSubgroupAvcSicEvaluateWithMultiReferenceINTEL: *hasResult = true; *hasResultType = true; break;
2349     case SpvOpSubgroupAvcSicEvaluateWithMultiReferenceInterlacedINTEL: *hasResult = true; *hasResultType = true; break;
2350     case SpvOpSubgroupAvcSicConvertToMceResultINTEL: *hasResult = true; *hasResultType = true; break;
2351     case SpvOpSubgroupAvcSicGetIpeLumaShapeINTEL: *hasResult = true; *hasResultType = true; break;
2352     case SpvOpSubgroupAvcSicGetBestIpeLumaDistortionINTEL: *hasResult = true; *hasResultType = true; break;
2353     case SpvOpSubgroupAvcSicGetBestIpeChromaDistortionINTEL: *hasResult = true; *hasResultType = true; break;
2354     case SpvOpSubgroupAvcSicGetPackedIpeLumaModesINTEL: *hasResult = true; *hasResultType = true; break;
2355     case SpvOpSubgroupAvcSicGetIpeChromaModeINTEL: *hasResult = true; *hasResultType = true; break;
2356     case SpvOpSubgroupAvcSicGetPackedSkcLumaCountThresholdINTEL: *hasResult = true; *hasResultType = true; break;
2357     case SpvOpSubgroupAvcSicGetPackedSkcLumaSumThresholdINTEL: *hasResult = true; *hasResultType = true; break;
2358     case SpvOpSubgroupAvcSicGetInterRawSadsINTEL: *hasResult = true; *hasResultType = true; break;
2359     case SpvOpVariableLengthArrayINTEL: *hasResult = true; *hasResultType = true; break;
2360     case SpvOpSaveMemoryINTEL: *hasResult = true; *hasResultType = true; break;
2361     case SpvOpRestoreMemoryINTEL: *hasResult = false; *hasResultType = false; break;
2362     case SpvOpArbitraryFloatSinCosPiINTEL: *hasResult = true; *hasResultType = true; break;
2363     case SpvOpArbitraryFloatCastINTEL: *hasResult = true; *hasResultType = true; break;
2364     case SpvOpArbitraryFloatCastFromIntINTEL: *hasResult = true; *hasResultType = true; break;
2365     case SpvOpArbitraryFloatCastToIntINTEL: *hasResult = true; *hasResultType = true; break;
2366     case SpvOpArbitraryFloatAddINTEL: *hasResult = true; *hasResultType = true; break;
2367     case SpvOpArbitraryFloatSubINTEL: *hasResult = true; *hasResultType = true; break;
2368     case SpvOpArbitraryFloatMulINTEL: *hasResult = true; *hasResultType = true; break;
2369     case SpvOpArbitraryFloatDivINTEL: *hasResult = true; *hasResultType = true; break;
2370     case SpvOpArbitraryFloatGTINTEL: *hasResult = true; *hasResultType = true; break;
2371     case SpvOpArbitraryFloatGEINTEL: *hasResult = true; *hasResultType = true; break;
2372     case SpvOpArbitraryFloatLTINTEL: *hasResult = true; *hasResultType = true; break;
2373     case SpvOpArbitraryFloatLEINTEL: *hasResult = true; *hasResultType = true; break;
2374     case SpvOpArbitraryFloatEQINTEL: *hasResult = true; *hasResultType = true; break;
2375     case SpvOpArbitraryFloatRecipINTEL: *hasResult = true; *hasResultType = true; break;
2376     case SpvOpArbitraryFloatRSqrtINTEL: *hasResult = true; *hasResultType = true; break;
2377     case SpvOpArbitraryFloatCbrtINTEL: *hasResult = true; *hasResultType = true; break;
2378     case SpvOpArbitraryFloatHypotINTEL: *hasResult = true; *hasResultType = true; break;
2379     case SpvOpArbitraryFloatSqrtINTEL: *hasResult = true; *hasResultType = true; break;
2380     case SpvOpArbitraryFloatLogINTEL: *hasResult = true; *hasResultType = true; break;
2381     case SpvOpArbitraryFloatLog2INTEL: *hasResult = true; *hasResultType = true; break;
2382     case SpvOpArbitraryFloatLog10INTEL: *hasResult = true; *hasResultType = true; break;
2383     case SpvOpArbitraryFloatLog1pINTEL: *hasResult = true; *hasResultType = true; break;
2384     case SpvOpArbitraryFloatExpINTEL: *hasResult = true; *hasResultType = true; break;
2385     case SpvOpArbitraryFloatExp2INTEL: *hasResult = true; *hasResultType = true; break;
2386     case SpvOpArbitraryFloatExp10INTEL: *hasResult = true; *hasResultType = true; break;
2387     case SpvOpArbitraryFloatExpm1INTEL: *hasResult = true; *hasResultType = true; break;
2388     case SpvOpArbitraryFloatSinINTEL: *hasResult = true; *hasResultType = true; break;
2389     case SpvOpArbitraryFloatCosINTEL: *hasResult = true; *hasResultType = true; break;
2390     case SpvOpArbitraryFloatSinCosINTEL: *hasResult = true; *hasResultType = true; break;
2391     case SpvOpArbitraryFloatSinPiINTEL: *hasResult = true; *hasResultType = true; break;
2392     case SpvOpArbitraryFloatCosPiINTEL: *hasResult = true; *hasResultType = true; break;
2393     case SpvOpArbitraryFloatASinINTEL: *hasResult = true; *hasResultType = true; break;
2394     case SpvOpArbitraryFloatASinPiINTEL: *hasResult = true; *hasResultType = true; break;
2395     case SpvOpArbitraryFloatACosINTEL: *hasResult = true; *hasResultType = true; break;
2396     case SpvOpArbitraryFloatACosPiINTEL: *hasResult = true; *hasResultType = true; break;
2397     case SpvOpArbitraryFloatATanINTEL: *hasResult = true; *hasResultType = true; break;
2398     case SpvOpArbitraryFloatATanPiINTEL: *hasResult = true; *hasResultType = true; break;
2399     case SpvOpArbitraryFloatATan2INTEL: *hasResult = true; *hasResultType = true; break;
2400     case SpvOpArbitraryFloatPowINTEL: *hasResult = true; *hasResultType = true; break;
2401     case SpvOpArbitraryFloatPowRINTEL: *hasResult = true; *hasResultType = true; break;
2402     case SpvOpArbitraryFloatPowNINTEL: *hasResult = true; *hasResultType = true; break;
2403     case SpvOpLoopControlINTEL: *hasResult = false; *hasResultType = false; break;
2404     case SpvOpFixedSqrtINTEL: *hasResult = true; *hasResultType = true; break;
2405     case SpvOpFixedRecipINTEL: *hasResult = true; *hasResultType = true; break;
2406     case SpvOpFixedRsqrtINTEL: *hasResult = true; *hasResultType = true; break;
2407     case SpvOpFixedSinINTEL: *hasResult = true; *hasResultType = true; break;
2408     case SpvOpFixedCosINTEL: *hasResult = true; *hasResultType = true; break;
2409     case SpvOpFixedSinCosINTEL: *hasResult = true; *hasResultType = true; break;
2410     case SpvOpFixedSinPiINTEL: *hasResult = true; *hasResultType = true; break;
2411     case SpvOpFixedCosPiINTEL: *hasResult = true; *hasResultType = true; break;
2412     case SpvOpFixedSinCosPiINTEL: *hasResult = true; *hasResultType = true; break;
2413     case SpvOpFixedLogINTEL: *hasResult = true; *hasResultType = true; break;
2414     case SpvOpFixedExpINTEL: *hasResult = true; *hasResultType = true; break;
2415     case SpvOpPtrCastToCrossWorkgroupINTEL: *hasResult = true; *hasResultType = true; break;
2416     case SpvOpCrossWorkgroupCastToPtrINTEL: *hasResult = true; *hasResultType = true; break;
2417     case SpvOpReadPipeBlockingINTEL: *hasResult = true; *hasResultType = true; break;
2418     case SpvOpWritePipeBlockingINTEL: *hasResult = true; *hasResultType = true; break;
2419     case SpvOpFPGARegINTEL: *hasResult = true; *hasResultType = true; break;
2420     case SpvOpRayQueryGetRayTMinKHR: *hasResult = true; *hasResultType = true; break;
2421     case SpvOpRayQueryGetRayFlagsKHR: *hasResult = true; *hasResultType = true; break;
2422     case SpvOpRayQueryGetIntersectionTKHR: *hasResult = true; *hasResultType = true; break;
2423     case SpvOpRayQueryGetIntersectionInstanceCustomIndexKHR: *hasResult = true; *hasResultType = true; break;
2424     case SpvOpRayQueryGetIntersectionInstanceIdKHR: *hasResult = true; *hasResultType = true; break;
2425     case SpvOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffsetKHR: *hasResult = true; *hasResultType = true; break;
2426     case SpvOpRayQueryGetIntersectionGeometryIndexKHR: *hasResult = true; *hasResultType = true; break;
2427     case SpvOpRayQueryGetIntersectionPrimitiveIndexKHR: *hasResult = true; *hasResultType = true; break;
2428     case SpvOpRayQueryGetIntersectionBarycentricsKHR: *hasResult = true; *hasResultType = true; break;
2429     case SpvOpRayQueryGetIntersectionFrontFaceKHR: *hasResult = true; *hasResultType = true; break;
2430     case SpvOpRayQueryGetIntersectionCandidateAABBOpaqueKHR: *hasResult = true; *hasResultType = true; break;
2431     case SpvOpRayQueryGetIntersectionObjectRayDirectionKHR: *hasResult = true; *hasResultType = true; break;
2432     case SpvOpRayQueryGetIntersectionObjectRayOriginKHR: *hasResult = true; *hasResultType = true; break;
2433     case SpvOpRayQueryGetWorldRayDirectionKHR: *hasResult = true; *hasResultType = true; break;
2434     case SpvOpRayQueryGetWorldRayOriginKHR: *hasResult = true; *hasResultType = true; break;
2435     case SpvOpRayQueryGetIntersectionObjectToWorldKHR: *hasResult = true; *hasResultType = true; break;
2436     case SpvOpRayQueryGetIntersectionWorldToObjectKHR: *hasResult = true; *hasResultType = true; break;
2437     case SpvOpAtomicFAddEXT: *hasResult = true; *hasResultType = true; break;
2438     case SpvOpTypeBufferSurfaceINTEL: *hasResult = true; *hasResultType = false; break;
2439     case SpvOpTypeStructContinuedINTEL: *hasResult = false; *hasResultType = false; break;
2440     case SpvOpConstantCompositeContinuedINTEL: *hasResult = false; *hasResultType = false; break;
2441     case SpvOpSpecConstantCompositeContinuedINTEL: *hasResult = false; *hasResultType = false; break;
2442     }
2443 }
2444 #endif /* SPV_ENABLE_UTILITY_CODE */
2445
2446 #endif
2447