spirv.json 34 KB

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