Generate headers from last grammar change.
[platform/upstream/SPIRV-Headers.git] / include / spirv / unified1 / spirv.lua
1 -- Copyright (c) 2014-2018 The Khronos Group Inc.
2 -- 
3 -- Permission is hereby granted, free of charge, to any person obtaining a copy
4 -- of this software and/or associated documentation files (the "Materials"),
5 -- to deal in the Materials without restriction, including without limitation
6 -- the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 -- and/or sell copies of the Materials, and to permit persons to whom the
8 -- Materials are furnished to do so, subject to the following conditions:
9 -- 
10 -- The above copyright notice and this permission notice shall be included in
11 -- all copies or substantial portions of the Materials.
12 -- 
13 -- MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS
14 -- STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND
15 -- HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ 
16 -- 
17 -- THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 -- THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 -- FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS
23 -- IN THE MATERIALS.
24
25 -- This header is automatically generated by the same tool that creates
26 -- the Binary Section of the SPIR-V specification.
27
28 -- Enumeration tokens for SPIR-V, in various styles:
29 --   C, C++, C++11, JSON, Lua, Python
30 -- 
31 -- - C will have tokens with a "Spv" prefix, e.g.: SpvSourceLanguageGLSL
32 -- - C++ will have tokens in the "spv" name space, e.g.: spv::SourceLanguageGLSL
33 -- - C++11 will use enum classes in the spv namespace, e.g.: spv::SourceLanguage::GLSL
34 -- - Lua will use tables, e.g.: spv.SourceLanguage.GLSL
35 -- - Python will use dictionaries, e.g.: spv['SourceLanguage']['GLSL']
36 -- 
37 -- Some tokens act like mask values, which can be OR'd together,
38 -- while others are mutually exclusive.  The mask-like ones have
39 -- "Mask" in their name, and a parallel enum that has the shift
40 -- amount (1 << x) for each corresponding enumerant.
41
42 spv = {
43     MagicNumber = 0x07230203,
44     Version = 0x00010200,
45     Revision = 3,
46     OpCodeMask = 0xffff,
47     WordCountShift = 16,
48
49     SourceLanguage = {
50         Unknown = 0,
51         ESSL = 1,
52         GLSL = 2,
53         OpenCL_C = 3,
54         OpenCL_CPP = 4,
55         HLSL = 5,
56     },
57
58     ExecutionModel = {
59         Vertex = 0,
60         TessellationControl = 1,
61         TessellationEvaluation = 2,
62         Geometry = 3,
63         Fragment = 4,
64         GLCompute = 5,
65         Kernel = 6,
66     },
67
68     AddressingModel = {
69         Logical = 0,
70         Physical32 = 1,
71         Physical64 = 2,
72     },
73
74     MemoryModel = {
75         Simple = 0,
76         GLSL450 = 1,
77         OpenCL = 2,
78     },
79
80     ExecutionMode = {
81         Invocations = 0,
82         SpacingEqual = 1,
83         SpacingFractionalEven = 2,
84         SpacingFractionalOdd = 3,
85         VertexOrderCw = 4,
86         VertexOrderCcw = 5,
87         PixelCenterInteger = 6,
88         OriginUpperLeft = 7,
89         OriginLowerLeft = 8,
90         EarlyFragmentTests = 9,
91         PointMode = 10,
92         Xfb = 11,
93         DepthReplacing = 12,
94         DepthGreater = 14,
95         DepthLess = 15,
96         DepthUnchanged = 16,
97         LocalSize = 17,
98         LocalSizeHint = 18,
99         InputPoints = 19,
100         InputLines = 20,
101         InputLinesAdjacency = 21,
102         Triangles = 22,
103         InputTrianglesAdjacency = 23,
104         Quads = 24,
105         Isolines = 25,
106         OutputVertices = 26,
107         OutputPoints = 27,
108         OutputLineStrip = 28,
109         OutputTriangleStrip = 29,
110         VecTypeHint = 30,
111         ContractionOff = 31,
112         Initializer = 33,
113         Finalizer = 34,
114         SubgroupSize = 35,
115         SubgroupsPerWorkgroup = 36,
116         SubgroupsPerWorkgroupId = 37,
117         LocalSizeId = 38,
118         LocalSizeHintId = 39,
119         PostDepthCoverage = 4446,
120         StencilRefReplacingEXT = 5027,
121     },
122
123     StorageClass = {
124         UniformConstant = 0,
125         Input = 1,
126         Uniform = 2,
127         Output = 3,
128         Workgroup = 4,
129         CrossWorkgroup = 5,
130         Private = 6,
131         Function = 7,
132         Generic = 8,
133         PushConstant = 9,
134         AtomicCounter = 10,
135         Image = 11,
136         StorageBuffer = 12,
137     },
138
139     Dim = {
140         Dim1D = 0,
141         Dim2D = 1,
142         Dim3D = 2,
143         Cube = 3,
144         Rect = 4,
145         Buffer = 5,
146         SubpassData = 6,
147     },
148
149     SamplerAddressingMode = {
150         None = 0,
151         ClampToEdge = 1,
152         Clamp = 2,
153         Repeat = 3,
154         RepeatMirrored = 4,
155     },
156
157     SamplerFilterMode = {
158         Nearest = 0,
159         Linear = 1,
160     },
161
162     ImageFormat = {
163         Unknown = 0,
164         Rgba32f = 1,
165         Rgba16f = 2,
166         R32f = 3,
167         Rgba8 = 4,
168         Rgba8Snorm = 5,
169         Rg32f = 6,
170         Rg16f = 7,
171         R11fG11fB10f = 8,
172         R16f = 9,
173         Rgba16 = 10,
174         Rgb10A2 = 11,
175         Rg16 = 12,
176         Rg8 = 13,
177         R16 = 14,
178         R8 = 15,
179         Rgba16Snorm = 16,
180         Rg16Snorm = 17,
181         Rg8Snorm = 18,
182         R16Snorm = 19,
183         R8Snorm = 20,
184         Rgba32i = 21,
185         Rgba16i = 22,
186         Rgba8i = 23,
187         R32i = 24,
188         Rg32i = 25,
189         Rg16i = 26,
190         Rg8i = 27,
191         R16i = 28,
192         R8i = 29,
193         Rgba32ui = 30,
194         Rgba16ui = 31,
195         Rgba8ui = 32,
196         R32ui = 33,
197         Rgb10a2ui = 34,
198         Rg32ui = 35,
199         Rg16ui = 36,
200         Rg8ui = 37,
201         R16ui = 38,
202         R8ui = 39,
203     },
204
205     ImageChannelOrder = {
206         R = 0,
207         A = 1,
208         RG = 2,
209         RA = 3,
210         RGB = 4,
211         RGBA = 5,
212         BGRA = 6,
213         ARGB = 7,
214         Intensity = 8,
215         Luminance = 9,
216         Rx = 10,
217         RGx = 11,
218         RGBx = 12,
219         Depth = 13,
220         DepthStencil = 14,
221         sRGB = 15,
222         sRGBx = 16,
223         sRGBA = 17,
224         sBGRA = 18,
225         ABGR = 19,
226     },
227
228     ImageChannelDataType = {
229         SnormInt8 = 0,
230         SnormInt16 = 1,
231         UnormInt8 = 2,
232         UnormInt16 = 3,
233         UnormShort565 = 4,
234         UnormShort555 = 5,
235         UnormInt101010 = 6,
236         SignedInt8 = 7,
237         SignedInt16 = 8,
238         SignedInt32 = 9,
239         UnsignedInt8 = 10,
240         UnsignedInt16 = 11,
241         UnsignedInt32 = 12,
242         HalfFloat = 13,
243         Float = 14,
244         UnormInt24 = 15,
245         UnormInt101010_2 = 16,
246     },
247
248     ImageOperandsShift = {
249         Bias = 0,
250         Lod = 1,
251         Grad = 2,
252         ConstOffset = 3,
253         Offset = 4,
254         ConstOffsets = 5,
255         Sample = 6,
256         MinLod = 7,
257     },
258
259     ImageOperandsMask = {
260         MaskNone = 0,
261         Bias = 0x00000001,
262         Lod = 0x00000002,
263         Grad = 0x00000004,
264         ConstOffset = 0x00000008,
265         Offset = 0x00000010,
266         ConstOffsets = 0x00000020,
267         Sample = 0x00000040,
268         MinLod = 0x00000080,
269     },
270
271     FPFastMathModeShift = {
272         NotNaN = 0,
273         NotInf = 1,
274         NSZ = 2,
275         AllowRecip = 3,
276         Fast = 4,
277     },
278
279     FPFastMathModeMask = {
280         MaskNone = 0,
281         NotNaN = 0x00000001,
282         NotInf = 0x00000002,
283         NSZ = 0x00000004,
284         AllowRecip = 0x00000008,
285         Fast = 0x00000010,
286     },
287
288     FPRoundingMode = {
289         RTE = 0,
290         RTZ = 1,
291         RTP = 2,
292         RTN = 3,
293     },
294
295     LinkageType = {
296         Export = 0,
297         Import = 1,
298     },
299
300     AccessQualifier = {
301         ReadOnly = 0,
302         WriteOnly = 1,
303         ReadWrite = 2,
304     },
305
306     FunctionParameterAttribute = {
307         Zext = 0,
308         Sext = 1,
309         ByVal = 2,
310         Sret = 3,
311         NoAlias = 4,
312         NoCapture = 5,
313         NoWrite = 6,
314         NoReadWrite = 7,
315     },
316
317     Decoration = {
318         RelaxedPrecision = 0,
319         SpecId = 1,
320         Block = 2,
321         BufferBlock = 3,
322         RowMajor = 4,
323         ColMajor = 5,
324         ArrayStride = 6,
325         MatrixStride = 7,
326         GLSLShared = 8,
327         GLSLPacked = 9,
328         CPacked = 10,
329         BuiltIn = 11,
330         NoPerspective = 13,
331         Flat = 14,
332         Patch = 15,
333         Centroid = 16,
334         Sample = 17,
335         Invariant = 18,
336         Restrict = 19,
337         Aliased = 20,
338         Volatile = 21,
339         Constant = 22,
340         Coherent = 23,
341         NonWritable = 24,
342         NonReadable = 25,
343         Uniform = 26,
344         SaturatedConversion = 28,
345         Stream = 29,
346         Location = 30,
347         Component = 31,
348         Index = 32,
349         Binding = 33,
350         DescriptorSet = 34,
351         Offset = 35,
352         XfbBuffer = 36,
353         XfbStride = 37,
354         FuncParamAttr = 38,
355         FPRoundingMode = 39,
356         FPFastMathMode = 40,
357         LinkageAttributes = 41,
358         NoContraction = 42,
359         InputAttachmentIndex = 43,
360         Alignment = 44,
361         MaxByteOffset = 45,
362         AlignmentId = 46,
363         MaxByteOffsetId = 47,
364         ExplicitInterpAMD = 4999,
365         OverrideCoverageNV = 5248,
366         PassthroughNV = 5250,
367         ViewportRelativeNV = 5252,
368         SecondaryViewportRelativeNV = 5256,
369     },
370
371     BuiltIn = {
372         Position = 0,
373         PointSize = 1,
374         ClipDistance = 3,
375         CullDistance = 4,
376         VertexId = 5,
377         InstanceId = 6,
378         PrimitiveId = 7,
379         InvocationId = 8,
380         Layer = 9,
381         ViewportIndex = 10,
382         TessLevelOuter = 11,
383         TessLevelInner = 12,
384         TessCoord = 13,
385         PatchVertices = 14,
386         FragCoord = 15,
387         PointCoord = 16,
388         FrontFacing = 17,
389         SampleId = 18,
390         SamplePosition = 19,
391         SampleMask = 20,
392         FragDepth = 22,
393         HelperInvocation = 23,
394         NumWorkgroups = 24,
395         WorkgroupSize = 25,
396         WorkgroupId = 26,
397         LocalInvocationId = 27,
398         GlobalInvocationId = 28,
399         LocalInvocationIndex = 29,
400         WorkDim = 30,
401         GlobalSize = 31,
402         EnqueuedWorkgroupSize = 32,
403         GlobalOffset = 33,
404         GlobalLinearId = 34,
405         SubgroupSize = 36,
406         SubgroupMaxSize = 37,
407         NumSubgroups = 38,
408         NumEnqueuedSubgroups = 39,
409         SubgroupId = 40,
410         SubgroupLocalInvocationId = 41,
411         VertexIndex = 42,
412         InstanceIndex = 43,
413         SubgroupEqMaskKHR = 4416,
414         SubgroupGeMaskKHR = 4417,
415         SubgroupGtMaskKHR = 4418,
416         SubgroupLeMaskKHR = 4419,
417         SubgroupLtMaskKHR = 4420,
418         BaseVertex = 4424,
419         BaseInstance = 4425,
420         DrawIndex = 4426,
421         DeviceIndex = 4438,
422         ViewIndex = 4440,
423         BaryCoordNoPerspAMD = 4992,
424         BaryCoordNoPerspCentroidAMD = 4993,
425         BaryCoordNoPerspSampleAMD = 4994,
426         BaryCoordSmoothAMD = 4995,
427         BaryCoordSmoothCentroidAMD = 4996,
428         BaryCoordSmoothSampleAMD = 4997,
429         BaryCoordPullModelAMD = 4998,
430         FragStencilRefEXT = 5014,
431         ViewportMaskNV = 5253,
432         SecondaryPositionNV = 5257,
433         SecondaryViewportMaskNV = 5258,
434         PositionPerViewNV = 5261,
435         ViewportMaskPerViewNV = 5262,
436         FullyCoveredEXT = 5264,
437     },
438
439     SelectionControlShift = {
440         Flatten = 0,
441         DontFlatten = 1,
442     },
443
444     SelectionControlMask = {
445         MaskNone = 0,
446         Flatten = 0x00000001,
447         DontFlatten = 0x00000002,
448     },
449
450     LoopControlShift = {
451         Unroll = 0,
452         DontUnroll = 1,
453         DependencyInfinite = 2,
454         DependencyLength = 3,
455     },
456
457     LoopControlMask = {
458         MaskNone = 0,
459         Unroll = 0x00000001,
460         DontUnroll = 0x00000002,
461         DependencyInfinite = 0x00000004,
462         DependencyLength = 0x00000008,
463     },
464
465     FunctionControlShift = {
466         Inline = 0,
467         DontInline = 1,
468         Pure = 2,
469         Const = 3,
470     },
471
472     FunctionControlMask = {
473         MaskNone = 0,
474         Inline = 0x00000001,
475         DontInline = 0x00000002,
476         Pure = 0x00000004,
477         Const = 0x00000008,
478     },
479
480     MemorySemanticsShift = {
481         Acquire = 1,
482         Release = 2,
483         AcquireRelease = 3,
484         SequentiallyConsistent = 4,
485         UniformMemory = 6,
486         SubgroupMemory = 7,
487         WorkgroupMemory = 8,
488         CrossWorkgroupMemory = 9,
489         AtomicCounterMemory = 10,
490         ImageMemory = 11,
491     },
492
493     MemorySemanticsMask = {
494         MaskNone = 0,
495         Acquire = 0x00000002,
496         Release = 0x00000004,
497         AcquireRelease = 0x00000008,
498         SequentiallyConsistent = 0x00000010,
499         UniformMemory = 0x00000040,
500         SubgroupMemory = 0x00000080,
501         WorkgroupMemory = 0x00000100,
502         CrossWorkgroupMemory = 0x00000200,
503         AtomicCounterMemory = 0x00000400,
504         ImageMemory = 0x00000800,
505     },
506
507     MemoryAccessShift = {
508         Volatile = 0,
509         Aligned = 1,
510         Nontemporal = 2,
511     },
512
513     MemoryAccessMask = {
514         MaskNone = 0,
515         Volatile = 0x00000001,
516         Aligned = 0x00000002,
517         Nontemporal = 0x00000004,
518     },
519
520     Scope = {
521         CrossDevice = 0,
522         Device = 1,
523         Workgroup = 2,
524         Subgroup = 3,
525         Invocation = 4,
526     },
527
528     GroupOperation = {
529         Reduce = 0,
530         InclusiveScan = 1,
531         ExclusiveScan = 2,
532     },
533
534     KernelEnqueueFlags = {
535         NoWait = 0,
536         WaitKernel = 1,
537         WaitWorkGroup = 2,
538     },
539
540     KernelProfilingInfoShift = {
541         CmdExecTime = 0,
542     },
543
544     KernelProfilingInfoMask = {
545         MaskNone = 0,
546         CmdExecTime = 0x00000001,
547     },
548
549     Capability = {
550         Matrix = 0,
551         Shader = 1,
552         Geometry = 2,
553         Tessellation = 3,
554         Addresses = 4,
555         Linkage = 5,
556         Kernel = 6,
557         Vector16 = 7,
558         Float16Buffer = 8,
559         Float16 = 9,
560         Float64 = 10,
561         Int64 = 11,
562         Int64Atomics = 12,
563         ImageBasic = 13,
564         ImageReadWrite = 14,
565         ImageMipmap = 15,
566         Pipes = 17,
567         Groups = 18,
568         DeviceEnqueue = 19,
569         LiteralSampler = 20,
570         AtomicStorage = 21,
571         Int16 = 22,
572         TessellationPointSize = 23,
573         GeometryPointSize = 24,
574         ImageGatherExtended = 25,
575         StorageImageMultisample = 27,
576         UniformBufferArrayDynamicIndexing = 28,
577         SampledImageArrayDynamicIndexing = 29,
578         StorageBufferArrayDynamicIndexing = 30,
579         StorageImageArrayDynamicIndexing = 31,
580         ClipDistance = 32,
581         CullDistance = 33,
582         ImageCubeArray = 34,
583         SampleRateShading = 35,
584         ImageRect = 36,
585         SampledRect = 37,
586         GenericPointer = 38,
587         Int8 = 39,
588         InputAttachment = 40,
589         SparseResidency = 41,
590         MinLod = 42,
591         Sampled1D = 43,
592         Image1D = 44,
593         SampledCubeArray = 45,
594         SampledBuffer = 46,
595         ImageBuffer = 47,
596         ImageMSArray = 48,
597         StorageImageExtendedFormats = 49,
598         ImageQuery = 50,
599         DerivativeControl = 51,
600         InterpolationFunction = 52,
601         TransformFeedback = 53,
602         GeometryStreams = 54,
603         StorageImageReadWithoutFormat = 55,
604         StorageImageWriteWithoutFormat = 56,
605         MultiViewport = 57,
606         SubgroupDispatch = 58,
607         NamedBarrier = 59,
608         PipeStorage = 60,
609         SubgroupBallotKHR = 4423,
610         DrawParameters = 4427,
611         SubgroupVoteKHR = 4431,
612         StorageBuffer16BitAccess = 4433,
613         StorageUniformBufferBlock16 = 4433,
614         StorageUniform16 = 4434,
615         UniformAndStorageBuffer16BitAccess = 4434,
616         StoragePushConstant16 = 4435,
617         StorageInputOutput16 = 4436,
618         DeviceGroup = 4437,
619         MultiView = 4439,
620         VariablePointersStorageBuffer = 4441,
621         VariablePointers = 4442,
622         AtomicStorageOps = 4445,
623         SampleMaskPostDepthCoverage = 4447,
624         Float16ImageAMD = 5008,
625         ImageGatherBiasLodAMD = 5009,
626         FragmentMaskAMD = 5010,
627         StencilExportEXT = 5013,
628         ImageReadWriteLodAMD = 5015,
629         SampleMaskOverrideCoverageNV = 5249,
630         GeometryShaderPassthroughNV = 5251,
631         ShaderViewportIndexLayerEXT = 5254,
632         ShaderViewportIndexLayerNV = 5254,
633         ShaderViewportMaskNV = 5255,
634         ShaderStereoViewNV = 5259,
635         PerViewAttributesNV = 5260,
636         FragmentFullyCoveredEXT = 5265,
637         SubgroupShuffleINTEL = 5568,
638         SubgroupBufferBlockIOINTEL = 5569,
639         SubgroupImageBlockIOINTEL = 5570,
640     },
641
642     Op = {
643         OpNop = 0,
644         OpUndef = 1,
645         OpSourceContinued = 2,
646         OpSource = 3,
647         OpSourceExtension = 4,
648         OpName = 5,
649         OpMemberName = 6,
650         OpString = 7,
651         OpLine = 8,
652         OpExtension = 10,
653         OpExtInstImport = 11,
654         OpExtInst = 12,
655         OpMemoryModel = 14,
656         OpEntryPoint = 15,
657         OpExecutionMode = 16,
658         OpCapability = 17,
659         OpTypeVoid = 19,
660         OpTypeBool = 20,
661         OpTypeInt = 21,
662         OpTypeFloat = 22,
663         OpTypeVector = 23,
664         OpTypeMatrix = 24,
665         OpTypeImage = 25,
666         OpTypeSampler = 26,
667         OpTypeSampledImage = 27,
668         OpTypeArray = 28,
669         OpTypeRuntimeArray = 29,
670         OpTypeStruct = 30,
671         OpTypeOpaque = 31,
672         OpTypePointer = 32,
673         OpTypeFunction = 33,
674         OpTypeEvent = 34,
675         OpTypeDeviceEvent = 35,
676         OpTypeReserveId = 36,
677         OpTypeQueue = 37,
678         OpTypePipe = 38,
679         OpTypeForwardPointer = 39,
680         OpConstantTrue = 41,
681         OpConstantFalse = 42,
682         OpConstant = 43,
683         OpConstantComposite = 44,
684         OpConstantSampler = 45,
685         OpConstantNull = 46,
686         OpSpecConstantTrue = 48,
687         OpSpecConstantFalse = 49,
688         OpSpecConstant = 50,
689         OpSpecConstantComposite = 51,
690         OpSpecConstantOp = 52,
691         OpFunction = 54,
692         OpFunctionParameter = 55,
693         OpFunctionEnd = 56,
694         OpFunctionCall = 57,
695         OpVariable = 59,
696         OpImageTexelPointer = 60,
697         OpLoad = 61,
698         OpStore = 62,
699         OpCopyMemory = 63,
700         OpCopyMemorySized = 64,
701         OpAccessChain = 65,
702         OpInBoundsAccessChain = 66,
703         OpPtrAccessChain = 67,
704         OpArrayLength = 68,
705         OpGenericPtrMemSemantics = 69,
706         OpInBoundsPtrAccessChain = 70,
707         OpDecorate = 71,
708         OpMemberDecorate = 72,
709         OpDecorationGroup = 73,
710         OpGroupDecorate = 74,
711         OpGroupMemberDecorate = 75,
712         OpVectorExtractDynamic = 77,
713         OpVectorInsertDynamic = 78,
714         OpVectorShuffle = 79,
715         OpCompositeConstruct = 80,
716         OpCompositeExtract = 81,
717         OpCompositeInsert = 82,
718         OpCopyObject = 83,
719         OpTranspose = 84,
720         OpSampledImage = 86,
721         OpImageSampleImplicitLod = 87,
722         OpImageSampleExplicitLod = 88,
723         OpImageSampleDrefImplicitLod = 89,
724         OpImageSampleDrefExplicitLod = 90,
725         OpImageSampleProjImplicitLod = 91,
726         OpImageSampleProjExplicitLod = 92,
727         OpImageSampleProjDrefImplicitLod = 93,
728         OpImageSampleProjDrefExplicitLod = 94,
729         OpImageFetch = 95,
730         OpImageGather = 96,
731         OpImageDrefGather = 97,
732         OpImageRead = 98,
733         OpImageWrite = 99,
734         OpImage = 100,
735         OpImageQueryFormat = 101,
736         OpImageQueryOrder = 102,
737         OpImageQuerySizeLod = 103,
738         OpImageQuerySize = 104,
739         OpImageQueryLod = 105,
740         OpImageQueryLevels = 106,
741         OpImageQuerySamples = 107,
742         OpConvertFToU = 109,
743         OpConvertFToS = 110,
744         OpConvertSToF = 111,
745         OpConvertUToF = 112,
746         OpUConvert = 113,
747         OpSConvert = 114,
748         OpFConvert = 115,
749         OpQuantizeToF16 = 116,
750         OpConvertPtrToU = 117,
751         OpSatConvertSToU = 118,
752         OpSatConvertUToS = 119,
753         OpConvertUToPtr = 120,
754         OpPtrCastToGeneric = 121,
755         OpGenericCastToPtr = 122,
756         OpGenericCastToPtrExplicit = 123,
757         OpBitcast = 124,
758         OpSNegate = 126,
759         OpFNegate = 127,
760         OpIAdd = 128,
761         OpFAdd = 129,
762         OpISub = 130,
763         OpFSub = 131,
764         OpIMul = 132,
765         OpFMul = 133,
766         OpUDiv = 134,
767         OpSDiv = 135,
768         OpFDiv = 136,
769         OpUMod = 137,
770         OpSRem = 138,
771         OpSMod = 139,
772         OpFRem = 140,
773         OpFMod = 141,
774         OpVectorTimesScalar = 142,
775         OpMatrixTimesScalar = 143,
776         OpVectorTimesMatrix = 144,
777         OpMatrixTimesVector = 145,
778         OpMatrixTimesMatrix = 146,
779         OpOuterProduct = 147,
780         OpDot = 148,
781         OpIAddCarry = 149,
782         OpISubBorrow = 150,
783         OpUMulExtended = 151,
784         OpSMulExtended = 152,
785         OpAny = 154,
786         OpAll = 155,
787         OpIsNan = 156,
788         OpIsInf = 157,
789         OpIsFinite = 158,
790         OpIsNormal = 159,
791         OpSignBitSet = 160,
792         OpLessOrGreater = 161,
793         OpOrdered = 162,
794         OpUnordered = 163,
795         OpLogicalEqual = 164,
796         OpLogicalNotEqual = 165,
797         OpLogicalOr = 166,
798         OpLogicalAnd = 167,
799         OpLogicalNot = 168,
800         OpSelect = 169,
801         OpIEqual = 170,
802         OpINotEqual = 171,
803         OpUGreaterThan = 172,
804         OpSGreaterThan = 173,
805         OpUGreaterThanEqual = 174,
806         OpSGreaterThanEqual = 175,
807         OpULessThan = 176,
808         OpSLessThan = 177,
809         OpULessThanEqual = 178,
810         OpSLessThanEqual = 179,
811         OpFOrdEqual = 180,
812         OpFUnordEqual = 181,
813         OpFOrdNotEqual = 182,
814         OpFUnordNotEqual = 183,
815         OpFOrdLessThan = 184,
816         OpFUnordLessThan = 185,
817         OpFOrdGreaterThan = 186,
818         OpFUnordGreaterThan = 187,
819         OpFOrdLessThanEqual = 188,
820         OpFUnordLessThanEqual = 189,
821         OpFOrdGreaterThanEqual = 190,
822         OpFUnordGreaterThanEqual = 191,
823         OpShiftRightLogical = 194,
824         OpShiftRightArithmetic = 195,
825         OpShiftLeftLogical = 196,
826         OpBitwiseOr = 197,
827         OpBitwiseXor = 198,
828         OpBitwiseAnd = 199,
829         OpNot = 200,
830         OpBitFieldInsert = 201,
831         OpBitFieldSExtract = 202,
832         OpBitFieldUExtract = 203,
833         OpBitReverse = 204,
834         OpBitCount = 205,
835         OpDPdx = 207,
836         OpDPdy = 208,
837         OpFwidth = 209,
838         OpDPdxFine = 210,
839         OpDPdyFine = 211,
840         OpFwidthFine = 212,
841         OpDPdxCoarse = 213,
842         OpDPdyCoarse = 214,
843         OpFwidthCoarse = 215,
844         OpEmitVertex = 218,
845         OpEndPrimitive = 219,
846         OpEmitStreamVertex = 220,
847         OpEndStreamPrimitive = 221,
848         OpControlBarrier = 224,
849         OpMemoryBarrier = 225,
850         OpAtomicLoad = 227,
851         OpAtomicStore = 228,
852         OpAtomicExchange = 229,
853         OpAtomicCompareExchange = 230,
854         OpAtomicCompareExchangeWeak = 231,
855         OpAtomicIIncrement = 232,
856         OpAtomicIDecrement = 233,
857         OpAtomicIAdd = 234,
858         OpAtomicISub = 235,
859         OpAtomicSMin = 236,
860         OpAtomicUMin = 237,
861         OpAtomicSMax = 238,
862         OpAtomicUMax = 239,
863         OpAtomicAnd = 240,
864         OpAtomicOr = 241,
865         OpAtomicXor = 242,
866         OpPhi = 245,
867         OpLoopMerge = 246,
868         OpSelectionMerge = 247,
869         OpLabel = 248,
870         OpBranch = 249,
871         OpBranchConditional = 250,
872         OpSwitch = 251,
873         OpKill = 252,
874         OpReturn = 253,
875         OpReturnValue = 254,
876         OpUnreachable = 255,
877         OpLifetimeStart = 256,
878         OpLifetimeStop = 257,
879         OpGroupAsyncCopy = 259,
880         OpGroupWaitEvents = 260,
881         OpGroupAll = 261,
882         OpGroupAny = 262,
883         OpGroupBroadcast = 263,
884         OpGroupIAdd = 264,
885         OpGroupFAdd = 265,
886         OpGroupFMin = 266,
887         OpGroupUMin = 267,
888         OpGroupSMin = 268,
889         OpGroupFMax = 269,
890         OpGroupUMax = 270,
891         OpGroupSMax = 271,
892         OpReadPipe = 274,
893         OpWritePipe = 275,
894         OpReservedReadPipe = 276,
895         OpReservedWritePipe = 277,
896         OpReserveReadPipePackets = 278,
897         OpReserveWritePipePackets = 279,
898         OpCommitReadPipe = 280,
899         OpCommitWritePipe = 281,
900         OpIsValidReserveId = 282,
901         OpGetNumPipePackets = 283,
902         OpGetMaxPipePackets = 284,
903         OpGroupReserveReadPipePackets = 285,
904         OpGroupReserveWritePipePackets = 286,
905         OpGroupCommitReadPipe = 287,
906         OpGroupCommitWritePipe = 288,
907         OpEnqueueMarker = 291,
908         OpEnqueueKernel = 292,
909         OpGetKernelNDrangeSubGroupCount = 293,
910         OpGetKernelNDrangeMaxSubGroupSize = 294,
911         OpGetKernelWorkGroupSize = 295,
912         OpGetKernelPreferredWorkGroupSizeMultiple = 296,
913         OpRetainEvent = 297,
914         OpReleaseEvent = 298,
915         OpCreateUserEvent = 299,
916         OpIsValidEvent = 300,
917         OpSetUserEventStatus = 301,
918         OpCaptureEventProfilingInfo = 302,
919         OpGetDefaultQueue = 303,
920         OpBuildNDRange = 304,
921         OpImageSparseSampleImplicitLod = 305,
922         OpImageSparseSampleExplicitLod = 306,
923         OpImageSparseSampleDrefImplicitLod = 307,
924         OpImageSparseSampleDrefExplicitLod = 308,
925         OpImageSparseSampleProjImplicitLod = 309,
926         OpImageSparseSampleProjExplicitLod = 310,
927         OpImageSparseSampleProjDrefImplicitLod = 311,
928         OpImageSparseSampleProjDrefExplicitLod = 312,
929         OpImageSparseFetch = 313,
930         OpImageSparseGather = 314,
931         OpImageSparseDrefGather = 315,
932         OpImageSparseTexelsResident = 316,
933         OpNoLine = 317,
934         OpAtomicFlagTestAndSet = 318,
935         OpAtomicFlagClear = 319,
936         OpImageSparseRead = 320,
937         OpSizeOf = 321,
938         OpTypePipeStorage = 322,
939         OpConstantPipeStorage = 323,
940         OpCreatePipeFromPipeStorage = 324,
941         OpGetKernelLocalSizeForSubgroupCount = 325,
942         OpGetKernelMaxNumSubgroups = 326,
943         OpTypeNamedBarrier = 327,
944         OpNamedBarrierInitialize = 328,
945         OpMemoryNamedBarrier = 329,
946         OpModuleProcessed = 330,
947         OpExecutionModeId = 331,
948         OpDecorateId = 332,
949         OpSubgroupBallotKHR = 4421,
950         OpSubgroupFirstInvocationKHR = 4422,
951         OpSubgroupAllKHR = 4428,
952         OpSubgroupAnyKHR = 4429,
953         OpSubgroupAllEqualKHR = 4430,
954         OpSubgroupReadInvocationKHR = 4432,
955         OpGroupIAddNonUniformAMD = 5000,
956         OpGroupFAddNonUniformAMD = 5001,
957         OpGroupFMinNonUniformAMD = 5002,
958         OpGroupUMinNonUniformAMD = 5003,
959         OpGroupSMinNonUniformAMD = 5004,
960         OpGroupFMaxNonUniformAMD = 5005,
961         OpGroupUMaxNonUniformAMD = 5006,
962         OpGroupSMaxNonUniformAMD = 5007,
963         OpFragmentMaskFetchAMD = 5011,
964         OpFragmentFetchAMD = 5012,
965         OpSubgroupShuffleINTEL = 5571,
966         OpSubgroupShuffleDownINTEL = 5572,
967         OpSubgroupShuffleUpINTEL = 5573,
968         OpSubgroupShuffleXorINTEL = 5574,
969         OpSubgroupBlockReadINTEL = 5575,
970         OpSubgroupBlockWriteINTEL = 5576,
971         OpSubgroupImageBlockReadINTEL = 5577,
972         OpSubgroupImageBlockWriteINTEL = 5578,
973     },
974
975 }
976