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