blob: 6d9c7cfec3becd12fd1a3c6c1a14ef5e8bf5ad9f [file] [log] [blame]
John Kessenich140f3df2015-06-26 16:58:36 -06001//
John Kessenich927608b2017-01-06 12:34:14 -07002// Copyright (C) 2014-2016 LunarG, Inc.
John Kessenich56364b62020-03-01 04:51:40 -07003// Copyright (C) 2015-2020 Google, Inc.
John Kessenich66011cb2018-03-06 16:12:04 -07004// Copyright (C) 2017 ARM Limited.
Torosdagli06c2eee2020-03-19 11:09:57 -04005// Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved.
John Kessenich140f3df2015-06-26 16:58:36 -06006//
John Kessenich927608b2017-01-06 12:34:14 -07007// All rights reserved.
John Kessenich140f3df2015-06-26 16:58:36 -06008//
John Kessenich927608b2017-01-06 12:34:14 -07009// Redistribution and use in source and binary forms, with or without
10// modification, are permitted provided that the following conditions
11// are met:
John Kessenich140f3df2015-06-26 16:58:36 -060012//
13// Redistributions of source code must retain the above copyright
14// notice, this list of conditions and the following disclaimer.
15//
16// Redistributions in binary form must reproduce the above
17// copyright notice, this list of conditions and the following
18// disclaimer in the documentation and/or other materials provided
19// with the distribution.
20//
21// Neither the name of 3Dlabs Inc. Ltd. nor the names of its
22// contributors may be used to endorse or promote products derived
23// from this software without specific prior written permission.
24//
John Kessenich927608b2017-01-06 12:34:14 -070025// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36// POSSIBILITY OF SUCH DAMAGE.
John Kessenich140f3df2015-06-26 16:58:36 -060037
38//
John Kessenich140f3df2015-06-26 16:58:36 -060039// Visit the nodes in the glslang intermediate tree representation to
40// translate them to SPIR-V.
41//
42
John Kessenich5e4b1242015-08-06 22:53:06 -060043#include "spirv.hpp"
John Kessenich140f3df2015-06-26 16:58:36 -060044#include "GlslangToSpv.h"
45#include "SpvBuilder.h"
John Kessenich5e4b1242015-08-06 22:53:06 -060046namespace spv {
Rex Xu51596642016-09-21 18:56:12 +080047 #include "GLSL.std.450.h"
48 #include "GLSL.ext.KHR.h"
Piers Daniell1c5443c2017-12-13 13:07:22 -070049 #include "GLSL.ext.EXT.h"
Rex Xu51596642016-09-21 18:56:12 +080050 #include "GLSL.ext.AMD.h"
chaoc0ad6a4e2016-12-19 16:29:34 -080051 #include "GLSL.ext.NV.h"
Jeff Bolz04d73732019-05-31 13:06:01 -050052 #include "NonSemanticDebugPrintf.h"
John Kessenich5e4b1242015-08-06 22:53:06 -060053}
John Kessenich140f3df2015-06-26 16:58:36 -060054
55// Glslang includes
baldurk42169c52015-07-08 15:11:59 +020056#include "../glslang/MachineIndependent/localintermediate.h"
57#include "../glslang/MachineIndependent/SymbolTable.h"
John Kessenich5e4b1242015-08-06 22:53:06 -060058#include "../glslang/Include/Common.h"
Ben Claytonfbe9a232020-06-17 11:17:19 +010059
60// Build-time generated includes
61#include "glslang/build_info.h"
John Kessenich140f3df2015-06-26 16:58:36 -060062
John Kessenich140f3df2015-06-26 16:58:36 -060063#include <fstream>
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -050064#include <iomanip>
Lei Zhang17535f72016-05-04 15:55:59 -040065#include <list>
66#include <map>
67#include <stack>
68#include <string>
69#include <vector>
John Kessenich140f3df2015-06-26 16:58:36 -060070
71namespace {
72
qining4c912612016-04-01 10:35:16 -040073namespace {
74class SpecConstantOpModeGuard {
75public:
76 SpecConstantOpModeGuard(spv::Builder* builder)
77 : builder_(builder) {
78 previous_flag_ = builder->isInSpecConstCodeGenMode();
qining4c912612016-04-01 10:35:16 -040079 }
80 ~SpecConstantOpModeGuard() {
81 previous_flag_ ? builder_->setToSpecConstCodeGenMode()
82 : builder_->setToNormalCodeGenMode();
83 }
qining40887662016-04-03 22:20:42 -040084 void turnOnSpecConstantOpMode() {
85 builder_->setToSpecConstCodeGenMode();
86 }
qining4c912612016-04-01 10:35:16 -040087
88private:
89 spv::Builder* builder_;
90 bool previous_flag_;
91};
John Kessenichead86222018-03-28 18:01:20 -060092
93struct OpDecorations {
John Kessenichb9197c82019-08-11 07:41:45 -060094 public:
95 OpDecorations(spv::Decoration precision, spv::Decoration noContraction, spv::Decoration nonUniform) :
96 precision(precision)
97#ifndef GLSLANG_WEB
98 ,
99 noContraction(noContraction),
100 nonUniform(nonUniform)
101#endif
102 { }
103
John Kessenichead86222018-03-28 18:01:20 -0600104 spv::Decoration precision;
John Kessenichb9197c82019-08-11 07:41:45 -0600105
106#ifdef GLSLANG_WEB
Ryan Harrison7c9accb2019-10-11 11:00:57 -0400107 void addNoContraction(spv::Builder&, spv::Id) const { }
108 void addNonUniform(spv::Builder&, spv::Id) const { }
John Kessenichb9197c82019-08-11 07:41:45 -0600109#else
Ryan Harrison7c9accb2019-10-11 11:00:57 -0400110 void addNoContraction(spv::Builder& builder, spv::Id t) { builder.addDecoration(t, noContraction); }
111 void addNonUniform(spv::Builder& builder, spv::Id t) { builder.addDecoration(t, nonUniform); }
John Kessenichb9197c82019-08-11 07:41:45 -0600112 protected:
113 spv::Decoration noContraction;
114 spv::Decoration nonUniform;
115#endif
116
John Kessenichead86222018-03-28 18:01:20 -0600117};
118
119} // namespace
qining4c912612016-04-01 10:35:16 -0400120
John Kessenich140f3df2015-06-26 16:58:36 -0600121//
122// The main holder of information for translating glslang to SPIR-V.
123//
124// Derives from the AST walking base class.
125//
126class TGlslangToSpvTraverser : public glslang::TIntermTraverser {
127public:
John Kessenich2b5ea9f2018-01-31 18:35:56 -0700128 TGlslangToSpvTraverser(unsigned int spvVersion, const glslang::TIntermediate*, spv::SpvBuildLogger* logger,
129 glslang::SpvOptions& options);
John Kessenichfca82622016-11-26 13:23:20 -0700130 virtual ~TGlslangToSpvTraverser() { }
John Kessenich140f3df2015-06-26 16:58:36 -0600131
132 bool visitAggregate(glslang::TVisit, glslang::TIntermAggregate*);
133 bool visitBinary(glslang::TVisit, glslang::TIntermBinary*);
134 void visitConstantUnion(glslang::TIntermConstantUnion*);
135 bool visitSelection(glslang::TVisit, glslang::TIntermSelection*);
136 bool visitSwitch(glslang::TVisit, glslang::TIntermSwitch*);
137 void visitSymbol(glslang::TIntermSymbol* symbol);
138 bool visitUnary(glslang::TVisit, glslang::TIntermUnary*);
139 bool visitLoop(glslang::TVisit, glslang::TIntermLoop*);
140 bool visitBranch(glslang::TVisit visit, glslang::TIntermBranch*);
141
John Kessenichfca82622016-11-26 13:23:20 -0700142 void finishSpv();
John Kessenich7ba63412015-12-20 17:37:07 -0700143 void dumpSpv(std::vector<unsigned int>& out);
John Kessenich140f3df2015-06-26 16:58:36 -0600144
145protected:
John Kessenich5d610ee2018-03-07 18:05:55 -0700146 TGlslangToSpvTraverser(TGlslangToSpvTraverser&);
147 TGlslangToSpvTraverser& operator=(TGlslangToSpvTraverser&);
148
Rex Xu17ff3432016-10-14 17:41:45 +0800149 spv::Decoration TranslateInterpolationDecoration(const glslang::TQualifier& qualifier);
Rex Xubbceed72016-05-21 09:40:44 +0800150 spv::Decoration TranslateAuxiliaryStorageDecoration(const glslang::TQualifier& qualifier);
John Kessenich5611c6d2018-04-05 11:25:02 -0600151 spv::Decoration TranslateNonUniformDecoration(const glslang::TQualifier& qualifier);
greg-lunarg639f5462020-11-12 11:10:07 -0700152 spv::Decoration TranslateNonUniformDecoration(const spv::Builder::AccessChain::CoherentFlags& coherentFlags);
Jeff Bolz36831c92018-09-05 10:11:41 -0500153 spv::Builder::AccessChain::CoherentFlags TranslateCoherent(const glslang::TType& type);
154 spv::MemoryAccessMask TranslateMemoryAccess(const spv::Builder::AccessChain::CoherentFlags &coherentFlags);
155 spv::ImageOperandsMask TranslateImageOperands(const spv::Builder::AccessChain::CoherentFlags &coherentFlags);
156 spv::Scope TranslateMemoryScope(const spv::Builder::AccessChain::CoherentFlags &coherentFlags);
David Netoa901ffe2016-06-08 14:11:40 +0100157 spv::BuiltIn TranslateBuiltInDecoration(glslang::TBuiltInVariable, bool memberDeclaration);
John Kessenich5d0fa972016-02-15 11:57:00 -0700158 spv::ImageFormat TranslateImageFormat(const glslang::TType& type);
John Kesseniche18fd202018-01-30 11:01:39 -0700159 spv::SelectionControlMask TranslateSelectionControl(const glslang::TIntermSelection&) const;
160 spv::SelectionControlMask TranslateSwitchControl(const glslang::TIntermSwitch&) const;
John Kessenich1f4d0462019-01-12 17:31:41 +0700161 spv::LoopControlMask TranslateLoopControl(const glslang::TIntermLoop&, std::vector<unsigned int>& operands) const;
John Kessenicha5c5fb62017-05-05 05:09:58 -0600162 spv::StorageClass TranslateStorageClass(const glslang::TType&);
John Kessenich5611c6d2018-04-05 11:25:02 -0600163 void addIndirectionIndexCapabilities(const glslang::TType& baseType, const glslang::TType& indexType);
John Kessenich9c14f772019-06-17 08:38:35 -0600164 spv::Id createSpvVariable(const glslang::TIntermSymbol*, spv::Id forcedType);
John Kessenich140f3df2015-06-26 16:58:36 -0600165 spv::Id getSampledType(const glslang::TSampler&);
John Kessenich8c8505c2016-07-26 12:50:38 -0600166 spv::Id getInvertedSwizzleType(const glslang::TIntermTyped&);
167 spv::Id createInvertedSwizzle(spv::Decoration precision, const glslang::TIntermTyped&, spv::Id parentResult);
168 void convertSwizzle(const glslang::TIntermAggregate&, std::vector<unsigned>& swizzle);
Jeff Bolz9f2aec42019-01-06 17:58:04 -0600169 spv::Id convertGlslangToSpvType(const glslang::TType& type, bool forwardReferenceOnly = false);
John Kessenichead86222018-03-28 18:01:20 -0600170 spv::Id convertGlslangToSpvType(const glslang::TType& type, glslang::TLayoutPacking, const glslang::TQualifier&,
Jeff Bolz9f2aec42019-01-06 17:58:04 -0600171 bool lastBufferBlockMember, bool forwardReferenceOnly = false);
John Kessenich0e737842017-03-24 18:38:16 -0600172 bool filterMember(const glslang::TType& member);
John Kessenich6090df02016-06-30 21:18:02 -0600173 spv::Id convertGlslangStructToSpvType(const glslang::TType&, const glslang::TTypeList* glslangStruct,
174 glslang::TLayoutPacking, const glslang::TQualifier&);
175 void decorateStructType(const glslang::TType&, const glslang::TTypeList* glslangStruct, glslang::TLayoutPacking,
176 const glslang::TQualifier&, spv::Id);
John Kessenich6c292d32016-02-15 20:58:50 -0700177 spv::Id makeArraySizeId(const glslang::TArraySizes&, int dim);
John Kessenich32cfd492016-02-02 12:37:46 -0700178 spv::Id accessChainLoad(const glslang::TType& type);
Rex Xu27253232016-02-23 17:51:09 +0800179 void accessChainStore(const glslang::TType& type, spv::Id rvalue);
John Kessenich4bf71552016-09-02 11:20:21 -0600180 void multiTypeStore(const glslang::TType&, spv::Id rValue);
John Kessenichf85e8062015-12-19 13:57:10 -0700181 glslang::TLayoutPacking getExplicitLayout(const glslang::TType& type) const;
John Kessenich3ac051e2015-12-20 11:29:16 -0700182 int getArrayStride(const glslang::TType& arrayType, glslang::TLayoutPacking, glslang::TLayoutMatrix);
183 int getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacking, glslang::TLayoutMatrix);
John Kessenich5d610ee2018-03-07 18:05:55 -0700184 void updateMemberOffset(const glslang::TType& structType, const glslang::TType& memberType, int& currentOffset,
185 int& nextOffset, glslang::TLayoutPacking, glslang::TLayoutMatrix);
David Netoa901ffe2016-06-08 14:11:40 +0100186 void declareUseOfStructMember(const glslang::TTypeList& members, int glslangMember);
John Kessenich140f3df2015-06-26 16:58:36 -0600187
John Kessenich6fccb3c2016-09-19 16:01:41 -0600188 bool isShaderEntryPoint(const glslang::TIntermAggregate* node);
John Kessenichd3ed90b2018-05-04 11:43:03 -0600189 bool writableParam(glslang::TStorageQualifier) const;
John Kessenichd41993d2017-09-10 15:21:05 -0600190 bool originalParam(glslang::TStorageQualifier, const glslang::TType&, bool implicitThisParam);
John Kessenich140f3df2015-06-26 16:58:36 -0600191 void makeFunctions(const glslang::TIntermSequence&);
192 void makeGlobalInitializers(const glslang::TIntermSequence&);
Daniel Kochffccefd2020-11-23 15:41:27 -0500193 void collectRayTracingLinkerObjects();
John Kessenich140f3df2015-06-26 16:58:36 -0600194 void visitFunctions(const glslang::TIntermSequence&);
195 void handleFunctionEntry(const glslang::TIntermAggregate* node);
John Kessenich8985fc92020-03-03 10:25:07 -0700196 void translateArguments(const glslang::TIntermAggregate& node, std::vector<spv::Id>& arguments,
197 spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags);
John Kessenichfc51d282015-08-19 13:34:18 -0600198 void translateArguments(glslang::TIntermUnary& node, std::vector<spv::Id>& arguments);
199 spv::Id createImageTextureFunctionCall(glslang::TIntermOperator* node);
John Kessenich140f3df2015-06-26 16:58:36 -0600200 spv::Id handleUserFunctionCall(const glslang::TIntermAggregate*);
201
John Kessenichead86222018-03-28 18:01:20 -0600202 spv::Id createBinaryOperation(glslang::TOperator op, OpDecorations&, spv::Id typeId, spv::Id left, spv::Id right,
203 glslang::TBasicType typeProxy, bool reduceComparison = true);
204 spv::Id createBinaryMatrixOperation(spv::Op, OpDecorations&, spv::Id typeId, spv::Id left, spv::Id right);
205 spv::Id createUnaryOperation(glslang::TOperator op, OpDecorations&, spv::Id typeId, spv::Id operand,
John Kessenich8985fc92020-03-03 10:25:07 -0700206 glslang::TBasicType typeProxy,
207 const spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags);
John Kessenichead86222018-03-28 18:01:20 -0600208 spv::Id createUnaryMatrixOperation(spv::Op op, OpDecorations&, spv::Id typeId, spv::Id operand,
209 glslang::TBasicType typeProxy);
210 spv::Id createConversion(glslang::TOperator op, OpDecorations&, spv::Id destTypeId, spv::Id operand,
211 glslang::TBasicType typeProxy);
John Kessenichad7645f2018-06-04 19:11:25 -0600212 spv::Id createIntWidthConversion(glslang::TOperator op, spv::Id operand, int vectorSize);
John Kessenich140f3df2015-06-26 16:58:36 -0600213 spv::Id makeSmearedConstant(spv::Id constant, int vectorSize);
John Kessenich8985fc92020-03-03 10:25:07 -0700214 spv::Id createAtomicOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId,
215 std::vector<spv::Id>& operands, glslang::TBasicType typeProxy,
216 const spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags);
217 spv::Id createInvocationsOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands,
218 glslang::TBasicType typeProxy);
219 spv::Id CreateInvocationsVectorOperation(spv::Op op, spv::GroupOperation groupOperation,
220 spv::Id typeId, std::vector<spv::Id>& operands);
221 spv::Id createSubgroupOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands,
222 glslang::TBasicType typeProxy);
223 spv::Id createMiscOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId,
224 std::vector<spv::Id>& operands, glslang::TBasicType typeProxy);
Rex Xu9d93a232016-05-05 12:30:44 +0800225 spv::Id createNoArgOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId);
John Kessenich140f3df2015-06-26 16:58:36 -0600226 spv::Id getSymbolId(const glslang::TIntermSymbol* node);
Chao Chen3c366992018-09-19 11:41:59 -0700227 void addMeshNVDecoration(spv::Id id, int member, const glslang::TQualifier & qualifier);
qining08408382016-03-21 09:51:37 -0400228 spv::Id createSpvConstant(const glslang::TIntermTyped&);
John Kessenich8985fc92020-03-03 10:25:07 -0700229 spv::Id createSpvConstantFromConstUnionArray(const glslang::TType& type, const glslang::TConstUnionArray&,
230 int& nextConst, bool specConstant);
John Kessenich7c1aa102015-10-15 13:29:11 -0600231 bool isTrivialLeaf(const glslang::TIntermTyped* node);
232 bool isTrivial(const glslang::TIntermTyped* node);
233 spv::Id createShortCircuit(glslang::TOperator, glslang::TIntermTyped& left, glslang::TIntermTyped& right);
Rex Xu9d93a232016-05-05 12:30:44 +0800234 spv::Id getExtBuiltins(const char* name);
Daniel Kochdb32b242020-03-17 20:42:47 -0400235 std::pair<spv::Id, spv::Id> getForcedType(glslang::TBuiltInVariable builtIn, const glslang::TType&);
John Kessenich9c14f772019-06-17 08:38:35 -0600236 spv::Id translateForcedType(spv::Id object);
Jeff Bolz53134492019-06-25 13:31:10 -0500237 spv::Id createCompositeConstruct(spv::Id typeId, std::vector<spv::Id> constituents);
John Kessenich140f3df2015-06-26 16:58:36 -0600238
John Kessenich121853f2017-05-31 17:11:16 -0600239 glslang::SpvOptions& options;
John Kessenich140f3df2015-06-26 16:58:36 -0600240 spv::Function* shaderEntry;
John Kesseniched33e052016-10-06 12:59:51 -0600241 spv::Function* currentFunction;
John Kessenich55e7d112015-11-15 21:33:39 -0700242 spv::Instruction* entryPoint;
John Kessenich140f3df2015-06-26 16:58:36 -0600243 int sequenceDepth;
244
Lei Zhang17535f72016-05-04 15:55:59 -0400245 spv::SpvBuildLogger* logger;
Lei Zhang09caf122016-05-02 18:11:54 -0400246
John Kessenich140f3df2015-06-26 16:58:36 -0600247 // There is a 1:1 mapping between a spv builder and a module; this is thread safe
248 spv::Builder builder;
John Kessenich517fe7a2016-11-26 13:31:47 -0700249 bool inEntryPoint;
250 bool entryPointTerminated;
John Kessenich8985fc92020-03-03 10:25:07 -0700251 bool linkageOnly; // true when visiting the set of objects in the AST present only for
252 // establishing interface, whether or not they were statically used
John Kessenich59420fd2015-12-21 11:45:34 -0700253 std::set<spv::Id> iOSet; // all input/output variables from either static use or declaration of interface
John Kessenich140f3df2015-06-26 16:58:36 -0600254 const glslang::TIntermediate* glslangIntermediate;
John Kessenich605afc72019-06-17 23:33:09 -0600255 bool nanMinMaxClamp; // true if use NMin/NMax/NClamp instead of FMin/FMax/FClamp
John Kessenich140f3df2015-06-26 16:58:36 -0600256 spv::Id stdBuiltins;
Jeff Bolz04d73732019-05-31 13:06:01 -0500257 spv::Id nonSemanticDebugPrintf;
Rex Xu77fe62f2021-02-26 17:25:45 +0800258 std::unordered_map<std::string, spv::Id> extBuiltinMap;
John Kessenich140f3df2015-06-26 16:58:36 -0600259
Chow93b400f2020-11-12 15:54:16 +0800260 std::unordered_map<long long, spv::Id> symbolValues;
261 std::unordered_set<long long> rValueParameters; // set of formal function parameters passed as rValues,
John Kessenich8985fc92020-03-03 10:25:07 -0700262 // rather than a pointer
John Kessenich2f273362015-07-18 22:34:27 -0600263 std::unordered_map<std::string, spv::Function*> functionMap;
John Kessenich3ac051e2015-12-20 11:29:16 -0700264 std::unordered_map<const glslang::TTypeList*, spv::Id> structMap[glslang::ElpCount][glslang::ElmCount];
John Kessenich5d610ee2018-03-07 18:05:55 -0700265 // for mapping glslang block indices to spv indices (e.g., due to hidden members):
Chow93b400f2020-11-12 15:54:16 +0800266 std::unordered_map<long long, std::vector<int>> memberRemapper;
Roy05a5b532020-01-03 16:21:34 +0800267 // for mapping glslang symbol struct to symbol Id
Chow93b400f2020-11-12 15:54:16 +0800268 std::unordered_map<const glslang::TTypeList*, long long> glslangTypeToIdMap;
John Kessenich140f3df2015-06-26 16:58:36 -0600269 std::stack<bool> breakForLoop; // false means break for switch
John Kessenich5d610ee2018-03-07 18:05:55 -0700270 std::unordered_map<std::string, const glslang::TIntermSymbol*> counterOriginator;
Jeff Bolz9f2aec42019-01-06 17:58:04 -0600271 // Map pointee types for EbtReference to their forward pointers
272 std::map<const glslang::TType *, spv::Id> forwardPointers;
John Kessenich9c14f772019-06-17 08:38:35 -0600273 // Type forcing, for when SPIR-V wants a different type than the AST,
274 // requiring local translation to and from SPIR-V type on every access.
275 // Maps <builtin-variable-id -> AST-required-type-id>
276 std::unordered_map<spv::Id, spv::Id> forceType;
Daniel Kochffccefd2020-11-23 15:41:27 -0500277
278 // Used later for generating OpTraceKHR/OpExecuteCallableKHR
279 std::unordered_map<unsigned int, glslang::TIntermSymbol *> locationToSymbol[2];
John Kessenich140f3df2015-06-26 16:58:36 -0600280};
281
282//
283// Helper functions for translating glslang representations to SPIR-V enumerants.
284//
285
286// Translate glslang profile to SPIR-V source language.
John Kessenich66e2faf2016-03-12 18:34:36 -0700287spv::SourceLanguage TranslateSourceLanguage(glslang::EShSource source, EProfile profile)
John Kessenich140f3df2015-06-26 16:58:36 -0600288{
John Kessenich155d3512019-08-08 23:29:20 -0600289#ifdef GLSLANG_WEB
290 return spv::SourceLanguageESSL;
Shahbaz Youssefi1ef2e252020-07-03 15:42:53 -0400291#elif defined(GLSLANG_ANGLE)
292 return spv::SourceLanguageGLSL;
John Kessenich155d3512019-08-08 23:29:20 -0600293#endif
294
John Kessenich66e2faf2016-03-12 18:34:36 -0700295 switch (source) {
296 case glslang::EShSourceGlsl:
297 switch (profile) {
298 case ENoProfile:
299 case ECoreProfile:
300 case ECompatibilityProfile:
301 return spv::SourceLanguageGLSL;
302 case EEsProfile:
303 return spv::SourceLanguageESSL;
304 default:
305 return spv::SourceLanguageUnknown;
306 }
307 case glslang::EShSourceHlsl:
John Kessenich6fa17642017-04-07 15:33:08 -0600308 return spv::SourceLanguageHLSL;
John Kessenich140f3df2015-06-26 16:58:36 -0600309 default:
310 return spv::SourceLanguageUnknown;
311 }
312}
313
314// Translate glslang language (stage) to SPIR-V execution model.
315spv::ExecutionModel TranslateExecutionModel(EShLanguage stage)
316{
317 switch (stage) {
318 case EShLangVertex: return spv::ExecutionModelVertex;
John Kessenicha28f7a72019-08-06 07:00:58 -0600319 case EShLangFragment: return spv::ExecutionModelFragment;
John Kessenicha28f7a72019-08-06 07:00:58 -0600320 case EShLangCompute: return spv::ExecutionModelGLCompute;
John Kessenich51ed01c2019-10-10 11:40:11 -0600321#ifndef GLSLANG_WEB
John Kessenich140f3df2015-06-26 16:58:36 -0600322 case EShLangTessControl: return spv::ExecutionModelTessellationControl;
323 case EShLangTessEvaluation: return spv::ExecutionModelTessellationEvaluation;
324 case EShLangGeometry: return spv::ExecutionModelGeometry;
Daniel Kochdb32b242020-03-17 20:42:47 -0400325 case EShLangRayGen: return spv::ExecutionModelRayGenerationKHR;
326 case EShLangIntersect: return spv::ExecutionModelIntersectionKHR;
327 case EShLangAnyHit: return spv::ExecutionModelAnyHitKHR;
328 case EShLangClosestHit: return spv::ExecutionModelClosestHitKHR;
329 case EShLangMiss: return spv::ExecutionModelMissKHR;
330 case EShLangCallable: return spv::ExecutionModelCallableKHR;
Chao Chen3c366992018-09-19 11:41:59 -0700331 case EShLangTaskNV: return spv::ExecutionModelTaskNV;
332 case EShLangMeshNV: return spv::ExecutionModelMeshNV;
333#endif
John Kessenich140f3df2015-06-26 16:58:36 -0600334 default:
John Kessenich55e7d112015-11-15 21:33:39 -0700335 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -0600336 return spv::ExecutionModelFragment;
337 }
338}
339
John Kessenich140f3df2015-06-26 16:58:36 -0600340// Translate glslang sampler type to SPIR-V dimensionality.
341spv::Dim TranslateDimensionality(const glslang::TSampler& sampler)
342{
343 switch (sampler.dim) {
John Kessenich55e7d112015-11-15 21:33:39 -0700344 case glslang::Esd1D: return spv::Dim1D;
345 case glslang::Esd2D: return spv::Dim2D;
346 case glslang::Esd3D: return spv::Dim3D;
347 case glslang::EsdCube: return spv::DimCube;
348 case glslang::EsdRect: return spv::DimRect;
349 case glslang::EsdBuffer: return spv::DimBuffer;
John Kessenich6c292d32016-02-15 20:58:50 -0700350 case glslang::EsdSubpass: return spv::DimSubpassData;
John Kessenich140f3df2015-06-26 16:58:36 -0600351 default:
John Kessenich55e7d112015-11-15 21:33:39 -0700352 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -0600353 return spv::Dim2D;
354 }
355}
356
John Kessenichf6640762016-08-01 19:44:00 -0600357// Translate glslang precision to SPIR-V precision decorations.
358spv::Decoration TranslatePrecisionDecoration(glslang::TPrecisionQualifier glslangPrecision)
John Kessenich140f3df2015-06-26 16:58:36 -0600359{
John Kessenichf6640762016-08-01 19:44:00 -0600360 switch (glslangPrecision) {
John Kessenich61c47a92015-12-14 18:21:19 -0700361 case glslang::EpqLow: return spv::DecorationRelaxedPrecision;
John Kessenich5e4b1242015-08-06 22:53:06 -0600362 case glslang::EpqMedium: return spv::DecorationRelaxedPrecision;
John Kessenich140f3df2015-06-26 16:58:36 -0600363 default:
364 return spv::NoPrecision;
365 }
366}
367
John Kessenichf6640762016-08-01 19:44:00 -0600368// Translate glslang type to SPIR-V precision decorations.
369spv::Decoration TranslatePrecisionDecoration(const glslang::TType& type)
370{
371 return TranslatePrecisionDecoration(type.getQualifier().precision);
372}
373
John Kessenich140f3df2015-06-26 16:58:36 -0600374// Translate glslang type to SPIR-V block decorations.
John Kessenich67027182017-04-19 18:34:49 -0600375spv::Decoration TranslateBlockDecoration(const glslang::TType& type, bool useStorageBuffer)
John Kessenich140f3df2015-06-26 16:58:36 -0600376{
377 if (type.getBasicType() == glslang::EbtBlock) {
378 switch (type.getQualifier().storage) {
379 case glslang::EvqUniform: return spv::DecorationBlock;
John Kessenich67027182017-04-19 18:34:49 -0600380 case glslang::EvqBuffer: return useStorageBuffer ? spv::DecorationBlock : spv::DecorationBufferBlock;
John Kessenich140f3df2015-06-26 16:58:36 -0600381 case glslang::EvqVaryingIn: return spv::DecorationBlock;
382 case glslang::EvqVaryingOut: return spv::DecorationBlock;
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -0700383 case glslang::EvqShared: return spv::DecorationBlock;
John Kessenicha28f7a72019-08-06 07:00:58 -0600384#ifndef GLSLANG_WEB
Daniel Kochdb32b242020-03-17 20:42:47 -0400385 case glslang::EvqPayload: return spv::DecorationBlock;
386 case glslang::EvqPayloadIn: return spv::DecorationBlock;
387 case glslang::EvqHitAttr: return spv::DecorationBlock;
388 case glslang::EvqCallableData: return spv::DecorationBlock;
389 case glslang::EvqCallableDataIn: return spv::DecorationBlock;
Chao Chenb50c02e2018-09-19 11:42:24 -0700390#endif
John Kessenich140f3df2015-06-26 16:58:36 -0600391 default:
John Kessenich55e7d112015-11-15 21:33:39 -0700392 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -0600393 break;
394 }
395 }
396
John Kessenich4016e382016-07-15 11:53:56 -0600397 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600398}
399
Rex Xu1da878f2016-02-21 20:59:01 +0800400// Translate glslang type to SPIR-V memory decorations.
John Kessenich8985fc92020-03-03 10:25:07 -0700401void TranslateMemoryDecoration(const glslang::TQualifier& qualifier, std::vector<spv::Decoration>& memory,
402 bool useVulkanMemoryModel)
Rex Xu1da878f2016-02-21 20:59:01 +0800403{
Jeff Bolz36831c92018-09-05 10:11:41 -0500404 if (!useVulkanMemoryModel) {
John Kessenichf8d1d742019-10-21 06:55:11 -0600405 if (qualifier.isCoherent())
Jeff Bolz36831c92018-09-05 10:11:41 -0500406 memory.push_back(spv::DecorationCoherent);
John Kessenichf8d1d742019-10-21 06:55:11 -0600407 if (qualifier.isVolatile()) {
Jeff Bolz36831c92018-09-05 10:11:41 -0500408 memory.push_back(spv::DecorationVolatile);
409 memory.push_back(spv::DecorationCoherent);
410 }
John Kessenich14b85d32018-06-04 15:36:03 -0600411 }
John Kessenichf8d1d742019-10-21 06:55:11 -0600412 if (qualifier.isRestrict())
Rex Xu1da878f2016-02-21 20:59:01 +0800413 memory.push_back(spv::DecorationRestrict);
John Kessenichdeec1932019-08-13 08:00:30 -0600414 if (qualifier.isReadOnly())
Rex Xu1da878f2016-02-21 20:59:01 +0800415 memory.push_back(spv::DecorationNonWritable);
John Kessenichdeec1932019-08-13 08:00:30 -0600416 if (qualifier.isWriteOnly())
Rex Xu1da878f2016-02-21 20:59:01 +0800417 memory.push_back(spv::DecorationNonReadable);
418}
419
John Kessenich140f3df2015-06-26 16:58:36 -0600420// Translate glslang type to SPIR-V layout decorations.
John Kessenich3ac051e2015-12-20 11:29:16 -0700421spv::Decoration TranslateLayoutDecoration(const glslang::TType& type, glslang::TLayoutMatrix matrixLayout)
John Kessenich140f3df2015-06-26 16:58:36 -0600422{
423 if (type.isMatrix()) {
John Kessenich3ac051e2015-12-20 11:29:16 -0700424 switch (matrixLayout) {
John Kessenich140f3df2015-06-26 16:58:36 -0600425 case glslang::ElmRowMajor:
426 return spv::DecorationRowMajor;
John Kessenich3ac051e2015-12-20 11:29:16 -0700427 case glslang::ElmColumnMajor:
John Kessenich140f3df2015-06-26 16:58:36 -0600428 return spv::DecorationColMajor;
John Kessenich3ac051e2015-12-20 11:29:16 -0700429 default:
430 // opaque layouts don't need a majorness
John Kessenich4016e382016-07-15 11:53:56 -0600431 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600432 }
433 } else {
434 switch (type.getBasicType()) {
435 default:
John Kessenich4016e382016-07-15 11:53:56 -0600436 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600437 break;
438 case glslang::EbtBlock:
439 switch (type.getQualifier().storage) {
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -0700440 case glslang::EvqShared:
John Kessenich140f3df2015-06-26 16:58:36 -0600441 case glslang::EvqUniform:
442 case glslang::EvqBuffer:
443 switch (type.getQualifier().layoutPacking) {
444 case glslang::ElpShared: return spv::DecorationGLSLShared;
John Kessenich140f3df2015-06-26 16:58:36 -0600445 case glslang::ElpPacked: return spv::DecorationGLSLPacked;
446 default:
John Kessenich4016e382016-07-15 11:53:56 -0600447 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600448 }
449 case glslang::EvqVaryingIn:
450 case glslang::EvqVaryingOut:
Chao Chen3c366992018-09-19 11:41:59 -0700451 if (type.getQualifier().isTaskMemory()) {
452 switch (type.getQualifier().layoutPacking) {
453 case glslang::ElpShared: return spv::DecorationGLSLShared;
454 case glslang::ElpPacked: return spv::DecorationGLSLPacked;
455 default: break;
456 }
457 } else {
458 assert(type.getQualifier().layoutPacking == glslang::ElpNone);
459 }
John Kessenich4016e382016-07-15 11:53:56 -0600460 return spv::DecorationMax;
John Kessenicha28f7a72019-08-06 07:00:58 -0600461#ifndef GLSLANG_WEB
Daniel Kochdb32b242020-03-17 20:42:47 -0400462 case glslang::EvqPayload:
463 case glslang::EvqPayloadIn:
464 case glslang::EvqHitAttr:
465 case glslang::EvqCallableData:
466 case glslang::EvqCallableDataIn:
Chao Chenb50c02e2018-09-19 11:42:24 -0700467 return spv::DecorationMax;
468#endif
John Kessenich140f3df2015-06-26 16:58:36 -0600469 default:
John Kessenich55e7d112015-11-15 21:33:39 -0700470 assert(0);
John Kessenich4016e382016-07-15 11:53:56 -0600471 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600472 }
473 }
474 }
475}
476
477// Translate glslang type to SPIR-V interpolation decorations.
John Kessenich4016e382016-07-15 11:53:56 -0600478// Returns spv::DecorationMax when no decoration
John Kessenich55e7d112015-11-15 21:33:39 -0700479// should be applied.
Rex Xu17ff3432016-10-14 17:41:45 +0800480spv::Decoration TGlslangToSpvTraverser::TranslateInterpolationDecoration(const glslang::TQualifier& qualifier)
John Kessenich140f3df2015-06-26 16:58:36 -0600481{
Rex Xubbceed72016-05-21 09:40:44 +0800482 if (qualifier.smooth)
John Kessenich55e7d112015-11-15 21:33:39 -0700483 // Smooth decoration doesn't exist in SPIR-V 1.0
John Kessenich4016e382016-07-15 11:53:56 -0600484 return spv::DecorationMax;
John Kessenich7015bd62019-08-01 03:28:08 -0600485 else if (qualifier.isNonPerspective())
John Kessenich55e7d112015-11-15 21:33:39 -0700486 return spv::DecorationNoPerspective;
John Kesseniche0b6cad2015-12-24 10:30:13 -0700487 else if (qualifier.flat)
John Kessenich140f3df2015-06-26 16:58:36 -0600488 return spv::DecorationFlat;
John Kessenicha28f7a72019-08-06 07:00:58 -0600489 else if (qualifier.isExplicitInterpolation()) {
Rex Xu17ff3432016-10-14 17:41:45 +0800490 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
Rex Xu9d93a232016-05-05 12:30:44 +0800491 return spv::DecorationExplicitInterpAMD;
Rex Xu17ff3432016-10-14 17:41:45 +0800492 }
Rex Xubbceed72016-05-21 09:40:44 +0800493 else
John Kessenich4016e382016-07-15 11:53:56 -0600494 return spv::DecorationMax;
Rex Xubbceed72016-05-21 09:40:44 +0800495}
496
497// Translate glslang type to SPIR-V auxiliary storage decorations.
John Kessenich4016e382016-07-15 11:53:56 -0600498// Returns spv::DecorationMax when no decoration
Rex Xubbceed72016-05-21 09:40:44 +0800499// should be applied.
500spv::Decoration TGlslangToSpvTraverser::TranslateAuxiliaryStorageDecoration(const glslang::TQualifier& qualifier)
501{
John Kessenichb9197c82019-08-11 07:41:45 -0600502 if (qualifier.centroid)
John Kessenich140f3df2015-06-26 16:58:36 -0600503 return spv::DecorationCentroid;
John Kessenichb9197c82019-08-11 07:41:45 -0600504#ifndef GLSLANG_WEB
505 else if (qualifier.patch)
506 return spv::DecorationPatch;
John Kessenich5e801132016-02-15 11:09:46 -0700507 else if (qualifier.sample) {
508 builder.addCapability(spv::CapabilitySampleRateShading);
John Kessenich140f3df2015-06-26 16:58:36 -0600509 return spv::DecorationSample;
John Kessenichb9197c82019-08-11 07:41:45 -0600510 }
511#endif
512
513 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600514}
515
John Kessenich92187592016-02-01 13:45:25 -0700516// If glslang type is invariant, return SPIR-V invariant decoration.
John Kesseniche0b6cad2015-12-24 10:30:13 -0700517spv::Decoration TranslateInvariantDecoration(const glslang::TQualifier& qualifier)
John Kessenich140f3df2015-06-26 16:58:36 -0600518{
John Kesseniche0b6cad2015-12-24 10:30:13 -0700519 if (qualifier.invariant)
John Kessenich140f3df2015-06-26 16:58:36 -0600520 return spv::DecorationInvariant;
521 else
John Kessenich4016e382016-07-15 11:53:56 -0600522 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600523}
524
qining9220dbb2016-05-04 17:34:38 -0400525// If glslang type is noContraction, return SPIR-V NoContraction decoration.
526spv::Decoration TranslateNoContractionDecoration(const glslang::TQualifier& qualifier)
527{
John Kessenichb9197c82019-08-11 07:41:45 -0600528#ifndef GLSLANG_WEB
John Kessenicha28f7a72019-08-06 07:00:58 -0600529 if (qualifier.isNoContraction())
qining9220dbb2016-05-04 17:34:38 -0400530 return spv::DecorationNoContraction;
531 else
John Kessenichb9197c82019-08-11 07:41:45 -0600532#endif
John Kessenich4016e382016-07-15 11:53:56 -0600533 return spv::DecorationMax;
qining9220dbb2016-05-04 17:34:38 -0400534}
535
John Kessenich5611c6d2018-04-05 11:25:02 -0600536// If glslang type is nonUniform, return SPIR-V NonUniform decoration.
537spv::Decoration TGlslangToSpvTraverser::TranslateNonUniformDecoration(const glslang::TQualifier& qualifier)
538{
John Kessenichb9197c82019-08-11 07:41:45 -0600539#ifndef GLSLANG_WEB
John Kessenich5611c6d2018-04-05 11:25:02 -0600540 if (qualifier.isNonUniform()) {
John Kessenich8317e6c2019-08-18 23:58:08 -0600541 builder.addIncorporatedExtension("SPV_EXT_descriptor_indexing", spv::Spv_1_5);
John Kessenich5611c6d2018-04-05 11:25:02 -0600542 builder.addCapability(spv::CapabilityShaderNonUniformEXT);
543 return spv::DecorationNonUniformEXT;
544 } else
John Kessenichb9197c82019-08-11 07:41:45 -0600545#endif
John Kessenich5611c6d2018-04-05 11:25:02 -0600546 return spv::DecorationMax;
547}
548
greg-lunarg639f5462020-11-12 11:10:07 -0700549// If lvalue flags contains nonUniform, return SPIR-V NonUniform decoration.
550spv::Decoration TGlslangToSpvTraverser::TranslateNonUniformDecoration(
551 const spv::Builder::AccessChain::CoherentFlags& coherentFlags)
552{
553#ifndef GLSLANG_WEB
554 if (coherentFlags.isNonUniform()) {
555 builder.addIncorporatedExtension("SPV_EXT_descriptor_indexing", spv::Spv_1_5);
556 builder.addCapability(spv::CapabilityShaderNonUniformEXT);
557 return spv::DecorationNonUniformEXT;
558 } else
559#endif
560 return spv::DecorationMax;
561}
562
John Kessenichb9197c82019-08-11 07:41:45 -0600563spv::MemoryAccessMask TGlslangToSpvTraverser::TranslateMemoryAccess(
564 const spv::Builder::AccessChain::CoherentFlags &coherentFlags)
Jeff Bolz36831c92018-09-05 10:11:41 -0500565{
Jeff Bolz36831c92018-09-05 10:11:41 -0500566 spv::MemoryAccessMask mask = spv::MemoryAccessMaskNone;
John Kessenichb9197c82019-08-11 07:41:45 -0600567
568#ifndef GLSLANG_WEB
569 if (!glslangIntermediate->usingVulkanMemoryModel() || coherentFlags.isImage)
570 return mask;
571
Daniel Kochdb32b242020-03-17 20:42:47 -0400572 if (coherentFlags.isVolatile() || coherentFlags.anyCoherent()) {
Jeff Bolz36831c92018-09-05 10:11:41 -0500573 mask = mask | spv::MemoryAccessMakePointerAvailableKHRMask |
574 spv::MemoryAccessMakePointerVisibleKHRMask;
575 }
Daniel Kochdb32b242020-03-17 20:42:47 -0400576
Jeff Bolz36831c92018-09-05 10:11:41 -0500577 if (coherentFlags.nonprivate) {
578 mask = mask | spv::MemoryAccessNonPrivatePointerKHRMask;
579 }
580 if (coherentFlags.volatil) {
581 mask = mask | spv::MemoryAccessVolatileMask;
582 }
583 if (mask != spv::MemoryAccessMaskNone) {
584 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
585 }
John Kessenichb9197c82019-08-11 07:41:45 -0600586#endif
587
Jeff Bolz36831c92018-09-05 10:11:41 -0500588 return mask;
589}
590
John Kessenichb9197c82019-08-11 07:41:45 -0600591spv::ImageOperandsMask TGlslangToSpvTraverser::TranslateImageOperands(
592 const spv::Builder::AccessChain::CoherentFlags &coherentFlags)
Jeff Bolz36831c92018-09-05 10:11:41 -0500593{
Jeff Bolz36831c92018-09-05 10:11:41 -0500594 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
John Kessenichb9197c82019-08-11 07:41:45 -0600595
596#ifndef GLSLANG_WEB
597 if (!glslangIntermediate->usingVulkanMemoryModel())
598 return mask;
599
Jeff Bolz36831c92018-09-05 10:11:41 -0500600 if (coherentFlags.volatil ||
Daniel Kochdb32b242020-03-17 20:42:47 -0400601 coherentFlags.anyCoherent()) {
Jeff Bolz36831c92018-09-05 10:11:41 -0500602 mask = mask | spv::ImageOperandsMakeTexelAvailableKHRMask |
603 spv::ImageOperandsMakeTexelVisibleKHRMask;
604 }
605 if (coherentFlags.nonprivate) {
606 mask = mask | spv::ImageOperandsNonPrivateTexelKHRMask;
607 }
608 if (coherentFlags.volatil) {
609 mask = mask | spv::ImageOperandsVolatileTexelKHRMask;
610 }
611 if (mask != spv::ImageOperandsMaskNone) {
612 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
613 }
John Kessenichb9197c82019-08-11 07:41:45 -0600614#endif
615
Jeff Bolz36831c92018-09-05 10:11:41 -0500616 return mask;
617}
618
619spv::Builder::AccessChain::CoherentFlags TGlslangToSpvTraverser::TranslateCoherent(const glslang::TType& type)
620{
John Kessenichb9197c82019-08-11 07:41:45 -0600621 spv::Builder::AccessChain::CoherentFlags flags = {};
622#ifndef GLSLANG_WEB
Jeff Bolz36831c92018-09-05 10:11:41 -0500623 flags.coherent = type.getQualifier().coherent;
624 flags.devicecoherent = type.getQualifier().devicecoherent;
625 flags.queuefamilycoherent = type.getQualifier().queuefamilycoherent;
626 // shared variables are implicitly workgroupcoherent in GLSL.
627 flags.workgroupcoherent = type.getQualifier().workgroupcoherent ||
628 type.getQualifier().storage == glslang::EvqShared;
629 flags.subgroupcoherent = type.getQualifier().subgroupcoherent;
Daniel Kochdb32b242020-03-17 20:42:47 -0400630 flags.shadercallcoherent = type.getQualifier().shadercallcoherent;
Jeff Bolz38cbad12019-03-05 14:40:07 -0600631 flags.volatil = type.getQualifier().volatil;
Jeff Bolz36831c92018-09-05 10:11:41 -0500632 // *coherent variables are implicitly nonprivate in GLSL
633 flags.nonprivate = type.getQualifier().nonprivate ||
Daniel Kochdb32b242020-03-17 20:42:47 -0400634 flags.anyCoherent() ||
Jeff Bolz38cbad12019-03-05 14:40:07 -0600635 flags.volatil;
Jeff Bolz36831c92018-09-05 10:11:41 -0500636 flags.isImage = type.getBasicType() == glslang::EbtSampler;
John Kessenichb9197c82019-08-11 07:41:45 -0600637#endif
greg-lunarg639f5462020-11-12 11:10:07 -0700638 flags.nonUniform = type.getQualifier().nonUniform;
Jeff Bolz36831c92018-09-05 10:11:41 -0500639 return flags;
640}
641
John Kessenichb9197c82019-08-11 07:41:45 -0600642spv::Scope TGlslangToSpvTraverser::TranslateMemoryScope(
643 const spv::Builder::AccessChain::CoherentFlags &coherentFlags)
Jeff Bolz36831c92018-09-05 10:11:41 -0500644{
John Kessenichb9197c82019-08-11 07:41:45 -0600645 spv::Scope scope = spv::ScopeMax;
646
647#ifndef GLSLANG_WEB
Jeff Bolz38cbad12019-03-05 14:40:07 -0600648 if (coherentFlags.volatil || coherentFlags.coherent) {
Jeff Bolz36831c92018-09-05 10:11:41 -0500649 // coherent defaults to Device scope in the old model, QueueFamilyKHR scope in the new model
650 scope = glslangIntermediate->usingVulkanMemoryModel() ? spv::ScopeQueueFamilyKHR : spv::ScopeDevice;
651 } else if (coherentFlags.devicecoherent) {
652 scope = spv::ScopeDevice;
653 } else if (coherentFlags.queuefamilycoherent) {
654 scope = spv::ScopeQueueFamilyKHR;
655 } else if (coherentFlags.workgroupcoherent) {
656 scope = spv::ScopeWorkgroup;
657 } else if (coherentFlags.subgroupcoherent) {
658 scope = spv::ScopeSubgroup;
Daniel Kochdb32b242020-03-17 20:42:47 -0400659 } else if (coherentFlags.shadercallcoherent) {
660 scope = spv::ScopeShaderCallKHR;
Jeff Bolz36831c92018-09-05 10:11:41 -0500661 }
662 if (glslangIntermediate->usingVulkanMemoryModel() && scope == spv::ScopeDevice) {
663 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
664 }
John Kessenichb9197c82019-08-11 07:41:45 -0600665#endif
666
Jeff Bolz36831c92018-09-05 10:11:41 -0500667 return scope;
668}
669
David Netoa901ffe2016-06-08 14:11:40 +0100670// Translate a glslang built-in variable to a SPIR-V built in decoration. Also generate
671// associated capabilities when required. For some built-in variables, a capability
672// is generated only when using the variable in an executable instruction, but not when
673// just declaring a struct member variable with it. This is true for PointSize,
674// ClipDistance, and CullDistance.
John Kessenich8985fc92020-03-03 10:25:07 -0700675spv::BuiltIn TGlslangToSpvTraverser::TranslateBuiltInDecoration(glslang::TBuiltInVariable builtIn,
676 bool memberDeclaration)
John Kessenich140f3df2015-06-26 16:58:36 -0600677{
678 switch (builtIn) {
John Kessenich92187592016-02-01 13:45:25 -0700679 case glslang::EbvPointSize:
John Kessenich155d3512019-08-08 23:29:20 -0600680#ifndef GLSLANG_WEB
John Kessenich78a45572016-07-08 14:05:15 -0600681 // Defer adding the capability until the built-in is actually used.
682 if (! memberDeclaration) {
683 switch (glslangIntermediate->getStage()) {
684 case EShLangGeometry:
685 builder.addCapability(spv::CapabilityGeometryPointSize);
686 break;
687 case EShLangTessControl:
688 case EShLangTessEvaluation:
689 builder.addCapability(spv::CapabilityTessellationPointSize);
690 break;
691 default:
692 break;
693 }
John Kessenich92187592016-02-01 13:45:25 -0700694 }
John Kessenich155d3512019-08-08 23:29:20 -0600695#endif
John Kessenich92187592016-02-01 13:45:25 -0700696 return spv::BuiltInPointSize;
697
John Kessenicha28f7a72019-08-06 07:00:58 -0600698 case glslang::EbvPosition: return spv::BuiltInPosition;
699 case glslang::EbvVertexId: return spv::BuiltInVertexId;
700 case glslang::EbvInstanceId: return spv::BuiltInInstanceId;
701 case glslang::EbvVertexIndex: return spv::BuiltInVertexIndex;
702 case glslang::EbvInstanceIndex: return spv::BuiltInInstanceIndex;
703
704 case glslang::EbvFragCoord: return spv::BuiltInFragCoord;
705 case glslang::EbvPointCoord: return spv::BuiltInPointCoord;
706 case glslang::EbvFace: return spv::BuiltInFrontFacing;
707 case glslang::EbvFragDepth: return spv::BuiltInFragDepth;
708
John Kessenich3dd1ce52019-10-17 07:08:40 -0600709 case glslang::EbvNumWorkGroups: return spv::BuiltInNumWorkgroups;
710 case glslang::EbvWorkGroupSize: return spv::BuiltInWorkgroupSize;
711 case glslang::EbvWorkGroupId: return spv::BuiltInWorkgroupId;
712 case glslang::EbvLocalInvocationId: return spv::BuiltInLocalInvocationId;
713 case glslang::EbvLocalInvocationIndex: return spv::BuiltInLocalInvocationIndex;
714 case glslang::EbvGlobalInvocationId: return spv::BuiltInGlobalInvocationId;
715
John Kessenicha28f7a72019-08-06 07:00:58 -0600716#ifndef GLSLANG_WEB
John Kessenichebb50532016-05-16 19:22:05 -0600717 // These *Distance capabilities logically belong here, but if the member is declared and
718 // then never used, consumers of SPIR-V prefer the capability not be declared.
719 // They are now generated when used, rather than here when declared.
720 // Potentially, the specification should be more clear what the minimum
721 // use needed is to trigger the capability.
722 //
John Kessenich92187592016-02-01 13:45:25 -0700723 case glslang::EbvClipDistance:
David Netoa901ffe2016-06-08 14:11:40 +0100724 if (!memberDeclaration)
Rex Xu3e783f92017-02-22 16:44:48 +0800725 builder.addCapability(spv::CapabilityClipDistance);
John Kessenich92187592016-02-01 13:45:25 -0700726 return spv::BuiltInClipDistance;
727
728 case glslang::EbvCullDistance:
David Netoa901ffe2016-06-08 14:11:40 +0100729 if (!memberDeclaration)
Rex Xu3e783f92017-02-22 16:44:48 +0800730 builder.addCapability(spv::CapabilityCullDistance);
John Kessenich92187592016-02-01 13:45:25 -0700731 return spv::BuiltInCullDistance;
732
733 case glslang::EbvViewportIndex:
David Netofb53f832020-11-12 15:00:16 -0500734 if (glslangIntermediate->getStage() == EShLangGeometry ||
735 glslangIntermediate->getStage() == EShLangFragment) {
736 builder.addCapability(spv::CapabilityMultiViewport);
737 }
John Kessenichba6a3c22017-09-13 13:22:50 -0600738 if (glslangIntermediate->getStage() == EShLangVertex ||
739 glslangIntermediate->getStage() == EShLangTessControl ||
740 glslangIntermediate->getStage() == EShLangTessEvaluation) {
Rex Xu5e317ff2017-03-16 23:02:39 +0800741
Sidney Just56350ca2020-11-02 11:27:40 -0800742 if (builder.getSpvVersion() < spv::Spv_1_5) {
743 builder.addIncorporatedExtension(spv::E_SPV_EXT_shader_viewport_index_layer, spv::Spv_1_5);
744 builder.addCapability(spv::CapabilityShaderViewportIndexLayerEXT);
745 }
746 else
747 builder.addCapability(spv::CapabilityShaderViewportIndex);
Rex Xu5e317ff2017-03-16 23:02:39 +0800748 }
John Kessenich92187592016-02-01 13:45:25 -0700749 return spv::BuiltInViewportIndex;
750
John Kessenich5e801132016-02-15 11:09:46 -0700751 case glslang::EbvSampleId:
752 builder.addCapability(spv::CapabilitySampleRateShading);
753 return spv::BuiltInSampleId;
754
755 case glslang::EbvSamplePosition:
756 builder.addCapability(spv::CapabilitySampleRateShading);
757 return spv::BuiltInSamplePosition;
758
759 case glslang::EbvSampleMask:
John Kessenich5e801132016-02-15 11:09:46 -0700760 return spv::BuiltInSampleMask;
761
John Kessenich78a45572016-07-08 14:05:15 -0600762 case glslang::EbvLayer:
Chao Chen3c366992018-09-19 11:41:59 -0700763 if (glslangIntermediate->getStage() == EShLangMeshNV) {
764 return spv::BuiltInLayer;
765 }
David Netofb53f832020-11-12 15:00:16 -0500766 if (glslangIntermediate->getStage() == EShLangGeometry ||
767 glslangIntermediate->getStage() == EShLangFragment) {
768 builder.addCapability(spv::CapabilityGeometry);
769 }
John Kessenichba6a3c22017-09-13 13:22:50 -0600770 if (glslangIntermediate->getStage() == EShLangVertex ||
771 glslangIntermediate->getStage() == EShLangTessControl ||
772 glslangIntermediate->getStage() == EShLangTessEvaluation) {
Rex Xu5e317ff2017-03-16 23:02:39 +0800773
Sidney Just56350ca2020-11-02 11:27:40 -0800774 if (builder.getSpvVersion() < spv::Spv_1_5) {
775 builder.addIncorporatedExtension(spv::E_SPV_EXT_shader_viewport_index_layer, spv::Spv_1_5);
776 builder.addCapability(spv::CapabilityShaderViewportIndexLayerEXT);
777 } else
778 builder.addCapability(spv::CapabilityShaderLayer);
Rex Xu5e317ff2017-03-16 23:02:39 +0800779 }
John Kessenich78a45572016-07-08 14:05:15 -0600780 return spv::BuiltInLayer;
781
John Kessenichda581a22015-10-14 14:10:30 -0600782 case glslang::EbvBaseVertex:
John Kessenich8317e6c2019-08-18 23:58:08 -0600783 builder.addIncorporatedExtension(spv::E_SPV_KHR_shader_draw_parameters, spv::Spv_1_3);
Rex Xuf3b27472016-07-22 18:15:31 +0800784 builder.addCapability(spv::CapabilityDrawParameters);
785 return spv::BuiltInBaseVertex;
786
John Kessenichda581a22015-10-14 14:10:30 -0600787 case glslang::EbvBaseInstance:
John Kessenich8317e6c2019-08-18 23:58:08 -0600788 builder.addIncorporatedExtension(spv::E_SPV_KHR_shader_draw_parameters, spv::Spv_1_3);
Rex Xuf3b27472016-07-22 18:15:31 +0800789 builder.addCapability(spv::CapabilityDrawParameters);
790 return spv::BuiltInBaseInstance;
Maciej Jesionowski04b3e872016-09-26 16:49:09 +0200791
John Kessenichda581a22015-10-14 14:10:30 -0600792 case glslang::EbvDrawId:
John Kessenich8317e6c2019-08-18 23:58:08 -0600793 builder.addIncorporatedExtension(spv::E_SPV_KHR_shader_draw_parameters, spv::Spv_1_3);
Rex Xuf3b27472016-07-22 18:15:31 +0800794 builder.addCapability(spv::CapabilityDrawParameters);
795 return spv::BuiltInDrawIndex;
Maciej Jesionowski04b3e872016-09-26 16:49:09 +0200796
797 case glslang::EbvPrimitiveId:
798 if (glslangIntermediate->getStage() == EShLangFragment)
799 builder.addCapability(spv::CapabilityGeometry);
800 return spv::BuiltInPrimitiveId;
801
Rex Xu37cdcee2017-06-29 17:46:34 +0800802 case glslang::EbvFragStencilRef:
Rex Xue8fdd792017-08-23 23:24:42 +0800803 builder.addExtension(spv::E_SPV_EXT_shader_stencil_export);
804 builder.addCapability(spv::CapabilityStencilExportEXT);
805 return spv::BuiltInFragStencilRefEXT;
Rex Xu37cdcee2017-06-29 17:46:34 +0800806
Chowa315b562020-07-02 15:50:36 +0800807 case glslang::EbvShadingRateKHR:
808 builder.addExtension(spv::E_SPV_KHR_fragment_shading_rate);
809 builder.addCapability(spv::CapabilityFragmentShadingRateKHR);
810 return spv::BuiltInShadingRateKHR;
811
812 case glslang::EbvPrimitiveShadingRateKHR:
813 builder.addExtension(spv::E_SPV_KHR_fragment_shading_rate);
814 builder.addCapability(spv::CapabilityFragmentShadingRateKHR);
815 return spv::BuiltInPrimitiveShadingRateKHR;
816
John Kessenich140f3df2015-06-26 16:58:36 -0600817 case glslang::EbvInvocationId: return spv::BuiltInInvocationId;
John Kessenich140f3df2015-06-26 16:58:36 -0600818 case glslang::EbvTessLevelInner: return spv::BuiltInTessLevelInner;
819 case glslang::EbvTessLevelOuter: return spv::BuiltInTessLevelOuter;
820 case glslang::EbvTessCoord: return spv::BuiltInTessCoord;
821 case glslang::EbvPatchVertices: return spv::BuiltInPatchVertices;
John Kessenich140f3df2015-06-26 16:58:36 -0600822 case glslang::EbvHelperInvocation: return spv::BuiltInHelperInvocation;
Rex Xu51596642016-09-21 18:56:12 +0800823
Rex Xu574ab042016-04-14 16:53:07 +0800824 case glslang::EbvSubGroupSize:
Rex Xu36876e62016-09-23 22:13:43 +0800825 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
Rex Xu51596642016-09-21 18:56:12 +0800826 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
827 return spv::BuiltInSubgroupSize;
828
Rex Xu574ab042016-04-14 16:53:07 +0800829 case glslang::EbvSubGroupInvocation:
Rex Xu36876e62016-09-23 22:13:43 +0800830 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
Rex Xu51596642016-09-21 18:56:12 +0800831 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
832 return spv::BuiltInSubgroupLocalInvocationId;
833
Rex Xu574ab042016-04-14 16:53:07 +0800834 case glslang::EbvSubGroupEqMask:
Rex Xu51596642016-09-21 18:56:12 +0800835 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
836 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
John Kessenich9c14f772019-06-17 08:38:35 -0600837 return spv::BuiltInSubgroupEqMask;
Rex Xu51596642016-09-21 18:56:12 +0800838
Rex Xu574ab042016-04-14 16:53:07 +0800839 case glslang::EbvSubGroupGeMask:
Rex Xu51596642016-09-21 18:56:12 +0800840 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
841 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
John Kessenich9c14f772019-06-17 08:38:35 -0600842 return spv::BuiltInSubgroupGeMask;
Rex Xu51596642016-09-21 18:56:12 +0800843
Rex Xu574ab042016-04-14 16:53:07 +0800844 case glslang::EbvSubGroupGtMask:
Rex Xu51596642016-09-21 18:56:12 +0800845 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
846 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
John Kessenich9c14f772019-06-17 08:38:35 -0600847 return spv::BuiltInSubgroupGtMask;
Rex Xu51596642016-09-21 18:56:12 +0800848
Rex Xu574ab042016-04-14 16:53:07 +0800849 case glslang::EbvSubGroupLeMask:
Rex Xu51596642016-09-21 18:56:12 +0800850 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
851 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
John Kessenich9c14f772019-06-17 08:38:35 -0600852 return spv::BuiltInSubgroupLeMask;
Rex Xu51596642016-09-21 18:56:12 +0800853
Rex Xu574ab042016-04-14 16:53:07 +0800854 case glslang::EbvSubGroupLtMask:
Rex Xu51596642016-09-21 18:56:12 +0800855 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
856 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
John Kessenich9c14f772019-06-17 08:38:35 -0600857 return spv::BuiltInSubgroupLtMask;
Rex Xu51596642016-09-21 18:56:12 +0800858
John Kessenich66011cb2018-03-06 16:12:04 -0700859 case glslang::EbvNumSubgroups:
860 builder.addCapability(spv::CapabilityGroupNonUniform);
861 return spv::BuiltInNumSubgroups;
862
863 case glslang::EbvSubgroupID:
864 builder.addCapability(spv::CapabilityGroupNonUniform);
865 return spv::BuiltInSubgroupId;
866
867 case glslang::EbvSubgroupSize2:
868 builder.addCapability(spv::CapabilityGroupNonUniform);
869 return spv::BuiltInSubgroupSize;
870
871 case glslang::EbvSubgroupInvocation2:
872 builder.addCapability(spv::CapabilityGroupNonUniform);
873 return spv::BuiltInSubgroupLocalInvocationId;
874
875 case glslang::EbvSubgroupEqMask2:
876 builder.addCapability(spv::CapabilityGroupNonUniform);
877 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
878 return spv::BuiltInSubgroupEqMask;
879
880 case glslang::EbvSubgroupGeMask2:
881 builder.addCapability(spv::CapabilityGroupNonUniform);
882 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
883 return spv::BuiltInSubgroupGeMask;
884
885 case glslang::EbvSubgroupGtMask2:
886 builder.addCapability(spv::CapabilityGroupNonUniform);
887 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
888 return spv::BuiltInSubgroupGtMask;
889
890 case glslang::EbvSubgroupLeMask2:
891 builder.addCapability(spv::CapabilityGroupNonUniform);
892 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
893 return spv::BuiltInSubgroupLeMask;
894
895 case glslang::EbvSubgroupLtMask2:
896 builder.addCapability(spv::CapabilityGroupNonUniform);
897 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
898 return spv::BuiltInSubgroupLtMask;
John Kessenich9c14f772019-06-17 08:38:35 -0600899
Rex Xu17ff3432016-10-14 17:41:45 +0800900 case glslang::EbvBaryCoordNoPersp:
901 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
902 return spv::BuiltInBaryCoordNoPerspAMD;
903
904 case glslang::EbvBaryCoordNoPerspCentroid:
905 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
906 return spv::BuiltInBaryCoordNoPerspCentroidAMD;
907
908 case glslang::EbvBaryCoordNoPerspSample:
909 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
910 return spv::BuiltInBaryCoordNoPerspSampleAMD;
911
912 case glslang::EbvBaryCoordSmooth:
913 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
914 return spv::BuiltInBaryCoordSmoothAMD;
915
916 case glslang::EbvBaryCoordSmoothCentroid:
917 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
918 return spv::BuiltInBaryCoordSmoothCentroidAMD;
919
920 case glslang::EbvBaryCoordSmoothSample:
921 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
922 return spv::BuiltInBaryCoordSmoothSampleAMD;
923
924 case glslang::EbvBaryCoordPullModel:
925 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
926 return spv::BuiltInBaryCoordPullModelAMD;
chaoc771d89f2017-01-13 01:10:53 -0800927
John Kessenich6c8aaac2017-02-27 01:20:51 -0700928 case glslang::EbvDeviceIndex:
John Kessenich8317e6c2019-08-18 23:58:08 -0600929 builder.addIncorporatedExtension(spv::E_SPV_KHR_device_group, spv::Spv_1_3);
John Kessenich6c8aaac2017-02-27 01:20:51 -0700930 builder.addCapability(spv::CapabilityDeviceGroup);
John Kessenich42e33c92017-02-27 01:50:28 -0700931 return spv::BuiltInDeviceIndex;
John Kessenich6c8aaac2017-02-27 01:20:51 -0700932
933 case glslang::EbvViewIndex:
John Kessenich8317e6c2019-08-18 23:58:08 -0600934 builder.addIncorporatedExtension(spv::E_SPV_KHR_multiview, spv::Spv_1_3);
John Kessenich6c8aaac2017-02-27 01:20:51 -0700935 builder.addCapability(spv::CapabilityMultiView);
John Kessenich42e33c92017-02-27 01:50:28 -0700936 return spv::BuiltInViewIndex;
John Kessenich6c8aaac2017-02-27 01:20:51 -0700937
Daniel Koch5154db52018-11-26 10:01:58 -0500938 case glslang::EbvFragSizeEXT:
939 builder.addExtension(spv::E_SPV_EXT_fragment_invocation_density);
940 builder.addCapability(spv::CapabilityFragmentDensityEXT);
941 return spv::BuiltInFragSizeEXT;
942
943 case glslang::EbvFragInvocationCountEXT:
944 builder.addExtension(spv::E_SPV_EXT_fragment_invocation_density);
945 builder.addCapability(spv::CapabilityFragmentDensityEXT);
946 return spv::BuiltInFragInvocationCountEXT;
947
chaoc771d89f2017-01-13 01:10:53 -0800948 case glslang::EbvViewportMaskNV:
Rex Xu5e317ff2017-03-16 23:02:39 +0800949 if (!memberDeclaration) {
950 builder.addExtension(spv::E_SPV_NV_viewport_array2);
951 builder.addCapability(spv::CapabilityShaderViewportMaskNV);
952 }
chaoc771d89f2017-01-13 01:10:53 -0800953 return spv::BuiltInViewportMaskNV;
954 case glslang::EbvSecondaryPositionNV:
Rex Xu3e783f92017-02-22 16:44:48 +0800955 if (!memberDeclaration) {
956 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
957 builder.addCapability(spv::CapabilityShaderStereoViewNV);
958 }
chaoc771d89f2017-01-13 01:10:53 -0800959 return spv::BuiltInSecondaryPositionNV;
960 case glslang::EbvSecondaryViewportMaskNV:
Rex Xu3e783f92017-02-22 16:44:48 +0800961 if (!memberDeclaration) {
962 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
963 builder.addCapability(spv::CapabilityShaderStereoViewNV);
964 }
chaoc771d89f2017-01-13 01:10:53 -0800965 return spv::BuiltInSecondaryViewportMaskNV;
chaocdf3956c2017-02-14 14:52:34 -0800966 case glslang::EbvPositionPerViewNV:
Rex Xu3e783f92017-02-22 16:44:48 +0800967 if (!memberDeclaration) {
968 builder.addExtension(spv::E_SPV_NVX_multiview_per_view_attributes);
969 builder.addCapability(spv::CapabilityPerViewAttributesNV);
970 }
chaocdf3956c2017-02-14 14:52:34 -0800971 return spv::BuiltInPositionPerViewNV;
972 case glslang::EbvViewportMaskPerViewNV:
Rex Xu3e783f92017-02-22 16:44:48 +0800973 if (!memberDeclaration) {
974 builder.addExtension(spv::E_SPV_NVX_multiview_per_view_attributes);
975 builder.addCapability(spv::CapabilityPerViewAttributesNV);
976 }
chaocdf3956c2017-02-14 14:52:34 -0800977 return spv::BuiltInViewportMaskPerViewNV;
Piers Daniell1c5443c2017-12-13 13:07:22 -0700978 case glslang::EbvFragFullyCoveredNV:
979 builder.addExtension(spv::E_SPV_EXT_fragment_fully_covered);
980 builder.addCapability(spv::CapabilityFragmentFullyCoveredEXT);
981 return spv::BuiltInFullyCoveredEXT;
Chao Chen5b2203d2018-09-19 11:43:21 -0700982 case glslang::EbvFragmentSizeNV:
983 builder.addExtension(spv::E_SPV_NV_shading_rate);
984 builder.addCapability(spv::CapabilityShadingRateNV);
985 return spv::BuiltInFragmentSizeNV;
986 case glslang::EbvInvocationsPerPixelNV:
987 builder.addExtension(spv::E_SPV_NV_shading_rate);
988 builder.addCapability(spv::CapabilityShadingRateNV);
989 return spv::BuiltInInvocationsPerPixelNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700990
Daniel Koch593a4e02019-05-27 16:46:31 -0400991 // ray tracing
Daniel Kochdb32b242020-03-17 20:42:47 -0400992 case glslang::EbvLaunchId:
993 return spv::BuiltInLaunchIdKHR;
994 case glslang::EbvLaunchSize:
995 return spv::BuiltInLaunchSizeKHR;
996 case glslang::EbvWorldRayOrigin:
997 return spv::BuiltInWorldRayOriginKHR;
998 case glslang::EbvWorldRayDirection:
999 return spv::BuiltInWorldRayDirectionKHR;
1000 case glslang::EbvObjectRayOrigin:
1001 return spv::BuiltInObjectRayOriginKHR;
1002 case glslang::EbvObjectRayDirection:
1003 return spv::BuiltInObjectRayDirectionKHR;
1004 case glslang::EbvRayTmin:
1005 return spv::BuiltInRayTminKHR;
1006 case glslang::EbvRayTmax:
1007 return spv::BuiltInRayTmaxKHR;
1008 case glslang::EbvInstanceCustomIndex:
1009 return spv::BuiltInInstanceCustomIndexKHR;
1010 case glslang::EbvHitT:
Daniel Koche11a2c82020-11-30 11:57:34 -05001011 {
1012 // this is a GLSL alias of RayTmax
1013 // in SPV_NV_ray_tracing it has a dedicated builtin
1014 // but in SPV_KHR_ray_tracing it gets mapped to RayTmax
1015 auto& extensions = glslangIntermediate->getRequestedExtensions();
1016 if (extensions.find("GL_NV_ray_tracing") != extensions.end()) {
1017 return spv::BuiltInHitTNV;
1018 } else {
1019 return spv::BuiltInRayTmaxKHR;
1020 }
1021 }
Daniel Kochdb32b242020-03-17 20:42:47 -04001022 case glslang::EbvHitKind:
1023 return spv::BuiltInHitKindKHR;
1024 case glslang::EbvObjectToWorld:
1025 case glslang::EbvObjectToWorld3x4:
1026 return spv::BuiltInObjectToWorldKHR;
1027 case glslang::EbvWorldToObject:
1028 case glslang::EbvWorldToObject3x4:
1029 return spv::BuiltInWorldToObjectKHR;
1030 case glslang::EbvIncomingRayFlags:
1031 return spv::BuiltInIncomingRayFlagsKHR;
1032 case glslang::EbvGeometryIndex:
1033 return spv::BuiltInRayGeometryIndexKHR;
Daniel Koch593a4e02019-05-27 16:46:31 -04001034
1035 // barycentrics
Chao Chen9eada4b2018-09-19 11:39:56 -07001036 case glslang::EbvBaryCoordNV:
1037 builder.addExtension(spv::E_SPV_NV_fragment_shader_barycentric);
1038 builder.addCapability(spv::CapabilityFragmentBarycentricNV);
1039 return spv::BuiltInBaryCoordNV;
1040 case glslang::EbvBaryCoordNoPerspNV:
1041 builder.addExtension(spv::E_SPV_NV_fragment_shader_barycentric);
1042 builder.addCapability(spv::CapabilityFragmentBarycentricNV);
1043 return spv::BuiltInBaryCoordNoPerspNV;
Daniel Koch593a4e02019-05-27 16:46:31 -04001044
1045 // mesh shaders
1046 case glslang::EbvTaskCountNV:
Chao Chen3c366992018-09-19 11:41:59 -07001047 return spv::BuiltInTaskCountNV;
Daniel Koch593a4e02019-05-27 16:46:31 -04001048 case glslang::EbvPrimitiveCountNV:
Chao Chen3c366992018-09-19 11:41:59 -07001049 return spv::BuiltInPrimitiveCountNV;
Daniel Koch593a4e02019-05-27 16:46:31 -04001050 case glslang::EbvPrimitiveIndicesNV:
Chao Chen3c366992018-09-19 11:41:59 -07001051 return spv::BuiltInPrimitiveIndicesNV;
Daniel Koch593a4e02019-05-27 16:46:31 -04001052 case glslang::EbvClipDistancePerViewNV:
Chao Chen3c366992018-09-19 11:41:59 -07001053 return spv::BuiltInClipDistancePerViewNV;
Daniel Koch593a4e02019-05-27 16:46:31 -04001054 case glslang::EbvCullDistancePerViewNV:
Chao Chen3c366992018-09-19 11:41:59 -07001055 return spv::BuiltInCullDistancePerViewNV;
Daniel Koch593a4e02019-05-27 16:46:31 -04001056 case glslang::EbvLayerPerViewNV:
Chao Chen3c366992018-09-19 11:41:59 -07001057 return spv::BuiltInLayerPerViewNV;
Daniel Koch593a4e02019-05-27 16:46:31 -04001058 case glslang::EbvMeshViewCountNV:
Chao Chen3c366992018-09-19 11:41:59 -07001059 return spv::BuiltInMeshViewCountNV;
Daniel Koch593a4e02019-05-27 16:46:31 -04001060 case glslang::EbvMeshViewIndicesNV:
Chao Chen3c366992018-09-19 11:41:59 -07001061 return spv::BuiltInMeshViewIndicesNV;
Daniel Koch2cb2f192019-06-04 08:43:32 -04001062
1063 // sm builtins
1064 case glslang::EbvWarpsPerSM:
1065 builder.addExtension(spv::E_SPV_NV_shader_sm_builtins);
1066 builder.addCapability(spv::CapabilityShaderSMBuiltinsNV);
1067 return spv::BuiltInWarpsPerSMNV;
1068 case glslang::EbvSMCount:
1069 builder.addExtension(spv::E_SPV_NV_shader_sm_builtins);
1070 builder.addCapability(spv::CapabilityShaderSMBuiltinsNV);
1071 return spv::BuiltInSMCountNV;
1072 case glslang::EbvWarpID:
1073 builder.addExtension(spv::E_SPV_NV_shader_sm_builtins);
1074 builder.addCapability(spv::CapabilityShaderSMBuiltinsNV);
1075 return spv::BuiltInWarpIDNV;
1076 case glslang::EbvSMID:
1077 builder.addExtension(spv::E_SPV_NV_shader_sm_builtins);
1078 builder.addCapability(spv::CapabilityShaderSMBuiltinsNV);
1079 return spv::BuiltInSMIDNV;
John Kessenicha28f7a72019-08-06 07:00:58 -06001080#endif
1081
Rex Xu3e783f92017-02-22 16:44:48 +08001082 default:
1083 return spv::BuiltInMax;
John Kessenich140f3df2015-06-26 16:58:36 -06001084 }
1085}
1086
Rex Xufc618912015-09-09 16:42:49 +08001087// Translate glslang image layout format to SPIR-V image format.
John Kessenich5d0fa972016-02-15 11:57:00 -07001088spv::ImageFormat TGlslangToSpvTraverser::TranslateImageFormat(const glslang::TType& type)
Rex Xufc618912015-09-09 16:42:49 +08001089{
1090 assert(type.getBasicType() == glslang::EbtSampler);
1091
John Kessenichb9197c82019-08-11 07:41:45 -06001092#ifdef GLSLANG_WEB
1093 return spv::ImageFormatUnknown;
1094#endif
1095
John Kessenich5d0fa972016-02-15 11:57:00 -07001096 // Check for capabilities
John Kessenich7015bd62019-08-01 03:28:08 -06001097 switch (type.getQualifier().getFormat()) {
John Kessenich5d0fa972016-02-15 11:57:00 -07001098 case glslang::ElfRg32f:
1099 case glslang::ElfRg16f:
1100 case glslang::ElfR11fG11fB10f:
1101 case glslang::ElfR16f:
1102 case glslang::ElfRgba16:
1103 case glslang::ElfRgb10A2:
1104 case glslang::ElfRg16:
1105 case glslang::ElfRg8:
1106 case glslang::ElfR16:
1107 case glslang::ElfR8:
1108 case glslang::ElfRgba16Snorm:
1109 case glslang::ElfRg16Snorm:
1110 case glslang::ElfRg8Snorm:
1111 case glslang::ElfR16Snorm:
1112 case glslang::ElfR8Snorm:
1113
1114 case glslang::ElfRg32i:
1115 case glslang::ElfRg16i:
1116 case glslang::ElfRg8i:
1117 case glslang::ElfR16i:
1118 case glslang::ElfR8i:
1119
1120 case glslang::ElfRgb10a2ui:
1121 case glslang::ElfRg32ui:
1122 case glslang::ElfRg16ui:
1123 case glslang::ElfRg8ui:
1124 case glslang::ElfR16ui:
1125 case glslang::ElfR8ui:
1126 builder.addCapability(spv::CapabilityStorageImageExtendedFormats);
1127 break;
1128
Tobski8c1a3a02020-11-04 16:24:23 +00001129 case glslang::ElfR64ui:
1130 case glslang::ElfR64i:
1131 builder.addExtension(spv::E_SPV_EXT_shader_image_int64);
1132 builder.addCapability(spv::CapabilityInt64ImageEXT);
John Kessenich5d0fa972016-02-15 11:57:00 -07001133 default:
1134 break;
1135 }
1136
1137 // do the translation
John Kessenich7015bd62019-08-01 03:28:08 -06001138 switch (type.getQualifier().getFormat()) {
Rex Xufc618912015-09-09 16:42:49 +08001139 case glslang::ElfNone: return spv::ImageFormatUnknown;
1140 case glslang::ElfRgba32f: return spv::ImageFormatRgba32f;
1141 case glslang::ElfRgba16f: return spv::ImageFormatRgba16f;
1142 case glslang::ElfR32f: return spv::ImageFormatR32f;
1143 case glslang::ElfRgba8: return spv::ImageFormatRgba8;
1144 case glslang::ElfRgba8Snorm: return spv::ImageFormatRgba8Snorm;
1145 case glslang::ElfRg32f: return spv::ImageFormatRg32f;
1146 case glslang::ElfRg16f: return spv::ImageFormatRg16f;
1147 case glslang::ElfR11fG11fB10f: return spv::ImageFormatR11fG11fB10f;
1148 case glslang::ElfR16f: return spv::ImageFormatR16f;
1149 case glslang::ElfRgba16: return spv::ImageFormatRgba16;
1150 case glslang::ElfRgb10A2: return spv::ImageFormatRgb10A2;
1151 case glslang::ElfRg16: return spv::ImageFormatRg16;
1152 case glslang::ElfRg8: return spv::ImageFormatRg8;
1153 case glslang::ElfR16: return spv::ImageFormatR16;
1154 case glslang::ElfR8: return spv::ImageFormatR8;
1155 case glslang::ElfRgba16Snorm: return spv::ImageFormatRgba16Snorm;
1156 case glslang::ElfRg16Snorm: return spv::ImageFormatRg16Snorm;
1157 case glslang::ElfRg8Snorm: return spv::ImageFormatRg8Snorm;
1158 case glslang::ElfR16Snorm: return spv::ImageFormatR16Snorm;
1159 case glslang::ElfR8Snorm: return spv::ImageFormatR8Snorm;
1160 case glslang::ElfRgba32i: return spv::ImageFormatRgba32i;
1161 case glslang::ElfRgba16i: return spv::ImageFormatRgba16i;
1162 case glslang::ElfRgba8i: return spv::ImageFormatRgba8i;
1163 case glslang::ElfR32i: return spv::ImageFormatR32i;
1164 case glslang::ElfRg32i: return spv::ImageFormatRg32i;
1165 case glslang::ElfRg16i: return spv::ImageFormatRg16i;
1166 case glslang::ElfRg8i: return spv::ImageFormatRg8i;
1167 case glslang::ElfR16i: return spv::ImageFormatR16i;
1168 case glslang::ElfR8i: return spv::ImageFormatR8i;
1169 case glslang::ElfRgba32ui: return spv::ImageFormatRgba32ui;
1170 case glslang::ElfRgba16ui: return spv::ImageFormatRgba16ui;
1171 case glslang::ElfRgba8ui: return spv::ImageFormatRgba8ui;
1172 case glslang::ElfR32ui: return spv::ImageFormatR32ui;
1173 case glslang::ElfRg32ui: return spv::ImageFormatRg32ui;
1174 case glslang::ElfRg16ui: return spv::ImageFormatRg16ui;
1175 case glslang::ElfRgb10a2ui: return spv::ImageFormatRgb10a2ui;
1176 case glslang::ElfRg8ui: return spv::ImageFormatRg8ui;
1177 case glslang::ElfR16ui: return spv::ImageFormatR16ui;
1178 case glslang::ElfR8ui: return spv::ImageFormatR8ui;
Tobski8c1a3a02020-11-04 16:24:23 +00001179 case glslang::ElfR64ui: return spv::ImageFormatR64ui;
1180 case glslang::ElfR64i: return spv::ImageFormatR64i;
John Kessenich4016e382016-07-15 11:53:56 -06001181 default: return spv::ImageFormatMax;
Rex Xufc618912015-09-09 16:42:49 +08001182 }
1183}
1184
John Kessenich8985fc92020-03-03 10:25:07 -07001185spv::SelectionControlMask TGlslangToSpvTraverser::TranslateSelectionControl(
1186 const glslang::TIntermSelection& selectionNode) const
Rex Xu57e65922017-07-04 23:23:40 +08001187{
John Kesseniche18fd202018-01-30 11:01:39 -07001188 if (selectionNode.getFlatten())
1189 return spv::SelectionControlFlattenMask;
1190 if (selectionNode.getDontFlatten())
1191 return spv::SelectionControlDontFlattenMask;
1192 return spv::SelectionControlMaskNone;
Rex Xu57e65922017-07-04 23:23:40 +08001193}
1194
John Kessenich8985fc92020-03-03 10:25:07 -07001195spv::SelectionControlMask TGlslangToSpvTraverser::TranslateSwitchControl(const glslang::TIntermSwitch& switchNode)
1196 const
steve-lunargf1709e72017-05-02 20:14:50 -06001197{
John Kesseniche18fd202018-01-30 11:01:39 -07001198 if (switchNode.getFlatten())
1199 return spv::SelectionControlFlattenMask;
1200 if (switchNode.getDontFlatten())
1201 return spv::SelectionControlDontFlattenMask;
1202 return spv::SelectionControlMaskNone;
1203}
1204
John Kessenicha2858d92018-01-31 08:11:18 -07001205// return a non-0 dependency if the dependency argument must be set
1206spv::LoopControlMask TGlslangToSpvTraverser::TranslateLoopControl(const glslang::TIntermLoop& loopNode,
John Kessenich1f4d0462019-01-12 17:31:41 +07001207 std::vector<unsigned int>& operands) const
John Kesseniche18fd202018-01-30 11:01:39 -07001208{
1209 spv::LoopControlMask control = spv::LoopControlMaskNone;
1210
1211 if (loopNode.getDontUnroll())
1212 control = control | spv::LoopControlDontUnrollMask;
1213 if (loopNode.getUnroll())
1214 control = control | spv::LoopControlUnrollMask;
LoopDawg4425f242018-02-18 11:40:01 -07001215 if (unsigned(loopNode.getLoopDependency()) == glslang::TIntermLoop::dependencyInfinite)
John Kessenicha2858d92018-01-31 08:11:18 -07001216 control = control | spv::LoopControlDependencyInfiniteMask;
1217 else if (loopNode.getLoopDependency() > 0) {
1218 control = control | spv::LoopControlDependencyLengthMask;
John Kessenich1f4d0462019-01-12 17:31:41 +07001219 operands.push_back((unsigned int)loopNode.getLoopDependency());
1220 }
1221 if (glslangIntermediate->getSpv().spv >= glslang::EShTargetSpv_1_4) {
1222 if (loopNode.getMinIterations() > 0) {
1223 control = control | spv::LoopControlMinIterationsMask;
1224 operands.push_back(loopNode.getMinIterations());
1225 }
1226 if (loopNode.getMaxIterations() < glslang::TIntermLoop::iterationsInfinite) {
1227 control = control | spv::LoopControlMaxIterationsMask;
1228 operands.push_back(loopNode.getMaxIterations());
1229 }
1230 if (loopNode.getIterationMultiple() > 1) {
1231 control = control | spv::LoopControlIterationMultipleMask;
1232 operands.push_back(loopNode.getIterationMultiple());
1233 }
1234 if (loopNode.getPeelCount() > 0) {
1235 control = control | spv::LoopControlPeelCountMask;
1236 operands.push_back(loopNode.getPeelCount());
1237 }
1238 if (loopNode.getPartialCount() > 0) {
1239 control = control | spv::LoopControlPartialCountMask;
1240 operands.push_back(loopNode.getPartialCount());
1241 }
John Kessenicha2858d92018-01-31 08:11:18 -07001242 }
John Kesseniche18fd202018-01-30 11:01:39 -07001243
1244 return control;
steve-lunargf1709e72017-05-02 20:14:50 -06001245}
1246
John Kessenicha5c5fb62017-05-05 05:09:58 -06001247// Translate glslang type to SPIR-V storage class.
1248spv::StorageClass TGlslangToSpvTraverser::TranslateStorageClass(const glslang::TType& type)
1249{
Torosdagli06c2eee2020-03-19 11:09:57 -04001250 if (type.getBasicType() == glslang::EbtRayQuery)
Daniel Kochffccefd2020-11-23 15:41:27 -05001251 return spv::StorageClassPrivate;
John Kessenicha5c5fb62017-05-05 05:09:58 -06001252 if (type.getQualifier().isPipeInput())
1253 return spv::StorageClassInput;
John Kessenichbed4e4f2017-09-08 02:38:07 -06001254 if (type.getQualifier().isPipeOutput())
John Kessenicha5c5fb62017-05-05 05:09:58 -06001255 return spv::StorageClassOutput;
John Kessenichbed4e4f2017-09-08 02:38:07 -06001256
1257 if (glslangIntermediate->getSource() != glslang::EShSourceHlsl ||
John Kessenicha28f7a72019-08-06 07:00:58 -06001258 type.getQualifier().storage == glslang::EvqUniform) {
John Kessenichdeec1932019-08-13 08:00:30 -06001259 if (type.isAtomic())
John Kessenichbed4e4f2017-09-08 02:38:07 -06001260 return spv::StorageClassAtomicCounter;
1261 if (type.containsOpaque())
1262 return spv::StorageClassUniformConstant;
1263 }
1264
Jeff Bolz61a0cd12018-12-14 20:59:53 -06001265 if (type.getQualifier().isUniformOrBuffer() &&
Daniel Kochdb32b242020-03-17 20:42:47 -04001266 type.getQualifier().isShaderRecord()) {
1267 return spv::StorageClassShaderRecordBufferKHR;
Jeff Bolz61a0cd12018-12-14 20:59:53 -06001268 }
Jeff Bolz61a0cd12018-12-14 20:59:53 -06001269
John Kessenichbed4e4f2017-09-08 02:38:07 -06001270 if (glslangIntermediate->usingStorageBuffer() && type.getQualifier().storage == glslang::EvqBuffer) {
John Kessenich8317e6c2019-08-18 23:58:08 -06001271 builder.addIncorporatedExtension(spv::E_SPV_KHR_storage_buffer_storage_class, spv::Spv_1_3);
John Kessenicha5c5fb62017-05-05 05:09:58 -06001272 return spv::StorageClassStorageBuffer;
John Kessenichbed4e4f2017-09-08 02:38:07 -06001273 }
1274
1275 if (type.getQualifier().isUniformOrBuffer()) {
John Kessenich7015bd62019-08-01 03:28:08 -06001276 if (type.getQualifier().isPushConstant())
John Kessenicha5c5fb62017-05-05 05:09:58 -06001277 return spv::StorageClassPushConstant;
1278 if (type.getBasicType() == glslang::EbtBlock)
1279 return spv::StorageClassUniform;
John Kessenichbed4e4f2017-09-08 02:38:07 -06001280 return spv::StorageClassUniformConstant;
John Kessenicha5c5fb62017-05-05 05:09:58 -06001281 }
John Kessenichbed4e4f2017-09-08 02:38:07 -06001282
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -07001283 if (type.getQualifier().storage == glslang::EvqShared && type.getBasicType() == glslang::EbtBlock) {
1284 builder.addExtension(spv::E_SPV_KHR_workgroup_memory_explicit_layout);
1285 builder.addCapability(spv::CapabilityWorkgroupMemoryExplicitLayoutKHR);
1286 return spv::StorageClassWorkgroup;
1287 }
1288
John Kessenichbed4e4f2017-09-08 02:38:07 -06001289 switch (type.getQualifier().storage) {
John Kessenichf8d1d742019-10-21 06:55:11 -06001290 case glslang::EvqGlobal: return spv::StorageClassPrivate;
1291 case glslang::EvqConstReadOnly: return spv::StorageClassFunction;
1292 case glslang::EvqTemporary: return spv::StorageClassFunction;
John Kessenichdeec1932019-08-13 08:00:30 -06001293 case glslang::EvqShared: return spv::StorageClassWorkgroup;
John Kessenich3dd1ce52019-10-17 07:08:40 -06001294#ifndef GLSLANG_WEB
Daniel Kochdb32b242020-03-17 20:42:47 -04001295 case glslang::EvqPayload: return spv::StorageClassRayPayloadKHR;
1296 case glslang::EvqPayloadIn: return spv::StorageClassIncomingRayPayloadKHR;
1297 case glslang::EvqHitAttr: return spv::StorageClassHitAttributeKHR;
1298 case glslang::EvqCallableData: return spv::StorageClassCallableDataKHR;
1299 case glslang::EvqCallableDataIn: return spv::StorageClassIncomingCallableDataKHR;
Chao Chenb50c02e2018-09-19 11:42:24 -07001300#endif
John Kessenichbed4e4f2017-09-08 02:38:07 -06001301 default:
1302 assert(0);
1303 break;
1304 }
1305
1306 return spv::StorageClassFunction;
John Kessenicha5c5fb62017-05-05 05:09:58 -06001307}
1308
John Kessenich5611c6d2018-04-05 11:25:02 -06001309// Add capabilities pertaining to how an array is indexed.
1310void TGlslangToSpvTraverser::addIndirectionIndexCapabilities(const glslang::TType& baseType,
1311 const glslang::TType& indexType)
1312{
John Kessenichb9197c82019-08-11 07:41:45 -06001313#ifndef GLSLANG_WEB
John Kessenich5611c6d2018-04-05 11:25:02 -06001314 if (indexType.getQualifier().isNonUniform()) {
1315 // deal with an asserted non-uniform index
Jeff Bolzc140b962018-07-12 16:51:18 -05001316 // SPV_EXT_descriptor_indexing already added in TranslateNonUniformDecoration
John Kessenich5611c6d2018-04-05 11:25:02 -06001317 if (baseType.getBasicType() == glslang::EbtSampler) {
1318 if (baseType.getQualifier().hasAttachment())
1319 builder.addCapability(spv::CapabilityInputAttachmentArrayNonUniformIndexingEXT);
John Kessenich3e4b6ff2019-08-08 01:15:24 -06001320 else if (baseType.isImage() && baseType.getSampler().isBuffer())
John Kessenich5611c6d2018-04-05 11:25:02 -06001321 builder.addCapability(spv::CapabilityStorageTexelBufferArrayNonUniformIndexingEXT);
John Kessenich3e4b6ff2019-08-08 01:15:24 -06001322 else if (baseType.isTexture() && baseType.getSampler().isBuffer())
John Kessenich5611c6d2018-04-05 11:25:02 -06001323 builder.addCapability(spv::CapabilityUniformTexelBufferArrayNonUniformIndexingEXT);
1324 else if (baseType.isImage())
1325 builder.addCapability(spv::CapabilityStorageImageArrayNonUniformIndexingEXT);
1326 else if (baseType.isTexture())
1327 builder.addCapability(spv::CapabilitySampledImageArrayNonUniformIndexingEXT);
1328 } else if (baseType.getBasicType() == glslang::EbtBlock) {
1329 if (baseType.getQualifier().storage == glslang::EvqBuffer)
1330 builder.addCapability(spv::CapabilityStorageBufferArrayNonUniformIndexingEXT);
1331 else if (baseType.getQualifier().storage == glslang::EvqUniform)
1332 builder.addCapability(spv::CapabilityUniformBufferArrayNonUniformIndexingEXT);
1333 }
1334 } else {
1335 // assume a dynamically uniform index
1336 if (baseType.getBasicType() == glslang::EbtSampler) {
Jeff Bolzc140b962018-07-12 16:51:18 -05001337 if (baseType.getQualifier().hasAttachment()) {
John Kessenich8317e6c2019-08-18 23:58:08 -06001338 builder.addIncorporatedExtension("SPV_EXT_descriptor_indexing", spv::Spv_1_5);
John Kessenich5611c6d2018-04-05 11:25:02 -06001339 builder.addCapability(spv::CapabilityInputAttachmentArrayDynamicIndexingEXT);
John Kessenich3e4b6ff2019-08-08 01:15:24 -06001340 } else if (baseType.isImage() && baseType.getSampler().isBuffer()) {
John Kessenich8317e6c2019-08-18 23:58:08 -06001341 builder.addIncorporatedExtension("SPV_EXT_descriptor_indexing", spv::Spv_1_5);
John Kessenich5611c6d2018-04-05 11:25:02 -06001342 builder.addCapability(spv::CapabilityStorageTexelBufferArrayDynamicIndexingEXT);
John Kessenich3e4b6ff2019-08-08 01:15:24 -06001343 } else if (baseType.isTexture() && baseType.getSampler().isBuffer()) {
John Kessenich8317e6c2019-08-18 23:58:08 -06001344 builder.addIncorporatedExtension("SPV_EXT_descriptor_indexing", spv::Spv_1_5);
John Kessenich5611c6d2018-04-05 11:25:02 -06001345 builder.addCapability(spv::CapabilityUniformTexelBufferArrayDynamicIndexingEXT);
Jeff Bolzc140b962018-07-12 16:51:18 -05001346 }
John Kessenich5611c6d2018-04-05 11:25:02 -06001347 }
1348 }
John Kessenichb9197c82019-08-11 07:41:45 -06001349#endif
John Kessenich5611c6d2018-04-05 11:25:02 -06001350}
1351
qining25262b32016-05-06 17:25:16 -04001352// Return whether or not the given type is something that should be tied to a
John Kessenich6c292d32016-02-15 20:58:50 -07001353// descriptor set.
1354bool IsDescriptorResource(const glslang::TType& type)
1355{
John Kessenichf7497e22016-03-08 21:36:22 -07001356 // uniform and buffer blocks are included, unless it is a push_constant
John Kessenich6c292d32016-02-15 20:58:50 -07001357 if (type.getBasicType() == glslang::EbtBlock)
Chao Chenb50c02e2018-09-19 11:42:24 -07001358 return type.getQualifier().isUniformOrBuffer() &&
Daniel Kochdb32b242020-03-17 20:42:47 -04001359 ! type.getQualifier().isShaderRecord() &&
John Kessenich7015bd62019-08-01 03:28:08 -06001360 ! type.getQualifier().isPushConstant();
John Kessenich6c292d32016-02-15 20:58:50 -07001361
1362 // non block...
1363 // basically samplerXXX/subpass/sampler/texture are all included
1364 // if they are the global-scope-class, not the function parameter
1365 // (or local, if they ever exist) class.
alelenv999d4fd2020-06-01 23:24:41 -07001366 if (type.getBasicType() == glslang::EbtSampler ||
1367 type.getBasicType() == glslang::EbtAccStruct)
John Kessenich6c292d32016-02-15 20:58:50 -07001368 return type.getQualifier().isUniformOrBuffer();
1369
1370 // None of the above.
1371 return false;
1372}
1373
John Kesseniche0b6cad2015-12-24 10:30:13 -07001374void InheritQualifiers(glslang::TQualifier& child, const glslang::TQualifier& parent)
1375{
1376 if (child.layoutMatrix == glslang::ElmNone)
1377 child.layoutMatrix = parent.layoutMatrix;
1378
1379 if (parent.invariant)
1380 child.invariant = true;
John Kessenicha28f7a72019-08-06 07:00:58 -06001381 if (parent.flat)
1382 child.flat = true;
1383 if (parent.centroid)
1384 child.centroid = true;
John Kessenich7015bd62019-08-01 03:28:08 -06001385#ifndef GLSLANG_WEB
John Kesseniche0b6cad2015-12-24 10:30:13 -07001386 if (parent.nopersp)
1387 child.nopersp = true;
Rex Xu9d93a232016-05-05 12:30:44 +08001388 if (parent.explicitInterp)
1389 child.explicitInterp = true;
John Kessenicha28f7a72019-08-06 07:00:58 -06001390 if (parent.perPrimitiveNV)
1391 child.perPrimitiveNV = true;
1392 if (parent.perViewNV)
1393 child.perViewNV = true;
1394 if (parent.perTaskNV)
1395 child.perTaskNV = true;
John Kesseniche0b6cad2015-12-24 10:30:13 -07001396 if (parent.patch)
1397 child.patch = true;
1398 if (parent.sample)
1399 child.sample = true;
Rex Xu1da878f2016-02-21 20:59:01 +08001400 if (parent.coherent)
1401 child.coherent = true;
Jeff Bolz36831c92018-09-05 10:11:41 -05001402 if (parent.devicecoherent)
1403 child.devicecoherent = true;
1404 if (parent.queuefamilycoherent)
1405 child.queuefamilycoherent = true;
1406 if (parent.workgroupcoherent)
1407 child.workgroupcoherent = true;
1408 if (parent.subgroupcoherent)
1409 child.subgroupcoherent = true;
Daniel Kochdb32b242020-03-17 20:42:47 -04001410 if (parent.shadercallcoherent)
1411 child.shadercallcoherent = true;
Jeff Bolz36831c92018-09-05 10:11:41 -05001412 if (parent.nonprivate)
1413 child.nonprivate = true;
Rex Xu1da878f2016-02-21 20:59:01 +08001414 if (parent.volatil)
1415 child.volatil = true;
1416 if (parent.restrict)
1417 child.restrict = true;
1418 if (parent.readonly)
1419 child.readonly = true;
1420 if (parent.writeonly)
1421 child.writeonly = true;
Chao Chen3c366992018-09-19 11:41:59 -07001422#endif
greg-lunarg639f5462020-11-12 11:10:07 -07001423 if (parent.nonUniform)
1424 child.nonUniform = true;
John Kesseniche0b6cad2015-12-24 10:30:13 -07001425}
1426
John Kessenichf2b7f332016-09-01 17:05:23 -06001427bool HasNonLayoutQualifiers(const glslang::TType& type, const glslang::TQualifier& qualifier)
John Kesseniche0b6cad2015-12-24 10:30:13 -07001428{
John Kessenich7b9fa252016-01-21 18:56:57 -07001429 // This should list qualifiers that simultaneous satisfy:
John Kessenichf2b7f332016-09-01 17:05:23 -06001430 // - struct members might inherit from a struct declaration
1431 // (note that non-block structs don't explicitly inherit,
1432 // only implicitly, meaning no decoration involved)
1433 // - affect decorations on the struct members
1434 // (note smooth does not, and expecting something like volatile
1435 // to effect the whole object)
John Kesseniche0b6cad2015-12-24 10:30:13 -07001436 // - are not part of the offset/st430/etc or row/column-major layout
John Kessenichf2b7f332016-09-01 17:05:23 -06001437 return qualifier.invariant || (qualifier.hasLocation() && type.getBasicType() == glslang::EbtBlock);
John Kesseniche0b6cad2015-12-24 10:30:13 -07001438}
1439
John Kessenich140f3df2015-06-26 16:58:36 -06001440//
1441// Implement the TGlslangToSpvTraverser class.
1442//
1443
John Kessenich8985fc92020-03-03 10:25:07 -07001444TGlslangToSpvTraverser::TGlslangToSpvTraverser(unsigned int spvVersion,
1445 const glslang::TIntermediate* glslangIntermediate,
1446 spv::SpvBuildLogger* buildLogger, glslang::SpvOptions& options) :
1447 TIntermTraverser(true, false, true),
1448 options(options),
1449 shaderEntry(nullptr), currentFunction(nullptr),
1450 sequenceDepth(0), logger(buildLogger),
1451 builder(spvVersion, (glslang::GetKhronosToolId() << 16) | glslang::GetSpirvGeneratorVersion(), logger),
1452 inEntryPoint(false), entryPointTerminated(false), linkageOnly(false),
1453 glslangIntermediate(glslangIntermediate),
Jeff Bolz04d73732019-05-31 13:06:01 -05001454 nanMinMaxClamp(glslangIntermediate->getNanMinMaxClamp()),
1455 nonSemanticDebugPrintf(0)
John Kessenich140f3df2015-06-26 16:58:36 -06001456{
1457 spv::ExecutionModel executionModel = TranslateExecutionModel(glslangIntermediate->getStage());
1458
1459 builder.clearAccessChain();
John Kessenich2a271162017-07-20 20:00:36 -06001460 builder.setSource(TranslateSourceLanguage(glslangIntermediate->getSource(), glslangIntermediate->getProfile()),
1461 glslangIntermediate->getVersion());
1462
John Kessenich121853f2017-05-31 17:11:16 -06001463 if (options.generateDebugInfo) {
John Kesseniche485c7a2017-05-31 18:50:53 -06001464 builder.setEmitOpLines();
John Kessenich2a271162017-07-20 20:00:36 -06001465 builder.setSourceFile(glslangIntermediate->getSourceFile());
1466
1467 // Set the source shader's text. If for SPV version 1.0, include
1468 // a preamble in comments stating the OpModuleProcessed instructions.
1469 // Otherwise, emit those as actual instructions.
1470 std::string text;
1471 const std::vector<std::string>& processes = glslangIntermediate->getProcesses();
1472 for (int p = 0; p < (int)processes.size(); ++p) {
John Kessenich8717a5d2018-10-26 10:12:32 -06001473 if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_1) {
John Kessenich2a271162017-07-20 20:00:36 -06001474 text.append("// OpModuleProcessed ");
1475 text.append(processes[p]);
1476 text.append("\n");
1477 } else
1478 builder.addModuleProcessed(processes[p]);
1479 }
John Kessenich8717a5d2018-10-26 10:12:32 -06001480 if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_1 && (int)processes.size() > 0)
John Kessenich2a271162017-07-20 20:00:36 -06001481 text.append("#line 1\n");
1482 text.append(glslangIntermediate->getSourceText());
1483 builder.setSourceText(text);
Greg Fischerd445bb22018-12-06 11:13:15 -07001484 // Pass name and text for all included files
1485 const std::map<std::string, std::string>& include_txt = glslangIntermediate->getIncludeText();
1486 for (auto iItr = include_txt.begin(); iItr != include_txt.end(); ++iItr)
1487 builder.addInclude(iItr->first, iItr->second);
John Kessenich121853f2017-05-31 17:11:16 -06001488 }
John Kessenich140f3df2015-06-26 16:58:36 -06001489 stdBuiltins = builder.import("GLSL.std.450");
Jeff Bolz9f2aec42019-01-06 17:58:04 -06001490
1491 spv::AddressingModel addressingModel = spv::AddressingModelLogical;
1492 spv::MemoryModel memoryModel = spv::MemoryModelGLSL450;
1493
1494 if (glslangIntermediate->usingPhysicalStorageBuffer()) {
1495 addressingModel = spv::AddressingModelPhysicalStorageBuffer64EXT;
John Kessenich1ff0c182019-10-10 12:01:13 -06001496 builder.addIncorporatedExtension(spv::E_SPV_EXT_physical_storage_buffer, spv::Spv_1_5);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06001497 builder.addCapability(spv::CapabilityPhysicalStorageBufferAddressesEXT);
John Kessenich8985fc92020-03-03 10:25:07 -07001498 }
Jeff Bolz36831c92018-09-05 10:11:41 -05001499 if (glslangIntermediate->usingVulkanMemoryModel()) {
Jeff Bolz9f2aec42019-01-06 17:58:04 -06001500 memoryModel = spv::MemoryModelVulkanKHR;
1501 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
John Kessenich8317e6c2019-08-18 23:58:08 -06001502 builder.addIncorporatedExtension(spv::E_SPV_KHR_vulkan_memory_model, spv::Spv_1_5);
Jeff Bolz36831c92018-09-05 10:11:41 -05001503 }
Jeff Bolz9f2aec42019-01-06 17:58:04 -06001504 builder.setMemoryModel(addressingModel, memoryModel);
1505
Jeff Bolz4605e2e2019-02-19 13:10:32 -06001506 if (glslangIntermediate->usingVariablePointers()) {
1507 builder.addCapability(spv::CapabilityVariablePointers);
1508 }
1509
John Kessenicheee9d532016-09-19 18:09:30 -06001510 shaderEntry = builder.makeEntryPoint(glslangIntermediate->getEntryPointName().c_str());
1511 entryPoint = builder.addEntryPoint(executionModel, shaderEntry, glslangIntermediate->getEntryPointName().c_str());
John Kessenich140f3df2015-06-26 16:58:36 -06001512
1513 // Add the source extensions
John Kessenich2f273362015-07-18 22:34:27 -06001514 const auto& sourceExtensions = glslangIntermediate->getRequestedExtensions();
1515 for (auto it = sourceExtensions.begin(); it != sourceExtensions.end(); ++it)
johnkslang01384722020-08-14 08:40:06 -06001516 builder.addSourceExtension(it->c_str());
John Kessenich140f3df2015-06-26 16:58:36 -06001517
1518 // Add the top-level modes for this shader.
1519
John Kessenich92187592016-02-01 13:45:25 -07001520 if (glslangIntermediate->getXfbMode()) {
1521 builder.addCapability(spv::CapabilityTransformFeedback);
John Kessenich140f3df2015-06-26 16:58:36 -06001522 builder.addExecutionMode(shaderEntry, spv::ExecutionModeXfb);
John Kessenich92187592016-02-01 13:45:25 -07001523 }
John Kessenich140f3df2015-06-26 16:58:36 -06001524
alelenv59216d52020-05-21 04:38:41 -07001525 if (glslangIntermediate->getLayoutPrimitiveCulling()) {
Daniel Kochffccefd2020-11-23 15:41:27 -05001526 builder.addCapability(spv::CapabilityRayTraversalPrimitiveCullingKHR);
alelenv75de1962020-04-08 21:09:20 -07001527 }
1528
John Kessenich140f3df2015-06-26 16:58:36 -06001529 unsigned int mode;
1530 switch (glslangIntermediate->getStage()) {
1531 case EShLangVertex:
John Kessenich5e4b1242015-08-06 22:53:06 -06001532 builder.addCapability(spv::CapabilityShader);
John Kessenich140f3df2015-06-26 16:58:36 -06001533 break;
1534
John Kessenicha28f7a72019-08-06 07:00:58 -06001535 case EShLangFragment:
1536 builder.addCapability(spv::CapabilityShader);
1537 if (glslangIntermediate->getPixelCenterInteger())
1538 builder.addExecutionMode(shaderEntry, spv::ExecutionModePixelCenterInteger);
1539
1540 if (glslangIntermediate->getOriginUpperLeft())
1541 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOriginUpperLeft);
1542 else
1543 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOriginLowerLeft);
1544
1545 if (glslangIntermediate->getEarlyFragmentTests())
1546 builder.addExecutionMode(shaderEntry, spv::ExecutionModeEarlyFragmentTests);
1547
1548 if (glslangIntermediate->getPostDepthCoverage()) {
1549 builder.addCapability(spv::CapabilitySampleMaskPostDepthCoverage);
1550 builder.addExecutionMode(shaderEntry, spv::ExecutionModePostDepthCoverage);
1551 builder.addExtension(spv::E_SPV_KHR_post_depth_coverage);
1552 }
1553
Greg Fischerb479ce02021-03-01 17:45:03 -07001554 if (glslangIntermediate->isDepthReplacing())
John Kessenichb9197c82019-08-11 07:41:45 -06001555 builder.addExecutionMode(shaderEntry, spv::ExecutionModeDepthReplacing);
1556
1557#ifndef GLSLANG_WEB
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04001558
John Kessenicha28f7a72019-08-06 07:00:58 -06001559 switch(glslangIntermediate->getDepth()) {
Greg Fischerb479ce02021-03-01 17:45:03 -07001560 case glslang::EldGreater: mode = spv::ExecutionModeDepthGreater; break;
1561 case glslang::EldLess: mode = spv::ExecutionModeDepthLess; break;
1562 case glslang::EldUnchanged: mode = spv::ExecutionModeDepthUnchanged; break;
1563 default: mode = spv::ExecutionModeMax; break;
John Kessenicha28f7a72019-08-06 07:00:58 -06001564 }
1565 if (mode != spv::ExecutionModeMax)
1566 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
John Kessenicha28f7a72019-08-06 07:00:58 -06001567 switch (glslangIntermediate->getInterlockOrdering()) {
John Kessenichf8d1d742019-10-21 06:55:11 -06001568 case glslang::EioPixelInterlockOrdered: mode = spv::ExecutionModePixelInterlockOrderedEXT;
1569 break;
1570 case glslang::EioPixelInterlockUnordered: mode = spv::ExecutionModePixelInterlockUnorderedEXT;
1571 break;
1572 case glslang::EioSampleInterlockOrdered: mode = spv::ExecutionModeSampleInterlockOrderedEXT;
1573 break;
1574 case glslang::EioSampleInterlockUnordered: mode = spv::ExecutionModeSampleInterlockUnorderedEXT;
1575 break;
1576 case glslang::EioShadingRateInterlockOrdered: mode = spv::ExecutionModeShadingRateInterlockOrderedEXT;
1577 break;
1578 case glslang::EioShadingRateInterlockUnordered: mode = spv::ExecutionModeShadingRateInterlockUnorderedEXT;
1579 break;
1580 default: mode = spv::ExecutionModeMax;
1581 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06001582 }
1583 if (mode != spv::ExecutionModeMax) {
1584 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1585 if (mode == spv::ExecutionModeShadingRateInterlockOrderedEXT ||
1586 mode == spv::ExecutionModeShadingRateInterlockUnorderedEXT) {
1587 builder.addCapability(spv::CapabilityFragmentShaderShadingRateInterlockEXT);
1588 } else if (mode == spv::ExecutionModePixelInterlockOrderedEXT ||
1589 mode == spv::ExecutionModePixelInterlockUnorderedEXT) {
1590 builder.addCapability(spv::CapabilityFragmentShaderPixelInterlockEXT);
1591 } else {
1592 builder.addCapability(spv::CapabilityFragmentShaderSampleInterlockEXT);
1593 }
1594 builder.addExtension(spv::E_SPV_EXT_fragment_shader_interlock);
1595 }
John Kessenichb9197c82019-08-11 07:41:45 -06001596#endif
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04001597 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06001598
John Kessenicha28f7a72019-08-06 07:00:58 -06001599 case EShLangCompute:
1600 builder.addCapability(spv::CapabilityShader);
1601 builder.addExecutionMode(shaderEntry, spv::ExecutionModeLocalSize, glslangIntermediate->getLocalSize(0),
1602 glslangIntermediate->getLocalSize(1),
1603 glslangIntermediate->getLocalSize(2));
1604 if (glslangIntermediate->getLayoutDerivativeModeNone() == glslang::LayoutDerivativeGroupQuads) {
1605 builder.addCapability(spv::CapabilityComputeDerivativeGroupQuadsNV);
1606 builder.addExecutionMode(shaderEntry, spv::ExecutionModeDerivativeGroupQuadsNV);
1607 builder.addExtension(spv::E_SPV_NV_compute_shader_derivatives);
1608 } else if (glslangIntermediate->getLayoutDerivativeModeNone() == glslang::LayoutDerivativeGroupLinear) {
1609 builder.addCapability(spv::CapabilityComputeDerivativeGroupLinearNV);
1610 builder.addExecutionMode(shaderEntry, spv::ExecutionModeDerivativeGroupLinearNV);
1611 builder.addExtension(spv::E_SPV_NV_compute_shader_derivatives);
1612 }
1613 break;
John Kessenich51ed01c2019-10-10 11:40:11 -06001614#ifndef GLSLANG_WEB
steve-lunarge7412492017-03-23 11:56:07 -06001615 case EShLangTessEvaluation:
John Kessenich140f3df2015-06-26 16:58:36 -06001616 case EShLangTessControl:
John Kessenich5e4b1242015-08-06 22:53:06 -06001617 builder.addCapability(spv::CapabilityTessellation);
John Kessenich140f3df2015-06-26 16:58:36 -06001618
steve-lunarge7412492017-03-23 11:56:07 -06001619 glslang::TLayoutGeometry primitive;
1620
1621 if (glslangIntermediate->getStage() == EShLangTessControl) {
John Kessenich8985fc92020-03-03 10:25:07 -07001622 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOutputVertices,
1623 glslangIntermediate->getVertices());
steve-lunarge7412492017-03-23 11:56:07 -06001624 primitive = glslangIntermediate->getOutputPrimitive();
1625 } else {
1626 primitive = glslangIntermediate->getInputPrimitive();
1627 }
1628
1629 switch (primitive) {
John Kessenich55e7d112015-11-15 21:33:39 -07001630 case glslang::ElgTriangles: mode = spv::ExecutionModeTriangles; break;
1631 case glslang::ElgQuads: mode = spv::ExecutionModeQuads; break;
1632 case glslang::ElgIsolines: mode = spv::ExecutionModeIsolines; break;
John Kessenich4016e382016-07-15 11:53:56 -06001633 default: mode = spv::ExecutionModeMax; break;
John Kessenich140f3df2015-06-26 16:58:36 -06001634 }
John Kessenich4016e382016-07-15 11:53:56 -06001635 if (mode != spv::ExecutionModeMax)
John Kessenich140f3df2015-06-26 16:58:36 -06001636 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1637
John Kesseniche6903322015-10-13 16:29:02 -06001638 switch (glslangIntermediate->getVertexSpacing()) {
1639 case glslang::EvsEqual: mode = spv::ExecutionModeSpacingEqual; break;
1640 case glslang::EvsFractionalEven: mode = spv::ExecutionModeSpacingFractionalEven; break;
1641 case glslang::EvsFractionalOdd: mode = spv::ExecutionModeSpacingFractionalOdd; break;
John Kessenich4016e382016-07-15 11:53:56 -06001642 default: mode = spv::ExecutionModeMax; break;
John Kesseniche6903322015-10-13 16:29:02 -06001643 }
John Kessenich4016e382016-07-15 11:53:56 -06001644 if (mode != spv::ExecutionModeMax)
John Kesseniche6903322015-10-13 16:29:02 -06001645 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1646
1647 switch (glslangIntermediate->getVertexOrder()) {
1648 case glslang::EvoCw: mode = spv::ExecutionModeVertexOrderCw; break;
1649 case glslang::EvoCcw: mode = spv::ExecutionModeVertexOrderCcw; break;
John Kessenich4016e382016-07-15 11:53:56 -06001650 default: mode = spv::ExecutionModeMax; break;
John Kesseniche6903322015-10-13 16:29:02 -06001651 }
John Kessenich4016e382016-07-15 11:53:56 -06001652 if (mode != spv::ExecutionModeMax)
John Kesseniche6903322015-10-13 16:29:02 -06001653 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1654
1655 if (glslangIntermediate->getPointMode())
1656 builder.addExecutionMode(shaderEntry, spv::ExecutionModePointMode);
John Kessenich140f3df2015-06-26 16:58:36 -06001657 break;
1658
1659 case EShLangGeometry:
John Kessenich5e4b1242015-08-06 22:53:06 -06001660 builder.addCapability(spv::CapabilityGeometry);
John Kessenich140f3df2015-06-26 16:58:36 -06001661 switch (glslangIntermediate->getInputPrimitive()) {
1662 case glslang::ElgPoints: mode = spv::ExecutionModeInputPoints; break;
1663 case glslang::ElgLines: mode = spv::ExecutionModeInputLines; break;
1664 case glslang::ElgLinesAdjacency: mode = spv::ExecutionModeInputLinesAdjacency; break;
John Kessenich55e7d112015-11-15 21:33:39 -07001665 case glslang::ElgTriangles: mode = spv::ExecutionModeTriangles; break;
John Kessenich140f3df2015-06-26 16:58:36 -06001666 case glslang::ElgTrianglesAdjacency: mode = spv::ExecutionModeInputTrianglesAdjacency; break;
John Kessenich4016e382016-07-15 11:53:56 -06001667 default: mode = spv::ExecutionModeMax; break;
John Kessenich140f3df2015-06-26 16:58:36 -06001668 }
John Kessenich4016e382016-07-15 11:53:56 -06001669 if (mode != spv::ExecutionModeMax)
John Kessenich140f3df2015-06-26 16:58:36 -06001670 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
John Kesseniche6903322015-10-13 16:29:02 -06001671
John Kessenich140f3df2015-06-26 16:58:36 -06001672 builder.addExecutionMode(shaderEntry, spv::ExecutionModeInvocations, glslangIntermediate->getInvocations());
1673
1674 switch (glslangIntermediate->getOutputPrimitive()) {
1675 case glslang::ElgPoints: mode = spv::ExecutionModeOutputPoints; break;
1676 case glslang::ElgLineStrip: mode = spv::ExecutionModeOutputLineStrip; break;
1677 case glslang::ElgTriangleStrip: mode = spv::ExecutionModeOutputTriangleStrip; break;
John Kessenich4016e382016-07-15 11:53:56 -06001678 default: mode = spv::ExecutionModeMax; break;
John Kessenich140f3df2015-06-26 16:58:36 -06001679 }
John Kessenich4016e382016-07-15 11:53:56 -06001680 if (mode != spv::ExecutionModeMax)
John Kessenich140f3df2015-06-26 16:58:36 -06001681 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1682 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOutputVertices, glslangIntermediate->getVertices());
1683 break;
1684
Daniel Kochdb32b242020-03-17 20:42:47 -04001685 case EShLangRayGen:
1686 case EShLangIntersect:
1687 case EShLangAnyHit:
1688 case EShLangClosestHit:
1689 case EShLangMiss:
1690 case EShLangCallable:
1691 {
1692 auto& extensions = glslangIntermediate->getRequestedExtensions();
1693 if (extensions.find("GL_NV_ray_tracing") == extensions.end()) {
Daniel Kochffccefd2020-11-23 15:41:27 -05001694 builder.addCapability(spv::CapabilityRayTracingKHR);
Daniel Kochdb32b242020-03-17 20:42:47 -04001695 builder.addExtension("SPV_KHR_ray_tracing");
1696 }
1697 else {
1698 builder.addCapability(spv::CapabilityRayTracingNV);
1699 builder.addExtension("SPV_NV_ray_tracing");
1700 }
Chao Chenb50c02e2018-09-19 11:42:24 -07001701 break;
Daniel Kochdb32b242020-03-17 20:42:47 -04001702 }
Chao Chen3c366992018-09-19 11:41:59 -07001703 case EShLangTaskNV:
1704 case EShLangMeshNV:
1705 builder.addCapability(spv::CapabilityMeshShadingNV);
1706 builder.addExtension(spv::E_SPV_NV_mesh_shader);
1707 builder.addExecutionMode(shaderEntry, spv::ExecutionModeLocalSize, glslangIntermediate->getLocalSize(0),
1708 glslangIntermediate->getLocalSize(1),
1709 glslangIntermediate->getLocalSize(2));
1710 if (glslangIntermediate->getStage() == EShLangMeshNV) {
John Kessenich8985fc92020-03-03 10:25:07 -07001711 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOutputVertices,
1712 glslangIntermediate->getVertices());
1713 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOutputPrimitivesNV,
1714 glslangIntermediate->getPrimitives());
Chao Chen3c366992018-09-19 11:41:59 -07001715
1716 switch (glslangIntermediate->getOutputPrimitive()) {
1717 case glslang::ElgPoints: mode = spv::ExecutionModeOutputPoints; break;
1718 case glslang::ElgLines: mode = spv::ExecutionModeOutputLinesNV; break;
1719 case glslang::ElgTriangles: mode = spv::ExecutionModeOutputTrianglesNV; break;
1720 default: mode = spv::ExecutionModeMax; break;
1721 }
1722 if (mode != spv::ExecutionModeMax)
1723 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1724 }
1725 break;
1726#endif
1727
John Kessenich140f3df2015-06-26 16:58:36 -06001728 default:
1729 break;
1730 }
John Kessenich140f3df2015-06-26 16:58:36 -06001731}
1732
John Kessenichfca82622016-11-26 13:23:20 -07001733// Finish creating SPV, after the traversal is complete.
1734void TGlslangToSpvTraverser::finishSpv()
John Kessenich7ba63412015-12-20 17:37:07 -07001735{
John Kessenichf04c51b2018-08-03 15:56:12 -06001736 // Finish the entry point function
John Kessenich517fe7a2016-11-26 13:31:47 -07001737 if (! entryPointTerminated) {
John Kessenichfca82622016-11-26 13:23:20 -07001738 builder.setBuildPoint(shaderEntry->getLastBlock());
1739 builder.leaveFunction();
1740 }
1741
John Kessenich7ba63412015-12-20 17:37:07 -07001742 // finish off the entry-point SPV instruction by adding the Input/Output <id>
rdb32084e82016-02-23 22:17:38 +01001743 for (auto it = iOSet.cbegin(); it != iOSet.cend(); ++it)
1744 entryPoint->addIdOperand(*it);
John Kessenich7ba63412015-12-20 17:37:07 -07001745
David Neto8c3d5b42019-10-21 14:50:31 -04001746 // Add capabilities, extensions, remove unneeded decorations, etc.,
John Kessenichf04c51b2018-08-03 15:56:12 -06001747 // based on the resulting SPIR-V.
David Neto8c3d5b42019-10-21 14:50:31 -04001748 // Note: WebGPU code generation must have the opportunity to aggressively
1749 // prune unreachable merge blocks and continue targets.
John Kessenichf04c51b2018-08-03 15:56:12 -06001750 builder.postProcess();
John Kessenich7ba63412015-12-20 17:37:07 -07001751}
1752
John Kessenichfca82622016-11-26 13:23:20 -07001753// Write the SPV into 'out'.
1754void TGlslangToSpvTraverser::dumpSpv(std::vector<unsigned int>& out)
John Kessenich140f3df2015-06-26 16:58:36 -06001755{
John Kessenichfca82622016-11-26 13:23:20 -07001756 builder.dump(out);
John Kessenich140f3df2015-06-26 16:58:36 -06001757}
1758
1759//
1760// Implement the traversal functions.
1761//
1762// Return true from interior nodes to have the external traversal
1763// continue on to children. Return false if children were
1764// already processed.
1765//
1766
1767//
qining25262b32016-05-06 17:25:16 -04001768// Symbols can turn into
John Kessenich140f3df2015-06-26 16:58:36 -06001769// - uniform/input reads
1770// - output writes
1771// - complex lvalue base setups: foo.bar[3].... , where we see foo and start up an access chain
1772// - something simple that degenerates into the last bullet
1773//
1774void TGlslangToSpvTraverser::visitSymbol(glslang::TIntermSymbol* symbol)
1775{
qining75d1d802016-04-06 14:42:01 -04001776 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
Roy05a5b532020-01-03 16:21:34 +08001777 if (symbol->getType().isStruct())
1778 glslangTypeToIdMap[symbol->getType().getStruct()] = symbol->getId();
1779
qining75d1d802016-04-06 14:42:01 -04001780 if (symbol->getType().getQualifier().isSpecConstant())
1781 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
1782
Rex Xuf6e0fe82020-10-23 22:54:35 +08001783#ifdef ENABLE_HLSL
1784 // Skip symbol handling if it is string-typed
1785 if (symbol->getBasicType() == glslang::EbtString)
1786 return;
1787#endif
1788
John Kessenich140f3df2015-06-26 16:58:36 -06001789 // getSymbolId() will set up all the IO decorations on the first call.
1790 // Formal function parameters were mapped during makeFunctions().
1791 spv::Id id = getSymbolId(symbol);
John Kessenich7ba63412015-12-20 17:37:07 -07001792
John Kessenich7ba63412015-12-20 17:37:07 -07001793 if (builder.isPointer(id)) {
John Kessenichc30d3352020-06-10 07:15:24 -06001794 if (!symbol->getType().getQualifier().isParamInput() &&
1795 !symbol->getType().getQualifier().isParamOutput()) {
1796 // Include all "static use" and "linkage only" interface variables on the OpEntryPoint instruction
1797 // Consider adding to the OpEntryPoint interface list.
1798 // Only looking at structures if they have at least one member.
1799 if (!symbol->getType().isStruct() || symbol->getType().getStruct()->size() > 0) {
1800 spv::StorageClass sc = builder.getStorageClass(id);
1801 // Before SPIR-V 1.4, we only want to include Input and Output.
1802 // Starting with SPIR-V 1.4, we want all globals.
John Kessenich4e13c902020-07-13 00:35:58 -06001803 if ((glslangIntermediate->getSpv().spv >= glslang::EShTargetSpv_1_4 && builder.isGlobalStorage(id)) ||
John Kessenichc30d3352020-06-10 07:15:24 -06001804 (sc == spv::StorageClassInput || sc == spv::StorageClassOutput)) {
1805 iOSet.insert(id);
1806 }
John Kessenich7c7731e2019-01-04 16:47:06 +07001807 }
John Kessenich5f77d862017-09-19 11:09:59 -06001808 }
John Kessenich9c14f772019-06-17 08:38:35 -06001809
Daniel Kochdb32b242020-03-17 20:42:47 -04001810 // If the SPIR-V type is required to be different than the AST type
1811 // (for ex SubgroupMasks or 3x4 ObjectToWorld/WorldToObject matrices),
John Kessenich9c14f772019-06-17 08:38:35 -06001812 // translate now from the SPIR-V type to the AST type, for the consuming
1813 // operation.
1814 // Note this turns it from an l-value to an r-value.
1815 // Currently, all symbols needing this are inputs; avoid the map lookup when non-input.
1816 if (symbol->getType().getQualifier().storage == glslang::EvqVaryingIn)
1817 id = translateForcedType(id);
John Kessenich7ba63412015-12-20 17:37:07 -07001818 }
1819
1820 // Only process non-linkage-only nodes for generating actual static uses
John Kessenich6c292d32016-02-15 20:58:50 -07001821 if (! linkageOnly || symbol->getQualifier().isSpecConstant()) {
John Kessenich140f3df2015-06-26 16:58:36 -06001822 // Prepare to generate code for the access
1823
1824 // L-value chains will be computed left to right. We're on the symbol now,
1825 // which is the left-most part of the access chain, so now is "clear" time,
1826 // followed by setting the base.
1827 builder.clearAccessChain();
1828
1829 // For now, we consider all user variables as being in memory, so they are pointers,
John Kessenich6c292d32016-02-15 20:58:50 -07001830 // except for
John Kessenich4bf71552016-09-02 11:20:21 -06001831 // A) R-Value arguments to a function, which are an intermediate object.
John Kessenich6c292d32016-02-15 20:58:50 -07001832 // See comments in handleUserFunctionCall().
John Kessenich4bf71552016-09-02 11:20:21 -06001833 // B) Specialization constants (normal constants don't even come in as a variable),
John Kessenich6c292d32016-02-15 20:58:50 -07001834 // These are also pure R-values.
John Kessenich9c14f772019-06-17 08:38:35 -06001835 // C) R-Values from type translation, see above call to translateForcedType()
John Kessenich6c292d32016-02-15 20:58:50 -07001836 glslang::TQualifier qualifier = symbol->getQualifier();
John Kessenich9c14f772019-06-17 08:38:35 -06001837 if (qualifier.isSpecConstant() || rValueParameters.find(symbol->getId()) != rValueParameters.end() ||
1838 !builder.isPointerType(builder.getTypeId(id)))
John Kessenich140f3df2015-06-26 16:58:36 -06001839 builder.setAccessChainRValue(id);
1840 else
1841 builder.setAccessChainLValue(id);
1842 }
John Kessenich5d610ee2018-03-07 18:05:55 -07001843
John Kessenichb9197c82019-08-11 07:41:45 -06001844#ifdef ENABLE_HLSL
John Kessenich5d610ee2018-03-07 18:05:55 -07001845 // Process linkage-only nodes for any special additional interface work.
1846 if (linkageOnly) {
1847 if (glslangIntermediate->getHlslFunctionality1()) {
1848 // Map implicit counter buffers to their originating buffers, which should have been
1849 // seen by now, given earlier pruning of unused counters, and preservation of order
1850 // of declaration.
1851 if (symbol->getType().getQualifier().isUniformOrBuffer()) {
1852 if (!glslangIntermediate->hasCounterBufferName(symbol->getName())) {
1853 // Save possible originating buffers for counter buffers, keyed by
1854 // making the potential counter-buffer name.
1855 std::string keyName = symbol->getName().c_str();
1856 keyName = glslangIntermediate->addCounterBufferName(keyName);
1857 counterOriginator[keyName] = symbol;
1858 } else {
1859 // Handle a counter buffer, by finding the saved originating buffer.
1860 std::string keyName = symbol->getName().c_str();
1861 auto it = counterOriginator.find(keyName);
1862 if (it != counterOriginator.end()) {
1863 id = getSymbolId(it->second);
1864 if (id != spv::NoResult) {
1865 spv::Id counterId = getSymbolId(symbol);
John Kessenichf52b6382018-04-05 19:35:38 -06001866 if (counterId != spv::NoResult) {
1867 builder.addExtension("SPV_GOOGLE_hlsl_functionality1");
John Kessenich5d610ee2018-03-07 18:05:55 -07001868 builder.addDecorationId(id, spv::DecorationHlslCounterBufferGOOGLE, counterId);
John Kessenichf52b6382018-04-05 19:35:38 -06001869 }
John Kessenich5d610ee2018-03-07 18:05:55 -07001870 }
1871 }
1872 }
1873 }
1874 }
1875 }
John Kessenich155d3512019-08-08 23:29:20 -06001876#endif
John Kessenich140f3df2015-06-26 16:58:36 -06001877}
1878
1879bool TGlslangToSpvTraverser::visitBinary(glslang::TVisit /* visit */, glslang::TIntermBinary* node)
1880{
greg-lunarg5d43c4a2018-12-07 17:36:33 -07001881 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Roy05a5b532020-01-03 16:21:34 +08001882 if (node->getLeft()->getAsSymbolNode() != nullptr && node->getLeft()->getType().isStruct()) {
1883 glslangTypeToIdMap[node->getLeft()->getType().getStruct()] = node->getLeft()->getAsSymbolNode()->getId();
1884 }
1885 if (node->getRight()->getAsSymbolNode() != nullptr && node->getRight()->getType().isStruct()) {
1886 glslangTypeToIdMap[node->getRight()->getType().getStruct()] = node->getRight()->getAsSymbolNode()->getId();
1887 }
John Kesseniche485c7a2017-05-31 18:50:53 -06001888
qining40887662016-04-03 22:20:42 -04001889 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
1890 if (node->getType().getQualifier().isSpecConstant())
1891 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
1892
John Kessenich140f3df2015-06-26 16:58:36 -06001893 // First, handle special cases
1894 switch (node->getOp()) {
1895 case glslang::EOpAssign:
1896 case glslang::EOpAddAssign:
1897 case glslang::EOpSubAssign:
1898 case glslang::EOpMulAssign:
1899 case glslang::EOpVectorTimesMatrixAssign:
1900 case glslang::EOpVectorTimesScalarAssign:
1901 case glslang::EOpMatrixTimesScalarAssign:
1902 case glslang::EOpMatrixTimesMatrixAssign:
1903 case glslang::EOpDivAssign:
1904 case glslang::EOpModAssign:
1905 case glslang::EOpAndAssign:
1906 case glslang::EOpInclusiveOrAssign:
1907 case glslang::EOpExclusiveOrAssign:
1908 case glslang::EOpLeftShiftAssign:
1909 case glslang::EOpRightShiftAssign:
1910 // A bin-op assign "a += b" means the same thing as "a = a + b"
1911 // where a is evaluated before b. For a simple assignment, GLSL
1912 // says to evaluate the left before the right. So, always, left
1913 // node then right node.
1914 {
1915 // get the left l-value, save it away
1916 builder.clearAccessChain();
1917 node->getLeft()->traverse(this);
1918 spv::Builder::AccessChain lValue = builder.getAccessChain();
1919
1920 // evaluate the right
1921 builder.clearAccessChain();
1922 node->getRight()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07001923 spv::Id rValue = accessChainLoad(node->getRight()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06001924
1925 if (node->getOp() != glslang::EOpAssign) {
1926 // the left is also an r-value
1927 builder.setAccessChain(lValue);
John Kessenich32cfd492016-02-02 12:37:46 -07001928 spv::Id leftRValue = accessChainLoad(node->getLeft()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06001929
1930 // do the operation
greg-lunarg639f5462020-11-12 11:10:07 -07001931 spv::Builder::AccessChain::CoherentFlags coherentFlags = TranslateCoherent(node->getLeft()->getType());
1932 coherentFlags |= TranslateCoherent(node->getRight()->getType());
John Kessenichead86222018-03-28 18:01:20 -06001933 OpDecorations decorations = { TranslatePrecisionDecoration(node->getOperationPrecision()),
John Kessenich5611c6d2018-04-05 11:25:02 -06001934 TranslateNoContractionDecoration(node->getType().getQualifier()),
greg-lunarg639f5462020-11-12 11:10:07 -07001935 TranslateNonUniformDecoration(coherentFlags) };
John Kessenichead86222018-03-28 18:01:20 -06001936 rValue = createBinaryOperation(node->getOp(), decorations,
John Kessenich140f3df2015-06-26 16:58:36 -06001937 convertGlslangToSpvType(node->getType()), leftRValue, rValue,
1938 node->getType().getBasicType());
1939
1940 // these all need their counterparts in createBinaryOperation()
John Kessenich55e7d112015-11-15 21:33:39 -07001941 assert(rValue != spv::NoResult);
John Kessenich140f3df2015-06-26 16:58:36 -06001942 }
1943
1944 // store the result
1945 builder.setAccessChain(lValue);
Jeff Bolz36831c92018-09-05 10:11:41 -05001946 multiTypeStore(node->getLeft()->getType(), rValue);
John Kessenich140f3df2015-06-26 16:58:36 -06001947
1948 // assignments are expressions having an rValue after they are evaluated...
1949 builder.clearAccessChain();
1950 builder.setAccessChainRValue(rValue);
1951 }
1952 return false;
1953 case glslang::EOpIndexDirect:
1954 case glslang::EOpIndexDirectStruct:
1955 {
John Kessenich61a5ce12019-02-07 08:04:12 -07001956 // Structure, array, matrix, or vector indirection with statically known index.
John Kessenich140f3df2015-06-26 16:58:36 -06001957 // Get the left part of the access chain.
1958 node->getLeft()->traverse(this);
1959
1960 // Add the next element in the chain
1961
David Netoa901ffe2016-06-08 14:11:40 +01001962 const int glslangIndex = node->getRight()->getAsConstantUnion()->getConstArray()[0].getIConst();
John Kessenich140f3df2015-06-26 16:58:36 -06001963 if (! node->getLeft()->getType().isArray() &&
1964 node->getLeft()->getType().isVector() &&
1965 node->getOp() == glslang::EOpIndexDirect) {
greg-lunarg639f5462020-11-12 11:10:07 -07001966 // Swizzle is uniform so propagate uniform into access chain
1967 spv::Builder::AccessChain::CoherentFlags coherentFlags = TranslateCoherent(node->getLeft()->getType());
1968 coherentFlags.nonUniform = 0;
John Kessenich140f3df2015-06-26 16:58:36 -06001969 // This is essentially a hard-coded vector swizzle of size 1,
1970 // so short circuit the access-chain stuff with a swizzle.
1971 std::vector<unsigned> swizzle;
David Netoa901ffe2016-06-08 14:11:40 +01001972 swizzle.push_back(glslangIndex);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06001973 int dummySize;
1974 builder.accessChainPushSwizzle(swizzle, convertGlslangToSpvType(node->getLeft()->getType()),
greg-lunarg639f5462020-11-12 11:10:07 -07001975 coherentFlags,
John Kessenich8985fc92020-03-03 10:25:07 -07001976 glslangIntermediate->getBaseAlignmentScalar(
1977 node->getLeft()->getType(), dummySize));
John Kessenich140f3df2015-06-26 16:58:36 -06001978 } else {
Jeff Bolz9f2aec42019-01-06 17:58:04 -06001979
1980 // Load through a block reference is performed with a dot operator that
1981 // is mapped to EOpIndexDirectStruct. When we get to the actual reference,
1982 // do a load and reset the access chain.
John Kessenich7015bd62019-08-01 03:28:08 -06001983 if (node->getLeft()->isReference() &&
Jeff Bolz9f2aec42019-01-06 17:58:04 -06001984 !node->getLeft()->getType().isArray() &&
1985 node->getOp() == glslang::EOpIndexDirectStruct)
1986 {
1987 spv::Id left = accessChainLoad(node->getLeft()->getType());
1988 builder.clearAccessChain();
1989 builder.setAccessChainLValue(left);
1990 }
1991
David Netoa901ffe2016-06-08 14:11:40 +01001992 int spvIndex = glslangIndex;
1993 if (node->getLeft()->getBasicType() == glslang::EbtBlock &&
1994 node->getOp() == glslang::EOpIndexDirectStruct)
1995 {
1996 // This may be, e.g., an anonymous block-member selection, which generally need
1997 // index remapping due to hidden members in anonymous blocks.
Chow93b400f2020-11-12 15:54:16 +08001998 long long glslangId = glslangTypeToIdMap[node->getLeft()->getType().getStruct()];
Roy05a5b532020-01-03 16:21:34 +08001999 if (memberRemapper.find(glslangId) != memberRemapper.end()) {
2000 std::vector<int>& remapper = memberRemapper[glslangId];
2001 assert(remapper.size() > 0);
2002 spvIndex = remapper[glslangIndex];
2003 }
David Netoa901ffe2016-06-08 14:11:40 +01002004 }
John Kessenichebb50532016-05-16 19:22:05 -06002005
greg-lunarg639f5462020-11-12 11:10:07 -07002006 // Struct reference propagates uniform lvalue
2007 spv::Builder::AccessChain::CoherentFlags coherentFlags =
2008 TranslateCoherent(node->getLeft()->getType());
2009 coherentFlags.nonUniform = 0;
2010
David Netoa901ffe2016-06-08 14:11:40 +01002011 // normal case for indexing array or structure or block
John Kessenich8985fc92020-03-03 10:25:07 -07002012 builder.accessChainPush(builder.makeIntConstant(spvIndex),
greg-lunarg639f5462020-11-12 11:10:07 -07002013 coherentFlags,
John Kessenich8985fc92020-03-03 10:25:07 -07002014 node->getLeft()->getType().getBufferReferenceAlignment());
David Netoa901ffe2016-06-08 14:11:40 +01002015
2016 // Add capabilities here for accessing PointSize and clip/cull distance.
2017 // We have deferred generation of associated capabilities until now.
John Kessenichebb50532016-05-16 19:22:05 -06002018 if (node->getLeft()->getType().isStruct() && ! node->getLeft()->getType().isArray())
David Netoa901ffe2016-06-08 14:11:40 +01002019 declareUseOfStructMember(*(node->getLeft()->getType().getStruct()), glslangIndex);
John Kessenich140f3df2015-06-26 16:58:36 -06002020 }
2021 }
2022 return false;
2023 case glslang::EOpIndexIndirect:
2024 {
John Kessenich61a5ce12019-02-07 08:04:12 -07002025 // Array, matrix, or vector indirection with variable index.
2026 // Will use native SPIR-V access-chain for and array indirection;
John Kessenich140f3df2015-06-26 16:58:36 -06002027 // matrices are arrays of vectors, so will also work for a matrix.
2028 // Will use the access chain's 'component' for variable index into a vector.
2029
2030 // This adapter is building access chains left to right.
2031 // Set up the access chain to the left.
2032 node->getLeft()->traverse(this);
2033
2034 // save it so that computing the right side doesn't trash it
2035 spv::Builder::AccessChain partial = builder.getAccessChain();
2036
2037 // compute the next index in the chain
2038 builder.clearAccessChain();
2039 node->getRight()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002040 spv::Id index = accessChainLoad(node->getRight()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002041
John Kessenich5611c6d2018-04-05 11:25:02 -06002042 addIndirectionIndexCapabilities(node->getLeft()->getType(), node->getRight()->getType());
2043
John Kessenich140f3df2015-06-26 16:58:36 -06002044 // restore the saved access chain
2045 builder.setAccessChain(partial);
2046
greg-lunarg639f5462020-11-12 11:10:07 -07002047 // Only if index is nonUniform should we propagate nonUniform into access chain
2048 spv::Builder::AccessChain::CoherentFlags index_flags = TranslateCoherent(node->getRight()->getType());
2049 spv::Builder::AccessChain::CoherentFlags coherent_flags = TranslateCoherent(node->getLeft()->getType());
2050 coherent_flags.nonUniform = index_flags.nonUniform;
2051
Jeff Bolz9f2aec42019-01-06 17:58:04 -06002052 if (! node->getLeft()->getType().isArray() && node->getLeft()->getType().isVector()) {
2053 int dummySize;
greg-lunarg639f5462020-11-12 11:10:07 -07002054 builder.accessChainPushComponent(
2055 index, convertGlslangToSpvType(node->getLeft()->getType()), coherent_flags,
John Kessenich8985fc92020-03-03 10:25:07 -07002056 glslangIntermediate->getBaseAlignmentScalar(node->getLeft()->getType(),
2057 dummySize));
Jeff Bolz9f2aec42019-01-06 17:58:04 -06002058 } else
greg-lunarg639f5462020-11-12 11:10:07 -07002059 builder.accessChainPush(index, coherent_flags,
2060 node->getLeft()->getType().getBufferReferenceAlignment());
John Kessenich140f3df2015-06-26 16:58:36 -06002061 }
2062 return false;
2063 case glslang::EOpVectorSwizzle:
2064 {
2065 node->getLeft()->traverse(this);
John Kessenich140f3df2015-06-26 16:58:36 -06002066 std::vector<unsigned> swizzle;
John Kessenich8c8505c2016-07-26 12:50:38 -06002067 convertSwizzle(*node->getRight()->getAsAggregate(), swizzle);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06002068 int dummySize;
2069 builder.accessChainPushSwizzle(swizzle, convertGlslangToSpvType(node->getLeft()->getType()),
2070 TranslateCoherent(node->getLeft()->getType()),
John Kessenich8985fc92020-03-03 10:25:07 -07002071 glslangIntermediate->getBaseAlignmentScalar(node->getLeft()->getType(),
2072 dummySize));
John Kessenich140f3df2015-06-26 16:58:36 -06002073 }
2074 return false;
John Kessenichfdf63472017-01-13 12:27:52 -07002075 case glslang::EOpMatrixSwizzle:
2076 logger->missingFunctionality("matrix swizzle");
2077 return true;
John Kessenich7c1aa102015-10-15 13:29:11 -06002078 case glslang::EOpLogicalOr:
2079 case glslang::EOpLogicalAnd:
2080 {
2081
2082 // These may require short circuiting, but can sometimes be done as straight
2083 // binary operations. The right operand must be short circuited if it has
2084 // side effects, and should probably be if it is complex.
2085 if (isTrivial(node->getRight()->getAsTyped()))
2086 break; // handle below as a normal binary operation
2087 // otherwise, we need to do dynamic short circuiting on the right operand
John Kessenich8985fc92020-03-03 10:25:07 -07002088 spv::Id result = createShortCircuit(node->getOp(), *node->getLeft()->getAsTyped(),
2089 *node->getRight()->getAsTyped());
John Kessenich7c1aa102015-10-15 13:29:11 -06002090 builder.clearAccessChain();
2091 builder.setAccessChainRValue(result);
2092 }
2093 return false;
John Kessenich140f3df2015-06-26 16:58:36 -06002094 default:
2095 break;
2096 }
2097
2098 // Assume generic binary op...
2099
John Kessenich32cfd492016-02-02 12:37:46 -07002100 // get right operand
John Kessenich140f3df2015-06-26 16:58:36 -06002101 builder.clearAccessChain();
2102 node->getLeft()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002103 spv::Id left = accessChainLoad(node->getLeft()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002104
John Kessenich32cfd492016-02-02 12:37:46 -07002105 // get left operand
John Kessenich140f3df2015-06-26 16:58:36 -06002106 builder.clearAccessChain();
2107 node->getRight()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002108 spv::Id right = accessChainLoad(node->getRight()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002109
John Kessenich32cfd492016-02-02 12:37:46 -07002110 // get result
John Kessenichead86222018-03-28 18:01:20 -06002111 OpDecorations decorations = { TranslatePrecisionDecoration(node->getOperationPrecision()),
John Kessenich5611c6d2018-04-05 11:25:02 -06002112 TranslateNoContractionDecoration(node->getType().getQualifier()),
2113 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06002114 spv::Id result = createBinaryOperation(node->getOp(), decorations,
John Kessenich32cfd492016-02-02 12:37:46 -07002115 convertGlslangToSpvType(node->getType()), left, right,
2116 node->getLeft()->getType().getBasicType());
John Kessenich140f3df2015-06-26 16:58:36 -06002117
John Kessenich50e57562015-12-21 21:21:11 -07002118 builder.clearAccessChain();
John Kessenich140f3df2015-06-26 16:58:36 -06002119 if (! result) {
Lei Zhang17535f72016-05-04 15:55:59 -04002120 logger->missingFunctionality("unknown glslang binary operation");
John Kessenich50e57562015-12-21 21:21:11 -07002121 return true; // pick up a child as the place-holder result
John Kessenich140f3df2015-06-26 16:58:36 -06002122 } else {
John Kessenich140f3df2015-06-26 16:58:36 -06002123 builder.setAccessChainRValue(result);
John Kessenich140f3df2015-06-26 16:58:36 -06002124 return false;
2125 }
John Kessenich140f3df2015-06-26 16:58:36 -06002126}
2127
John Kessenich9c14f772019-06-17 08:38:35 -06002128// Figure out what, if any, type changes are needed when accessing a specific built-in.
2129// Returns <the type SPIR-V requires for declarion, the type to translate to on use>.
2130// Also see comment for 'forceType', regarding tracking SPIR-V-required types.
Daniel Kochdb32b242020-03-17 20:42:47 -04002131std::pair<spv::Id, spv::Id> TGlslangToSpvTraverser::getForcedType(glslang::TBuiltInVariable glslangBuiltIn,
John Kessenich9c14f772019-06-17 08:38:35 -06002132 const glslang::TType& glslangType)
2133{
Daniel Kochdb32b242020-03-17 20:42:47 -04002134 switch(glslangBuiltIn)
John Kessenich9c14f772019-06-17 08:38:35 -06002135 {
Daniel Kochdb32b242020-03-17 20:42:47 -04002136 case glslang::EbvSubGroupEqMask:
2137 case glslang::EbvSubGroupGeMask:
2138 case glslang::EbvSubGroupGtMask:
2139 case glslang::EbvSubGroupLeMask:
2140 case glslang::EbvSubGroupLtMask: {
John Kessenich9c14f772019-06-17 08:38:35 -06002141 // these require changing a 64-bit scaler -> a vector of 32-bit components
2142 if (glslangType.isVector())
2143 break;
Daniel Kochffccefd2020-11-23 15:41:27 -05002144 spv::Id ivec4_type = builder.makeVectorType(builder.makeUintType(32), 4);
2145 spv::Id uint64_type = builder.makeUintType(64);
2146 std::pair<spv::Id, spv::Id> ret(ivec4_type, uint64_type);
John Kessenich9c14f772019-06-17 08:38:35 -06002147 return ret;
2148 }
Daniel Kochdb32b242020-03-17 20:42:47 -04002149 // There are no SPIR-V builtins defined for these and map onto original non-transposed
2150 // builtins. During visitBinary we insert a transpose
2151 case glslang::EbvWorldToObject3x4:
2152 case glslang::EbvObjectToWorld3x4: {
John Kessenichf80ef742020-07-14 01:44:35 -06002153 spv::Id mat43 = builder.makeMatrixType(builder.makeFloatType(32), 4, 3);
2154 spv::Id mat34 = builder.makeMatrixType(builder.makeFloatType(32), 3, 4);
2155 std::pair<spv::Id, spv::Id> ret(mat43, mat34);
Daniel Kochdb32b242020-03-17 20:42:47 -04002156 return ret;
2157 }
John Kessenich9c14f772019-06-17 08:38:35 -06002158 default:
2159 break;
2160 }
2161
2162 std::pair<spv::Id, spv::Id> ret(spv::NoType, spv::NoType);
2163 return ret;
2164}
2165
2166// For an object previously identified (see getForcedType() and forceType)
2167// as needing type translations, do the translation needed for a load, turning
2168// an L-value into in R-value.
2169spv::Id TGlslangToSpvTraverser::translateForcedType(spv::Id object)
2170{
2171 const auto forceIt = forceType.find(object);
2172 if (forceIt == forceType.end())
2173 return object;
2174
2175 spv::Id desiredTypeId = forceIt->second;
2176 spv::Id objectTypeId = builder.getTypeId(object);
2177 assert(builder.isPointerType(objectTypeId));
2178 objectTypeId = builder.getContainedTypeId(objectTypeId);
2179 if (builder.isVectorType(objectTypeId) &&
2180 builder.getScalarTypeWidth(builder.getContainedTypeId(objectTypeId)) == 32) {
2181 if (builder.getScalarTypeWidth(desiredTypeId) == 64) {
2182 // handle 32-bit v.xy* -> 64-bit
2183 builder.clearAccessChain();
2184 builder.setAccessChainLValue(object);
greg-lunarg639f5462020-11-12 11:10:07 -07002185 object = builder.accessChainLoad(spv::NoPrecision, spv::DecorationMax, spv::DecorationMax, objectTypeId);
John Kessenich9c14f772019-06-17 08:38:35 -06002186 std::vector<spv::Id> components;
2187 components.push_back(builder.createCompositeExtract(object, builder.getContainedTypeId(objectTypeId), 0));
2188 components.push_back(builder.createCompositeExtract(object, builder.getContainedTypeId(objectTypeId), 1));
2189
2190 spv::Id vecType = builder.makeVectorType(builder.getContainedTypeId(objectTypeId), 2);
2191 return builder.createUnaryOp(spv::OpBitcast, desiredTypeId,
2192 builder.createCompositeConstruct(vecType, components));
2193 } else {
2194 logger->missingFunctionality("forcing 32-bit vector type to non 64-bit scalar");
2195 }
Daniel Kochdb32b242020-03-17 20:42:47 -04002196 } else if (builder.isMatrixType(objectTypeId)) {
2197 // There are no SPIR-V builtins defined for 3x4 variants of ObjectToWorld/WorldToObject
2198 // and we insert a transpose after loading the original non-transposed builtins
2199 builder.clearAccessChain();
2200 builder.setAccessChainLValue(object);
greg-lunarg639f5462020-11-12 11:10:07 -07002201 object = builder.accessChainLoad(spv::NoPrecision, spv::DecorationMax, spv::DecorationMax, objectTypeId);
Daniel Kochdb32b242020-03-17 20:42:47 -04002202 return builder.createUnaryOp(spv::OpTranspose, desiredTypeId, object);
2203
2204 } else {
John Kessenich9c14f772019-06-17 08:38:35 -06002205 logger->missingFunctionality("forcing non 32-bit vector type");
2206 }
2207
2208 return object;
2209}
2210
John Kessenich140f3df2015-06-26 16:58:36 -06002211bool TGlslangToSpvTraverser::visitUnary(glslang::TVisit /* visit */, glslang::TIntermUnary* node)
2212{
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002213 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06002214
qining40887662016-04-03 22:20:42 -04002215 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
2216 if (node->getType().getQualifier().isSpecConstant())
2217 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
2218
John Kessenichfc51d282015-08-19 13:34:18 -06002219 spv::Id result = spv::NoResult;
2220
2221 // try texturing first
2222 result = createImageTextureFunctionCall(node);
2223 if (result != spv::NoResult) {
2224 builder.clearAccessChain();
2225 builder.setAccessChainRValue(result);
2226
2227 return false; // done with this node
2228 }
2229
2230 // Non-texturing.
John Kessenichc9a80832015-09-12 12:17:44 -06002231
2232 if (node->getOp() == glslang::EOpArrayLength) {
2233 // Quite special; won't want to evaluate the operand.
2234
John Kessenich5611c6d2018-04-05 11:25:02 -06002235 // Currently, the front-end does not allow .length() on an array until it is sized,
2236 // except for the last block membeor of an SSBO.
2237 // TODO: If this changes, link-time sized arrays might show up here, and need their
2238 // size extracted.
2239
John Kessenichc9a80832015-09-12 12:17:44 -06002240 // Normal .length() would have been constant folded by the front-end.
2241 // So, this has to be block.lastMember.length().
John Kessenichee21fc92015-09-21 21:50:29 -06002242 // SPV wants "block" and member number as the operands, go get them.
John Kessenichead86222018-03-28 18:01:20 -06002243
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002244 spv::Id length;
2245 if (node->getOperand()->getType().isCoopMat()) {
2246 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
2247
2248 spv::Id typeId = convertGlslangToSpvType(node->getOperand()->getType());
2249 assert(builder.isCooperativeMatrixType(typeId));
2250
2251 length = builder.createCooperativeMatrixLength(typeId);
2252 } else {
2253 glslang::TIntermTyped* block = node->getOperand()->getAsBinaryNode()->getLeft();
2254 block->traverse(this);
John Kessenich8985fc92020-03-03 10:25:07 -07002255 unsigned int member = node->getOperand()->getAsBinaryNode()->getRight()->getAsConstantUnion()
2256 ->getConstArray()[0].getUConst();
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002257 length = builder.createArrayLength(builder.accessChainGetLValue(), member);
2258 }
John Kessenichc9a80832015-09-12 12:17:44 -06002259
John Kessenich8c869672018-11-28 07:01:37 -07002260 // GLSL semantics say the result of .length() is an int, while SPIR-V says
2261 // signedness must be 0. So, convert from SPIR-V unsigned back to GLSL's
2262 // AST expectation of a signed result.
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002263 if (glslangIntermediate->getSource() == glslang::EShSourceGlsl) {
2264 if (builder.isInSpecConstCodeGenMode()) {
2265 length = builder.createBinOp(spv::OpIAdd, builder.makeIntType(32), length, builder.makeIntConstant(0));
2266 } else {
2267 length = builder.createUnaryOp(spv::OpBitcast, builder.makeIntType(32), length);
2268 }
2269 }
John Kessenich8c869672018-11-28 07:01:37 -07002270
John Kessenichc9a80832015-09-12 12:17:44 -06002271 builder.clearAccessChain();
2272 builder.setAccessChainRValue(length);
2273
2274 return false;
2275 }
2276
John Kessenichfc51d282015-08-19 13:34:18 -06002277 // Start by evaluating the operand
2278
John Kessenich8c8505c2016-07-26 12:50:38 -06002279 // Does it need a swizzle inversion? If so, evaluation is inverted;
2280 // operate first on the swizzle base, then apply the swizzle.
2281 spv::Id invertedType = spv::NoType;
John Kessenich8985fc92020-03-03 10:25:07 -07002282 auto resultType = [&invertedType, &node, this](){ return invertedType != spv::NoType ?
2283 invertedType : convertGlslangToSpvType(node->getType()); };
John Kessenich8c8505c2016-07-26 12:50:38 -06002284 if (node->getOp() == glslang::EOpInterpolateAtCentroid)
2285 invertedType = getInvertedSwizzleType(*node->getOperand());
2286
John Kessenich140f3df2015-06-26 16:58:36 -06002287 builder.clearAccessChain();
Jeff Bolz38a52fc2019-06-14 09:56:28 -05002288 TIntermNode *operandNode;
John Kessenich8c8505c2016-07-26 12:50:38 -06002289 if (invertedType != spv::NoType)
Jeff Bolz38a52fc2019-06-14 09:56:28 -05002290 operandNode = node->getOperand()->getAsBinaryNode()->getLeft();
John Kessenich8c8505c2016-07-26 12:50:38 -06002291 else
Jeff Bolz38a52fc2019-06-14 09:56:28 -05002292 operandNode = node->getOperand();
2293
2294 operandNode->traverse(this);
Rex Xu30f92582015-09-14 10:38:56 +08002295
Rex Xufc618912015-09-09 16:42:49 +08002296 spv::Id operand = spv::NoResult;
2297
Jeff Bolz38a52fc2019-06-14 09:56:28 -05002298 spv::Builder::AccessChain::CoherentFlags lvalueCoherentFlags;
2299
John Kessenichfb4f2332019-08-09 03:49:15 -06002300#ifndef GLSLANG_WEB
Rex Xufc618912015-09-09 16:42:49 +08002301 if (node->getOp() == glslang::EOpAtomicCounterIncrement ||
2302 node->getOp() == glslang::EOpAtomicCounterDecrement ||
Rex Xu7a26c172015-12-08 17:12:09 +08002303 node->getOp() == glslang::EOpAtomicCounter ||
Neslisah Torosdagli7d37a682020-03-26 10:52:33 -04002304 node->getOp() == glslang::EOpInterpolateAtCentroid ||
2305 node->getOp() == glslang::EOpRayQueryProceed ||
2306 node->getOp() == glslang::EOpRayQueryGetRayTMin ||
2307 node->getOp() == glslang::EOpRayQueryGetRayFlags ||
2308 node->getOp() == glslang::EOpRayQueryGetWorldRayOrigin ||
2309 node->getOp() == glslang::EOpRayQueryGetWorldRayDirection ||
2310 node->getOp() == glslang::EOpRayQueryGetIntersectionCandidateAABBOpaque ||
2311 node->getOp() == glslang::EOpRayQueryTerminate ||
2312 node->getOp() == glslang::EOpRayQueryConfirmIntersection) {
Rex Xufc618912015-09-09 16:42:49 +08002313 operand = builder.accessChainGetLValue(); // Special case l-value operands
Jeff Bolz38a52fc2019-06-14 09:56:28 -05002314 lvalueCoherentFlags = builder.getAccessChain().coherentFlags;
2315 lvalueCoherentFlags |= TranslateCoherent(operandNode->getAsTyped()->getType());
2316 } else
John Kessenichfb4f2332019-08-09 03:49:15 -06002317#endif
2318 {
John Kessenich32cfd492016-02-02 12:37:46 -07002319 operand = accessChainLoad(node->getOperand()->getType());
John Kessenichfb4f2332019-08-09 03:49:15 -06002320 }
John Kessenich140f3df2015-06-26 16:58:36 -06002321
John Kessenichead86222018-03-28 18:01:20 -06002322 OpDecorations decorations = { TranslatePrecisionDecoration(node->getOperationPrecision()),
John Kessenich5611c6d2018-04-05 11:25:02 -06002323 TranslateNoContractionDecoration(node->getType().getQualifier()),
2324 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenich140f3df2015-06-26 16:58:36 -06002325
2326 // it could be a conversion
John Kessenichfc51d282015-08-19 13:34:18 -06002327 if (! result)
John Kessenich8985fc92020-03-03 10:25:07 -07002328 result = createConversion(node->getOp(), decorations, resultType(), operand,
2329 node->getOperand()->getBasicType());
John Kessenich140f3df2015-06-26 16:58:36 -06002330
2331 // if not, then possibly an operation
2332 if (! result)
John Kessenich8985fc92020-03-03 10:25:07 -07002333 result = createUnaryOperation(node->getOp(), decorations, resultType(), operand,
2334 node->getOperand()->getBasicType(), lvalueCoherentFlags);
John Kessenich140f3df2015-06-26 16:58:36 -06002335
2336 if (result) {
John Kessenich5611c6d2018-04-05 11:25:02 -06002337 if (invertedType) {
John Kessenichead86222018-03-28 18:01:20 -06002338 result = createInvertedSwizzle(decorations.precision, *node->getOperand(), result);
John Kessenichb9197c82019-08-11 07:41:45 -06002339 decorations.addNonUniform(builder, result);
John Kessenich5611c6d2018-04-05 11:25:02 -06002340 }
John Kessenich8c8505c2016-07-26 12:50:38 -06002341
John Kessenich140f3df2015-06-26 16:58:36 -06002342 builder.clearAccessChain();
2343 builder.setAccessChainRValue(result);
2344
2345 return false; // done with this node
2346 }
2347
2348 // it must be a special case, check...
2349 switch (node->getOp()) {
2350 case glslang::EOpPostIncrement:
2351 case glslang::EOpPostDecrement:
2352 case glslang::EOpPreIncrement:
2353 case glslang::EOpPreDecrement:
2354 {
2355 // we need the integer value "1" or the floating point "1.0" to add/subtract
Rex Xu8ff43de2016-04-22 16:51:45 +08002356 spv::Id one = 0;
2357 if (node->getBasicType() == glslang::EbtFloat)
2358 one = builder.makeFloatConstant(1.0F);
John Kessenich39697cd2019-08-08 10:35:51 -06002359#ifndef GLSLANG_WEB
Rex Xuce31aea2016-07-29 16:13:04 +08002360 else if (node->getBasicType() == glslang::EbtDouble)
2361 one = builder.makeDoubleConstant(1.0);
Rex Xuc9e3c3c2016-07-29 16:00:05 +08002362 else if (node->getBasicType() == glslang::EbtFloat16)
2363 one = builder.makeFloat16Constant(1.0F);
John Kessenich66011cb2018-03-06 16:12:04 -07002364 else if (node->getBasicType() == glslang::EbtInt8 || node->getBasicType() == glslang::EbtUint8)
2365 one = builder.makeInt8Constant(1);
Rex Xucabbb782017-03-24 13:41:14 +08002366 else if (node->getBasicType() == glslang::EbtInt16 || node->getBasicType() == glslang::EbtUint16)
2367 one = builder.makeInt16Constant(1);
John Kessenich66011cb2018-03-06 16:12:04 -07002368 else if (node->getBasicType() == glslang::EbtInt64 || node->getBasicType() == glslang::EbtUint64)
2369 one = builder.makeInt64Constant(1);
John Kessenich39697cd2019-08-08 10:35:51 -06002370#endif
Rex Xu8ff43de2016-04-22 16:51:45 +08002371 else
2372 one = builder.makeIntConstant(1);
John Kessenich140f3df2015-06-26 16:58:36 -06002373 glslang::TOperator op;
2374 if (node->getOp() == glslang::EOpPreIncrement ||
2375 node->getOp() == glslang::EOpPostIncrement)
2376 op = glslang::EOpAdd;
2377 else
2378 op = glslang::EOpSub;
2379
John Kessenichead86222018-03-28 18:01:20 -06002380 spv::Id result = createBinaryOperation(op, decorations,
Rex Xu8ff43de2016-04-22 16:51:45 +08002381 convertGlslangToSpvType(node->getType()), operand, one,
2382 node->getType().getBasicType());
John Kessenich55e7d112015-11-15 21:33:39 -07002383 assert(result != spv::NoResult);
John Kessenich140f3df2015-06-26 16:58:36 -06002384
2385 // The result of operation is always stored, but conditionally the
2386 // consumed result. The consumed result is always an r-value.
Bas Nieuwenhuizende949a22020-08-24 23:27:26 +02002387 builder.accessChainStore(result,
greg-lunarg639f5462020-11-12 11:10:07 -07002388 TranslateNonUniformDecoration(builder.getAccessChain().coherentFlags));
John Kessenich140f3df2015-06-26 16:58:36 -06002389 builder.clearAccessChain();
2390 if (node->getOp() == glslang::EOpPreIncrement ||
2391 node->getOp() == glslang::EOpPreDecrement)
2392 builder.setAccessChainRValue(result);
2393 else
2394 builder.setAccessChainRValue(operand);
2395 }
2396
2397 return false;
2398
John Kessenich155d3512019-08-08 23:29:20 -06002399#ifndef GLSLANG_WEB
John Kessenich140f3df2015-06-26 16:58:36 -06002400 case glslang::EOpEmitStreamVertex:
2401 builder.createNoResultOp(spv::OpEmitStreamVertex, operand);
2402 return false;
2403 case glslang::EOpEndStreamPrimitive:
2404 builder.createNoResultOp(spv::OpEndStreamPrimitive, operand);
2405 return false;
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002406 case glslang::EOpRayQueryTerminate:
2407 builder.createNoResultOp(spv::OpRayQueryTerminateKHR, operand);
2408 return false;
2409 case glslang::EOpRayQueryConfirmIntersection:
2410 builder.createNoResultOp(spv::OpRayQueryConfirmIntersectionKHR, operand);
2411 return false;
John Kessenich155d3512019-08-08 23:29:20 -06002412#endif
John Kessenich140f3df2015-06-26 16:58:36 -06002413
2414 default:
Lei Zhang17535f72016-05-04 15:55:59 -04002415 logger->missingFunctionality("unknown glslang unary");
John Kessenich50e57562015-12-21 21:21:11 -07002416 return true; // pick up operand as placeholder result
John Kessenich140f3df2015-06-26 16:58:36 -06002417 }
John Kessenich140f3df2015-06-26 16:58:36 -06002418}
2419
Jeff Bolz53134492019-06-25 13:31:10 -05002420// Construct a composite object, recursively copying members if their types don't match
2421spv::Id TGlslangToSpvTraverser::createCompositeConstruct(spv::Id resultTypeId, std::vector<spv::Id> constituents)
2422{
2423 for (int c = 0; c < (int)constituents.size(); ++c) {
2424 spv::Id& constituent = constituents[c];
2425 spv::Id lType = builder.getContainedTypeId(resultTypeId, c);
2426 spv::Id rType = builder.getTypeId(constituent);
2427 if (lType != rType) {
2428 if (glslangIntermediate->getSpv().spv >= glslang::EShTargetSpv_1_4) {
2429 constituent = builder.createUnaryOp(spv::OpCopyLogical, lType, constituent);
2430 } else if (builder.isStructType(rType)) {
2431 std::vector<spv::Id> rTypeConstituents;
2432 int numrTypeConstituents = builder.getNumTypeConstituents(rType);
2433 for (int i = 0; i < numrTypeConstituents; ++i) {
John Kessenich8985fc92020-03-03 10:25:07 -07002434 rTypeConstituents.push_back(builder.createCompositeExtract(constituent,
2435 builder.getContainedTypeId(rType, i), i));
Jeff Bolz53134492019-06-25 13:31:10 -05002436 }
2437 constituents[c] = createCompositeConstruct(lType, rTypeConstituents);
2438 } else {
2439 assert(builder.isArrayType(rType));
2440 std::vector<spv::Id> rTypeConstituents;
2441 int numrTypeConstituents = builder.getNumTypeConstituents(rType);
2442
2443 spv::Id elementRType = builder.getContainedTypeId(rType);
2444 for (int i = 0; i < numrTypeConstituents; ++i) {
2445 rTypeConstituents.push_back(builder.createCompositeExtract(constituent, elementRType, i));
2446 }
2447 constituents[c] = createCompositeConstruct(lType, rTypeConstituents);
2448 }
2449 }
2450 }
2451 return builder.createCompositeConstruct(resultTypeId, constituents);
2452}
2453
John Kessenich140f3df2015-06-26 16:58:36 -06002454bool TGlslangToSpvTraverser::visitAggregate(glslang::TVisit visit, glslang::TIntermAggregate* node)
2455{
qining27e04a02016-04-14 16:40:20 -04002456 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
2457 if (node->getType().getQualifier().isSpecConstant())
2458 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
2459
John Kessenichfc51d282015-08-19 13:34:18 -06002460 spv::Id result = spv::NoResult;
Cody Northrop4d2298b2020-04-13 21:59:49 -06002461 spv::Id invertedType = spv::NoType; // to use to override the natural type of the node
2462 std::vector<spv::Builder::AccessChain> complexLvalues; // for holding swizzling l-values too complex for
2463 // SPIR-V, for an out parameter
2464 std::vector<spv::Id> temporaryLvalues; // temporaries to pass, as proxies for complexLValues
John Kessenichbbbd9a22020-03-03 07:21:37 -07002465
John Kessenich8985fc92020-03-03 10:25:07 -07002466 auto resultType = [&invertedType, &node, this](){ return invertedType != spv::NoType ?
2467 invertedType :
2468 convertGlslangToSpvType(node->getType()); };
John Kessenichfc51d282015-08-19 13:34:18 -06002469
2470 // try texturing
2471 result = createImageTextureFunctionCall(node);
2472 if (result != spv::NoResult) {
2473 builder.clearAccessChain();
2474 builder.setAccessChainRValue(result);
2475
2476 return false;
John Kessenicha28f7a72019-08-06 07:00:58 -06002477 }
2478#ifndef GLSLANG_WEB
2479 else if (node->getOp() == glslang::EOpImageStore ||
Jeff Bolz36831c92018-09-05 10:11:41 -05002480 node->getOp() == glslang::EOpImageStoreLod ||
Jeff Bolz36831c92018-09-05 10:11:41 -05002481 node->getOp() == glslang::EOpImageAtomicStore) {
Rex Xufc618912015-09-09 16:42:49 +08002482 // "imageStore" is a special case, which has no result
2483 return false;
2484 }
John Kessenicha28f7a72019-08-06 07:00:58 -06002485#endif
John Kessenichfc51d282015-08-19 13:34:18 -06002486
John Kessenich140f3df2015-06-26 16:58:36 -06002487 glslang::TOperator binOp = glslang::EOpNull;
2488 bool reduceComparison = true;
2489 bool isMatrix = false;
2490 bool noReturnValue = false;
John Kessenich426394d2015-07-23 10:22:48 -06002491 bool atomic = false;
John Kessenich140f3df2015-06-26 16:58:36 -06002492
Jeff Bolz38a52fc2019-06-14 09:56:28 -05002493 spv::Builder::AccessChain::CoherentFlags lvalueCoherentFlags;
2494
John Kessenich140f3df2015-06-26 16:58:36 -06002495 assert(node->getOp());
2496
John Kessenichf6640762016-08-01 19:44:00 -06002497 spv::Decoration precision = TranslatePrecisionDecoration(node->getOperationPrecision());
John Kessenich140f3df2015-06-26 16:58:36 -06002498
2499 switch (node->getOp()) {
2500 case glslang::EOpSequence:
2501 {
2502 if (preVisit)
2503 ++sequenceDepth;
2504 else
2505 --sequenceDepth;
2506
2507 if (sequenceDepth == 1) {
2508 // If this is the parent node of all the functions, we want to see them
2509 // early, so all call points have actual SPIR-V functions to reference.
2510 // In all cases, still let the traverser visit the children for us.
2511 makeFunctions(node->getAsAggregate()->getSequence());
2512
John Kessenich6fccb3c2016-09-19 16:01:41 -06002513 // Also, we want all globals initializers to go into the beginning of the entry point, before
John Kessenich140f3df2015-06-26 16:58:36 -06002514 // anything else gets there, so visit out of order, doing them all now.
2515 makeGlobalInitializers(node->getAsAggregate()->getSequence());
2516
Daniel Kochffccefd2020-11-23 15:41:27 -05002517 //Pre process linker objects for ray tracing stages
2518 if (glslangIntermediate->isRayTracingStage())
2519 collectRayTracingLinkerObjects();
2520
John Kessenich6a60c2f2016-12-08 21:01:59 -07002521 // Initializers are done, don't want to visit again, but functions and link objects need to be processed,
John Kessenich140f3df2015-06-26 16:58:36 -06002522 // so do them manually.
2523 visitFunctions(node->getAsAggregate()->getSequence());
2524
2525 return false;
2526 }
2527
2528 return true;
2529 }
2530 case glslang::EOpLinkerObjects:
2531 {
2532 if (visit == glslang::EvPreVisit)
2533 linkageOnly = true;
2534 else
2535 linkageOnly = false;
2536
2537 return true;
2538 }
2539 case glslang::EOpComma:
2540 {
2541 // processing from left to right naturally leaves the right-most
2542 // lying around in the access chain
2543 glslang::TIntermSequence& glslangOperands = node->getSequence();
2544 for (int i = 0; i < (int)glslangOperands.size(); ++i)
2545 glslangOperands[i]->traverse(this);
2546
2547 return false;
2548 }
2549 case glslang::EOpFunction:
2550 if (visit == glslang::EvPreVisit) {
John Kessenich6fccb3c2016-09-19 16:01:41 -06002551 if (isShaderEntryPoint(node)) {
John Kessenich517fe7a2016-11-26 13:31:47 -07002552 inEntryPoint = true;
John Kessenich140f3df2015-06-26 16:58:36 -06002553 builder.setBuildPoint(shaderEntry->getLastBlock());
John Kesseniched33e052016-10-06 12:59:51 -06002554 currentFunction = shaderEntry;
John Kessenich140f3df2015-06-26 16:58:36 -06002555 } else {
2556 handleFunctionEntry(node);
2557 }
2558 } else {
John Kessenich517fe7a2016-11-26 13:31:47 -07002559 if (inEntryPoint)
2560 entryPointTerminated = true;
John Kesseniche770b3e2015-09-14 20:58:02 -06002561 builder.leaveFunction();
John Kessenich517fe7a2016-11-26 13:31:47 -07002562 inEntryPoint = false;
John Kessenich140f3df2015-06-26 16:58:36 -06002563 }
2564
2565 return true;
2566 case glslang::EOpParameters:
2567 // Parameters will have been consumed by EOpFunction processing, but not
2568 // the body, so we still visited the function node's children, making this
2569 // child redundant.
2570 return false;
2571 case glslang::EOpFunctionCall:
2572 {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002573 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenich140f3df2015-06-26 16:58:36 -06002574 if (node->isUserDefined())
2575 result = handleUserFunctionCall(node);
John Kessenich6c292d32016-02-15 20:58:50 -07002576 if (result) {
2577 builder.clearAccessChain();
2578 builder.setAccessChainRValue(result);
2579 } else
Lei Zhang17535f72016-05-04 15:55:59 -04002580 logger->missingFunctionality("missing user function; linker needs to catch that");
John Kessenich140f3df2015-06-26 16:58:36 -06002581
2582 return false;
2583 }
2584 case glslang::EOpConstructMat2x2:
2585 case glslang::EOpConstructMat2x3:
2586 case glslang::EOpConstructMat2x4:
2587 case glslang::EOpConstructMat3x2:
2588 case glslang::EOpConstructMat3x3:
2589 case glslang::EOpConstructMat3x4:
2590 case glslang::EOpConstructMat4x2:
2591 case glslang::EOpConstructMat4x3:
2592 case glslang::EOpConstructMat4x4:
2593 case glslang::EOpConstructDMat2x2:
2594 case glslang::EOpConstructDMat2x3:
2595 case glslang::EOpConstructDMat2x4:
2596 case glslang::EOpConstructDMat3x2:
2597 case glslang::EOpConstructDMat3x3:
2598 case glslang::EOpConstructDMat3x4:
2599 case glslang::EOpConstructDMat4x2:
2600 case glslang::EOpConstructDMat4x3:
2601 case glslang::EOpConstructDMat4x4:
LoopDawg174ccb82017-05-20 21:40:27 -06002602 case glslang::EOpConstructIMat2x2:
2603 case glslang::EOpConstructIMat2x3:
2604 case glslang::EOpConstructIMat2x4:
2605 case glslang::EOpConstructIMat3x2:
2606 case glslang::EOpConstructIMat3x3:
2607 case glslang::EOpConstructIMat3x4:
2608 case glslang::EOpConstructIMat4x2:
2609 case glslang::EOpConstructIMat4x3:
2610 case glslang::EOpConstructIMat4x4:
2611 case glslang::EOpConstructUMat2x2:
2612 case glslang::EOpConstructUMat2x3:
2613 case glslang::EOpConstructUMat2x4:
2614 case glslang::EOpConstructUMat3x2:
2615 case glslang::EOpConstructUMat3x3:
2616 case glslang::EOpConstructUMat3x4:
2617 case glslang::EOpConstructUMat4x2:
2618 case glslang::EOpConstructUMat4x3:
2619 case glslang::EOpConstructUMat4x4:
2620 case glslang::EOpConstructBMat2x2:
2621 case glslang::EOpConstructBMat2x3:
2622 case glslang::EOpConstructBMat2x4:
2623 case glslang::EOpConstructBMat3x2:
2624 case glslang::EOpConstructBMat3x3:
2625 case glslang::EOpConstructBMat3x4:
2626 case glslang::EOpConstructBMat4x2:
2627 case glslang::EOpConstructBMat4x3:
2628 case glslang::EOpConstructBMat4x4:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08002629 case glslang::EOpConstructF16Mat2x2:
2630 case glslang::EOpConstructF16Mat2x3:
2631 case glslang::EOpConstructF16Mat2x4:
2632 case glslang::EOpConstructF16Mat3x2:
2633 case glslang::EOpConstructF16Mat3x3:
2634 case glslang::EOpConstructF16Mat3x4:
2635 case glslang::EOpConstructF16Mat4x2:
2636 case glslang::EOpConstructF16Mat4x3:
2637 case glslang::EOpConstructF16Mat4x4:
John Kessenich140f3df2015-06-26 16:58:36 -06002638 isMatrix = true;
2639 // fall through
2640 case glslang::EOpConstructFloat:
2641 case glslang::EOpConstructVec2:
2642 case glslang::EOpConstructVec3:
2643 case glslang::EOpConstructVec4:
2644 case glslang::EOpConstructDouble:
2645 case glslang::EOpConstructDVec2:
2646 case glslang::EOpConstructDVec3:
2647 case glslang::EOpConstructDVec4:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08002648 case glslang::EOpConstructFloat16:
2649 case glslang::EOpConstructF16Vec2:
2650 case glslang::EOpConstructF16Vec3:
2651 case glslang::EOpConstructF16Vec4:
John Kessenich140f3df2015-06-26 16:58:36 -06002652 case glslang::EOpConstructBool:
2653 case glslang::EOpConstructBVec2:
2654 case glslang::EOpConstructBVec3:
2655 case glslang::EOpConstructBVec4:
John Kessenich66011cb2018-03-06 16:12:04 -07002656 case glslang::EOpConstructInt8:
2657 case glslang::EOpConstructI8Vec2:
2658 case glslang::EOpConstructI8Vec3:
2659 case glslang::EOpConstructI8Vec4:
2660 case glslang::EOpConstructUint8:
2661 case glslang::EOpConstructU8Vec2:
2662 case glslang::EOpConstructU8Vec3:
2663 case glslang::EOpConstructU8Vec4:
2664 case glslang::EOpConstructInt16:
2665 case glslang::EOpConstructI16Vec2:
2666 case glslang::EOpConstructI16Vec3:
2667 case glslang::EOpConstructI16Vec4:
2668 case glslang::EOpConstructUint16:
2669 case glslang::EOpConstructU16Vec2:
2670 case glslang::EOpConstructU16Vec3:
2671 case glslang::EOpConstructU16Vec4:
John Kessenich140f3df2015-06-26 16:58:36 -06002672 case glslang::EOpConstructInt:
2673 case glslang::EOpConstructIVec2:
2674 case glslang::EOpConstructIVec3:
2675 case glslang::EOpConstructIVec4:
2676 case glslang::EOpConstructUint:
2677 case glslang::EOpConstructUVec2:
2678 case glslang::EOpConstructUVec3:
2679 case glslang::EOpConstructUVec4:
Rex Xu8ff43de2016-04-22 16:51:45 +08002680 case glslang::EOpConstructInt64:
2681 case glslang::EOpConstructI64Vec2:
2682 case glslang::EOpConstructI64Vec3:
2683 case glslang::EOpConstructI64Vec4:
2684 case glslang::EOpConstructUint64:
2685 case glslang::EOpConstructU64Vec2:
2686 case glslang::EOpConstructU64Vec3:
2687 case glslang::EOpConstructU64Vec4:
John Kessenich140f3df2015-06-26 16:58:36 -06002688 case glslang::EOpConstructStruct:
John Kessenich6c292d32016-02-15 20:58:50 -07002689 case glslang::EOpConstructTextureSampler:
Jeff Bolz9f2aec42019-01-06 17:58:04 -06002690 case glslang::EOpConstructReference:
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002691 case glslang::EOpConstructCooperativeMatrix:
John Kessenich140f3df2015-06-26 16:58:36 -06002692 {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002693 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenich140f3df2015-06-26 16:58:36 -06002694 std::vector<spv::Id> arguments;
Jeff Bolz38a52fc2019-06-14 09:56:28 -05002695 translateArguments(*node, arguments, lvalueCoherentFlags);
John Kessenich140f3df2015-06-26 16:58:36 -06002696 spv::Id constructed;
John Kessenich6c292d32016-02-15 20:58:50 -07002697 if (node->getOp() == glslang::EOpConstructTextureSampler)
John Kessenich8c8505c2016-07-26 12:50:38 -06002698 constructed = builder.createOp(spv::OpSampledImage, resultType(), arguments);
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002699 else if (node->getOp() == glslang::EOpConstructStruct ||
2700 node->getOp() == glslang::EOpConstructCooperativeMatrix ||
2701 node->getType().isArray()) {
John Kessenich140f3df2015-06-26 16:58:36 -06002702 std::vector<spv::Id> constituents;
2703 for (int c = 0; c < (int)arguments.size(); ++c)
2704 constituents.push_back(arguments[c]);
Jeff Bolz53134492019-06-25 13:31:10 -05002705 constructed = createCompositeConstruct(resultType(), constituents);
John Kessenich55e7d112015-11-15 21:33:39 -07002706 } else if (isMatrix)
John Kessenich8c8505c2016-07-26 12:50:38 -06002707 constructed = builder.createMatrixConstructor(precision, arguments, resultType());
John Kessenich55e7d112015-11-15 21:33:39 -07002708 else
John Kessenich8c8505c2016-07-26 12:50:38 -06002709 constructed = builder.createConstructor(precision, arguments, resultType());
John Kessenich140f3df2015-06-26 16:58:36 -06002710
Bas Nieuwenhuizenc9ffeec2020-09-03 03:09:39 +02002711 if (node->getType().getQualifier().isNonUniform()) {
2712 builder.addDecoration(constructed, spv::DecorationNonUniformEXT);
2713 }
2714
John Kessenich140f3df2015-06-26 16:58:36 -06002715 builder.clearAccessChain();
2716 builder.setAccessChainRValue(constructed);
2717
2718 return false;
2719 }
2720
2721 // These six are component-wise compares with component-wise results.
2722 // Forward on to createBinaryOperation(), requesting a vector result.
2723 case glslang::EOpLessThan:
2724 case glslang::EOpGreaterThan:
2725 case glslang::EOpLessThanEqual:
2726 case glslang::EOpGreaterThanEqual:
2727 case glslang::EOpVectorEqual:
2728 case glslang::EOpVectorNotEqual:
2729 {
2730 // Map the operation to a binary
2731 binOp = node->getOp();
2732 reduceComparison = false;
2733 switch (node->getOp()) {
2734 case glslang::EOpVectorEqual: binOp = glslang::EOpVectorEqual; break;
2735 case glslang::EOpVectorNotEqual: binOp = glslang::EOpVectorNotEqual; break;
2736 default: binOp = node->getOp(); break;
2737 }
2738
2739 break;
2740 }
2741 case glslang::EOpMul:
John Kessenich8c8505c2016-07-26 12:50:38 -06002742 // component-wise matrix multiply
John Kessenich140f3df2015-06-26 16:58:36 -06002743 binOp = glslang::EOpMul;
2744 break;
2745 case glslang::EOpOuterProduct:
2746 // two vectors multiplied to make a matrix
2747 binOp = glslang::EOpOuterProduct;
2748 break;
2749 case glslang::EOpDot:
2750 {
qining25262b32016-05-06 17:25:16 -04002751 // for scalar dot product, use multiply
John Kessenich140f3df2015-06-26 16:58:36 -06002752 glslang::TIntermSequence& glslangOperands = node->getSequence();
John Kessenich8d72f1a2016-05-20 12:06:03 -06002753 if (glslangOperands[0]->getAsTyped()->getVectorSize() == 1)
John Kessenich140f3df2015-06-26 16:58:36 -06002754 binOp = glslang::EOpMul;
2755 break;
2756 }
2757 case glslang::EOpMod:
2758 // when an aggregate, this is the floating-point mod built-in function,
2759 // which can be emitted by the one in createBinaryOperation()
2760 binOp = glslang::EOpMod;
2761 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06002762
John Kessenich140f3df2015-06-26 16:58:36 -06002763 case glslang::EOpEmitVertex:
2764 case glslang::EOpEndPrimitive:
2765 case glslang::EOpBarrier:
2766 case glslang::EOpMemoryBarrier:
2767 case glslang::EOpMemoryBarrierAtomicCounter:
2768 case glslang::EOpMemoryBarrierBuffer:
2769 case glslang::EOpMemoryBarrierImage:
2770 case glslang::EOpMemoryBarrierShared:
2771 case glslang::EOpGroupMemoryBarrier:
John Kessenich838d7af2017-12-12 22:50:53 -07002772 case glslang::EOpDeviceMemoryBarrier:
LoopDawg6e72fdd2016-06-15 09:50:24 -06002773 case glslang::EOpAllMemoryBarrierWithGroupSync:
John Kessenich838d7af2017-12-12 22:50:53 -07002774 case glslang::EOpDeviceMemoryBarrierWithGroupSync:
LoopDawg6e72fdd2016-06-15 09:50:24 -06002775 case glslang::EOpWorkgroupMemoryBarrier:
2776 case glslang::EOpWorkgroupMemoryBarrierWithGroupSync:
John Kessenich66011cb2018-03-06 16:12:04 -07002777 case glslang::EOpSubgroupBarrier:
2778 case glslang::EOpSubgroupMemoryBarrier:
2779 case glslang::EOpSubgroupMemoryBarrierBuffer:
2780 case glslang::EOpSubgroupMemoryBarrierImage:
2781 case glslang::EOpSubgroupMemoryBarrierShared:
John Kessenich140f3df2015-06-26 16:58:36 -06002782 noReturnValue = true;
2783 // These all have 0 operands and will naturally finish up in the code below for 0 operands
2784 break;
2785
John Kessenich426394d2015-07-23 10:22:48 -06002786 case glslang::EOpAtomicAdd:
greg-lunarg4e064ee2021-03-15 11:26:11 -06002787 case glslang::EOpAtomicSubtract:
John Kessenich426394d2015-07-23 10:22:48 -06002788 case glslang::EOpAtomicMin:
2789 case glslang::EOpAtomicMax:
2790 case glslang::EOpAtomicAnd:
2791 case glslang::EOpAtomicOr:
2792 case glslang::EOpAtomicXor:
2793 case glslang::EOpAtomicExchange:
2794 case glslang::EOpAtomicCompSwap:
2795 atomic = true;
2796 break;
2797
John Kesseniche5eee8f2019-10-18 01:03:11 -06002798#ifndef GLSLANG_WEB
2799 case glslang::EOpAtomicStore:
2800 noReturnValue = true;
2801 // fallthrough
2802 case glslang::EOpAtomicLoad:
2803 atomic = true;
2804 break;
2805
John Kessenich0d0c6d32017-07-23 16:08:26 -06002806 case glslang::EOpAtomicCounterAdd:
2807 case glslang::EOpAtomicCounterSubtract:
2808 case glslang::EOpAtomicCounterMin:
2809 case glslang::EOpAtomicCounterMax:
2810 case glslang::EOpAtomicCounterAnd:
2811 case glslang::EOpAtomicCounterOr:
2812 case glslang::EOpAtomicCounterXor:
2813 case glslang::EOpAtomicCounterExchange:
2814 case glslang::EOpAtomicCounterCompSwap:
2815 builder.addExtension("SPV_KHR_shader_atomic_counter_ops");
2816 builder.addCapability(spv::CapabilityAtomicStorageOps);
2817 atomic = true;
2818 break;
2819
Ian Romanickb3bd4022019-01-21 08:57:25 -08002820 case glslang::EOpAbsDifference:
2821 case glslang::EOpAddSaturate:
2822 case glslang::EOpSubSaturate:
2823 case glslang::EOpAverage:
2824 case glslang::EOpAverageRounded:
2825 case glslang::EOpMul32x16:
2826 builder.addCapability(spv::CapabilityIntegerFunctions2INTEL);
2827 builder.addExtension("SPV_INTEL_shader_integer_functions2");
2828 binOp = node->getOp();
2829 break;
2830
Daniel Kochffccefd2020-11-23 15:41:27 -05002831 case glslang::EOpIgnoreIntersectionNV:
2832 case glslang::EOpTerminateRayNV:
2833 case glslang::EOpTraceNV:
2834 case glslang::EOpTraceKHR:
2835 case glslang::EOpExecuteCallableNV:
2836 case glslang::EOpExecuteCallableKHR:
Chao Chen3c366992018-09-19 11:41:59 -07002837 case glslang::EOpWritePackedPrimitiveIndices4x8NV:
2838 noReturnValue = true;
2839 break;
Torosdagli06c2eee2020-03-19 11:09:57 -04002840 case glslang::EOpRayQueryInitialize:
2841 case glslang::EOpRayQueryTerminate:
2842 case glslang::EOpRayQueryGenerateIntersection:
2843 case glslang::EOpRayQueryConfirmIntersection:
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002844 builder.addExtension("SPV_KHR_ray_query");
Daniel Kochffccefd2020-11-23 15:41:27 -05002845 builder.addCapability(spv::CapabilityRayQueryKHR);
Torosdagli06c2eee2020-03-19 11:09:57 -04002846 noReturnValue = true;
2847 break;
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002848 case glslang::EOpRayQueryProceed:
2849 case glslang::EOpRayQueryGetIntersectionType:
2850 case glslang::EOpRayQueryGetRayTMin:
2851 case glslang::EOpRayQueryGetRayFlags:
2852 case glslang::EOpRayQueryGetIntersectionT:
2853 case glslang::EOpRayQueryGetIntersectionInstanceCustomIndex:
2854 case glslang::EOpRayQueryGetIntersectionInstanceId:
2855 case glslang::EOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffset:
2856 case glslang::EOpRayQueryGetIntersectionGeometryIndex:
2857 case glslang::EOpRayQueryGetIntersectionPrimitiveIndex:
2858 case glslang::EOpRayQueryGetIntersectionBarycentrics:
2859 case glslang::EOpRayQueryGetIntersectionFrontFace:
2860 case glslang::EOpRayQueryGetIntersectionCandidateAABBOpaque:
2861 case glslang::EOpRayQueryGetIntersectionObjectRayDirection:
2862 case glslang::EOpRayQueryGetIntersectionObjectRayOrigin:
2863 case glslang::EOpRayQueryGetWorldRayDirection:
2864 case glslang::EOpRayQueryGetWorldRayOrigin:
2865 case glslang::EOpRayQueryGetIntersectionObjectToWorld:
2866 case glslang::EOpRayQueryGetIntersectionWorldToObject:
2867 builder.addExtension("SPV_KHR_ray_query");
Daniel Kochffccefd2020-11-23 15:41:27 -05002868 builder.addCapability(spv::CapabilityRayQueryKHR);
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002869 break;
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002870 case glslang::EOpCooperativeMatrixLoad:
2871 case glslang::EOpCooperativeMatrixStore:
2872 noReturnValue = true;
2873 break;
Jeff Bolzc6f0ce82019-06-03 11:33:50 -05002874 case glslang::EOpBeginInvocationInterlock:
2875 case glslang::EOpEndInvocationInterlock:
2876 builder.addExtension(spv::E_SPV_EXT_fragment_shader_interlock);
2877 noReturnValue = true;
2878 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06002879#endif
Chao Chen3c366992018-09-19 11:41:59 -07002880
Jeff Bolz04d73732019-05-31 13:06:01 -05002881 case glslang::EOpDebugPrintf:
2882 noReturnValue = true;
2883 break;
2884
John Kessenich140f3df2015-06-26 16:58:36 -06002885 default:
2886 break;
2887 }
2888
2889 //
2890 // See if it maps to a regular operation.
2891 //
John Kessenich140f3df2015-06-26 16:58:36 -06002892 if (binOp != glslang::EOpNull) {
2893 glslang::TIntermTyped* left = node->getSequence()[0]->getAsTyped();
2894 glslang::TIntermTyped* right = node->getSequence()[1]->getAsTyped();
2895 assert(left && right);
2896
2897 builder.clearAccessChain();
2898 left->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002899 spv::Id leftId = accessChainLoad(left->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002900
2901 builder.clearAccessChain();
2902 right->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002903 spv::Id rightId = accessChainLoad(right->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002904
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002905 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenichead86222018-03-28 18:01:20 -06002906 OpDecorations decorations = { precision,
John Kessenich5611c6d2018-04-05 11:25:02 -06002907 TranslateNoContractionDecoration(node->getType().getQualifier()),
2908 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06002909 result = createBinaryOperation(binOp, decorations,
John Kessenich8c8505c2016-07-26 12:50:38 -06002910 resultType(), leftId, rightId,
John Kessenich140f3df2015-06-26 16:58:36 -06002911 left->getType().getBasicType(), reduceComparison);
2912
2913 // code above should only make binOp that exists in createBinaryOperation
John Kessenich55e7d112015-11-15 21:33:39 -07002914 assert(result != spv::NoResult);
John Kessenich140f3df2015-06-26 16:58:36 -06002915 builder.clearAccessChain();
2916 builder.setAccessChainRValue(result);
2917
2918 return false;
2919 }
2920
John Kessenich426394d2015-07-23 10:22:48 -06002921 //
2922 // Create the list of operands.
2923 //
John Kessenich140f3df2015-06-26 16:58:36 -06002924 glslang::TIntermSequence& glslangOperands = node->getSequence();
2925 std::vector<spv::Id> operands;
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002926 std::vector<spv::IdImmediate> memoryAccessOperands;
John Kessenich140f3df2015-06-26 16:58:36 -06002927 for (int arg = 0; arg < (int)glslangOperands.size(); ++arg) {
John Kessenich140f3df2015-06-26 16:58:36 -06002928 // special case l-value operands; there are just a few
2929 bool lvalue = false;
2930 switch (node->getOp()) {
John Kessenich140f3df2015-06-26 16:58:36 -06002931 case glslang::EOpModf:
2932 if (arg == 1)
2933 lvalue = true;
2934 break;
John Kesseniche5eee8f2019-10-18 01:03:11 -06002935
Torosdagli06c2eee2020-03-19 11:09:57 -04002936 case glslang::EOpRayQueryInitialize:
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002937 case glslang::EOpRayQueryTerminate:
2938 case glslang::EOpRayQueryConfirmIntersection:
2939 case glslang::EOpRayQueryProceed:
Torosdagli06c2eee2020-03-19 11:09:57 -04002940 case glslang::EOpRayQueryGenerateIntersection:
2941 case glslang::EOpRayQueryGetIntersectionType:
2942 case glslang::EOpRayQueryGetIntersectionT:
2943 case glslang::EOpRayQueryGetIntersectionInstanceCustomIndex:
2944 case glslang::EOpRayQueryGetIntersectionInstanceId:
2945 case glslang::EOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffset:
2946 case glslang::EOpRayQueryGetIntersectionGeometryIndex:
2947 case glslang::EOpRayQueryGetIntersectionPrimitiveIndex:
2948 case glslang::EOpRayQueryGetIntersectionBarycentrics:
2949 case glslang::EOpRayQueryGetIntersectionFrontFace:
2950 case glslang::EOpRayQueryGetIntersectionObjectRayDirection:
2951 case glslang::EOpRayQueryGetIntersectionObjectRayOrigin:
2952 case glslang::EOpRayQueryGetIntersectionObjectToWorld:
2953 case glslang::EOpRayQueryGetIntersectionWorldToObject:
2954 if (arg == 0)
2955 lvalue = true;
2956 break;
2957
John Kesseniche5eee8f2019-10-18 01:03:11 -06002958 case glslang::EOpAtomicAdd:
greg-lunarg4e064ee2021-03-15 11:26:11 -06002959 case glslang::EOpAtomicSubtract:
John Kesseniche5eee8f2019-10-18 01:03:11 -06002960 case glslang::EOpAtomicMin:
2961 case glslang::EOpAtomicMax:
2962 case glslang::EOpAtomicAnd:
2963 case glslang::EOpAtomicOr:
2964 case glslang::EOpAtomicXor:
2965 case glslang::EOpAtomicExchange:
2966 case glslang::EOpAtomicCompSwap:
2967 if (arg == 0)
2968 lvalue = true;
2969 break;
2970
John Kessenicha28f7a72019-08-06 07:00:58 -06002971#ifndef GLSLANG_WEB
2972 case glslang::EOpFrexp:
2973 if (arg == 1)
2974 lvalue = true;
2975 break;
Rex Xu7a26c172015-12-08 17:12:09 +08002976 case glslang::EOpInterpolateAtSample:
2977 case glslang::EOpInterpolateAtOffset:
Rex Xu9d93a232016-05-05 12:30:44 +08002978 case glslang::EOpInterpolateAtVertex:
John Kessenich8c8505c2016-07-26 12:50:38 -06002979 if (arg == 0) {
Rex Xu7a26c172015-12-08 17:12:09 +08002980 lvalue = true;
John Kessenich8c8505c2016-07-26 12:50:38 -06002981
2982 // Does it need a swizzle inversion? If so, evaluation is inverted;
2983 // operate first on the swizzle base, then apply the swizzle.
John Kessenichbbbd9a22020-03-03 07:21:37 -07002984 // That is, we transform
2985 //
2986 // interpolate(v.zy) -> interpolate(v).zy
2987 //
John Kessenichecba76f2017-01-06 00:34:48 -07002988 if (glslangOperands[0]->getAsOperator() &&
John Kessenich8c8505c2016-07-26 12:50:38 -06002989 glslangOperands[0]->getAsOperator()->getOp() == glslang::EOpVectorSwizzle)
John Kessenich8985fc92020-03-03 10:25:07 -07002990 invertedType = convertGlslangToSpvType(
2991 glslangOperands[0]->getAsBinaryNode()->getLeft()->getType());
John Kessenich8c8505c2016-07-26 12:50:38 -06002992 }
Rex Xu7a26c172015-12-08 17:12:09 +08002993 break;
Jeff Bolz36831c92018-09-05 10:11:41 -05002994 case glslang::EOpAtomicLoad:
2995 case glslang::EOpAtomicStore:
John Kessenich0d0c6d32017-07-23 16:08:26 -06002996 case glslang::EOpAtomicCounterAdd:
2997 case glslang::EOpAtomicCounterSubtract:
2998 case glslang::EOpAtomicCounterMin:
2999 case glslang::EOpAtomicCounterMax:
3000 case glslang::EOpAtomicCounterAnd:
3001 case glslang::EOpAtomicCounterOr:
3002 case glslang::EOpAtomicCounterXor:
3003 case glslang::EOpAtomicCounterExchange:
3004 case glslang::EOpAtomicCounterCompSwap:
Rex Xud4782c12015-09-06 16:30:11 +08003005 if (arg == 0)
3006 lvalue = true;
3007 break;
John Kessenich55e7d112015-11-15 21:33:39 -07003008 case glslang::EOpAddCarry:
3009 case glslang::EOpSubBorrow:
3010 if (arg == 2)
3011 lvalue = true;
3012 break;
3013 case glslang::EOpUMulExtended:
3014 case glslang::EOpIMulExtended:
3015 if (arg >= 2)
3016 lvalue = true;
3017 break;
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003018 case glslang::EOpCooperativeMatrixLoad:
3019 if (arg == 0 || arg == 1)
3020 lvalue = true;
3021 break;
3022 case glslang::EOpCooperativeMatrixStore:
3023 if (arg == 1)
3024 lvalue = true;
3025 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06003026#endif
John Kessenich140f3df2015-06-26 16:58:36 -06003027 default:
3028 break;
3029 }
John Kessenich8c8505c2016-07-26 12:50:38 -06003030 builder.clearAccessChain();
3031 if (invertedType != spv::NoType && arg == 0)
3032 glslangOperands[0]->getAsBinaryNode()->getLeft()->traverse(this);
3033 else
3034 glslangOperands[arg]->traverse(this);
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003035
John Kessenichb9197c82019-08-11 07:41:45 -06003036#ifndef GLSLANG_WEB
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003037 if (node->getOp() == glslang::EOpCooperativeMatrixLoad ||
3038 node->getOp() == glslang::EOpCooperativeMatrixStore) {
3039
3040 if (arg == 1) {
3041 // fold "element" parameter into the access chain
3042 spv::Builder::AccessChain save = builder.getAccessChain();
3043 builder.clearAccessChain();
3044 glslangOperands[2]->traverse(this);
3045
3046 spv::Id elementId = accessChainLoad(glslangOperands[2]->getAsTyped()->getType());
3047
3048 builder.setAccessChain(save);
3049
3050 // Point to the first element of the array.
John Kessenich8985fc92020-03-03 10:25:07 -07003051 builder.accessChainPush(elementId,
3052 TranslateCoherent(glslangOperands[arg]->getAsTyped()->getType()),
3053 glslangOperands[arg]->getAsTyped()->getType().getBufferReferenceAlignment());
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003054
3055 spv::Builder::AccessChain::CoherentFlags coherentFlags = builder.getAccessChain().coherentFlags;
3056 unsigned int alignment = builder.getAccessChain().alignment;
3057
3058 int memoryAccess = TranslateMemoryAccess(coherentFlags);
3059 if (node->getOp() == glslang::EOpCooperativeMatrixLoad)
3060 memoryAccess &= ~spv::MemoryAccessMakePointerAvailableKHRMask;
3061 if (node->getOp() == glslang::EOpCooperativeMatrixStore)
3062 memoryAccess &= ~spv::MemoryAccessMakePointerVisibleKHRMask;
John Kessenich8985fc92020-03-03 10:25:07 -07003063 if (builder.getStorageClass(builder.getAccessChain().base) ==
3064 spv::StorageClassPhysicalStorageBufferEXT) {
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003065 memoryAccess = (spv::MemoryAccessMask)(memoryAccess | spv::MemoryAccessAlignedMask);
3066 }
3067
3068 memoryAccessOperands.push_back(spv::IdImmediate(false, memoryAccess));
3069
3070 if (memoryAccess & spv::MemoryAccessAlignedMask) {
3071 memoryAccessOperands.push_back(spv::IdImmediate(false, alignment));
3072 }
3073
John Kessenich8985fc92020-03-03 10:25:07 -07003074 if (memoryAccess &
3075 (spv::MemoryAccessMakePointerAvailableKHRMask | spv::MemoryAccessMakePointerVisibleKHRMask)) {
3076 memoryAccessOperands.push_back(spv::IdImmediate(true,
3077 builder.makeUintConstant(TranslateMemoryScope(coherentFlags))));
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003078 }
3079 } else if (arg == 2) {
3080 continue;
3081 }
3082 }
John Kessenichb9197c82019-08-11 07:41:45 -06003083#endif
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003084
John Kessenichbbbd9a22020-03-03 07:21:37 -07003085 // for l-values, pass the address, for r-values, pass the value
Jeff Bolz38a52fc2019-06-14 09:56:28 -05003086 if (lvalue) {
John Kessenichbbbd9a22020-03-03 07:21:37 -07003087 if (invertedType == spv::NoType && !builder.isSpvLvalue()) {
3088 // SPIR-V cannot represent an l-value containing a swizzle that doesn't
3089 // reduce to a simple access chain. So, we need a temporary vector to
3090 // receive the result, and must later swizzle that into the original
3091 // l-value.
Cody Northrop4d2298b2020-04-13 21:59:49 -06003092 complexLvalues.push_back(builder.getAccessChain());
John Kessenich435dd802020-06-30 01:27:08 -06003093 temporaryLvalues.push_back(builder.createVariable(
3094 spv::NoPrecision, spv::StorageClassFunction,
Cody Northrop4d2298b2020-04-13 21:59:49 -06003095 builder.accessChainGetInferredType(), "swizzleTemp"));
3096 operands.push_back(temporaryLvalues.back());
John Kessenichbbbd9a22020-03-03 07:21:37 -07003097 } else {
3098 operands.push_back(builder.accessChainGetLValue());
3099 }
Jeff Bolz38a52fc2019-06-14 09:56:28 -05003100 lvalueCoherentFlags = builder.getAccessChain().coherentFlags;
3101 lvalueCoherentFlags |= TranslateCoherent(glslangOperands[arg]->getAsTyped()->getType());
3102 } else {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003103 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Torosdagli06c2eee2020-03-19 11:09:57 -04003104 glslang::TOperator glslangOp = node->getOp();
3105 if (arg == 1 &&
3106 (glslangOp == glslang::EOpRayQueryGetIntersectionType ||
3107 glslangOp == glslang::EOpRayQueryGetIntersectionT ||
3108 glslangOp == glslang::EOpRayQueryGetIntersectionInstanceCustomIndex ||
3109 glslangOp == glslang::EOpRayQueryGetIntersectionInstanceId ||
3110 glslangOp == glslang::EOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffset ||
3111 glslangOp == glslang::EOpRayQueryGetIntersectionGeometryIndex ||
3112 glslangOp == glslang::EOpRayQueryGetIntersectionPrimitiveIndex ||
3113 glslangOp == glslang::EOpRayQueryGetIntersectionBarycentrics ||
3114 glslangOp == glslang::EOpRayQueryGetIntersectionFrontFace ||
3115 glslangOp == glslang::EOpRayQueryGetIntersectionObjectRayDirection ||
3116 glslangOp == glslang::EOpRayQueryGetIntersectionObjectRayOrigin ||
3117 glslangOp == glslang::EOpRayQueryGetIntersectionObjectToWorld ||
3118 glslangOp == glslang::EOpRayQueryGetIntersectionWorldToObject
3119 )) {
3120 bool cond = glslangOperands[arg]->getAsConstantUnion()->getConstArray()[0].getBConst();
3121 operands.push_back(builder.makeIntConstant(cond ? 1 : 0));
Daniel Kochffccefd2020-11-23 15:41:27 -05003122 } else if ((arg == 10 && glslangOp == glslang::EOpTraceKHR) ||
3123 (arg == 1 && glslangOp == glslang::EOpExecuteCallableKHR)) {
3124 const int opdNum = glslangOp == glslang::EOpTraceKHR ? 10 : 1;
3125 const int set = glslangOp == glslang::EOpTraceKHR ? 0 : 1;
3126 const int location = glslangOperands[opdNum]->getAsConstantUnion()->getConstArray()[0].getUConst();
3127 auto itNode = locationToSymbol[set].find(location);
3128 visitSymbol(itNode->second);
3129 spv::Id symId = getSymbolId(itNode->second);
3130 operands.push_back(symId);
3131 } else {
Torosdagli06c2eee2020-03-19 11:09:57 -04003132 operands.push_back(accessChainLoad(glslangOperands[arg]->getAsTyped()->getType()));
Daniel Kochffccefd2020-11-23 15:41:27 -05003133 }
John Kesseniche485c7a2017-05-31 18:50:53 -06003134 }
John Kessenich140f3df2015-06-26 16:58:36 -06003135 }
John Kessenich426394d2015-07-23 10:22:48 -06003136
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003137 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenichb9197c82019-08-11 07:41:45 -06003138#ifndef GLSLANG_WEB
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003139 if (node->getOp() == glslang::EOpCooperativeMatrixLoad) {
3140 std::vector<spv::IdImmediate> idImmOps;
3141
3142 idImmOps.push_back(spv::IdImmediate(true, operands[1])); // buf
3143 idImmOps.push_back(spv::IdImmediate(true, operands[2])); // stride
3144 idImmOps.push_back(spv::IdImmediate(true, operands[3])); // colMajor
3145 idImmOps.insert(idImmOps.end(), memoryAccessOperands.begin(), memoryAccessOperands.end());
3146 // get the pointee type
3147 spv::Id typeId = builder.getContainedTypeId(builder.getTypeId(operands[0]));
3148 assert(builder.isCooperativeMatrixType(typeId));
3149 // do the op
3150 spv::Id result = builder.createOp(spv::OpCooperativeMatrixLoadNV, typeId, idImmOps);
3151 // store the result to the pointer (out param 'm')
3152 builder.createStore(result, operands[0]);
3153 result = 0;
3154 } else if (node->getOp() == glslang::EOpCooperativeMatrixStore) {
3155 std::vector<spv::IdImmediate> idImmOps;
3156
3157 idImmOps.push_back(spv::IdImmediate(true, operands[1])); // buf
3158 idImmOps.push_back(spv::IdImmediate(true, operands[0])); // object
3159 idImmOps.push_back(spv::IdImmediate(true, operands[2])); // stride
3160 idImmOps.push_back(spv::IdImmediate(true, operands[3])); // colMajor
3161 idImmOps.insert(idImmOps.end(), memoryAccessOperands.begin(), memoryAccessOperands.end());
3162
3163 builder.createNoResultOp(spv::OpCooperativeMatrixStoreNV, idImmOps);
3164 result = 0;
John Kessenichb9197c82019-08-11 07:41:45 -06003165 } else
3166#endif
John Kesseniche5eee8f2019-10-18 01:03:11 -06003167 if (atomic) {
3168 // Handle all atomics
Greg Fischerb5c8fd42021-03-08 14:02:06 -07003169 glslang::TBasicType typeProxy = (node->getOp() == glslang::EOpAtomicStore)
3170 ? node->getSequence()[0]->getAsTyped()->getBasicType() : node->getBasicType();
3171 result = createAtomicOperation(node->getOp(), precision, resultType(), operands, typeProxy,
John Kessenich8985fc92020-03-03 10:25:07 -07003172 lvalueCoherentFlags);
Jeff Bolz04d73732019-05-31 13:06:01 -05003173 } else if (node->getOp() == glslang::EOpDebugPrintf) {
3174 if (!nonSemanticDebugPrintf) {
3175 nonSemanticDebugPrintf = builder.import("NonSemantic.DebugPrintf");
3176 }
3177 result = builder.createBuiltinCall(builder.makeVoidType(), nonSemanticDebugPrintf, spv::NonSemanticDebugPrintfDebugPrintf, operands);
3178 builder.addExtension(spv::E_SPV_KHR_non_semantic_info);
John Kesseniche5eee8f2019-10-18 01:03:11 -06003179 } else {
John Kessenich426394d2015-07-23 10:22:48 -06003180 // Pass through to generic operations.
3181 switch (glslangOperands.size()) {
3182 case 0:
John Kessenich8c8505c2016-07-26 12:50:38 -06003183 result = createNoArgOperation(node->getOp(), precision, resultType());
John Kessenich426394d2015-07-23 10:22:48 -06003184 break;
3185 case 1:
John Kessenichead86222018-03-28 18:01:20 -06003186 {
3187 OpDecorations decorations = { precision,
John Kessenich5611c6d2018-04-05 11:25:02 -06003188 TranslateNoContractionDecoration(node->getType().getQualifier()),
3189 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06003190 result = createUnaryOperation(
3191 node->getOp(), decorations,
3192 resultType(), operands.front(),
Jeff Bolz38a52fc2019-06-14 09:56:28 -05003193 glslangOperands[0]->getAsTyped()->getBasicType(), lvalueCoherentFlags);
John Kessenichead86222018-03-28 18:01:20 -06003194 }
John Kessenich426394d2015-07-23 10:22:48 -06003195 break;
3196 default:
John Kessenich8c8505c2016-07-26 12:50:38 -06003197 result = createMiscOperation(node->getOp(), precision, resultType(), operands, node->getBasicType());
John Kessenich426394d2015-07-23 10:22:48 -06003198 break;
3199 }
Cody Northrop4d2298b2020-04-13 21:59:49 -06003200
John Kessenichbbbd9a22020-03-03 07:21:37 -07003201 if (invertedType != spv::NoResult)
John Kessenich8c8505c2016-07-26 12:50:38 -06003202 result = createInvertedSwizzle(precision, *glslangOperands[0]->getAsBinaryNode(), result);
Cody Northrop4d2298b2020-04-13 21:59:49 -06003203
3204 for (unsigned int i = 0; i < temporaryLvalues.size(); ++i) {
3205 builder.setAccessChain(complexLvalues[i]);
greg-lunarg639f5462020-11-12 11:10:07 -07003206 builder.accessChainStore(builder.createLoad(temporaryLvalues[i], spv::NoPrecision),
3207 TranslateNonUniformDecoration(complexLvalues[i].coherentFlags));
John Kessenichbbbd9a22020-03-03 07:21:37 -07003208 }
John Kessenich140f3df2015-06-26 16:58:36 -06003209 }
3210
3211 if (noReturnValue)
3212 return false;
3213
3214 if (! result) {
Lei Zhang17535f72016-05-04 15:55:59 -04003215 logger->missingFunctionality("unknown glslang aggregate");
John Kessenich50e57562015-12-21 21:21:11 -07003216 return true; // pick up a child as a placeholder operand
John Kessenich140f3df2015-06-26 16:58:36 -06003217 } else {
3218 builder.clearAccessChain();
3219 builder.setAccessChainRValue(result);
3220 return false;
3221 }
3222}
3223
John Kessenich433e9ff2017-01-26 20:31:11 -07003224// This path handles both if-then-else and ?:
3225// The if-then-else has a node type of void, while
3226// ?: has either a void or a non-void node type
3227//
3228// Leaving the result, when not void:
3229// GLSL only has r-values as the result of a :?, but
3230// if we have an l-value, that can be more efficient if it will
3231// become the base of a complex r-value expression, because the
3232// next layer copies r-values into memory to use the access-chain mechanism
John Kessenich140f3df2015-06-26 16:58:36 -06003233bool TGlslangToSpvTraverser::visitSelection(glslang::TVisit /* visit */, glslang::TIntermSelection* node)
3234{
John Kessenich0c1e71a2019-01-10 18:23:06 +07003235 // see if OpSelect can handle it
3236 const auto isOpSelectable = [&]() {
3237 if (node->getBasicType() == glslang::EbtVoid)
3238 return false;
3239 // OpSelect can do all other types starting with SPV 1.4
3240 if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_4) {
3241 // pre-1.4, only scalars and vectors can be handled
3242 if ((!node->getType().isScalar() && !node->getType().isVector()))
3243 return false;
3244 }
3245 return true;
3246 };
3247
John Kessenich4bee5312018-02-20 21:29:05 -07003248 // See if it simple and safe, or required, to execute both sides.
3249 // Crucially, side effects must be either semantically required or avoided,
3250 // and there are performance trade-offs.
3251 // Return true if required or a good idea (and safe) to execute both sides,
3252 // false otherwise.
3253 const auto bothSidesPolicy = [&]() -> bool {
3254 // do we have both sides?
John Kessenich433e9ff2017-01-26 20:31:11 -07003255 if (node->getTrueBlock() == nullptr ||
3256 node->getFalseBlock() == nullptr)
3257 return false;
3258
John Kessenich4bee5312018-02-20 21:29:05 -07003259 // required? (unless we write additional code to look for side effects
3260 // and make performance trade-offs if none are present)
3261 if (!node->getShortCircuit())
3262 return true;
3263
3264 // if not required to execute both, decide based on performance/practicality...
3265
John Kessenich0c1e71a2019-01-10 18:23:06 +07003266 if (!isOpSelectable())
John Kessenich4bee5312018-02-20 21:29:05 -07003267 return false;
3268
John Kessenich433e9ff2017-01-26 20:31:11 -07003269 assert(node->getType() == node->getTrueBlock() ->getAsTyped()->getType() &&
3270 node->getType() == node->getFalseBlock()->getAsTyped()->getType());
3271
3272 // return true if a single operand to ? : is okay for OpSelect
3273 const auto operandOkay = [](glslang::TIntermTyped* node) {
John Kessenich8e6c6ce2017-01-28 19:29:42 -07003274 return node->getAsSymbolNode() || node->getType().getQualifier().isConstant();
John Kessenich433e9ff2017-01-26 20:31:11 -07003275 };
3276
3277 return operandOkay(node->getTrueBlock() ->getAsTyped()) &&
3278 operandOkay(node->getFalseBlock()->getAsTyped());
3279 };
3280
John Kessenich4bee5312018-02-20 21:29:05 -07003281 spv::Id result = spv::NoResult; // upcoming result selecting between trueValue and falseValue
3282 // emit the condition before doing anything with selection
3283 node->getCondition()->traverse(this);
3284 spv::Id condition = accessChainLoad(node->getCondition()->getType());
3285
3286 // Find a way of executing both sides and selecting the right result.
3287 const auto executeBothSides = [&]() -> void {
3288 // execute both sides
John Kessenich433e9ff2017-01-26 20:31:11 -07003289 node->getTrueBlock()->traverse(this);
3290 spv::Id trueValue = accessChainLoad(node->getTrueBlock()->getAsTyped()->getType());
3291 node->getFalseBlock()->traverse(this);
3292 spv::Id falseValue = accessChainLoad(node->getTrueBlock()->getAsTyped()->getType());
3293
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003294 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06003295
John Kessenich4bee5312018-02-20 21:29:05 -07003296 // done if void
3297 if (node->getBasicType() == glslang::EbtVoid)
3298 return;
John Kesseniche434ad92017-03-30 10:09:28 -06003299
John Kessenich4bee5312018-02-20 21:29:05 -07003300 // emit code to select between trueValue and falseValue
3301
3302 // see if OpSelect can handle it
John Kessenich0c1e71a2019-01-10 18:23:06 +07003303 if (isOpSelectable()) {
John Kessenich4bee5312018-02-20 21:29:05 -07003304 // Emit OpSelect for this selection.
3305
3306 // smear condition to vector, if necessary (AST is always scalar)
John Kessenich0c1e71a2019-01-10 18:23:06 +07003307 // Before 1.4, smear like for mix(), starting with 1.4, keep it scalar
3308 if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_4 && builder.isVector(trueValue)) {
John Kessenich4bee5312018-02-20 21:29:05 -07003309 condition = builder.smearScalar(spv::NoPrecision, condition,
3310 builder.makeVectorType(builder.makeBoolType(),
3311 builder.getNumComponents(trueValue)));
John Kessenich0c1e71a2019-01-10 18:23:06 +07003312 }
John Kessenich4bee5312018-02-20 21:29:05 -07003313
3314 // OpSelect
3315 result = builder.createTriOp(spv::OpSelect,
3316 convertGlslangToSpvType(node->getType()), condition,
3317 trueValue, falseValue);
3318
3319 builder.clearAccessChain();
3320 builder.setAccessChainRValue(result);
3321 } else {
3322 // We need control flow to select the result.
3323 // TODO: Once SPIR-V OpSelect allows arbitrary types, eliminate this path.
John Kessenich435dd802020-06-30 01:27:08 -06003324 result = builder.createVariable(TranslatePrecisionDecoration(node->getType()),
3325 spv::StorageClassFunction, convertGlslangToSpvType(node->getType()));
John Kessenich4bee5312018-02-20 21:29:05 -07003326
3327 // Selection control:
3328 const spv::SelectionControlMask control = TranslateSelectionControl(*node);
3329
3330 // make an "if" based on the value created by the condition
3331 spv::Builder::If ifBuilder(condition, control, builder);
3332
3333 // emit the "then" statement
3334 builder.createStore(trueValue, result);
3335 ifBuilder.makeBeginElse();
3336 // emit the "else" statement
3337 builder.createStore(falseValue, result);
3338
3339 // finish off the control flow
3340 ifBuilder.makeEndIf();
3341
3342 builder.clearAccessChain();
3343 builder.setAccessChainLValue(result);
3344 }
John Kessenich433e9ff2017-01-26 20:31:11 -07003345 };
3346
John Kessenich4bee5312018-02-20 21:29:05 -07003347 // Execute the one side needed, as per the condition
3348 const auto executeOneSide = [&]() {
3349 // Always emit control flow.
John Kessenich435dd802020-06-30 01:27:08 -06003350 if (node->getBasicType() != glslang::EbtVoid) {
3351 result = builder.createVariable(TranslatePrecisionDecoration(node->getType()), spv::StorageClassFunction,
3352 convertGlslangToSpvType(node->getType()));
3353 }
John Kessenich433e9ff2017-01-26 20:31:11 -07003354
John Kessenich4bee5312018-02-20 21:29:05 -07003355 // Selection control:
3356 const spv::SelectionControlMask control = TranslateSelectionControl(*node);
3357
3358 // make an "if" based on the value created by the condition
3359 spv::Builder::If ifBuilder(condition, control, builder);
3360
3361 // emit the "then" statement
3362 if (node->getTrueBlock() != nullptr) {
3363 node->getTrueBlock()->traverse(this);
3364 if (result != spv::NoResult)
3365 builder.createStore(accessChainLoad(node->getTrueBlock()->getAsTyped()->getType()), result);
3366 }
3367
3368 if (node->getFalseBlock() != nullptr) {
3369 ifBuilder.makeBeginElse();
3370 // emit the "else" statement
3371 node->getFalseBlock()->traverse(this);
3372 if (result != spv::NoResult)
3373 builder.createStore(accessChainLoad(node->getFalseBlock()->getAsTyped()->getType()), result);
3374 }
3375
3376 // finish off the control flow
3377 ifBuilder.makeEndIf();
3378
3379 if (result != spv::NoResult) {
3380 builder.clearAccessChain();
3381 builder.setAccessChainLValue(result);
3382 }
3383 };
3384
3385 // Try for OpSelect (or a requirement to execute both sides)
3386 if (bothSidesPolicy()) {
John Kessenich8e6c6ce2017-01-28 19:29:42 -07003387 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
3388 if (node->getType().getQualifier().isSpecConstant())
3389 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
John Kessenich4bee5312018-02-20 21:29:05 -07003390 executeBothSides();
3391 } else
3392 executeOneSide();
John Kessenich140f3df2015-06-26 16:58:36 -06003393
3394 return false;
3395}
3396
3397bool TGlslangToSpvTraverser::visitSwitch(glslang::TVisit /* visit */, glslang::TIntermSwitch* node)
3398{
3399 // emit and get the condition before doing anything with switch
3400 node->getCondition()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07003401 spv::Id selector = accessChainLoad(node->getCondition()->getAsTyped()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06003402
Rex Xu57e65922017-07-04 23:23:40 +08003403 // Selection control:
John Kesseniche18fd202018-01-30 11:01:39 -07003404 const spv::SelectionControlMask control = TranslateSwitchControl(*node);
Rex Xu57e65922017-07-04 23:23:40 +08003405
John Kessenich140f3df2015-06-26 16:58:36 -06003406 // browse the children to sort out code segments
3407 int defaultSegment = -1;
3408 std::vector<TIntermNode*> codeSegments;
3409 glslang::TIntermSequence& sequence = node->getBody()->getSequence();
3410 std::vector<int> caseValues;
3411 std::vector<int> valueIndexToSegment(sequence.size()); // note: probably not all are used, it is an overestimate
3412 for (glslang::TIntermSequence::iterator c = sequence.begin(); c != sequence.end(); ++c) {
3413 TIntermNode* child = *c;
3414 if (child->getAsBranchNode() && child->getAsBranchNode()->getFlowOp() == glslang::EOpDefault)
baldurkd76692d2015-07-12 11:32:58 +02003415 defaultSegment = (int)codeSegments.size();
John Kessenich140f3df2015-06-26 16:58:36 -06003416 else if (child->getAsBranchNode() && child->getAsBranchNode()->getFlowOp() == glslang::EOpCase) {
baldurkd76692d2015-07-12 11:32:58 +02003417 valueIndexToSegment[caseValues.size()] = (int)codeSegments.size();
John Kessenich8985fc92020-03-03 10:25:07 -07003418 caseValues.push_back(child->getAsBranchNode()->getExpression()->getAsConstantUnion()
3419 ->getConstArray()[0].getIConst());
John Kessenich140f3df2015-06-26 16:58:36 -06003420 } else
3421 codeSegments.push_back(child);
3422 }
3423
qining25262b32016-05-06 17:25:16 -04003424 // handle the case where the last code segment is missing, due to no code
John Kessenich140f3df2015-06-26 16:58:36 -06003425 // statements between the last case and the end of the switch statement
3426 if ((caseValues.size() && (int)codeSegments.size() == valueIndexToSegment[caseValues.size() - 1]) ||
3427 (int)codeSegments.size() == defaultSegment)
3428 codeSegments.push_back(nullptr);
3429
3430 // make the switch statement
3431 std::vector<spv::Block*> segmentBlocks; // returned, as the blocks allocated in the call
John Kessenich8985fc92020-03-03 10:25:07 -07003432 builder.makeSwitch(selector, control, (int)codeSegments.size(), caseValues, valueIndexToSegment, defaultSegment,
3433 segmentBlocks);
John Kessenich140f3df2015-06-26 16:58:36 -06003434
3435 // emit all the code in the segments
3436 breakForLoop.push(false);
3437 for (unsigned int s = 0; s < codeSegments.size(); ++s) {
3438 builder.nextSwitchSegment(segmentBlocks, s);
3439 if (codeSegments[s])
3440 codeSegments[s]->traverse(this);
3441 else
3442 builder.addSwitchBreak();
3443 }
3444 breakForLoop.pop();
3445
3446 builder.endSwitch(segmentBlocks);
3447
3448 return false;
3449}
3450
3451void TGlslangToSpvTraverser::visitConstantUnion(glslang::TIntermConstantUnion* node)
3452{
3453 int nextConst = 0;
qining08408382016-03-21 09:51:37 -04003454 spv::Id constant = createSpvConstantFromConstUnionArray(node->getType(), node->getConstArray(), nextConst, false);
John Kessenich140f3df2015-06-26 16:58:36 -06003455
3456 builder.clearAccessChain();
3457 builder.setAccessChainRValue(constant);
3458}
3459
3460bool TGlslangToSpvTraverser::visitLoop(glslang::TVisit /* visit */, glslang::TIntermLoop* node)
3461{
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003462 auto blocks = builder.makeNewLoop();
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003463 builder.createBranch(&blocks.head);
steve-lunargf1709e72017-05-02 20:14:50 -06003464
3465 // Loop control:
John Kessenich1f4d0462019-01-12 17:31:41 +07003466 std::vector<unsigned int> operands;
3467 const spv::LoopControlMask control = TranslateLoopControl(*node, operands);
steve-lunargf1709e72017-05-02 20:14:50 -06003468
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05003469 // Spec requires back edges to target header blocks, and every header block
3470 // must dominate its merge block. Make a header block first to ensure these
3471 // conditions are met. By definition, it will contain OpLoopMerge, followed
3472 // by a block-ending branch. But we don't want to put any other body/test
3473 // instructions in it, since the body/test may have arbitrary instructions,
3474 // including merges of its own.
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003475 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05003476 builder.setBuildPoint(&blocks.head);
John Kessenich1f4d0462019-01-12 17:31:41 +07003477 builder.createLoopMerge(&blocks.merge, &blocks.continue_target, control, operands);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003478 if (node->testFirst() && node->getTest()) {
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05003479 spv::Block& test = builder.makeNewBlock();
3480 builder.createBranch(&test);
3481
3482 builder.setBuildPoint(&test);
John Kessenich140f3df2015-06-26 16:58:36 -06003483 node->getTest()->traverse(this);
John Kesseniche485c7a2017-05-31 18:50:53 -06003484 spv::Id condition = accessChainLoad(node->getTest()->getType());
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003485 builder.createConditionalBranch(condition, &blocks.body, &blocks.merge);
3486
3487 builder.setBuildPoint(&blocks.body);
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003488 breakForLoop.push(true);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003489 if (node->getBody())
Dejan Mircevskie537b8b2016-01-10 19:37:00 -05003490 node->getBody()->traverse(this);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003491 builder.createBranch(&blocks.continue_target);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05003492 breakForLoop.pop();
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003493
3494 builder.setBuildPoint(&blocks.continue_target);
3495 if (node->getTerminal())
3496 node->getTerminal()->traverse(this);
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003497 builder.createBranch(&blocks.head);
David Netoc22f37c2015-07-15 16:21:26 -04003498 } else {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003499 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003500 builder.createBranch(&blocks.body);
3501
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05003502 breakForLoop.push(true);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003503 builder.setBuildPoint(&blocks.body);
3504 if (node->getBody())
Dejan Mircevskie537b8b2016-01-10 19:37:00 -05003505 node->getBody()->traverse(this);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003506 builder.createBranch(&blocks.continue_target);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05003507 breakForLoop.pop();
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003508
3509 builder.setBuildPoint(&blocks.continue_target);
3510 if (node->getTerminal())
3511 node->getTerminal()->traverse(this);
3512 if (node->getTest()) {
3513 node->getTest()->traverse(this);
3514 spv::Id condition =
John Kessenich32cfd492016-02-02 12:37:46 -07003515 accessChainLoad(node->getTest()->getType());
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003516 builder.createConditionalBranch(condition, &blocks.head, &blocks.merge);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003517 } else {
Dejan Mircevskied55bcd2016-01-19 21:13:38 -05003518 // TODO: unless there was a break/return/discard instruction
3519 // somewhere in the body, this is an infinite loop, so we should
3520 // issue a warning.
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003521 builder.createBranch(&blocks.head);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003522 }
John Kessenich140f3df2015-06-26 16:58:36 -06003523 }
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003524 builder.setBuildPoint(&blocks.merge);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05003525 builder.closeLoop();
John Kessenich140f3df2015-06-26 16:58:36 -06003526 return false;
3527}
3528
3529bool TGlslangToSpvTraverser::visitBranch(glslang::TVisit /* visit */, glslang::TIntermBranch* node)
3530{
3531 if (node->getExpression())
3532 node->getExpression()->traverse(this);
3533
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003534 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06003535
John Kessenich140f3df2015-06-26 16:58:36 -06003536 switch (node->getFlowOp()) {
3537 case glslang::EOpKill:
Daniel Kochffccefd2020-11-23 15:41:27 -05003538 builder.makeStatementTerminator(spv::OpKill, "post-discard");
John Kessenich140f3df2015-06-26 16:58:36 -06003539 break;
Jesse Hall74e8f052020-11-09 08:30:01 -08003540 case glslang::EOpTerminateInvocation:
3541 builder.addExtension(spv::E_SPV_KHR_terminate_invocation);
Daniel Kochffccefd2020-11-23 15:41:27 -05003542 builder.makeStatementTerminator(spv::OpTerminateInvocation, "post-terminate-invocation");
Jesse Hall74e8f052020-11-09 08:30:01 -08003543 break;
John Kessenich140f3df2015-06-26 16:58:36 -06003544 case glslang::EOpBreak:
3545 if (breakForLoop.top())
3546 builder.createLoopExit();
3547 else
3548 builder.addSwitchBreak();
3549 break;
3550 case glslang::EOpContinue:
John Kessenich140f3df2015-06-26 16:58:36 -06003551 builder.createLoopContinue();
3552 break;
3553 case glslang::EOpReturn:
John Kessenich435dd802020-06-30 01:27:08 -06003554 if (node->getExpression() != nullptr) {
John Kesseniched33e052016-10-06 12:59:51 -06003555 const glslang::TType& glslangReturnType = node->getExpression()->getType();
3556 spv::Id returnId = accessChainLoad(glslangReturnType);
John Kessenich435dd802020-06-30 01:27:08 -06003557 if (builder.getTypeId(returnId) != currentFunction->getReturnType() ||
3558 TranslatePrecisionDecoration(glslangReturnType) != currentFunction->getReturnPrecision()) {
John Kesseniched33e052016-10-06 12:59:51 -06003559 builder.clearAccessChain();
John Kessenich435dd802020-06-30 01:27:08 -06003560 spv::Id copyId = builder.createVariable(currentFunction->getReturnPrecision(),
3561 spv::StorageClassFunction, currentFunction->getReturnType());
John Kesseniched33e052016-10-06 12:59:51 -06003562 builder.setAccessChainLValue(copyId);
3563 multiTypeStore(glslangReturnType, returnId);
John Kessenich435dd802020-06-30 01:27:08 -06003564 returnId = builder.createLoad(copyId, currentFunction->getReturnPrecision());
John Kesseniched33e052016-10-06 12:59:51 -06003565 }
3566 builder.makeReturn(false, returnId);
3567 } else
John Kesseniche770b3e2015-09-14 20:58:02 -06003568 builder.makeReturn(false);
John Kessenich140f3df2015-06-26 16:58:36 -06003569
3570 builder.clearAccessChain();
3571 break;
3572
John Kessenichb9197c82019-08-11 07:41:45 -06003573#ifndef GLSLANG_WEB
Jeff Bolzba6170b2019-07-01 09:23:23 -05003574 case glslang::EOpDemote:
3575 builder.createNoResultOp(spv::OpDemoteToHelperInvocationEXT);
3576 builder.addExtension(spv::E_SPV_EXT_demote_to_helper_invocation);
3577 builder.addCapability(spv::CapabilityDemoteToHelperInvocationEXT);
3578 break;
Daniel Kochffccefd2020-11-23 15:41:27 -05003579 case glslang::EOpTerminateRayKHR:
3580 builder.makeStatementTerminator(spv::OpTerminateRayKHR, "post-terminateRayKHR");
3581 break;
3582 case glslang::EOpIgnoreIntersectionKHR:
3583 builder.makeStatementTerminator(spv::OpIgnoreIntersectionKHR, "post-ignoreIntersectionKHR");
3584 break;
John Kessenichb9197c82019-08-11 07:41:45 -06003585#endif
Jeff Bolzba6170b2019-07-01 09:23:23 -05003586
John Kessenich140f3df2015-06-26 16:58:36 -06003587 default:
John Kessenich55e7d112015-11-15 21:33:39 -07003588 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06003589 break;
3590 }
3591
3592 return false;
3593}
3594
John Kessenich9c14f772019-06-17 08:38:35 -06003595spv::Id TGlslangToSpvTraverser::createSpvVariable(const glslang::TIntermSymbol* node, spv::Id forcedType)
John Kessenich140f3df2015-06-26 16:58:36 -06003596{
qining25262b32016-05-06 17:25:16 -04003597 // First, steer off constants, which are not SPIR-V variables, but
John Kessenich140f3df2015-06-26 16:58:36 -06003598 // can still have a mapping to a SPIR-V Id.
John Kessenich55e7d112015-11-15 21:33:39 -07003599 // This includes specialization constants.
John Kessenich7cc0e282016-03-20 00:46:02 -06003600 if (node->getQualifier().isConstant()) {
Dan Sinclair12fcaa22018-11-13 09:17:44 -05003601 spv::Id result = createSpvConstant(*node);
3602 if (result != spv::NoResult)
3603 return result;
John Kessenich140f3df2015-06-26 16:58:36 -06003604 }
3605
3606 // Now, handle actual variables
John Kessenicha5c5fb62017-05-05 05:09:58 -06003607 spv::StorageClass storageClass = TranslateStorageClass(node->getType());
John Kessenich9c14f772019-06-17 08:38:35 -06003608 spv::Id spvType = forcedType == spv::NoType ? convertGlslangToSpvType(node->getType())
3609 : forcedType;
John Kessenich140f3df2015-06-26 16:58:36 -06003610
John Kessenichb9197c82019-08-11 07:41:45 -06003611 const bool contains16BitType = node->getType().contains16BitFloat() ||
3612 node->getType().contains16BitInt();
Rex Xuf89ad982017-04-07 23:22:33 +08003613 if (contains16BitType) {
John Kessenich18310872018-05-14 22:08:53 -06003614 switch (storageClass) {
3615 case spv::StorageClassInput:
3616 case spv::StorageClassOutput:
John Kessenich8317e6c2019-08-18 23:58:08 -06003617 builder.addIncorporatedExtension(spv::E_SPV_KHR_16bit_storage, spv::Spv_1_3);
Rex Xuf89ad982017-04-07 23:22:33 +08003618 builder.addCapability(spv::CapabilityStorageInputOutput16);
John Kessenich18310872018-05-14 22:08:53 -06003619 break;
John Kessenich18310872018-05-14 22:08:53 -06003620 case spv::StorageClassUniform:
John Kessenich8317e6c2019-08-18 23:58:08 -06003621 builder.addIncorporatedExtension(spv::E_SPV_KHR_16bit_storage, spv::Spv_1_3);
Rex Xuf89ad982017-04-07 23:22:33 +08003622 if (node->getType().getQualifier().storage == glslang::EvqBuffer)
3623 builder.addCapability(spv::CapabilityStorageUniformBufferBlock16);
John Kessenich18310872018-05-14 22:08:53 -06003624 else
3625 builder.addCapability(spv::CapabilityStorageUniform16);
3626 break;
John Kessenichb9197c82019-08-11 07:41:45 -06003627#ifndef GLSLANG_WEB
3628 case spv::StorageClassPushConstant:
John Kessenich8317e6c2019-08-18 23:58:08 -06003629 builder.addIncorporatedExtension(spv::E_SPV_KHR_16bit_storage, spv::Spv_1_3);
John Kessenichb9197c82019-08-11 07:41:45 -06003630 builder.addCapability(spv::CapabilityStoragePushConstant16);
3631 break;
John Kessenich18310872018-05-14 22:08:53 -06003632 case spv::StorageClassStorageBuffer:
Jeff Bolz9f2aec42019-01-06 17:58:04 -06003633 case spv::StorageClassPhysicalStorageBufferEXT:
John Kessenich8317e6c2019-08-18 23:58:08 -06003634 builder.addIncorporatedExtension(spv::E_SPV_KHR_16bit_storage, spv::Spv_1_3);
John Kessenich18310872018-05-14 22:08:53 -06003635 builder.addCapability(spv::CapabilityStorageUniformBufferBlock16);
3636 break;
John Kessenichb9197c82019-08-11 07:41:45 -06003637#endif
John Kessenich18310872018-05-14 22:08:53 -06003638 default:
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -07003639 if (storageClass == spv::StorageClassWorkgroup &&
3640 node->getType().getBasicType() == glslang::EbtBlock) {
3641 builder.addCapability(spv::CapabilityWorkgroupMemoryExplicitLayout16BitAccessKHR);
3642 break;
3643 }
John Kessenichb9197c82019-08-11 07:41:45 -06003644 if (node->getType().contains16BitFloat())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06003645 builder.addCapability(spv::CapabilityFloat16);
John Kessenichb9197c82019-08-11 07:41:45 -06003646 if (node->getType().contains16BitInt())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06003647 builder.addCapability(spv::CapabilityInt16);
John Kessenich18310872018-05-14 22:08:53 -06003648 break;
Rex Xuf89ad982017-04-07 23:22:33 +08003649 }
3650 }
Rex Xuf89ad982017-04-07 23:22:33 +08003651
John Kessenichb9197c82019-08-11 07:41:45 -06003652 if (node->getType().contains8BitInt()) {
John Kessenich312dcfb2018-07-03 13:19:51 -06003653 if (storageClass == spv::StorageClassPushConstant) {
John Kessenich8317e6c2019-08-18 23:58:08 -06003654 builder.addIncorporatedExtension(spv::E_SPV_KHR_8bit_storage, spv::Spv_1_5);
John Kessenich312dcfb2018-07-03 13:19:51 -06003655 builder.addCapability(spv::CapabilityStoragePushConstant8);
3656 } else if (storageClass == spv::StorageClassUniform) {
John Kessenich8317e6c2019-08-18 23:58:08 -06003657 builder.addIncorporatedExtension(spv::E_SPV_KHR_8bit_storage, spv::Spv_1_5);
John Kessenich312dcfb2018-07-03 13:19:51 -06003658 builder.addCapability(spv::CapabilityUniformAndStorageBuffer8BitAccess);
Neil Henningb6b01f02018-10-23 15:02:29 +01003659 } else if (storageClass == spv::StorageClassStorageBuffer) {
John Kessenich8317e6c2019-08-18 23:58:08 -06003660 builder.addIncorporatedExtension(spv::E_SPV_KHR_8bit_storage, spv::Spv_1_5);
Neil Henningb6b01f02018-10-23 15:02:29 +01003661 builder.addCapability(spv::CapabilityStorageBuffer8BitAccess);
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -07003662 } else if (storageClass == spv::StorageClassWorkgroup &&
3663 node->getType().getBasicType() == glslang::EbtBlock) {
3664 builder.addCapability(spv::CapabilityWorkgroupMemoryExplicitLayout8BitAccessKHR);
Jeff Bolz2b2316d2019-02-17 22:49:28 -06003665 } else {
3666 builder.addCapability(spv::CapabilityInt8);
John Kessenich312dcfb2018-07-03 13:19:51 -06003667 }
3668 }
3669
John Kessenich140f3df2015-06-26 16:58:36 -06003670 const char* name = node->getName().c_str();
3671 if (glslang::IsAnonymous(name))
3672 name = "";
3673
Alejandro Piñeiroff6dcca2020-06-04 09:39:31 +02003674 spv::Id initializer = spv::NoResult;
3675
John Kessenichc739e032020-06-11 08:30:03 -06003676 if (node->getType().getQualifier().storage == glslang::EvqUniform && !node->getConstArray().empty()) {
3677 int nextConst = 0;
3678 initializer = createSpvConstantFromConstUnionArray(node->getType(),
3679 node->getConstArray(),
3680 nextConst,
3681 false /* specConst */);
3682 } else if (node->getType().getQualifier().isNullInit()) {
3683 initializer = builder.makeNullConstant(spvType);
Alejandro Piñeiroff6dcca2020-06-04 09:39:31 +02003684 }
3685
John Kessenich435dd802020-06-30 01:27:08 -06003686 return builder.createVariable(spv::NoPrecision, storageClass, spvType, name, initializer);
John Kessenich140f3df2015-06-26 16:58:36 -06003687}
3688
3689// Return type Id of the sampled type.
3690spv::Id TGlslangToSpvTraverser::getSampledType(const glslang::TSampler& sampler)
3691{
3692 switch (sampler.type) {
John Kessenicha28f7a72019-08-06 07:00:58 -06003693 case glslang::EbtInt: return builder.makeIntType(32);
3694 case glslang::EbtUint: return builder.makeUintType(32);
John Kessenich140f3df2015-06-26 16:58:36 -06003695 case glslang::EbtFloat: return builder.makeFloatType(32);
John Kessenicha28f7a72019-08-06 07:00:58 -06003696#ifndef GLSLANG_WEB
Rex Xu1e5d7b02016-11-29 17:36:31 +08003697 case glslang::EbtFloat16:
3698 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float_fetch);
3699 builder.addCapability(spv::CapabilityFloat16ImageAMD);
3700 return builder.makeFloatType(16);
Tobski8c1a3a02020-11-04 16:24:23 +00003701 case glslang::EbtInt64: return builder.makeIntType(64);
3702 builder.addExtension(spv::E_SPV_EXT_shader_image_int64);
3703 builder.addCapability(spv::CapabilityFloat16ImageAMD);
3704 case glslang::EbtUint64: return builder.makeUintType(64);
3705 builder.addExtension(spv::E_SPV_EXT_shader_image_int64);
3706 builder.addCapability(spv::CapabilityFloat16ImageAMD);
Rex Xu1e5d7b02016-11-29 17:36:31 +08003707#endif
John Kessenich140f3df2015-06-26 16:58:36 -06003708 default:
John Kessenich55e7d112015-11-15 21:33:39 -07003709 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06003710 return builder.makeFloatType(32);
3711 }
3712}
3713
John Kessenich8c8505c2016-07-26 12:50:38 -06003714// If node is a swizzle operation, return the type that should be used if
3715// the swizzle base is first consumed by another operation, before the swizzle
3716// is applied.
3717spv::Id TGlslangToSpvTraverser::getInvertedSwizzleType(const glslang::TIntermTyped& node)
3718{
John Kessenichecba76f2017-01-06 00:34:48 -07003719 if (node.getAsOperator() &&
John Kessenich8c8505c2016-07-26 12:50:38 -06003720 node.getAsOperator()->getOp() == glslang::EOpVectorSwizzle)
3721 return convertGlslangToSpvType(node.getAsBinaryNode()->getLeft()->getType());
3722 else
3723 return spv::NoType;
3724}
3725
3726// When inverting a swizzle with a parent op, this function
3727// will apply the swizzle operation to a completed parent operation.
John Kessenich8985fc92020-03-03 10:25:07 -07003728spv::Id TGlslangToSpvTraverser::createInvertedSwizzle(spv::Decoration precision, const glslang::TIntermTyped& node,
3729 spv::Id parentResult)
John Kessenich8c8505c2016-07-26 12:50:38 -06003730{
3731 std::vector<unsigned> swizzle;
3732 convertSwizzle(*node.getAsBinaryNode()->getRight()->getAsAggregate(), swizzle);
3733 return builder.createRvalueSwizzle(precision, convertGlslangToSpvType(node.getType()), parentResult, swizzle);
3734}
3735
John Kessenich8c8505c2016-07-26 12:50:38 -06003736// Convert a glslang AST swizzle node to a swizzle vector for building SPIR-V.
3737void TGlslangToSpvTraverser::convertSwizzle(const glslang::TIntermAggregate& node, std::vector<unsigned>& swizzle)
3738{
3739 const glslang::TIntermSequence& swizzleSequence = node.getSequence();
3740 for (int i = 0; i < (int)swizzleSequence.size(); ++i)
3741 swizzle.push_back(swizzleSequence[i]->getAsConstantUnion()->getConstArray()[0].getIConst());
3742}
3743
John Kessenich3ac051e2015-12-20 11:29:16 -07003744// Convert from a glslang type to an SPV type, by calling into a
3745// recursive version of this function. This establishes the inherited
3746// layout state rooted from the top-level type.
Jeff Bolz9f2aec42019-01-06 17:58:04 -06003747spv::Id TGlslangToSpvTraverser::convertGlslangToSpvType(const glslang::TType& type, bool forwardReferenceOnly)
John Kessenich140f3df2015-06-26 16:58:36 -06003748{
Jeff Bolz9f2aec42019-01-06 17:58:04 -06003749 return convertGlslangToSpvType(type, getExplicitLayout(type), type.getQualifier(), false, forwardReferenceOnly);
John Kessenich31ed4832015-09-09 17:51:38 -06003750}
3751
3752// Do full recursive conversion of an arbitrary glslang type to a SPIR-V Id.
John Kessenich7b9fa252016-01-21 18:56:57 -07003753// explicitLayout can be kept the same throughout the hierarchical recursive walk.
John Kessenich6090df02016-06-30 21:18:02 -06003754// Mutually recursive with convertGlslangStructToSpvType().
John Kessenichead86222018-03-28 18:01:20 -06003755spv::Id TGlslangToSpvTraverser::convertGlslangToSpvType(const glslang::TType& type,
Jeff Bolz9f2aec42019-01-06 17:58:04 -06003756 glslang::TLayoutPacking explicitLayout, const glslang::TQualifier& qualifier,
3757 bool lastBufferBlockMember, bool forwardReferenceOnly)
John Kessenich31ed4832015-09-09 17:51:38 -06003758{
John Kesseniche0b6cad2015-12-24 10:30:13 -07003759 spv::Id spvType = spv::NoResult;
John Kessenich140f3df2015-06-26 16:58:36 -06003760
3761 switch (type.getBasicType()) {
3762 case glslang::EbtVoid:
3763 spvType = builder.makeVoidType();
John Kessenich55e7d112015-11-15 21:33:39 -07003764 assert (! type.isArray());
John Kessenich140f3df2015-06-26 16:58:36 -06003765 break;
John Kessenich140f3df2015-06-26 16:58:36 -06003766 case glslang::EbtBool:
John Kessenich103bef92016-02-08 21:38:15 -07003767 // "transparent" bool doesn't exist in SPIR-V. The GLSL convention is
3768 // a 32-bit int where non-0 means true.
3769 if (explicitLayout != glslang::ElpNone)
3770 spvType = builder.makeUintType(32);
3771 else
3772 spvType = builder.makeBoolType();
John Kessenich140f3df2015-06-26 16:58:36 -06003773 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06003774 case glslang::EbtInt:
3775 spvType = builder.makeIntType(32);
3776 break;
3777 case glslang::EbtUint:
3778 spvType = builder.makeUintType(32);
3779 break;
3780 case glslang::EbtFloat:
3781 spvType = builder.makeFloatType(32);
3782 break;
3783#ifndef GLSLANG_WEB
3784 case glslang::EbtDouble:
3785 spvType = builder.makeFloatType(64);
3786 break;
3787 case glslang::EbtFloat16:
3788 spvType = builder.makeFloatType(16);
3789 break;
John Kessenich31aa3d62018-08-15 13:54:09 -06003790 case glslang::EbtInt8:
John Kessenich66011cb2018-03-06 16:12:04 -07003791 spvType = builder.makeIntType(8);
3792 break;
3793 case glslang::EbtUint8:
John Kessenich66011cb2018-03-06 16:12:04 -07003794 spvType = builder.makeUintType(8);
3795 break;
John Kessenich31aa3d62018-08-15 13:54:09 -06003796 case glslang::EbtInt16:
John Kessenich66011cb2018-03-06 16:12:04 -07003797 spvType = builder.makeIntType(16);
3798 break;
3799 case glslang::EbtUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07003800 spvType = builder.makeUintType(16);
3801 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08003802 case glslang::EbtInt64:
Rex Xu8ff43de2016-04-22 16:51:45 +08003803 spvType = builder.makeIntType(64);
3804 break;
3805 case glslang::EbtUint64:
Rex Xu8ff43de2016-04-22 16:51:45 +08003806 spvType = builder.makeUintType(64);
3807 break;
John Kessenich426394d2015-07-23 10:22:48 -06003808 case glslang::EbtAtomicUint:
John Kessenich2d0cc782016-07-07 13:20:00 -06003809 builder.addCapability(spv::CapabilityAtomicStorage);
John Kessenich426394d2015-07-23 10:22:48 -06003810 spvType = builder.makeUintType(32);
3811 break;
Daniel Kochdb32b242020-03-17 20:42:47 -04003812 case glslang::EbtAccStruct:
Daniel Koch4d41da32020-11-24 23:06:16 -05003813 switch (glslangIntermediate->getStage()) {
3814 case EShLangRayGen:
3815 case EShLangIntersect:
3816 case EShLangAnyHit:
3817 case EShLangClosestHit:
3818 case EShLangMiss:
3819 case EShLangCallable:
3820 // these all should have the RayTracingNV/KHR capability already
3821 break;
3822 default:
3823 {
3824 auto& extensions = glslangIntermediate->getRequestedExtensions();
3825 if (extensions.find("GL_EXT_ray_query") != extensions.end()) {
3826 builder.addExtension(spv::E_SPV_KHR_ray_query);
3827 builder.addCapability(spv::CapabilityRayQueryKHR);
3828 }
3829 }
3830 break;
3831 }
Daniel Kochdb32b242020-03-17 20:42:47 -04003832 spvType = builder.makeAccelerationStructureType();
Chao Chenb50c02e2018-09-19 11:42:24 -07003833 break;
Torosdagli06c2eee2020-03-19 11:09:57 -04003834 case glslang::EbtRayQuery:
Daniel Koch4d41da32020-11-24 23:06:16 -05003835 {
3836 auto& extensions = glslangIntermediate->getRequestedExtensions();
3837 if (extensions.find("GL_EXT_ray_query") != extensions.end()) {
3838 builder.addExtension(spv::E_SPV_KHR_ray_query);
3839 builder.addCapability(spv::CapabilityRayQueryKHR);
3840 }
3841 spvType = builder.makeRayQueryType();
3842 }
Torosdagli06c2eee2020-03-19 11:09:57 -04003843 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06003844 case glslang::EbtReference:
3845 {
3846 // Make the forward pointer, then recurse to convert the structure type, then
3847 // patch up the forward pointer with a real pointer type.
3848 if (forwardPointers.find(type.getReferentType()) == forwardPointers.end()) {
3849 spv::Id forwardId = builder.makeForwardPointer(spv::StorageClassPhysicalStorageBufferEXT);
3850 forwardPointers[type.getReferentType()] = forwardId;
3851 }
3852 spvType = forwardPointers[type.getReferentType()];
3853 if (!forwardReferenceOnly) {
3854 spv::Id referentType = convertGlslangToSpvType(*type.getReferentType());
3855 builder.makePointerFromForwardPointer(spv::StorageClassPhysicalStorageBufferEXT,
3856 forwardPointers[type.getReferentType()],
3857 referentType);
3858 }
3859 }
3860 break;
Chao Chenb50c02e2018-09-19 11:42:24 -07003861#endif
John Kessenich140f3df2015-06-26 16:58:36 -06003862 case glslang::EbtSampler:
3863 {
3864 const glslang::TSampler& sampler = type.getSampler();
John Kessenich3e4b6ff2019-08-08 01:15:24 -06003865 if (sampler.isPureSampler()) {
John Kessenich6c292d32016-02-15 20:58:50 -07003866 spvType = builder.makeSamplerType();
3867 } else {
3868 // an image is present, make its type
John Kessenich3e4b6ff2019-08-08 01:15:24 -06003869 spvType = builder.makeImageType(getSampledType(sampler), TranslateDimensionality(sampler),
3870 sampler.isShadow(), sampler.isArrayed(), sampler.isMultiSample(),
3871 sampler.isImageClass() ? 2 : 1, TranslateImageFormat(type));
3872 if (sampler.isCombined()) {
John Kessenich6c292d32016-02-15 20:58:50 -07003873 // already has both image and sampler, make the combined type
3874 spvType = builder.makeSampledImageType(spvType);
3875 }
John Kessenich55e7d112015-11-15 21:33:39 -07003876 }
John Kesseniche0b6cad2015-12-24 10:30:13 -07003877 }
John Kessenich140f3df2015-06-26 16:58:36 -06003878 break;
3879 case glslang::EbtStruct:
3880 case glslang::EbtBlock:
3881 {
3882 // If we've seen this struct type, return it
John Kessenich6090df02016-06-30 21:18:02 -06003883 const glslang::TTypeList* glslangMembers = type.getStruct();
John Kesseniche0b6cad2015-12-24 10:30:13 -07003884
3885 // Try to share structs for different layouts, but not yet for other
3886 // kinds of qualification (primarily not yet including interpolant qualification).
John Kessenichf2b7f332016-09-01 17:05:23 -06003887 if (! HasNonLayoutQualifiers(type, qualifier))
John Kessenich6090df02016-06-30 21:18:02 -06003888 spvType = structMap[explicitLayout][qualifier.layoutMatrix][glslangMembers];
John Kesseniche0b6cad2015-12-24 10:30:13 -07003889 if (spvType != spv::NoResult)
John Kessenich140f3df2015-06-26 16:58:36 -06003890 break;
3891
3892 // else, we haven't seen it...
John Kessenich140f3df2015-06-26 16:58:36 -06003893 if (type.getBasicType() == glslang::EbtBlock)
Roy05a5b532020-01-03 16:21:34 +08003894 memberRemapper[glslangTypeToIdMap[glslangMembers]].resize(glslangMembers->size());
John Kessenich6090df02016-06-30 21:18:02 -06003895 spvType = convertGlslangStructToSpvType(type, glslangMembers, explicitLayout, qualifier);
John Kessenich140f3df2015-06-26 16:58:36 -06003896 }
3897 break;
Jeff Bolz04d73732019-05-31 13:06:01 -05003898 case glslang::EbtString:
3899 // no type used for OpString
3900 return 0;
John Kessenich140f3df2015-06-26 16:58:36 -06003901 default:
John Kessenich55e7d112015-11-15 21:33:39 -07003902 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06003903 break;
3904 }
3905
3906 if (type.isMatrix())
3907 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows());
3908 else {
3909 // If this variable has a vector element count greater than 1, create a SPIR-V vector
3910 if (type.getVectorSize() > 1)
3911 spvType = builder.makeVectorType(spvType, type.getVectorSize());
3912 }
3913
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003914 if (type.isCoopMat()) {
3915 builder.addCapability(spv::CapabilityCooperativeMatrixNV);
3916 builder.addExtension(spv::E_SPV_NV_cooperative_matrix);
3917 if (type.getBasicType() == glslang::EbtFloat16)
3918 builder.addCapability(spv::CapabilityFloat16);
Jeff Bolz387657e2019-08-22 20:28:00 -05003919 if (type.getBasicType() == glslang::EbtUint8 ||
3920 type.getBasicType() == glslang::EbtInt8) {
3921 builder.addCapability(spv::CapabilityInt8);
3922 }
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003923
3924 spv::Id scope = makeArraySizeId(*type.getTypeParameters(), 1);
3925 spv::Id rows = makeArraySizeId(*type.getTypeParameters(), 2);
3926 spv::Id cols = makeArraySizeId(*type.getTypeParameters(), 3);
3927
3928 spvType = builder.makeCooperativeMatrixType(spvType, scope, rows, cols);
3929 }
3930
John Kessenich140f3df2015-06-26 16:58:36 -06003931 if (type.isArray()) {
John Kessenichc9e0a422015-12-29 21:27:24 -07003932 int stride = 0; // keep this 0 unless doing an explicit layout; 0 will mean no decoration, no stride
3933
John Kessenichc9a80832015-09-12 12:17:44 -06003934 // Do all but the outer dimension
John Kessenichc9e0a422015-12-29 21:27:24 -07003935 if (type.getArraySizes()->getNumDims() > 1) {
John Kessenichf8842e52016-01-04 19:22:56 -07003936 // We need to decorate array strides for types needing explicit layout, except blocks.
3937 if (explicitLayout != glslang::ElpNone && type.getBasicType() != glslang::EbtBlock) {
John Kessenichc9e0a422015-12-29 21:27:24 -07003938 // Use a dummy glslang type for querying internal strides of
3939 // arrays of arrays, but using just a one-dimensional array.
3940 glslang::TType simpleArrayType(type, 0); // deference type of the array
John Kessenich859b0342018-03-26 00:38:53 -06003941 while (simpleArrayType.getArraySizes()->getNumDims() > 1)
3942 simpleArrayType.getArraySizes()->dereference();
John Kessenichc9e0a422015-12-29 21:27:24 -07003943
3944 // Will compute the higher-order strides here, rather than making a whole
3945 // pile of types and doing repetitive recursion on their contents.
3946 stride = getArrayStride(simpleArrayType, explicitLayout, qualifier.layoutMatrix);
3947 }
John Kessenichf8842e52016-01-04 19:22:56 -07003948
3949 // make the arrays
John Kessenichc9e0a422015-12-29 21:27:24 -07003950 for (int dim = type.getArraySizes()->getNumDims() - 1; dim > 0; --dim) {
John Kessenich6c292d32016-02-15 20:58:50 -07003951 spvType = builder.makeArrayType(spvType, makeArraySizeId(*type.getArraySizes(), dim), stride);
John Kessenichc9e0a422015-12-29 21:27:24 -07003952 if (stride > 0)
3953 builder.addDecoration(spvType, spv::DecorationArrayStride, stride);
John Kessenich6c292d32016-02-15 20:58:50 -07003954 stride *= type.getArraySizes()->getDimSize(dim);
John Kessenichc9e0a422015-12-29 21:27:24 -07003955 }
3956 } else {
3957 // single-dimensional array, and don't yet have stride
3958
John Kessenichf8842e52016-01-04 19:22:56 -07003959 // We need to decorate array strides for types needing explicit layout, except blocks.
John Kessenichc9e0a422015-12-29 21:27:24 -07003960 if (explicitLayout != glslang::ElpNone && type.getBasicType() != glslang::EbtBlock)
3961 stride = getArrayStride(type, explicitLayout, qualifier.layoutMatrix);
John Kessenichc9a80832015-09-12 12:17:44 -06003962 }
John Kessenich31ed4832015-09-09 17:51:38 -06003963
John Kessenichead86222018-03-28 18:01:20 -06003964 // Do the outer dimension, which might not be known for a runtime-sized array.
3965 // (Unsized arrays that survive through linking will be runtime-sized arrays)
3966 if (type.isSizedArray())
John Kessenich6c292d32016-02-15 20:58:50 -07003967 spvType = builder.makeArrayType(spvType, makeArraySizeId(*type.getArraySizes(), 0), stride);
John Kessenich5611c6d2018-04-05 11:25:02 -06003968 else {
John Kessenichb9197c82019-08-11 07:41:45 -06003969#ifndef GLSLANG_WEB
John Kessenich5611c6d2018-04-05 11:25:02 -06003970 if (!lastBufferBlockMember) {
John Kessenich8317e6c2019-08-18 23:58:08 -06003971 builder.addIncorporatedExtension("SPV_EXT_descriptor_indexing", spv::Spv_1_5);
John Kessenich5611c6d2018-04-05 11:25:02 -06003972 builder.addCapability(spv::CapabilityRuntimeDescriptorArrayEXT);
3973 }
John Kessenichb9197c82019-08-11 07:41:45 -06003974#endif
John Kessenich3dd1ce52019-10-17 07:08:40 -06003975 spvType = builder.makeRuntimeArray(spvType);
John Kessenich5611c6d2018-04-05 11:25:02 -06003976 }
John Kessenichc9e0a422015-12-29 21:27:24 -07003977 if (stride > 0)
3978 builder.addDecoration(spvType, spv::DecorationArrayStride, stride);
John Kessenich140f3df2015-06-26 16:58:36 -06003979 }
3980
3981 return spvType;
3982}
3983
John Kessenich0e737842017-03-24 18:38:16 -06003984// TODO: this functionality should exist at a higher level, in creating the AST
3985//
3986// Identify interface members that don't have their required extension turned on.
3987//
3988bool TGlslangToSpvTraverser::filterMember(const glslang::TType& member)
3989{
John Kessenicha28f7a72019-08-06 07:00:58 -06003990#ifndef GLSLANG_WEB
John Kessenich0e737842017-03-24 18:38:16 -06003991 auto& extensions = glslangIntermediate->getRequestedExtensions();
3992
Rex Xubcf291a2017-03-29 23:01:36 +08003993 if (member.getFieldName() == "gl_SecondaryViewportMaskNV" &&
3994 extensions.find("GL_NV_stereo_view_rendering") == extensions.end())
3995 return true;
John Kessenich0e737842017-03-24 18:38:16 -06003996 if (member.getFieldName() == "gl_SecondaryPositionNV" &&
3997 extensions.find("GL_NV_stereo_view_rendering") == extensions.end())
3998 return true;
Chao Chen3c366992018-09-19 11:41:59 -07003999
4000 if (glslangIntermediate->getStage() != EShLangMeshNV) {
4001 if (member.getFieldName() == "gl_ViewportMask" &&
4002 extensions.find("GL_NV_viewport_array2") == extensions.end())
4003 return true;
4004 if (member.getFieldName() == "gl_PositionPerViewNV" &&
4005 extensions.find("GL_NVX_multiview_per_view_attributes") == extensions.end())
4006 return true;
4007 if (member.getFieldName() == "gl_ViewportMaskPerViewNV" &&
4008 extensions.find("GL_NVX_multiview_per_view_attributes") == extensions.end())
4009 return true;
4010 }
4011#endif
John Kessenich0e737842017-03-24 18:38:16 -06004012
4013 return false;
4014};
4015
John Kessenich6090df02016-06-30 21:18:02 -06004016// Do full recursive conversion of a glslang structure (or block) type to a SPIR-V Id.
4017// explicitLayout can be kept the same throughout the hierarchical recursive walk.
4018// Mutually recursive with convertGlslangToSpvType().
4019spv::Id TGlslangToSpvTraverser::convertGlslangStructToSpvType(const glslang::TType& type,
4020 const glslang::TTypeList* glslangMembers,
4021 glslang::TLayoutPacking explicitLayout,
4022 const glslang::TQualifier& qualifier)
4023{
4024 // Create a vector of struct types for SPIR-V to consume
4025 std::vector<spv::Id> spvMembers;
John Kessenich8985fc92020-03-03 10:25:07 -07004026 int memberDelta = 0; // how much the member's index changes from glslang to SPIR-V, normally 0,
4027 // except sometimes for blocks
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004028 std::vector<std::pair<glslang::TType*, glslang::TQualifier> > deferredForwardPointers;
John Kessenich6090df02016-06-30 21:18:02 -06004029 for (int i = 0; i < (int)glslangMembers->size(); i++) {
4030 glslang::TType& glslangMember = *(*glslangMembers)[i].type;
4031 if (glslangMember.hiddenMember()) {
4032 ++memberDelta;
4033 if (type.getBasicType() == glslang::EbtBlock)
Roy05a5b532020-01-03 16:21:34 +08004034 memberRemapper[glslangTypeToIdMap[glslangMembers]][i] = -1;
John Kessenich6090df02016-06-30 21:18:02 -06004035 } else {
John Kessenich0e737842017-03-24 18:38:16 -06004036 if (type.getBasicType() == glslang::EbtBlock) {
Ashwin Lelec1e61d62019-07-22 12:36:38 -07004037 if (filterMember(glslangMember)) {
4038 memberDelta++;
Roy05a5b532020-01-03 16:21:34 +08004039 memberRemapper[glslangTypeToIdMap[glslangMembers]][i] = -1;
John Kessenich0e737842017-03-24 18:38:16 -06004040 continue;
Ashwin Lelec1e61d62019-07-22 12:36:38 -07004041 }
Roy05a5b532020-01-03 16:21:34 +08004042 memberRemapper[glslangTypeToIdMap[glslangMembers]][i] = i - memberDelta;
John Kessenich0e737842017-03-24 18:38:16 -06004043 }
John Kessenich6090df02016-06-30 21:18:02 -06004044 // modify just this child's view of the qualifier
4045 glslang::TQualifier memberQualifier = glslangMember.getQualifier();
4046 InheritQualifiers(memberQualifier, qualifier);
4047
John Kessenich7cdf3fc2017-06-04 13:22:39 -06004048 // manually inherit location
John Kessenich6090df02016-06-30 21:18:02 -06004049 if (! memberQualifier.hasLocation() && qualifier.hasLocation())
John Kessenich7cdf3fc2017-06-04 13:22:39 -06004050 memberQualifier.layoutLocation = qualifier.layoutLocation;
John Kessenich6090df02016-06-30 21:18:02 -06004051
4052 // recurse
John Kessenichead86222018-03-28 18:01:20 -06004053 bool lastBufferBlockMember = qualifier.storage == glslang::EvqBuffer &&
4054 i == (int)glslangMembers->size() - 1;
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004055
4056 // Make forward pointers for any pointer members, and create a list of members to
4057 // convert to spirv types after creating the struct.
John Kessenich7015bd62019-08-01 03:28:08 -06004058 if (glslangMember.isReference()) {
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004059 if (forwardPointers.find(glslangMember.getReferentType()) == forwardPointers.end()) {
4060 deferredForwardPointers.push_back(std::make_pair(&glslangMember, memberQualifier));
4061 }
4062 spvMembers.push_back(
John Kessenich8985fc92020-03-03 10:25:07 -07004063 convertGlslangToSpvType(glslangMember, explicitLayout, memberQualifier, lastBufferBlockMember,
4064 true));
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004065 } else {
4066 spvMembers.push_back(
John Kessenich8985fc92020-03-03 10:25:07 -07004067 convertGlslangToSpvType(glslangMember, explicitLayout, memberQualifier, lastBufferBlockMember,
4068 false));
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004069 }
John Kessenich6090df02016-06-30 21:18:02 -06004070 }
4071 }
4072
4073 // Make the SPIR-V type
4074 spv::Id spvType = builder.makeStructType(spvMembers, type.getTypeName().c_str());
John Kessenichf2b7f332016-09-01 17:05:23 -06004075 if (! HasNonLayoutQualifiers(type, qualifier))
John Kessenich6090df02016-06-30 21:18:02 -06004076 structMap[explicitLayout][qualifier.layoutMatrix][glslangMembers] = spvType;
4077
4078 // Decorate it
4079 decorateStructType(type, glslangMembers, explicitLayout, qualifier, spvType);
4080
John Kessenichd72f4882019-01-16 14:55:37 +07004081 for (int i = 0; i < (int)deferredForwardPointers.size(); ++i) {
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004082 auto it = deferredForwardPointers[i];
4083 convertGlslangToSpvType(*it.first, explicitLayout, it.second, false);
4084 }
4085
John Kessenich6090df02016-06-30 21:18:02 -06004086 return spvType;
4087}
4088
4089void TGlslangToSpvTraverser::decorateStructType(const glslang::TType& type,
4090 const glslang::TTypeList* glslangMembers,
4091 glslang::TLayoutPacking explicitLayout,
4092 const glslang::TQualifier& qualifier,
4093 spv::Id spvType)
4094{
4095 // Name and decorate the non-hidden members
4096 int offset = -1;
4097 int locationOffset = 0; // for use within the members of this struct
Chow478b2322020-11-04 04:34:19 +08004098 bool memberLocationInvalid = type.isArrayOfArrays() ||
4099 (type.isArray() && (type.getQualifier().isArrayedIo(glslangIntermediate->getStage()) == false));
John Kessenich6090df02016-06-30 21:18:02 -06004100 for (int i = 0; i < (int)glslangMembers->size(); i++) {
4101 glslang::TType& glslangMember = *(*glslangMembers)[i].type;
4102 int member = i;
John Kessenich0e737842017-03-24 18:38:16 -06004103 if (type.getBasicType() == glslang::EbtBlock) {
Roy05a5b532020-01-03 16:21:34 +08004104 member = memberRemapper[glslangTypeToIdMap[glslangMembers]][i];
John Kessenich0e737842017-03-24 18:38:16 -06004105 if (filterMember(glslangMember))
4106 continue;
4107 }
John Kessenich6090df02016-06-30 21:18:02 -06004108
4109 // modify just this child's view of the qualifier
4110 glslang::TQualifier memberQualifier = glslangMember.getQualifier();
4111 InheritQualifiers(memberQualifier, qualifier);
4112
4113 // using -1 above to indicate a hidden member
John Kessenich5d610ee2018-03-07 18:05:55 -07004114 if (member < 0)
4115 continue;
4116
4117 builder.addMemberName(spvType, member, glslangMember.getFieldName().c_str());
4118 builder.addMemberDecoration(spvType, member,
4119 TranslateLayoutDecoration(glslangMember, memberQualifier.layoutMatrix));
4120 builder.addMemberDecoration(spvType, member, TranslatePrecisionDecoration(glslangMember));
4121 // Add interpolation and auxiliary storage decorations only to
4122 // top-level members of Input and Output storage classes
4123 if (type.getQualifier().storage == glslang::EvqVaryingIn ||
4124 type.getQualifier().storage == glslang::EvqVaryingOut) {
4125 if (type.getBasicType() == glslang::EbtBlock ||
4126 glslangIntermediate->getSource() == glslang::EShSourceHlsl) {
4127 builder.addMemberDecoration(spvType, member, TranslateInterpolationDecoration(memberQualifier));
4128 builder.addMemberDecoration(spvType, member, TranslateAuxiliaryStorageDecoration(memberQualifier));
John Kessenicha28f7a72019-08-06 07:00:58 -06004129#ifndef GLSLANG_WEB
Chao Chen3c366992018-09-19 11:41:59 -07004130 addMeshNVDecoration(spvType, member, memberQualifier);
4131#endif
John Kessenich6090df02016-06-30 21:18:02 -06004132 }
John Kessenich5d610ee2018-03-07 18:05:55 -07004133 }
4134 builder.addMemberDecoration(spvType, member, TranslateInvariantDecoration(memberQualifier));
John Kessenich6090df02016-06-30 21:18:02 -06004135
John Kessenichb9197c82019-08-11 07:41:45 -06004136#ifndef GLSLANG_WEB
John Kessenich5d610ee2018-03-07 18:05:55 -07004137 if (type.getBasicType() == glslang::EbtBlock &&
4138 qualifier.storage == glslang::EvqBuffer) {
4139 // Add memory decorations only to top-level members of shader storage block
4140 std::vector<spv::Decoration> memory;
Jeff Bolz36831c92018-09-05 10:11:41 -05004141 TranslateMemoryDecoration(memberQualifier, memory, glslangIntermediate->usingVulkanMemoryModel());
John Kessenich5d610ee2018-03-07 18:05:55 -07004142 for (unsigned int i = 0; i < memory.size(); ++i)
4143 builder.addMemberDecoration(spvType, member, memory[i]);
4144 }
John Kessenichf8d1d742019-10-21 06:55:11 -06004145
John Kessenichb9197c82019-08-11 07:41:45 -06004146#endif
John Kessenich6090df02016-06-30 21:18:02 -06004147
John Kessenich5d610ee2018-03-07 18:05:55 -07004148 // Location assignment was already completed correctly by the front end,
4149 // just track whether a member needs to be decorated.
4150 // Ignore member locations if the container is an array, as that's
4151 // ill-specified and decisions have been made to not allow this.
Chow478b2322020-11-04 04:34:19 +08004152 if (!memberLocationInvalid && memberQualifier.hasLocation())
John Kessenich5d610ee2018-03-07 18:05:55 -07004153 builder.addMemberDecoration(spvType, member, spv::DecorationLocation, memberQualifier.layoutLocation);
John Kessenich6090df02016-06-30 21:18:02 -06004154
John Kessenich5d610ee2018-03-07 18:05:55 -07004155 if (qualifier.hasLocation()) // track for upcoming inheritance
4156 locationOffset += glslangIntermediate->computeTypeLocationSize(
4157 glslangMember, glslangIntermediate->getStage());
John Kessenich2f47bc92016-06-30 21:47:35 -06004158
John Kessenich5d610ee2018-03-07 18:05:55 -07004159 // component, XFB, others
4160 if (glslangMember.getQualifier().hasComponent())
4161 builder.addMemberDecoration(spvType, member, spv::DecorationComponent,
4162 glslangMember.getQualifier().layoutComponent);
4163 if (glslangMember.getQualifier().hasXfbOffset())
4164 builder.addMemberDecoration(spvType, member, spv::DecorationOffset,
4165 glslangMember.getQualifier().layoutXfbOffset);
4166 else if (explicitLayout != glslang::ElpNone) {
4167 // figure out what to do with offset, which is accumulating
4168 int nextOffset;
4169 updateMemberOffset(type, glslangMember, offset, nextOffset, explicitLayout, memberQualifier.layoutMatrix);
4170 if (offset >= 0)
4171 builder.addMemberDecoration(spvType, member, spv::DecorationOffset, offset);
4172 offset = nextOffset;
4173 }
John Kessenich6090df02016-06-30 21:18:02 -06004174
John Kessenich5d610ee2018-03-07 18:05:55 -07004175 if (glslangMember.isMatrix() && explicitLayout != glslang::ElpNone)
4176 builder.addMemberDecoration(spvType, member, spv::DecorationMatrixStride,
4177 getMatrixStride(glslangMember, explicitLayout, memberQualifier.layoutMatrix));
John Kessenich6090df02016-06-30 21:18:02 -06004178
John Kessenich5d610ee2018-03-07 18:05:55 -07004179 // built-in variable decorations
4180 spv::BuiltIn builtIn = TranslateBuiltInDecoration(glslangMember.getQualifier().builtIn, true);
4181 if (builtIn != spv::BuiltInMax)
4182 builder.addMemberDecoration(spvType, member, spv::DecorationBuiltIn, (int)builtIn);
chaoc771d89f2017-01-13 01:10:53 -08004183
John Kessenichb9197c82019-08-11 07:41:45 -06004184#ifndef GLSLANG_WEB
John Kessenich5611c6d2018-04-05 11:25:02 -06004185 // nonuniform
4186 builder.addMemberDecoration(spvType, member, TranslateNonUniformDecoration(glslangMember.getQualifier()));
4187
John Kessenichead86222018-03-28 18:01:20 -06004188 if (glslangIntermediate->getHlslFunctionality1() && memberQualifier.semanticName != nullptr) {
4189 builder.addExtension("SPV_GOOGLE_hlsl_functionality1");
4190 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationHlslSemanticGOOGLE,
4191 memberQualifier.semanticName);
4192 }
4193
John Kessenich5d610ee2018-03-07 18:05:55 -07004194 if (builtIn == spv::BuiltInLayer) {
4195 // SPV_NV_viewport_array2 extension
4196 if (glslangMember.getQualifier().layoutViewportRelative){
4197 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationViewportRelativeNV);
4198 builder.addCapability(spv::CapabilityShaderViewportMaskNV);
4199 builder.addExtension(spv::E_SPV_NV_viewport_array2);
chaoc771d89f2017-01-13 01:10:53 -08004200 }
John Kessenich5d610ee2018-03-07 18:05:55 -07004201 if (glslangMember.getQualifier().layoutSecondaryViewportRelativeOffset != -2048){
4202 builder.addMemberDecoration(spvType, member,
4203 (spv::Decoration)spv::DecorationSecondaryViewportRelativeNV,
4204 glslangMember.getQualifier().layoutSecondaryViewportRelativeOffset);
4205 builder.addCapability(spv::CapabilityShaderStereoViewNV);
4206 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
chaocdf3956c2017-02-14 14:52:34 -08004207 }
John Kessenich5d610ee2018-03-07 18:05:55 -07004208 }
4209 if (glslangMember.getQualifier().layoutPassthrough) {
4210 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationPassthroughNV);
4211 builder.addCapability(spv::CapabilityGeometryShaderPassthroughNV);
4212 builder.addExtension(spv::E_SPV_NV_geometry_shader_passthrough);
4213 }
chaoc771d89f2017-01-13 01:10:53 -08004214#endif
John Kessenich6090df02016-06-30 21:18:02 -06004215 }
4216
4217 // Decorate the structure
John Kessenich5d610ee2018-03-07 18:05:55 -07004218 builder.addDecoration(spvType, TranslateLayoutDecoration(type, qualifier.layoutMatrix));
4219 builder.addDecoration(spvType, TranslateBlockDecoration(type, glslangIntermediate->usingStorageBuffer()));
John Kessenich6090df02016-06-30 21:18:02 -06004220}
4221
John Kessenich6c292d32016-02-15 20:58:50 -07004222// Turn the expression forming the array size into an id.
4223// This is not quite trivial, because of specialization constants.
4224// Sometimes, a raw constant is turned into an Id, and sometimes
4225// a specialization constant expression is.
4226spv::Id TGlslangToSpvTraverser::makeArraySizeId(const glslang::TArraySizes& arraySizes, int dim)
4227{
4228 // First, see if this is sized with a node, meaning a specialization constant:
4229 glslang::TIntermTyped* specNode = arraySizes.getDimNode(dim);
4230 if (specNode != nullptr) {
4231 builder.clearAccessChain();
4232 specNode->traverse(this);
4233 return accessChainLoad(specNode->getAsTyped()->getType());
4234 }
qining25262b32016-05-06 17:25:16 -04004235
John Kessenich6c292d32016-02-15 20:58:50 -07004236 // Otherwise, need a compile-time (front end) size, get it:
4237 int size = arraySizes.getDimSize(dim);
4238 assert(size > 0);
4239 return builder.makeUintConstant(size);
4240}
4241
John Kessenich103bef92016-02-08 21:38:15 -07004242// Wrap the builder's accessChainLoad to:
4243// - localize handling of RelaxedPrecision
4244// - use the SPIR-V inferred type instead of another conversion of the glslang type
4245// (avoids unnecessary work and possible type punning for structures)
4246// - do conversion of concrete to abstract type
John Kessenich32cfd492016-02-02 12:37:46 -07004247spv::Id TGlslangToSpvTraverser::accessChainLoad(const glslang::TType& type)
4248{
John Kessenich103bef92016-02-08 21:38:15 -07004249 spv::Id nominalTypeId = builder.accessChainGetInferredType();
Jeff Bolz36831c92018-09-05 10:11:41 -05004250
4251 spv::Builder::AccessChain::CoherentFlags coherentFlags = builder.getAccessChain().coherentFlags;
4252 coherentFlags |= TranslateCoherent(type);
4253
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004254 unsigned int alignment = builder.getAccessChain().alignment;
Jeff Bolz7895e472019-03-06 13:34:10 -06004255 alignment |= type.getBufferReferenceAlignment();
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004256
John Kessenich5611c6d2018-04-05 11:25:02 -06004257 spv::Id loadedId = builder.accessChainLoad(TranslatePrecisionDecoration(type),
greg-lunarg639f5462020-11-12 11:10:07 -07004258 TranslateNonUniformDecoration(builder.getAccessChain().coherentFlags),
John Kessenich8985fc92020-03-03 10:25:07 -07004259 TranslateNonUniformDecoration(type.getQualifier()),
4260 nominalTypeId,
4261 spv::MemoryAccessMask(TranslateMemoryAccess(coherentFlags) & ~spv::MemoryAccessMakePointerAvailableKHRMask),
4262 TranslateMemoryScope(coherentFlags),
4263 alignment);
John Kessenich103bef92016-02-08 21:38:15 -07004264
4265 // Need to convert to abstract types when necessary
Rex Xu27253232016-02-23 17:51:09 +08004266 if (type.getBasicType() == glslang::EbtBool) {
4267 if (builder.isScalarType(nominalTypeId)) {
4268 // Conversion for bool
4269 spv::Id boolType = builder.makeBoolType();
4270 if (nominalTypeId != boolType)
4271 loadedId = builder.createBinOp(spv::OpINotEqual, boolType, loadedId, builder.makeUintConstant(0));
4272 } else if (builder.isVectorType(nominalTypeId)) {
4273 // Conversion for bvec
4274 int vecSize = builder.getNumTypeComponents(nominalTypeId);
4275 spv::Id bvecType = builder.makeVectorType(builder.makeBoolType(), vecSize);
4276 if (nominalTypeId != bvecType)
John Kessenich8985fc92020-03-03 10:25:07 -07004277 loadedId = builder.createBinOp(spv::OpINotEqual, bvecType, loadedId,
4278 makeSmearedConstant(builder.makeUintConstant(0), vecSize));
Rex Xu27253232016-02-23 17:51:09 +08004279 }
4280 }
John Kessenich103bef92016-02-08 21:38:15 -07004281
4282 return loadedId;
John Kessenich32cfd492016-02-02 12:37:46 -07004283}
4284
Rex Xu27253232016-02-23 17:51:09 +08004285// Wrap the builder's accessChainStore to:
4286// - do conversion of concrete to abstract type
John Kessenich4bf71552016-09-02 11:20:21 -06004287//
4288// Implicitly uses the existing builder.accessChain as the storage target.
Rex Xu27253232016-02-23 17:51:09 +08004289void TGlslangToSpvTraverser::accessChainStore(const glslang::TType& type, spv::Id rvalue)
4290{
4291 // Need to convert to abstract types when necessary
4292 if (type.getBasicType() == glslang::EbtBool) {
4293 spv::Id nominalTypeId = builder.accessChainGetInferredType();
4294
4295 if (builder.isScalarType(nominalTypeId)) {
4296 // Conversion for bool
4297 spv::Id boolType = builder.makeBoolType();
John Kessenichb6cabc42017-05-19 23:29:50 -06004298 if (nominalTypeId != boolType) {
4299 // keep these outside arguments, for determinant order-of-evaluation
4300 spv::Id one = builder.makeUintConstant(1);
4301 spv::Id zero = builder.makeUintConstant(0);
4302 rvalue = builder.createTriOp(spv::OpSelect, nominalTypeId, rvalue, one, zero);
4303 } else if (builder.getTypeId(rvalue) != boolType)
John Kessenich80f92a12017-05-19 23:00:13 -06004304 rvalue = builder.createBinOp(spv::OpINotEqual, boolType, rvalue, builder.makeUintConstant(0));
Rex Xu27253232016-02-23 17:51:09 +08004305 } else if (builder.isVectorType(nominalTypeId)) {
4306 // Conversion for bvec
4307 int vecSize = builder.getNumTypeComponents(nominalTypeId);
4308 spv::Id bvecType = builder.makeVectorType(builder.makeBoolType(), vecSize);
John Kessenichb6cabc42017-05-19 23:29:50 -06004309 if (nominalTypeId != bvecType) {
4310 // keep these outside arguments, for determinant order-of-evaluation
John Kessenich7b8c3862017-05-19 23:44:51 -06004311 spv::Id one = makeSmearedConstant(builder.makeUintConstant(1), vecSize);
4312 spv::Id zero = makeSmearedConstant(builder.makeUintConstant(0), vecSize);
4313 rvalue = builder.createTriOp(spv::OpSelect, nominalTypeId, rvalue, one, zero);
John Kessenichb6cabc42017-05-19 23:29:50 -06004314 } else if (builder.getTypeId(rvalue) != bvecType)
John Kessenich80f92a12017-05-19 23:00:13 -06004315 rvalue = builder.createBinOp(spv::OpINotEqual, bvecType, rvalue,
4316 makeSmearedConstant(builder.makeUintConstant(0), vecSize));
Rex Xu27253232016-02-23 17:51:09 +08004317 }
4318 }
4319
Jeff Bolz36831c92018-09-05 10:11:41 -05004320 spv::Builder::AccessChain::CoherentFlags coherentFlags = builder.getAccessChain().coherentFlags;
4321 coherentFlags |= TranslateCoherent(type);
4322
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004323 unsigned int alignment = builder.getAccessChain().alignment;
Jeff Bolz7895e472019-03-06 13:34:10 -06004324 alignment |= type.getBufferReferenceAlignment();
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004325
greg-lunarg639f5462020-11-12 11:10:07 -07004326 builder.accessChainStore(rvalue, TranslateNonUniformDecoration(builder.getAccessChain().coherentFlags),
John Kessenich8985fc92020-03-03 10:25:07 -07004327 spv::MemoryAccessMask(TranslateMemoryAccess(coherentFlags) &
4328 ~spv::MemoryAccessMakePointerVisibleKHRMask),
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004329 TranslateMemoryScope(coherentFlags), alignment);
Rex Xu27253232016-02-23 17:51:09 +08004330}
4331
John Kessenich4bf71552016-09-02 11:20:21 -06004332// For storing when types match at the glslang level, but not might match at the
4333// SPIR-V level.
4334//
4335// This especially happens when a single glslang type expands to multiple
John Kesseniched33e052016-10-06 12:59:51 -06004336// SPIR-V types, like a struct that is used in a member-undecorated way as well
John Kessenich4bf71552016-09-02 11:20:21 -06004337// as in a member-decorated way.
4338//
4339// NOTE: This function can handle any store request; if it's not special it
4340// simplifies to a simple OpStore.
4341//
4342// Implicitly uses the existing builder.accessChain as the storage target.
4343void TGlslangToSpvTraverser::multiTypeStore(const glslang::TType& type, spv::Id rValue)
4344{
John Kessenichb3e24e42016-09-11 12:33:43 -06004345 // we only do the complex path here if it's an aggregate
4346 if (! type.isStruct() && ! type.isArray()) {
John Kessenich4bf71552016-09-02 11:20:21 -06004347 accessChainStore(type, rValue);
4348 return;
4349 }
4350
John Kessenichb3e24e42016-09-11 12:33:43 -06004351 // and, it has to be a case of type aliasing
John Kessenich4bf71552016-09-02 11:20:21 -06004352 spv::Id rType = builder.getTypeId(rValue);
4353 spv::Id lValue = builder.accessChainGetLValue();
4354 spv::Id lType = builder.getContainedTypeId(builder.getTypeId(lValue));
4355 if (lType == rType) {
4356 accessChainStore(type, rValue);
4357 return;
4358 }
4359
John Kessenichb3e24e42016-09-11 12:33:43 -06004360 // Recursively (as needed) copy an aggregate type to a different aggregate type,
John Kessenich4bf71552016-09-02 11:20:21 -06004361 // where the two types were the same type in GLSL. This requires member
4362 // by member copy, recursively.
4363
John Kessenichfbb6bdf2019-01-15 21:48:27 +07004364 // SPIR-V 1.4 added an instruction to do help do this.
4365 if (glslangIntermediate->getSpv().spv >= glslang::EShTargetSpv_1_4) {
4366 // However, bool in uniform space is changed to int, so
4367 // OpCopyLogical does not work for that.
4368 // TODO: It would be more robust to do a full recursive verification of the types satisfying SPIR-V rules.
4369 bool rBool = builder.containsType(builder.getTypeId(rValue), spv::OpTypeBool, 0);
4370 bool lBool = builder.containsType(lType, spv::OpTypeBool, 0);
4371 if (lBool == rBool) {
4372 spv::Id logicalCopy = builder.createUnaryOp(spv::OpCopyLogical, lType, rValue);
4373 accessChainStore(type, logicalCopy);
4374 return;
4375 }
4376 }
4377
John Kessenichb3e24e42016-09-11 12:33:43 -06004378 // If an array, copy element by element.
4379 if (type.isArray()) {
4380 glslang::TType glslangElementType(type, 0);
4381 spv::Id elementRType = builder.getContainedTypeId(rType);
4382 for (int index = 0; index < type.getOuterArraySize(); ++index) {
4383 // get the source member
4384 spv::Id elementRValue = builder.createCompositeExtract(rValue, elementRType, index);
John Kessenich4bf71552016-09-02 11:20:21 -06004385
John Kessenichb3e24e42016-09-11 12:33:43 -06004386 // set up the target storage
4387 builder.clearAccessChain();
4388 builder.setAccessChainLValue(lValue);
John Kessenich8985fc92020-03-03 10:25:07 -07004389 builder.accessChainPush(builder.makeIntConstant(index), TranslateCoherent(type),
4390 type.getBufferReferenceAlignment());
John Kessenich4bf71552016-09-02 11:20:21 -06004391
John Kessenichb3e24e42016-09-11 12:33:43 -06004392 // store the member
4393 multiTypeStore(glslangElementType, elementRValue);
4394 }
4395 } else {
4396 assert(type.isStruct());
John Kessenich4bf71552016-09-02 11:20:21 -06004397
John Kessenichb3e24e42016-09-11 12:33:43 -06004398 // loop over structure members
4399 const glslang::TTypeList& members = *type.getStruct();
4400 for (int m = 0; m < (int)members.size(); ++m) {
4401 const glslang::TType& glslangMemberType = *members[m].type;
4402
4403 // get the source member
4404 spv::Id memberRType = builder.getContainedTypeId(rType, m);
4405 spv::Id memberRValue = builder.createCompositeExtract(rValue, memberRType, m);
4406
4407 // set up the target storage
4408 builder.clearAccessChain();
4409 builder.setAccessChainLValue(lValue);
John Kessenich8985fc92020-03-03 10:25:07 -07004410 builder.accessChainPush(builder.makeIntConstant(m), TranslateCoherent(type),
4411 type.getBufferReferenceAlignment());
John Kessenichb3e24e42016-09-11 12:33:43 -06004412
4413 // store the member
4414 multiTypeStore(glslangMemberType, memberRValue);
4415 }
John Kessenich4bf71552016-09-02 11:20:21 -06004416 }
4417}
4418
John Kessenichf85e8062015-12-19 13:57:10 -07004419// Decide whether or not this type should be
4420// decorated with offsets and strides, and if so
4421// whether std140 or std430 rules should be applied.
4422glslang::TLayoutPacking TGlslangToSpvTraverser::getExplicitLayout(const glslang::TType& type) const
John Kessenich31ed4832015-09-09 17:51:38 -06004423{
John Kessenichf85e8062015-12-19 13:57:10 -07004424 // has to be a block
4425 if (type.getBasicType() != glslang::EbtBlock)
4426 return glslang::ElpNone;
4427
Chao Chen3c366992018-09-19 11:41:59 -07004428 // has to be a uniform or buffer block or task in/out blocks
John Kessenichf85e8062015-12-19 13:57:10 -07004429 if (type.getQualifier().storage != glslang::EvqUniform &&
Chao Chen3c366992018-09-19 11:41:59 -07004430 type.getQualifier().storage != glslang::EvqBuffer &&
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -07004431 type.getQualifier().storage != glslang::EvqShared &&
Chao Chen3c366992018-09-19 11:41:59 -07004432 !type.getQualifier().isTaskMemory())
John Kessenichf85e8062015-12-19 13:57:10 -07004433 return glslang::ElpNone;
4434
4435 // return the layout to use
4436 switch (type.getQualifier().layoutPacking) {
4437 case glslang::ElpStd140:
4438 case glslang::ElpStd430:
Jeff Bolz7da39ed2018-11-14 09:30:53 -06004439 case glslang::ElpScalar:
John Kessenichf85e8062015-12-19 13:57:10 -07004440 return type.getQualifier().layoutPacking;
4441 default:
4442 return glslang::ElpNone;
4443 }
John Kessenich31ed4832015-09-09 17:51:38 -06004444}
4445
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004446// Given an array type, returns the integer stride required for that array
John Kessenich8985fc92020-03-03 10:25:07 -07004447int TGlslangToSpvTraverser::getArrayStride(const glslang::TType& arrayType, glslang::TLayoutPacking explicitLayout,
4448 glslang::TLayoutMatrix matrixLayout)
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004449{
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004450 int size;
John Kessenich49987892015-12-29 17:11:44 -07004451 int stride;
John Kessenich8985fc92020-03-03 10:25:07 -07004452 glslangIntermediate->getMemberAlignment(arrayType, size, stride, explicitLayout,
4453 matrixLayout == glslang::ElmRowMajor);
John Kesseniche721f492015-12-06 19:17:49 -07004454
4455 return stride;
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004456}
4457
John Kessenich49987892015-12-29 17:11:44 -07004458// Given a matrix type, or array (of array) of matrixes type, returns the integer stride required for that matrix
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004459// when used as a member of an interface block
John Kessenich8985fc92020-03-03 10:25:07 -07004460int TGlslangToSpvTraverser::getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacking explicitLayout,
4461 glslang::TLayoutMatrix matrixLayout)
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004462{
John Kessenich49987892015-12-29 17:11:44 -07004463 glslang::TType elementType;
4464 elementType.shallowCopy(matrixType);
4465 elementType.clearArraySizes();
4466
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004467 int size;
John Kessenich49987892015-12-29 17:11:44 -07004468 int stride;
John Kessenich8985fc92020-03-03 10:25:07 -07004469 glslangIntermediate->getMemberAlignment(elementType, size, stride, explicitLayout,
4470 matrixLayout == glslang::ElmRowMajor);
John Kessenich49987892015-12-29 17:11:44 -07004471
4472 return stride;
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004473}
4474
John Kessenich5e4b1242015-08-06 22:53:06 -06004475// Given a member type of a struct, realign the current offset for it, and compute
4476// the next (not yet aligned) offset for the next member, which will get aligned
4477// on the next call.
4478// 'currentOffset' should be passed in already initialized, ready to modify, and reflecting
4479// the migration of data from nextOffset -> currentOffset. It should be -1 on the first call.
4480// -1 means a non-forced member offset (no decoration needed).
John Kessenich8985fc92020-03-03 10:25:07 -07004481void TGlslangToSpvTraverser::updateMemberOffset(const glslang::TType& structType, const glslang::TType& memberType,
4482 int& currentOffset, int& nextOffset, glslang::TLayoutPacking explicitLayout, glslang::TLayoutMatrix matrixLayout)
John Kessenich5e4b1242015-08-06 22:53:06 -06004483{
4484 // this will get a positive value when deemed necessary
4485 nextOffset = -1;
4486
John Kessenich5e4b1242015-08-06 22:53:06 -06004487 // override anything in currentOffset with user-set offset
4488 if (memberType.getQualifier().hasOffset())
4489 currentOffset = memberType.getQualifier().layoutOffset;
4490
4491 // It could be that current linker usage in glslang updated all the layoutOffset,
4492 // in which case the following code does not matter. But, that's not quite right
4493 // once cross-compilation unit GLSL validation is done, as the original user
4494 // settings are needed in layoutOffset, and then the following will come into play.
4495
John Kessenichf85e8062015-12-19 13:57:10 -07004496 if (explicitLayout == glslang::ElpNone) {
John Kessenich5e4b1242015-08-06 22:53:06 -06004497 if (! memberType.getQualifier().hasOffset())
4498 currentOffset = -1;
4499
4500 return;
4501 }
4502
John Kessenichf85e8062015-12-19 13:57:10 -07004503 // Getting this far means we need explicit offsets
John Kessenich5e4b1242015-08-06 22:53:06 -06004504 if (currentOffset < 0)
4505 currentOffset = 0;
qining25262b32016-05-06 17:25:16 -04004506
John Kessenich5e4b1242015-08-06 22:53:06 -06004507 // Now, currentOffset is valid (either 0, or from a previous nextOffset),
4508 // but possibly not yet correctly aligned.
4509
4510 int memberSize;
John Kessenich49987892015-12-29 17:11:44 -07004511 int dummyStride;
John Kessenich8985fc92020-03-03 10:25:07 -07004512 int memberAlignment = glslangIntermediate->getMemberAlignment(memberType, memberSize, dummyStride, explicitLayout,
4513 matrixLayout == glslang::ElmRowMajor);
John Kessenich4f1403e2017-04-05 17:38:20 -06004514
4515 // Adjust alignment for HLSL rules
John Kessenich735d7e52017-07-13 11:39:16 -06004516 // TODO: make this consistent in early phases of code:
4517 // adjusting this late means inconsistencies with earlier code, which for reflection is an issue
4518 // Until reflection is brought in sync with these adjustments, don't apply to $Global,
4519 // which is the most likely to rely on reflection, and least likely to rely implicit layouts
John Kesseniche7df8e02018-08-22 17:12:46 -06004520 if (glslangIntermediate->usingHlslOffsets() &&
John Kessenich735d7e52017-07-13 11:39:16 -06004521 ! memberType.isArray() && memberType.isVector() && structType.getTypeName().compare("$Global") != 0) {
John Kessenich4f1403e2017-04-05 17:38:20 -06004522 int dummySize;
4523 int componentAlignment = glslangIntermediate->getBaseAlignmentScalar(memberType, dummySize);
4524 if (componentAlignment <= 4)
4525 memberAlignment = componentAlignment;
4526 }
4527
4528 // Bump up to member alignment
John Kessenich5e4b1242015-08-06 22:53:06 -06004529 glslang::RoundToPow2(currentOffset, memberAlignment);
John Kessenich4f1403e2017-04-05 17:38:20 -06004530
4531 // Bump up to vec4 if there is a bad straddle
John Kessenich8985fc92020-03-03 10:25:07 -07004532 if (explicitLayout != glslang::ElpScalar && glslangIntermediate->improperStraddle(memberType, memberSize,
4533 currentOffset))
John Kessenich4f1403e2017-04-05 17:38:20 -06004534 glslang::RoundToPow2(currentOffset, 16);
4535
John Kessenich5e4b1242015-08-06 22:53:06 -06004536 nextOffset = currentOffset + memberSize;
4537}
4538
David Netoa901ffe2016-06-08 14:11:40 +01004539void TGlslangToSpvTraverser::declareUseOfStructMember(const glslang::TTypeList& members, int glslangMember)
John Kessenichebb50532016-05-16 19:22:05 -06004540{
David Netoa901ffe2016-06-08 14:11:40 +01004541 const glslang::TBuiltInVariable glslangBuiltIn = members[glslangMember].type->getQualifier().builtIn;
4542 switch (glslangBuiltIn)
4543 {
John Kessenicha28f7a72019-08-06 07:00:58 -06004544 case glslang::EbvPointSize:
4545#ifndef GLSLANG_WEB
David Netoa901ffe2016-06-08 14:11:40 +01004546 case glslang::EbvClipDistance:
4547 case glslang::EbvCullDistance:
chaoc771d89f2017-01-13 01:10:53 -08004548 case glslang::EbvViewportMaskNV:
4549 case glslang::EbvSecondaryPositionNV:
4550 case glslang::EbvSecondaryViewportMaskNV:
chaocdf3956c2017-02-14 14:52:34 -08004551 case glslang::EbvPositionPerViewNV:
4552 case glslang::EbvViewportMaskPerViewNV:
Chao Chen3c366992018-09-19 11:41:59 -07004553 case glslang::EbvTaskCountNV:
4554 case glslang::EbvPrimitiveCountNV:
4555 case glslang::EbvPrimitiveIndicesNV:
4556 case glslang::EbvClipDistancePerViewNV:
4557 case glslang::EbvCullDistancePerViewNV:
4558 case glslang::EbvLayerPerViewNV:
4559 case glslang::EbvMeshViewCountNV:
4560 case glslang::EbvMeshViewIndicesNV:
chaoc771d89f2017-01-13 01:10:53 -08004561#endif
David Netoa901ffe2016-06-08 14:11:40 +01004562 // Generate the associated capability. Delegate to TranslateBuiltInDecoration.
4563 // Alternately, we could just call this for any glslang built-in, since the
4564 // capability already guards against duplicates.
4565 TranslateBuiltInDecoration(glslangBuiltIn, false);
4566 break;
4567 default:
4568 // Capabilities were already generated when the struct was declared.
4569 break;
4570 }
John Kessenichebb50532016-05-16 19:22:05 -06004571}
4572
John Kessenich6fccb3c2016-09-19 16:01:41 -06004573bool TGlslangToSpvTraverser::isShaderEntryPoint(const glslang::TIntermAggregate* node)
John Kessenich140f3df2015-06-26 16:58:36 -06004574{
John Kessenicheee9d532016-09-19 18:09:30 -06004575 return node->getName().compare(glslangIntermediate->getEntryPointMangledName().c_str()) == 0;
John Kessenich140f3df2015-06-26 16:58:36 -06004576}
4577
John Kessenichd41993d2017-09-10 15:21:05 -06004578// Does parameter need a place to keep writes, separate from the original?
John Kessenich6a14f782017-12-04 02:48:10 -07004579// Assumes called after originalParam(), which filters out block/buffer/opaque-based
4580// qualifiers such that we should have only in/out/inout/constreadonly here.
John Kessenichd3ed90b2018-05-04 11:43:03 -06004581bool TGlslangToSpvTraverser::writableParam(glslang::TStorageQualifier qualifier) const
John Kessenichd41993d2017-09-10 15:21:05 -06004582{
John Kessenich6a14f782017-12-04 02:48:10 -07004583 assert(qualifier == glslang::EvqIn ||
4584 qualifier == glslang::EvqOut ||
4585 qualifier == glslang::EvqInOut ||
rdbd8edfd82020-06-02 08:30:07 +02004586 qualifier == glslang::EvqUniform ||
John Kessenich6a14f782017-12-04 02:48:10 -07004587 qualifier == glslang::EvqConstReadOnly);
rdbd8edfd82020-06-02 08:30:07 +02004588 return qualifier != glslang::EvqConstReadOnly &&
4589 qualifier != glslang::EvqUniform;
John Kessenichd41993d2017-09-10 15:21:05 -06004590}
4591
4592// Is parameter pass-by-original?
4593bool TGlslangToSpvTraverser::originalParam(glslang::TStorageQualifier qualifier, const glslang::TType& paramType,
4594 bool implicitThisParam)
4595{
4596 if (implicitThisParam) // implicit this
4597 return true;
4598 if (glslangIntermediate->getSource() == glslang::EShSourceHlsl)
John Kessenich6a14f782017-12-04 02:48:10 -07004599 return paramType.getBasicType() == glslang::EbtBlock;
John Kessenichd41993d2017-09-10 15:21:05 -06004600 return paramType.containsOpaque() || // sampler, etc.
4601 (paramType.getBasicType() == glslang::EbtBlock && qualifier == glslang::EvqBuffer); // SSBO
4602}
4603
John Kessenich140f3df2015-06-26 16:58:36 -06004604// Make all the functions, skeletally, without actually visiting their bodies.
4605void TGlslangToSpvTraverser::makeFunctions(const glslang::TIntermSequence& glslFunctions)
4606{
John Kessenich8985fc92020-03-03 10:25:07 -07004607 const auto getParamDecorations = [&](std::vector<spv::Decoration>& decorations, const glslang::TType& type,
4608 bool useVulkanMemoryModel) {
John Kessenichfad62972017-07-18 02:35:46 -06004609 spv::Decoration paramPrecision = TranslatePrecisionDecoration(type);
4610 if (paramPrecision != spv::NoPrecision)
4611 decorations.push_back(paramPrecision);
Jeff Bolz36831c92018-09-05 10:11:41 -05004612 TranslateMemoryDecoration(type.getQualifier(), decorations, useVulkanMemoryModel);
John Kessenich7015bd62019-08-01 03:28:08 -06004613 if (type.isReference()) {
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004614 // Original and non-writable params pass the pointer directly and
4615 // use restrict/aliased, others are stored to a pointer in Function
4616 // memory and use RestrictPointer/AliasedPointer.
4617 if (originalParam(type.getQualifier().storage, type, false) ||
4618 !writableParam(type.getQualifier().storage)) {
John Kessenichf8d1d742019-10-21 06:55:11 -06004619 decorations.push_back(type.getQualifier().isRestrict() ? spv::DecorationRestrict :
4620 spv::DecorationAliased);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004621 } else {
John Kessenichf8d1d742019-10-21 06:55:11 -06004622 decorations.push_back(type.getQualifier().isRestrict() ? spv::DecorationRestrictPointerEXT :
4623 spv::DecorationAliasedPointerEXT);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004624 }
4625 }
John Kessenichfad62972017-07-18 02:35:46 -06004626 };
4627
John Kessenich140f3df2015-06-26 16:58:36 -06004628 for (int f = 0; f < (int)glslFunctions.size(); ++f) {
4629 glslang::TIntermAggregate* glslFunction = glslFunctions[f]->getAsAggregate();
John Kessenich6fccb3c2016-09-19 16:01:41 -06004630 if (! glslFunction || glslFunction->getOp() != glslang::EOpFunction || isShaderEntryPoint(glslFunction))
John Kessenich140f3df2015-06-26 16:58:36 -06004631 continue;
4632
4633 // We're on a user function. Set up the basic interface for the function now,
John Kessenich4bf71552016-09-02 11:20:21 -06004634 // so that it's available to call. Translating the body will happen later.
John Kessenich140f3df2015-06-26 16:58:36 -06004635 //
qining25262b32016-05-06 17:25:16 -04004636 // Typically (except for a "const in" parameter), an address will be passed to the
John Kessenich140f3df2015-06-26 16:58:36 -06004637 // function. What it is an address of varies:
4638 //
John Kessenich4bf71552016-09-02 11:20:21 -06004639 // - "in" parameters not marked as "const" can be written to without modifying the calling
4640 // argument so that write needs to be to a copy, hence the address of a copy works.
John Kessenich140f3df2015-06-26 16:58:36 -06004641 //
4642 // - "const in" parameters can just be the r-value, as no writes need occur.
4643 //
John Kessenich4bf71552016-09-02 11:20:21 -06004644 // - "out" and "inout" arguments can't be done as pointers to the calling argument, because
4645 // GLSL has copy-in/copy-out semantics. They can be handled though with a pointer to a copy.
John Kessenich140f3df2015-06-26 16:58:36 -06004646
4647 std::vector<spv::Id> paramTypes;
John Kessenichfad62972017-07-18 02:35:46 -06004648 std::vector<std::vector<spv::Decoration>> paramDecorations; // list of decorations per parameter
John Kessenich140f3df2015-06-26 16:58:36 -06004649 glslang::TIntermSequence& parameters = glslFunction->getSequence()[0]->getAsAggregate()->getSequence();
4650
John Kessenich155d3512019-08-08 23:29:20 -06004651#ifdef ENABLE_HLSL
John Kessenichfad62972017-07-18 02:35:46 -06004652 bool implicitThis = (int)parameters.size() > 0 && parameters[0]->getAsSymbolNode()->getName() ==
4653 glslangIntermediate->implicitThisName;
John Kessenich155d3512019-08-08 23:29:20 -06004654#else
4655 bool implicitThis = false;
4656#endif
John Kessenich37789792017-03-21 23:56:40 -06004657
John Kessenichfad62972017-07-18 02:35:46 -06004658 paramDecorations.resize(parameters.size());
John Kessenich140f3df2015-06-26 16:58:36 -06004659 for (int p = 0; p < (int)parameters.size(); ++p) {
4660 const glslang::TType& paramType = parameters[p]->getAsTyped()->getType();
4661 spv::Id typeId = convertGlslangToSpvType(paramType);
John Kessenichd41993d2017-09-10 15:21:05 -06004662 if (originalParam(paramType.getQualifier().storage, paramType, implicitThis && p == 0))
John Kessenicha5c5fb62017-05-05 05:09:58 -06004663 typeId = builder.makePointer(TranslateStorageClass(paramType), typeId);
John Kessenichd41993d2017-09-10 15:21:05 -06004664 else if (writableParam(paramType.getQualifier().storage))
John Kessenich140f3df2015-06-26 16:58:36 -06004665 typeId = builder.makePointer(spv::StorageClassFunction, typeId);
4666 else
John Kessenich4bf71552016-09-02 11:20:21 -06004667 rValueParameters.insert(parameters[p]->getAsSymbolNode()->getId());
Jeff Bolz36831c92018-09-05 10:11:41 -05004668 getParamDecorations(paramDecorations[p], paramType, glslangIntermediate->usingVulkanMemoryModel());
John Kessenich140f3df2015-06-26 16:58:36 -06004669 paramTypes.push_back(typeId);
4670 }
4671
4672 spv::Block* functionBlock;
John Kessenich32cfd492016-02-02 12:37:46 -07004673 spv::Function *function = builder.makeFunctionEntry(TranslatePrecisionDecoration(glslFunction->getType()),
4674 convertGlslangToSpvType(glslFunction->getType()),
John Kessenichfad62972017-07-18 02:35:46 -06004675 glslFunction->getName().c_str(), paramTypes,
4676 paramDecorations, &functionBlock);
John Kessenich37789792017-03-21 23:56:40 -06004677 if (implicitThis)
4678 function->setImplicitThis();
John Kessenich140f3df2015-06-26 16:58:36 -06004679
4680 // Track function to emit/call later
4681 functionMap[glslFunction->getName().c_str()] = function;
4682
4683 // Set the parameter id's
4684 for (int p = 0; p < (int)parameters.size(); ++p) {
4685 symbolValues[parameters[p]->getAsSymbolNode()->getId()] = function->getParamId(p);
4686 // give a name too
4687 builder.addName(function->getParamId(p), parameters[p]->getAsSymbolNode()->getName().c_str());
Jeff Bolz2b2316d2019-02-17 22:49:28 -06004688
4689 const glslang::TType& paramType = parameters[p]->getAsTyped()->getType();
John Kessenichb9197c82019-08-11 07:41:45 -06004690 if (paramType.contains8BitInt())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06004691 builder.addCapability(spv::CapabilityInt8);
John Kessenichb9197c82019-08-11 07:41:45 -06004692 if (paramType.contains16BitInt())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06004693 builder.addCapability(spv::CapabilityInt16);
John Kessenichb9197c82019-08-11 07:41:45 -06004694 if (paramType.contains16BitFloat())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06004695 builder.addCapability(spv::CapabilityFloat16);
John Kessenich140f3df2015-06-26 16:58:36 -06004696 }
4697 }
4698}
4699
4700// Process all the initializers, while skipping the functions and link objects
4701void TGlslangToSpvTraverser::makeGlobalInitializers(const glslang::TIntermSequence& initializers)
4702{
4703 builder.setBuildPoint(shaderEntry->getLastBlock());
4704 for (int i = 0; i < (int)initializers.size(); ++i) {
4705 glslang::TIntermAggregate* initializer = initializers[i]->getAsAggregate();
John Kessenich8985fc92020-03-03 10:25:07 -07004706 if (initializer && initializer->getOp() != glslang::EOpFunction && initializer->getOp() !=
4707 glslang::EOpLinkerObjects) {
John Kessenich140f3df2015-06-26 16:58:36 -06004708
4709 // We're on a top-level node that's not a function. Treat as an initializer, whose
John Kessenich6fccb3c2016-09-19 16:01:41 -06004710 // code goes into the beginning of the entry point.
John Kessenich140f3df2015-06-26 16:58:36 -06004711 initializer->traverse(this);
4712 }
4713 }
4714}
Daniel Kochffccefd2020-11-23 15:41:27 -05004715// Walk over all linker objects to create a map for payload and callable data linker objects
4716// and their location to be used during codegen for OpTraceKHR and OpExecuteCallableKHR
4717// This is done here since it is possible that these linker objects are not be referenced in the AST
4718void TGlslangToSpvTraverser::collectRayTracingLinkerObjects()
4719{
4720 glslang::TIntermAggregate* linkerObjects = glslangIntermediate->findLinkerObjects();
4721 for (auto& objSeq : linkerObjects->getSequence()) {
4722 auto objNode = objSeq->getAsSymbolNode();
4723 if (objNode != nullptr) {
4724 if (objNode->getQualifier().hasLocation()) {
4725 unsigned int location = objNode->getQualifier().layoutLocation;
4726 auto st = objNode->getQualifier().storage;
4727 int set;
4728 switch (st)
4729 {
4730 case glslang::EvqPayload:
4731 case glslang::EvqPayloadIn:
4732 set = 0;
4733 break;
4734 case glslang::EvqCallableData:
4735 case glslang::EvqCallableDataIn:
4736 set = 1;
4737 break;
John Kessenich140f3df2015-06-26 16:58:36 -06004738
Daniel Kochffccefd2020-11-23 15:41:27 -05004739 default:
4740 set = -1;
4741 }
4742 if (set != -1)
4743 locationToSymbol[set].insert(std::make_pair(location, objNode));
4744 }
4745 }
4746 }
4747}
John Kessenich140f3df2015-06-26 16:58:36 -06004748// Process all the functions, while skipping initializers.
4749void TGlslangToSpvTraverser::visitFunctions(const glslang::TIntermSequence& glslFunctions)
4750{
4751 for (int f = 0; f < (int)glslFunctions.size(); ++f) {
4752 glslang::TIntermAggregate* node = glslFunctions[f]->getAsAggregate();
John Kessenich6a60c2f2016-12-08 21:01:59 -07004753 if (node && (node->getOp() == glslang::EOpFunction || node->getOp() == glslang::EOpLinkerObjects))
John Kessenich140f3df2015-06-26 16:58:36 -06004754 node->traverse(this);
4755 }
4756}
4757
4758void TGlslangToSpvTraverser::handleFunctionEntry(const glslang::TIntermAggregate* node)
4759{
qining25262b32016-05-06 17:25:16 -04004760 // SPIR-V functions should already be in the functionMap from the prepass
John Kessenich140f3df2015-06-26 16:58:36 -06004761 // that called makeFunctions().
John Kesseniched33e052016-10-06 12:59:51 -06004762 currentFunction = functionMap[node->getName().c_str()];
4763 spv::Block* functionBlock = currentFunction->getEntryBlock();
John Kessenich140f3df2015-06-26 16:58:36 -06004764 builder.setBuildPoint(functionBlock);
4765}
4766
John Kessenich8985fc92020-03-03 10:25:07 -07004767void TGlslangToSpvTraverser::translateArguments(const glslang::TIntermAggregate& node, std::vector<spv::Id>& arguments,
4768 spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags)
John Kessenich140f3df2015-06-26 16:58:36 -06004769{
Rex Xufc618912015-09-09 16:42:49 +08004770 const glslang::TIntermSequence& glslangArguments = node.getSequence();
Rex Xu48edadf2015-12-31 16:11:41 +08004771
4772 glslang::TSampler sampler = {};
4773 bool cubeCompare = false;
John Kessenicha28f7a72019-08-06 07:00:58 -06004774#ifndef GLSLANG_WEB
Rex Xu1e5d7b02016-11-29 17:36:31 +08004775 bool f16ShadowCompare = false;
4776#endif
Rex Xu5eafa472016-02-19 22:24:03 +08004777 if (node.isTexture() || node.isImage()) {
Rex Xu48edadf2015-12-31 16:11:41 +08004778 sampler = glslangArguments[0]->getAsTyped()->getType().getSampler();
4779 cubeCompare = sampler.dim == glslang::EsdCube && sampler.arrayed && sampler.shadow;
John Kessenicha28f7a72019-08-06 07:00:58 -06004780#ifndef GLSLANG_WEB
John Kessenich8985fc92020-03-03 10:25:07 -07004781 f16ShadowCompare = sampler.shadow &&
4782 glslangArguments[1]->getAsTyped()->getType().getBasicType() == glslang::EbtFloat16;
Rex Xu1e5d7b02016-11-29 17:36:31 +08004783#endif
Rex Xu48edadf2015-12-31 16:11:41 +08004784 }
4785
John Kessenich140f3df2015-06-26 16:58:36 -06004786 for (int i = 0; i < (int)glslangArguments.size(); ++i) {
4787 builder.clearAccessChain();
4788 glslangArguments[i]->traverse(this);
Rex Xufc618912015-09-09 16:42:49 +08004789
John Kessenicha28f7a72019-08-06 07:00:58 -06004790#ifndef GLSLANG_WEB
Rex Xufc618912015-09-09 16:42:49 +08004791 // Special case l-value operands
4792 bool lvalue = false;
4793 switch (node.getOp()) {
4794 case glslang::EOpImageAtomicAdd:
4795 case glslang::EOpImageAtomicMin:
4796 case glslang::EOpImageAtomicMax:
4797 case glslang::EOpImageAtomicAnd:
4798 case glslang::EOpImageAtomicOr:
4799 case glslang::EOpImageAtomicXor:
4800 case glslang::EOpImageAtomicExchange:
4801 case glslang::EOpImageAtomicCompSwap:
Jeff Bolz36831c92018-09-05 10:11:41 -05004802 case glslang::EOpImageAtomicLoad:
4803 case glslang::EOpImageAtomicStore:
Rex Xufc618912015-09-09 16:42:49 +08004804 if (i == 0)
4805 lvalue = true;
4806 break;
Rex Xu5eafa472016-02-19 22:24:03 +08004807 case glslang::EOpSparseImageLoad:
4808 if ((sampler.ms && i == 3) || (! sampler.ms && i == 2))
4809 lvalue = true;
4810 break;
Rex Xu1e5d7b02016-11-29 17:36:31 +08004811 case glslang::EOpSparseTexture:
4812 if (((cubeCompare || f16ShadowCompare) && i == 3) || (! (cubeCompare || f16ShadowCompare) && i == 2))
4813 lvalue = true;
4814 break;
4815 case glslang::EOpSparseTextureClamp:
4816 if (((cubeCompare || f16ShadowCompare) && i == 4) || (! (cubeCompare || f16ShadowCompare) && i == 3))
4817 lvalue = true;
4818 break;
4819 case glslang::EOpSparseTextureLod:
4820 case glslang::EOpSparseTextureOffset:
4821 if ((f16ShadowCompare && i == 4) || (! f16ShadowCompare && i == 3))
4822 lvalue = true;
4823 break;
Rex Xu48edadf2015-12-31 16:11:41 +08004824 case glslang::EOpSparseTextureFetch:
4825 if ((sampler.dim != glslang::EsdRect && i == 3) || (sampler.dim == glslang::EsdRect && i == 2))
4826 lvalue = true;
4827 break;
4828 case glslang::EOpSparseTextureFetchOffset:
4829 if ((sampler.dim != glslang::EsdRect && i == 4) || (sampler.dim == glslang::EsdRect && i == 3))
4830 lvalue = true;
4831 break;
Rex Xu1e5d7b02016-11-29 17:36:31 +08004832 case glslang::EOpSparseTextureLodOffset:
4833 case glslang::EOpSparseTextureGrad:
4834 case glslang::EOpSparseTextureOffsetClamp:
4835 if ((f16ShadowCompare && i == 5) || (! f16ShadowCompare && i == 4))
4836 lvalue = true;
4837 break;
4838 case glslang::EOpSparseTextureGradOffset:
4839 case glslang::EOpSparseTextureGradClamp:
4840 if ((f16ShadowCompare && i == 6) || (! f16ShadowCompare && i == 5))
4841 lvalue = true;
4842 break;
4843 case glslang::EOpSparseTextureGradOffsetClamp:
4844 if ((f16ShadowCompare && i == 7) || (! f16ShadowCompare && i == 6))
4845 lvalue = true;
4846 break;
Rex Xu225e0fc2016-11-17 17:47:59 +08004847 case glslang::EOpSparseTextureGather:
Rex Xu48edadf2015-12-31 16:11:41 +08004848 if ((sampler.shadow && i == 3) || (! sampler.shadow && i == 2))
4849 lvalue = true;
4850 break;
4851 case glslang::EOpSparseTextureGatherOffset:
4852 case glslang::EOpSparseTextureGatherOffsets:
4853 if ((sampler.shadow && i == 4) || (! sampler.shadow && i == 3))
4854 lvalue = true;
4855 break;
Rex Xu225e0fc2016-11-17 17:47:59 +08004856 case glslang::EOpSparseTextureGatherLod:
4857 if (i == 3)
4858 lvalue = true;
4859 break;
4860 case glslang::EOpSparseTextureGatherLodOffset:
4861 case glslang::EOpSparseTextureGatherLodOffsets:
4862 if (i == 4)
4863 lvalue = true;
4864 break;
Rex Xu129799a2017-07-05 17:23:28 +08004865 case glslang::EOpSparseImageLoadLod:
4866 if (i == 3)
4867 lvalue = true;
4868 break;
Chao Chen3a137962018-09-19 11:41:27 -07004869 case glslang::EOpImageSampleFootprintNV:
4870 if (i == 4)
4871 lvalue = true;
4872 break;
4873 case glslang::EOpImageSampleFootprintClampNV:
4874 case glslang::EOpImageSampleFootprintLodNV:
4875 if (i == 5)
4876 lvalue = true;
4877 break;
4878 case glslang::EOpImageSampleFootprintGradNV:
4879 if (i == 6)
4880 lvalue = true;
4881 break;
4882 case glslang::EOpImageSampleFootprintGradClampNV:
4883 if (i == 7)
4884 lvalue = true;
4885 break;
Rex Xufc618912015-09-09 16:42:49 +08004886 default:
4887 break;
4888 }
4889
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004890 if (lvalue) {
greg-lunarg639f5462020-11-12 11:10:07 -07004891 spv::Id lvalue_id = builder.accessChainGetLValue();
4892 arguments.push_back(lvalue_id);
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004893 lvalueCoherentFlags = builder.getAccessChain().coherentFlags;
greg-lunarg639f5462020-11-12 11:10:07 -07004894 builder.addDecoration(lvalue_id, TranslateNonUniformDecoration(lvalueCoherentFlags));
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004895 lvalueCoherentFlags |= TranslateCoherent(glslangArguments[i]->getAsTyped()->getType());
4896 } else
John Kessenicha28f7a72019-08-06 07:00:58 -06004897#endif
John Kessenich32cfd492016-02-02 12:37:46 -07004898 arguments.push_back(accessChainLoad(glslangArguments[i]->getAsTyped()->getType()));
John Kessenich140f3df2015-06-26 16:58:36 -06004899 }
4900}
4901
John Kessenichfc51d282015-08-19 13:34:18 -06004902void TGlslangToSpvTraverser::translateArguments(glslang::TIntermUnary& node, std::vector<spv::Id>& arguments)
John Kessenich140f3df2015-06-26 16:58:36 -06004903{
John Kessenichfc51d282015-08-19 13:34:18 -06004904 builder.clearAccessChain();
4905 node.getOperand()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07004906 arguments.push_back(accessChainLoad(node.getOperand()->getType()));
John Kessenichfc51d282015-08-19 13:34:18 -06004907}
John Kessenich140f3df2015-06-26 16:58:36 -06004908
John Kessenichfc51d282015-08-19 13:34:18 -06004909spv::Id TGlslangToSpvTraverser::createImageTextureFunctionCall(glslang::TIntermOperator* node)
4910{
John Kesseniche485c7a2017-05-31 18:50:53 -06004911 if (! node->isImage() && ! node->isTexture())
John Kessenichfc51d282015-08-19 13:34:18 -06004912 return spv::NoResult;
John Kesseniche485c7a2017-05-31 18:50:53 -06004913
greg-lunarg5d43c4a2018-12-07 17:36:33 -07004914 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06004915
John Kessenichfc51d282015-08-19 13:34:18 -06004916 // Process a GLSL texturing op (will be SPV image)
Jeff Bolz36831c92018-09-05 10:11:41 -05004917
John Kessenichf43c7392019-03-31 10:51:57 -06004918 const glslang::TType &imageType = node->getAsAggregate()
4919 ? node->getAsAggregate()->getSequence()[0]->getAsTyped()->getType()
4920 : node->getAsUnaryNode()->getOperand()->getAsTyped()->getType();
Jeff Bolz36831c92018-09-05 10:11:41 -05004921 const glslang::TSampler sampler = imageType.getSampler();
John Kessenicha28f7a72019-08-06 07:00:58 -06004922#ifdef GLSLANG_WEB
4923 const bool f16ShadowCompare = false;
4924#else
Rex Xu1e5d7b02016-11-29 17:36:31 +08004925 bool f16ShadowCompare = (sampler.shadow && node->getAsAggregate())
John Kessenichf43c7392019-03-31 10:51:57 -06004926 ? node->getAsAggregate()->getSequence()[1]->getAsTyped()->getType().getBasicType() == glslang::EbtFloat16
4927 : false;
Rex Xu1e5d7b02016-11-29 17:36:31 +08004928#endif
4929
John Kessenichf43c7392019-03-31 10:51:57 -06004930 const auto signExtensionMask = [&]() {
4931 if (builder.getSpvVersion() >= spv::Spv_1_4) {
4932 if (sampler.type == glslang::EbtUint)
4933 return spv::ImageOperandsZeroExtendMask;
4934 else if (sampler.type == glslang::EbtInt)
4935 return spv::ImageOperandsSignExtendMask;
4936 }
4937 return spv::ImageOperandsMaskNone;
4938 };
4939
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004940 spv::Builder::AccessChain::CoherentFlags lvalueCoherentFlags;
4941
John Kessenichfc51d282015-08-19 13:34:18 -06004942 std::vector<spv::Id> arguments;
4943 if (node->getAsAggregate())
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004944 translateArguments(*node->getAsAggregate(), arguments, lvalueCoherentFlags);
John Kessenichfc51d282015-08-19 13:34:18 -06004945 else
4946 translateArguments(*node->getAsUnaryNode(), arguments);
John Kessenich12c155f2020-06-30 07:52:05 -06004947 spv::Decoration precision = TranslatePrecisionDecoration(node->getType());
John Kessenichfc51d282015-08-19 13:34:18 -06004948
4949 spv::Builder::TextureParameters params = { };
4950 params.sampler = arguments[0];
4951
Rex Xu04db3f52015-09-16 11:44:02 +08004952 glslang::TCrackedTextureOp cracked;
4953 node->crackTexture(sampler, cracked);
4954
amhagan05506bb2017-06-13 16:53:02 -04004955 const bool isUnsignedResult = node->getType().getBasicType() == glslang::EbtUint;
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004956
Bas Nieuwenhuizen58064312020-09-03 03:04:13 +02004957 if (builder.isSampledImage(params.sampler) &&
4958 ((cracked.query && node->getOp() != glslang::EOpTextureQueryLod) || cracked.fragMask || cracked.fetch)) {
4959 params.sampler = builder.createUnaryOp(spv::OpImage, builder.getImageType(params.sampler), params.sampler);
4960 if (imageType.getQualifier().isNonUniform()) {
4961 builder.addDecoration(params.sampler, spv::DecorationNonUniformEXT);
4962 }
4963 }
John Kessenichfc51d282015-08-19 13:34:18 -06004964 // Check for queries
4965 if (cracked.query) {
4966 switch (node->getOp()) {
4967 case glslang::EOpImageQuerySize:
4968 case glslang::EOpTextureQuerySize:
John Kessenich140f3df2015-06-26 16:58:36 -06004969 if (arguments.size() > 1) {
4970 params.lod = arguments[1];
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004971 return builder.createTextureQueryCall(spv::OpImageQuerySizeLod, params, isUnsignedResult);
John Kessenich140f3df2015-06-26 16:58:36 -06004972 } else
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004973 return builder.createTextureQueryCall(spv::OpImageQuerySize, params, isUnsignedResult);
John Kessenicha28f7a72019-08-06 07:00:58 -06004974#ifndef GLSLANG_WEB
John Kessenichfc51d282015-08-19 13:34:18 -06004975 case glslang::EOpImageQuerySamples:
4976 case glslang::EOpTextureQuerySamples:
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004977 return builder.createTextureQueryCall(spv::OpImageQuerySamples, params, isUnsignedResult);
John Kessenichfc51d282015-08-19 13:34:18 -06004978 case glslang::EOpTextureQueryLod:
4979 params.coords = arguments[1];
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004980 return builder.createTextureQueryCall(spv::OpImageQueryLod, params, isUnsignedResult);
John Kessenichfc51d282015-08-19 13:34:18 -06004981 case glslang::EOpTextureQueryLevels:
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004982 return builder.createTextureQueryCall(spv::OpImageQueryLevels, params, isUnsignedResult);
Rex Xu48edadf2015-12-31 16:11:41 +08004983 case glslang::EOpSparseTexelsResident:
4984 return builder.createUnaryOp(spv::OpImageSparseTexelsResident, builder.makeBoolType(), arguments[0]);
John Kessenicha28f7a72019-08-06 07:00:58 -06004985#endif
John Kessenichfc51d282015-08-19 13:34:18 -06004986 default:
4987 assert(0);
4988 break;
John Kessenich140f3df2015-06-26 16:58:36 -06004989 }
John Kessenich140f3df2015-06-26 16:58:36 -06004990 }
4991
LoopDawg4425f242018-02-18 11:40:01 -07004992 int components = node->getType().getVectorSize();
4993
4994 if (node->getOp() == glslang::EOpTextureFetch) {
4995 // These must produce 4 components, per SPIR-V spec. We'll add a conversion constructor if needed.
4996 // This will only happen through the HLSL path for operator[], so we do not have to handle e.g.
4997 // the EOpTexture/Proj/Lod/etc family. It would be harmless to do so, but would need more logic
4998 // here around e.g. which ones return scalars or other types.
4999 components = 4;
5000 }
5001
5002 glslang::TType returnType(node->getType().getBasicType(), glslang::EvqTemporary, components);
5003
5004 auto resultType = [&returnType,this]{ return convertGlslangToSpvType(returnType); };
5005
Rex Xufc618912015-09-09 16:42:49 +08005006 // Check for image functions other than queries
5007 if (node->isImage()) {
John Kessenich149afc32018-08-14 13:31:43 -06005008 std::vector<spv::IdImmediate> operands;
John Kessenich56bab042015-09-16 10:54:31 -06005009 auto opIt = arguments.begin();
John Kessenich149afc32018-08-14 13:31:43 -06005010 spv::IdImmediate image = { true, *(opIt++) };
5011 operands.push_back(image);
John Kessenich6c292d32016-02-15 20:58:50 -07005012
5013 // Handle subpass operations
5014 // TODO: GLSL should change to have the "MS" only on the type rather than the
5015 // built-in function.
5016 if (cracked.subpass) {
5017 // add on the (0,0) coordinate
5018 spv::Id zero = builder.makeIntConstant(0);
5019 std::vector<spv::Id> comps;
5020 comps.push_back(zero);
5021 comps.push_back(zero);
John Kessenich149afc32018-08-14 13:31:43 -06005022 spv::IdImmediate coord = { true,
5023 builder.makeCompositeConstant(builder.makeVectorType(builder.makeIntType(32), 2), comps) };
5024 operands.push_back(coord);
John Kessenichf43c7392019-03-31 10:51:57 -06005025 spv::IdImmediate imageOperands = { false, spv::ImageOperandsMaskNone };
5026 imageOperands.word = imageOperands.word | signExtensionMask();
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005027 if (sampler.isMultiSample()) {
John Kessenichf43c7392019-03-31 10:51:57 -06005028 imageOperands.word = imageOperands.word | spv::ImageOperandsSampleMask;
5029 }
5030 if (imageOperands.word != spv::ImageOperandsMaskNone) {
John Kessenich149afc32018-08-14 13:31:43 -06005031 operands.push_back(imageOperands);
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005032 if (sampler.isMultiSample()) {
John Kessenichf43c7392019-03-31 10:51:57 -06005033 spv::IdImmediate imageOperand = { true, *(opIt++) };
5034 operands.push_back(imageOperand);
5035 }
John Kessenich6c292d32016-02-15 20:58:50 -07005036 }
John Kessenichfe4e5722017-10-19 02:07:30 -06005037 spv::Id result = builder.createOp(spv::OpImageRead, resultType(), operands);
5038 builder.setPrecision(result, precision);
5039 return result;
John Kessenich6c292d32016-02-15 20:58:50 -07005040 }
5041
John Kessenich149afc32018-08-14 13:31:43 -06005042 spv::IdImmediate coord = { true, *(opIt++) };
5043 operands.push_back(coord);
Rex Xu129799a2017-07-05 17:23:28 +08005044 if (node->getOp() == glslang::EOpImageLoad || node->getOp() == glslang::EOpImageLoadLod) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005045 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005046 if (sampler.isMultiSample()) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005047 mask = mask | spv::ImageOperandsSampleMask;
5048 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005049 if (cracked.lod) {
Rex Xu129799a2017-07-05 17:23:28 +08005050 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
5051 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
Jeff Bolz36831c92018-09-05 10:11:41 -05005052 mask = mask | spv::ImageOperandsLodMask;
John Kessenich55e7d112015-11-15 21:33:39 -07005053 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005054 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
5055 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelAvailableKHRMask);
John Kessenichf43c7392019-03-31 10:51:57 -06005056 mask = mask | signExtensionMask();
John Kessenich6e384fe2019-05-10 06:47:00 -06005057 if (mask != spv::ImageOperandsMaskNone) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005058 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
5059 operands.push_back(imageOperands);
5060 }
5061 if (mask & spv::ImageOperandsSampleMask) {
5062 spv::IdImmediate imageOperand = { true, *opIt++ };
5063 operands.push_back(imageOperand);
5064 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005065 if (mask & spv::ImageOperandsLodMask) {
5066 spv::IdImmediate imageOperand = { true, *opIt++ };
5067 operands.push_back(imageOperand);
5068 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005069 if (mask & spv::ImageOperandsMakeTexelVisibleKHRMask) {
John Kessenichf43c7392019-03-31 10:51:57 -06005070 spv::IdImmediate imageOperand = { true,
5071 builder.makeUintConstant(TranslateMemoryScope(TranslateCoherent(imageType))) };
Jeff Bolz36831c92018-09-05 10:11:41 -05005072 operands.push_back(imageOperand);
5073 }
5074
John Kessenich149afc32018-08-14 13:31:43 -06005075 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
John Kessenich5d0fa972016-02-15 11:57:00 -07005076 builder.addCapability(spv::CapabilityStorageImageReadWithoutFormat);
John Kessenichfe4e5722017-10-19 02:07:30 -06005077
John Kessenich149afc32018-08-14 13:31:43 -06005078 std::vector<spv::Id> result(1, builder.createOp(spv::OpImageRead, resultType(), operands));
LoopDawg4425f242018-02-18 11:40:01 -07005079 builder.setPrecision(result[0], precision);
5080
5081 // If needed, add a conversion constructor to the proper size.
5082 if (components != node->getType().getVectorSize())
5083 result[0] = builder.createConstructor(precision, result, convertGlslangToSpvType(node->getType()));
5084
5085 return result[0];
Rex Xu129799a2017-07-05 17:23:28 +08005086 } else if (node->getOp() == glslang::EOpImageStore || node->getOp() == glslang::EOpImageStoreLod) {
Rex Xu129799a2017-07-05 17:23:28 +08005087
Jeff Bolz36831c92018-09-05 10:11:41 -05005088 // Push the texel value before the operands
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005089 if (sampler.isMultiSample() || cracked.lod) {
John Kessenich149afc32018-08-14 13:31:43 -06005090 spv::IdImmediate texel = { true, *(opIt + 1) };
5091 operands.push_back(texel);
John Kessenich149afc32018-08-14 13:31:43 -06005092 } else {
5093 spv::IdImmediate texel = { true, *opIt };
5094 operands.push_back(texel);
5095 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005096
5097 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005098 if (sampler.isMultiSample()) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005099 mask = mask | spv::ImageOperandsSampleMask;
5100 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005101 if (cracked.lod) {
5102 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
5103 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
5104 mask = mask | spv::ImageOperandsLodMask;
5105 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005106 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
5107 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelVisibleKHRMask);
John Kessenichf43c7392019-03-31 10:51:57 -06005108 mask = mask | signExtensionMask();
John Kessenich6e384fe2019-05-10 06:47:00 -06005109 if (mask != spv::ImageOperandsMaskNone) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005110 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
5111 operands.push_back(imageOperands);
5112 }
5113 if (mask & spv::ImageOperandsSampleMask) {
5114 spv::IdImmediate imageOperand = { true, *opIt++ };
5115 operands.push_back(imageOperand);
5116 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005117 if (mask & spv::ImageOperandsLodMask) {
5118 spv::IdImmediate imageOperand = { true, *opIt++ };
5119 operands.push_back(imageOperand);
5120 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005121 if (mask & spv::ImageOperandsMakeTexelAvailableKHRMask) {
John Kessenichf43c7392019-03-31 10:51:57 -06005122 spv::IdImmediate imageOperand = { true,
5123 builder.makeUintConstant(TranslateMemoryScope(TranslateCoherent(imageType))) };
Jeff Bolz36831c92018-09-05 10:11:41 -05005124 operands.push_back(imageOperand);
5125 }
5126
John Kessenich56bab042015-09-16 10:54:31 -06005127 builder.createNoResultOp(spv::OpImageWrite, operands);
John Kessenich149afc32018-08-14 13:31:43 -06005128 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
John Kessenich5d0fa972016-02-15 11:57:00 -07005129 builder.addCapability(spv::CapabilityStorageImageWriteWithoutFormat);
John Kessenich56bab042015-09-16 10:54:31 -06005130 return spv::NoResult;
John Kessenichf43c7392019-03-31 10:51:57 -06005131 } else if (node->getOp() == glslang::EOpSparseImageLoad ||
5132 node->getOp() == glslang::EOpSparseImageLoadLod) {
Rex Xu5eafa472016-02-19 22:24:03 +08005133 builder.addCapability(spv::CapabilitySparseResidency);
John Kessenich149afc32018-08-14 13:31:43 -06005134 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
Rex Xu5eafa472016-02-19 22:24:03 +08005135 builder.addCapability(spv::CapabilityStorageImageReadWithoutFormat);
5136
Jeff Bolz36831c92018-09-05 10:11:41 -05005137 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005138 if (sampler.isMultiSample()) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005139 mask = mask | spv::ImageOperandsSampleMask;
5140 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005141 if (cracked.lod) {
Rex Xu129799a2017-07-05 17:23:28 +08005142 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
5143 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
5144
Jeff Bolz36831c92018-09-05 10:11:41 -05005145 mask = mask | spv::ImageOperandsLodMask;
5146 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005147 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
5148 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelAvailableKHRMask);
John Kessenichf43c7392019-03-31 10:51:57 -06005149 mask = mask | signExtensionMask();
John Kessenich6e384fe2019-05-10 06:47:00 -06005150 if (mask != spv::ImageOperandsMaskNone) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005151 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
John Kessenich149afc32018-08-14 13:31:43 -06005152 operands.push_back(imageOperands);
Jeff Bolz36831c92018-09-05 10:11:41 -05005153 }
5154 if (mask & spv::ImageOperandsSampleMask) {
John Kessenich149afc32018-08-14 13:31:43 -06005155 spv::IdImmediate imageOperand = { true, *opIt++ };
5156 operands.push_back(imageOperand);
Jeff Bolz36831c92018-09-05 10:11:41 -05005157 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005158 if (mask & spv::ImageOperandsLodMask) {
5159 spv::IdImmediate imageOperand = { true, *opIt++ };
5160 operands.push_back(imageOperand);
5161 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005162 if (mask & spv::ImageOperandsMakeTexelVisibleKHRMask) {
John Kessenich8985fc92020-03-03 10:25:07 -07005163 spv::IdImmediate imageOperand = { true, builder.makeUintConstant(TranslateMemoryScope(
5164 TranslateCoherent(imageType))) };
Jeff Bolz36831c92018-09-05 10:11:41 -05005165 operands.push_back(imageOperand);
Rex Xu5eafa472016-02-19 22:24:03 +08005166 }
5167
5168 // Create the return type that was a special structure
5169 spv::Id texelOut = *opIt;
John Kessenich8c8505c2016-07-26 12:50:38 -06005170 spv::Id typeId0 = resultType();
Rex Xu5eafa472016-02-19 22:24:03 +08005171 spv::Id typeId1 = builder.getDerefTypeId(texelOut);
5172 spv::Id resultTypeId = builder.makeStructResultType(typeId0, typeId1);
5173
5174 spv::Id resultId = builder.createOp(spv::OpImageSparseRead, resultTypeId, operands);
5175
5176 // Decode the return type
5177 builder.createStore(builder.createCompositeExtract(resultId, typeId1, 1), texelOut);
5178 return builder.createCompositeExtract(resultId, typeId0, 0);
John Kessenichcd261442016-01-22 09:54:12 -07005179 } else {
Rex Xu6b86d492015-09-16 17:48:22 +08005180 // Process image atomic operations
5181
5182 // GLSL "IMAGE_PARAMS" will involve in constructing an image texel pointer and this pointer,
5183 // as the first source operand, is required by SPIR-V atomic operations.
John Kessenich149afc32018-08-14 13:31:43 -06005184 // For non-MS, the sample value should be 0
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005185 spv::IdImmediate sample = { true, sampler.isMultiSample() ? *(opIt++) : builder.makeUintConstant(0) };
John Kessenich149afc32018-08-14 13:31:43 -06005186 operands.push_back(sample);
John Kessenich140f3df2015-06-26 16:58:36 -06005187
Jeff Bolz36831c92018-09-05 10:11:41 -05005188 spv::Id resultTypeId;
5189 // imageAtomicStore has a void return type so base the pointer type on
5190 // the type of the value operand.
5191 if (node->getOp() == glslang::EOpImageAtomicStore) {
Rex Xufb18b6d2020-02-22 22:04:31 +08005192 resultTypeId = builder.makePointer(spv::StorageClassImage, builder.getTypeId(*opIt));
Jeff Bolz36831c92018-09-05 10:11:41 -05005193 } else {
5194 resultTypeId = builder.makePointer(spv::StorageClassImage, resultType());
5195 }
John Kessenich56bab042015-09-16 10:54:31 -06005196 spv::Id pointer = builder.createOp(spv::OpImageTexelPointer, resultTypeId, operands);
Jeff Bolz39ffdaf2020-03-09 10:48:12 -05005197 if (imageType.getQualifier().nonUniform) {
5198 builder.addDecoration(pointer, spv::DecorationNonUniformEXT);
5199 }
Rex Xufc618912015-09-09 16:42:49 +08005200
5201 std::vector<spv::Id> operands;
5202 operands.push_back(pointer);
5203 for (; opIt != arguments.end(); ++opIt)
5204 operands.push_back(*opIt);
5205
John Kessenich8985fc92020-03-03 10:25:07 -07005206 return createAtomicOperation(node->getOp(), precision, resultType(), operands, node->getBasicType(),
5207 lvalueCoherentFlags);
Rex Xufc618912015-09-09 16:42:49 +08005208 }
5209 }
5210
John Kessenicha28f7a72019-08-06 07:00:58 -06005211#ifndef GLSLANG_WEB
amhagan05506bb2017-06-13 16:53:02 -04005212 // Check for fragment mask functions other than queries
5213 if (cracked.fragMask) {
5214 assert(sampler.ms);
5215
5216 auto opIt = arguments.begin();
5217 std::vector<spv::Id> operands;
5218
amhagan05506bb2017-06-13 16:53:02 -04005219 operands.push_back(params.sampler);
5220 ++opIt;
5221
5222 if (sampler.isSubpass()) {
5223 // add on the (0,0) coordinate
5224 spv::Id zero = builder.makeIntConstant(0);
5225 std::vector<spv::Id> comps;
5226 comps.push_back(zero);
5227 comps.push_back(zero);
John Kessenich8985fc92020-03-03 10:25:07 -07005228 operands.push_back(builder.makeCompositeConstant(
5229 builder.makeVectorType(builder.makeIntType(32), 2), comps));
amhagan05506bb2017-06-13 16:53:02 -04005230 }
5231
5232 for (; opIt != arguments.end(); ++opIt)
5233 operands.push_back(*opIt);
5234
5235 spv::Op fragMaskOp = spv::OpNop;
5236 if (node->getOp() == glslang::EOpFragmentMaskFetch)
5237 fragMaskOp = spv::OpFragmentMaskFetchAMD;
5238 else if (node->getOp() == glslang::EOpFragmentFetch)
5239 fragMaskOp = spv::OpFragmentFetchAMD;
5240
5241 builder.addExtension(spv::E_SPV_AMD_shader_fragment_mask);
5242 builder.addCapability(spv::CapabilityFragmentMaskAMD);
5243 return builder.createOp(fragMaskOp, resultType(), operands);
5244 }
5245#endif
5246
Rex Xufc618912015-09-09 16:42:49 +08005247 // Check for texture functions other than queries
Rex Xu48edadf2015-12-31 16:11:41 +08005248 bool sparse = node->isSparseTexture();
Chao Chen3a137962018-09-19 11:41:27 -07005249 bool imageFootprint = node->isImageFootprint();
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005250 bool cubeCompare = sampler.dim == glslang::EsdCube && sampler.isArrayed() && sampler.isShadow();
Rex Xu71519fe2015-11-11 15:35:47 +08005251
John Kessenichfc51d282015-08-19 13:34:18 -06005252 // check for bias argument
5253 bool bias = false;
Rex Xu225e0fc2016-11-17 17:47:59 +08005254 if (! cracked.lod && ! cracked.grad && ! cracked.fetch && ! cubeCompare) {
John Kessenichfc51d282015-08-19 13:34:18 -06005255 int nonBiasArgCount = 2;
Rex Xu225e0fc2016-11-17 17:47:59 +08005256 if (cracked.gather)
5257 ++nonBiasArgCount; // comp argument should be present when bias argument is present
Rex Xu1e5d7b02016-11-29 17:36:31 +08005258
5259 if (f16ShadowCompare)
5260 ++nonBiasArgCount;
John Kessenichfc51d282015-08-19 13:34:18 -06005261 if (cracked.offset)
5262 ++nonBiasArgCount;
Rex Xu225e0fc2016-11-17 17:47:59 +08005263 else if (cracked.offsets)
5264 ++nonBiasArgCount;
John Kessenichfc51d282015-08-19 13:34:18 -06005265 if (cracked.grad)
5266 nonBiasArgCount += 2;
Rex Xu48edadf2015-12-31 16:11:41 +08005267 if (cracked.lodClamp)
5268 ++nonBiasArgCount;
5269 if (sparse)
5270 ++nonBiasArgCount;
Chao Chen3a137962018-09-19 11:41:27 -07005271 if (imageFootprint)
5272 //Following three extra arguments
5273 // int granularity, bool coarse, out gl_TextureFootprint2DNV footprint
5274 nonBiasArgCount += 3;
John Kessenichfc51d282015-08-19 13:34:18 -06005275 if ((int)arguments.size() > nonBiasArgCount)
5276 bias = true;
5277 }
5278
John Kessenicha28f7a72019-08-06 07:00:58 -06005279#ifndef GLSLANG_WEB
Rex Xu225e0fc2016-11-17 17:47:59 +08005280 if (cracked.gather) {
5281 const auto& sourceExtensions = glslangIntermediate->getRequestedExtensions();
5282 if (bias || cracked.lod ||
5283 sourceExtensions.find(glslang::E_GL_AMD_texture_gather_bias_lod) != sourceExtensions.end()) {
5284 builder.addExtension(spv::E_SPV_AMD_texture_gather_bias_lod);
Rex Xu301a2bc2017-06-14 23:09:39 +08005285 builder.addCapability(spv::CapabilityImageGatherBiasLodAMD);
Rex Xu225e0fc2016-11-17 17:47:59 +08005286 }
5287 }
5288#endif
5289
John Kessenichfc51d282015-08-19 13:34:18 -06005290 // set the rest of the arguments
John Kessenich55e7d112015-11-15 21:33:39 -07005291
John Kessenichfc51d282015-08-19 13:34:18 -06005292 params.coords = arguments[1];
5293 int extraArgs = 0;
John Kessenich019f08f2016-02-15 15:40:42 -07005294 bool noImplicitLod = false;
John Kessenich55e7d112015-11-15 21:33:39 -07005295
5296 // sort out where Dref is coming from
Rex Xu1e5d7b02016-11-29 17:36:31 +08005297 if (cubeCompare || f16ShadowCompare) {
John Kessenichfc51d282015-08-19 13:34:18 -06005298 params.Dref = arguments[2];
Rex Xu48edadf2015-12-31 16:11:41 +08005299 ++extraArgs;
5300 } else if (sampler.shadow && cracked.gather) {
John Kessenich55e7d112015-11-15 21:33:39 -07005301 params.Dref = arguments[2];
5302 ++extraArgs;
5303 } else if (sampler.shadow) {
John Kessenichfc51d282015-08-19 13:34:18 -06005304 std::vector<spv::Id> indexes;
John Kessenich76d4dfc2016-06-16 12:43:23 -06005305 int dRefComp;
John Kessenichfc51d282015-08-19 13:34:18 -06005306 if (cracked.proj)
John Kessenich76d4dfc2016-06-16 12:43:23 -06005307 dRefComp = 2; // "The resulting 3rd component of P in the shadow forms is used as Dref"
John Kessenichfc51d282015-08-19 13:34:18 -06005308 else
John Kessenich76d4dfc2016-06-16 12:43:23 -06005309 dRefComp = builder.getNumComponents(params.coords) - 1;
5310 indexes.push_back(dRefComp);
John Kessenich8985fc92020-03-03 10:25:07 -07005311 params.Dref = builder.createCompositeExtract(params.coords,
5312 builder.getScalarTypeId(builder.getTypeId(params.coords)), indexes);
John Kessenichfc51d282015-08-19 13:34:18 -06005313 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005314
5315 // lod
John Kessenichfc51d282015-08-19 13:34:18 -06005316 if (cracked.lod) {
LoopDawgef94b1a2017-07-24 18:45:37 -06005317 params.lod = arguments[2 + extraArgs];
John Kessenichfc51d282015-08-19 13:34:18 -06005318 ++extraArgs;
John Kessenichb9197c82019-08-11 07:41:45 -06005319 } else if (glslangIntermediate->getStage() != EShLangFragment &&
5320 !(glslangIntermediate->getStage() == EShLangCompute &&
5321 glslangIntermediate->hasLayoutDerivativeModeNone())) {
John Kessenich019f08f2016-02-15 15:40:42 -07005322 // we need to invent the default lod for an explicit lod instruction for a non-fragment stage
5323 noImplicitLod = true;
5324 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005325
5326 // multisample
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005327 if (sampler.isMultiSample()) {
LoopDawgef94b1a2017-07-24 18:45:37 -06005328 params.sample = arguments[2 + extraArgs]; // For MS, "sample" should be specified
Rex Xu04db3f52015-09-16 11:44:02 +08005329 ++extraArgs;
John Kessenichfc51d282015-08-19 13:34:18 -06005330 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005331
5332 // gradient
John Kessenichfc51d282015-08-19 13:34:18 -06005333 if (cracked.grad) {
5334 params.gradX = arguments[2 + extraArgs];
5335 params.gradY = arguments[3 + extraArgs];
5336 extraArgs += 2;
5337 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005338
5339 // offset and offsets
John Kessenich55e7d112015-11-15 21:33:39 -07005340 if (cracked.offset) {
John Kessenichfc51d282015-08-19 13:34:18 -06005341 params.offset = arguments[2 + extraArgs];
5342 ++extraArgs;
John Kessenich55e7d112015-11-15 21:33:39 -07005343 } else if (cracked.offsets) {
5344 params.offsets = arguments[2 + extraArgs];
5345 ++extraArgs;
John Kessenichfc51d282015-08-19 13:34:18 -06005346 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005347
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005348#ifndef GLSLANG_WEB
John Kessenich76d4dfc2016-06-16 12:43:23 -06005349 // lod clamp
Rex Xu48edadf2015-12-31 16:11:41 +08005350 if (cracked.lodClamp) {
5351 params.lodClamp = arguments[2 + extraArgs];
5352 ++extraArgs;
5353 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005354 // sparse
Rex Xu48edadf2015-12-31 16:11:41 +08005355 if (sparse) {
5356 params.texelOut = arguments[2 + extraArgs];
5357 ++extraArgs;
5358 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005359 // gather component
John Kessenich55e7d112015-11-15 21:33:39 -07005360 if (cracked.gather && ! sampler.shadow) {
5361 // default component is 0, if missing, otherwise an argument
5362 if (2 + extraArgs < (int)arguments.size()) {
John Kessenich76d4dfc2016-06-16 12:43:23 -06005363 params.component = arguments[2 + extraArgs];
John Kessenich55e7d112015-11-15 21:33:39 -07005364 ++extraArgs;
Rex Xu225e0fc2016-11-17 17:47:59 +08005365 } else
John Kessenich76d4dfc2016-06-16 12:43:23 -06005366 params.component = builder.makeIntConstant(0);
Rex Xu225e0fc2016-11-17 17:47:59 +08005367 }
Chao Chen3a137962018-09-19 11:41:27 -07005368 spv::Id resultStruct = spv::NoResult;
5369 if (imageFootprint) {
5370 //Following three extra arguments
5371 // int granularity, bool coarse, out gl_TextureFootprint2DNV footprint
5372 params.granularity = arguments[2 + extraArgs];
5373 params.coarse = arguments[3 + extraArgs];
5374 resultStruct = arguments[4 + extraArgs];
5375 extraArgs += 3;
5376 }
5377#endif
Rex Xu225e0fc2016-11-17 17:47:59 +08005378 // bias
5379 if (bias) {
5380 params.bias = arguments[2 + extraArgs];
5381 ++extraArgs;
John Kessenich55e7d112015-11-15 21:33:39 -07005382 }
John Kessenichfc51d282015-08-19 13:34:18 -06005383
John Kessenicha28f7a72019-08-06 07:00:58 -06005384#ifndef GLSLANG_WEB
Chao Chen3a137962018-09-19 11:41:27 -07005385 if (imageFootprint) {
5386 builder.addExtension(spv::E_SPV_NV_shader_image_footprint);
5387 builder.addCapability(spv::CapabilityImageFootprintNV);
5388
5389
5390 //resultStructType(OpenGL type) contains 5 elements:
5391 //struct gl_TextureFootprint2DNV {
5392 // uvec2 anchor;
5393 // uvec2 offset;
5394 // uvec2 mask;
5395 // uint lod;
5396 // uint granularity;
5397 //};
5398 //or
5399 //struct gl_TextureFootprint3DNV {
5400 // uvec3 anchor;
5401 // uvec3 offset;
5402 // uvec2 mask;
5403 // uint lod;
5404 // uint granularity;
5405 //};
5406 spv::Id resultStructType = builder.getContainedTypeId(builder.getTypeId(resultStruct));
5407 assert(builder.isStructType(resultStructType));
5408
5409 //resType (SPIR-V type) contains 6 elements:
5410 //Member 0 must be a Boolean type scalar(LOD),
5411 //Member 1 must be a vector of integer type, whose Signedness operand is 0(anchor),
5412 //Member 2 must be a vector of integer type, whose Signedness operand is 0(offset),
5413 //Member 3 must be a vector of integer type, whose Signedness operand is 0(mask),
5414 //Member 4 must be a scalar of integer type, whose Signedness operand is 0(lod),
5415 //Member 5 must be a scalar of integer type, whose Signedness operand is 0(granularity).
5416 std::vector<spv::Id> members;
5417 members.push_back(resultType());
5418 for (int i = 0; i < 5; i++) {
5419 members.push_back(builder.getContainedTypeId(resultStructType, i));
5420 }
5421 spv::Id resType = builder.makeStructType(members, "ResType");
5422
5423 //call ImageFootprintNV
John Kessenichf43c7392019-03-31 10:51:57 -06005424 spv::Id res = builder.createTextureCall(precision, resType, sparse, cracked.fetch, cracked.proj,
5425 cracked.gather, noImplicitLod, params, signExtensionMask());
Chao Chen3a137962018-09-19 11:41:27 -07005426
5427 //copy resType (SPIR-V type) to resultStructType(OpenGL type)
5428 for (int i = 0; i < 5; i++) {
5429 builder.clearAccessChain();
5430 builder.setAccessChainLValue(resultStruct);
5431
5432 //Accessing to a struct we created, no coherent flag is set
5433 spv::Builder::AccessChain::CoherentFlags flags;
5434 flags.clear();
5435
Jeff Bolz9f2aec42019-01-06 17:58:04 -06005436 builder.accessChainPush(builder.makeIntConstant(i), flags, 0);
John Kessenich8985fc92020-03-03 10:25:07 -07005437 builder.accessChainStore(builder.createCompositeExtract(res, builder.getContainedTypeId(resType, i+1),
Bas Nieuwenhuizende949a22020-08-24 23:27:26 +02005438 i+1), TranslateNonUniformDecoration(imageType.getQualifier()));
Chao Chen3a137962018-09-19 11:41:27 -07005439 }
5440 return builder.createCompositeExtract(res, resultType(), 0);
5441 }
5442#endif
5443
John Kessenich65336482016-06-16 14:06:26 -06005444 // projective component (might not to move)
5445 // GLSL: "The texture coordinates consumed from P, not including the last component of P,
5446 // are divided by the last component of P."
5447 // SPIR-V: "... (u [, v] [, w], q)... It may be a vector larger than needed, but all
5448 // unused components will appear after all used components."
5449 if (cracked.proj) {
5450 int projSourceComp = builder.getNumComponents(params.coords) - 1;
5451 int projTargetComp;
5452 switch (sampler.dim) {
5453 case glslang::Esd1D: projTargetComp = 1; break;
5454 case glslang::Esd2D: projTargetComp = 2; break;
5455 case glslang::EsdRect: projTargetComp = 2; break;
5456 default: projTargetComp = projSourceComp; break;
5457 }
5458 // copy the projective coordinate if we have to
5459 if (projTargetComp != projSourceComp) {
John Kessenichecba76f2017-01-06 00:34:48 -07005460 spv::Id projComp = builder.createCompositeExtract(params.coords,
John Kessenich8985fc92020-03-03 10:25:07 -07005461 builder.getScalarTypeId(builder.getTypeId(params.coords)), projSourceComp);
John Kessenich65336482016-06-16 14:06:26 -06005462 params.coords = builder.createCompositeInsert(projComp, params.coords,
John Kessenich8985fc92020-03-03 10:25:07 -07005463 builder.getTypeId(params.coords), projTargetComp);
John Kessenich65336482016-06-16 14:06:26 -06005464 }
5465 }
5466
John Kessenichf8d1d742019-10-21 06:55:11 -06005467#ifndef GLSLANG_WEB
Jeff Bolz36831c92018-09-05 10:11:41 -05005468 // nonprivate
5469 if (imageType.getQualifier().nonprivate) {
5470 params.nonprivate = true;
5471 }
5472
5473 // volatile
5474 if (imageType.getQualifier().volatil) {
5475 params.volatil = true;
5476 }
John Kessenichf8d1d742019-10-21 06:55:11 -06005477#endif
Jeff Bolz36831c92018-09-05 10:11:41 -05005478
St0fFa1184dd2018-04-09 21:08:14 +02005479 std::vector<spv::Id> result( 1,
John Kessenichf43c7392019-03-31 10:51:57 -06005480 builder.createTextureCall(precision, resultType(), sparse, cracked.fetch, cracked.proj, cracked.gather,
5481 noImplicitLod, params, signExtensionMask())
St0fFa1184dd2018-04-09 21:08:14 +02005482 );
LoopDawg4425f242018-02-18 11:40:01 -07005483
5484 if (components != node->getType().getVectorSize())
5485 result[0] = builder.createConstructor(precision, result, convertGlslangToSpvType(node->getType()));
5486
5487 return result[0];
John Kessenich140f3df2015-06-26 16:58:36 -06005488}
5489
5490spv::Id TGlslangToSpvTraverser::handleUserFunctionCall(const glslang::TIntermAggregate* node)
5491{
5492 // Grab the function's pointer from the previously created function
5493 spv::Function* function = functionMap[node->getName().c_str()];
5494 if (! function)
5495 return 0;
5496
5497 const glslang::TIntermSequence& glslangArgs = node->getSequence();
5498 const glslang::TQualifierList& qualifiers = node->getQualifierList();
5499
5500 // See comments in makeFunctions() for details about the semantics for parameter passing.
5501 //
5502 // These imply we need a four step process:
5503 // 1. Evaluate the arguments
5504 // 2. Allocate and make copies of in, out, and inout arguments
5505 // 3. Make the call
5506 // 4. Copy back the results
5507
John Kessenichd3ed90b2018-05-04 11:43:03 -06005508 // 1. Evaluate the arguments and their types
John Kessenich140f3df2015-06-26 16:58:36 -06005509 std::vector<spv::Builder::AccessChain> lValues;
5510 std::vector<spv::Id> rValues;
John Kessenich32cfd492016-02-02 12:37:46 -07005511 std::vector<const glslang::TType*> argTypes;
John Kessenich140f3df2015-06-26 16:58:36 -06005512 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
John Kessenichd3ed90b2018-05-04 11:43:03 -06005513 argTypes.push_back(&glslangArgs[a]->getAsTyped()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06005514 // build l-value
5515 builder.clearAccessChain();
5516 glslangArgs[a]->traverse(this);
John Kessenichd41993d2017-09-10 15:21:05 -06005517 // keep outputs and pass-by-originals as l-values, evaluate others as r-values
John Kessenichd3ed90b2018-05-04 11:43:03 -06005518 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0) ||
John Kessenich6a14f782017-12-04 02:48:10 -07005519 writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06005520 // save l-value
5521 lValues.push_back(builder.getAccessChain());
5522 } else {
5523 // process r-value
John Kessenich32cfd492016-02-02 12:37:46 -07005524 rValues.push_back(accessChainLoad(*argTypes.back()));
John Kessenich140f3df2015-06-26 16:58:36 -06005525 }
5526 }
5527
5528 // 2. Allocate space for anything needing a copy, and if it's "in" or "inout"
5529 // copy the original into that space.
5530 //
5531 // Also, build up the list of actual arguments to pass in for the call
5532 int lValueCount = 0;
5533 int rValueCount = 0;
5534 std::vector<spv::Id> spvArgs;
5535 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
5536 spv::Id arg;
John Kessenichd3ed90b2018-05-04 11:43:03 -06005537 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0)) {
Jason Ekstrand76d0ac12016-05-25 11:50:21 -07005538 builder.setAccessChain(lValues[lValueCount]);
5539 arg = builder.accessChainGetLValue();
5540 ++lValueCount;
John Kessenichd41993d2017-09-10 15:21:05 -06005541 } else if (writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06005542 // need space to hold the copy
John Kessenich435dd802020-06-30 01:27:08 -06005543 arg = builder.createVariable(function->getParamPrecision(a), spv::StorageClassFunction,
John Kessenich8985fc92020-03-03 10:25:07 -07005544 builder.getContainedTypeId(function->getParamType(a)), "param");
John Kessenich140f3df2015-06-26 16:58:36 -06005545 if (qualifiers[a] == glslang::EvqIn || qualifiers[a] == glslang::EvqInOut) {
5546 // need to copy the input into output space
5547 builder.setAccessChain(lValues[lValueCount]);
John Kessenich32cfd492016-02-02 12:37:46 -07005548 spv::Id copy = accessChainLoad(*argTypes[a]);
John Kessenich4bf71552016-09-02 11:20:21 -06005549 builder.clearAccessChain();
5550 builder.setAccessChainLValue(arg);
John Kessenichd3ed90b2018-05-04 11:43:03 -06005551 multiTypeStore(*argTypes[a], copy);
John Kessenich140f3df2015-06-26 16:58:36 -06005552 }
5553 ++lValueCount;
5554 } else {
John Kessenichd3ed90b2018-05-04 11:43:03 -06005555 // process r-value, which involves a copy for a type mismatch
John Kessenich4df10332020-06-26 08:37:06 -06005556 if (function->getParamType(a) != convertGlslangToSpvType(*argTypes[a]) ||
John Kessenich435dd802020-06-30 01:27:08 -06005557 TranslatePrecisionDecoration(*argTypes[a]) != function->getParamPrecision(a))
John Kessenich4df10332020-06-26 08:37:06 -06005558 {
John Kessenich435dd802020-06-30 01:27:08 -06005559 spv::Id argCopy = builder.createVariable(function->getParamPrecision(a), spv::StorageClassFunction, function->getParamType(a), "arg");
John Kessenichd3ed90b2018-05-04 11:43:03 -06005560 builder.clearAccessChain();
5561 builder.setAccessChainLValue(argCopy);
5562 multiTypeStore(*argTypes[a], rValues[rValueCount]);
John Kessenich435dd802020-06-30 01:27:08 -06005563 arg = builder.createLoad(argCopy, function->getParamPrecision(a));
John Kessenichd3ed90b2018-05-04 11:43:03 -06005564 } else
5565 arg = rValues[rValueCount];
John Kessenich140f3df2015-06-26 16:58:36 -06005566 ++rValueCount;
5567 }
5568 spvArgs.push_back(arg);
5569 }
5570
5571 // 3. Make the call.
5572 spv::Id result = builder.createFunctionCall(function, spvArgs);
John Kessenich32cfd492016-02-02 12:37:46 -07005573 builder.setPrecision(result, TranslatePrecisionDecoration(node->getType()));
greg-lunarg639f5462020-11-12 11:10:07 -07005574 builder.addDecoration(result, TranslateNonUniformDecoration(node->getType().getQualifier()));
John Kessenich140f3df2015-06-26 16:58:36 -06005575
5576 // 4. Copy back out an "out" arguments.
5577 lValueCount = 0;
5578 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
John Kessenichd3ed90b2018-05-04 11:43:03 -06005579 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0))
John Kessenichd41993d2017-09-10 15:21:05 -06005580 ++lValueCount;
5581 else if (writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06005582 if (qualifiers[a] == glslang::EvqOut || qualifiers[a] == glslang::EvqInOut) {
John Kessenich435dd802020-06-30 01:27:08 -06005583 spv::Id copy = builder.createLoad(spvArgs[a], spv::NoPrecision);
greg-lunarg639f5462020-11-12 11:10:07 -07005584 builder.addDecoration(copy, TranslateNonUniformDecoration(argTypes[a]->getQualifier()));
John Kessenich140f3df2015-06-26 16:58:36 -06005585 builder.setAccessChain(lValues[lValueCount]);
John Kessenichd3ed90b2018-05-04 11:43:03 -06005586 multiTypeStore(*argTypes[a], copy);
John Kessenich140f3df2015-06-26 16:58:36 -06005587 }
5588 ++lValueCount;
5589 }
5590 }
5591
5592 return result;
5593}
5594
5595// Translate AST operation to SPV operation, already having SPV-based operands/types.
John Kessenichead86222018-03-28 18:01:20 -06005596spv::Id TGlslangToSpvTraverser::createBinaryOperation(glslang::TOperator op, OpDecorations& decorations,
John Kessenich140f3df2015-06-26 16:58:36 -06005597 spv::Id typeId, spv::Id left, spv::Id right,
5598 glslang::TBasicType typeProxy, bool reduceComparison)
5599{
John Kessenich66011cb2018-03-06 16:12:04 -07005600 bool isUnsigned = isTypeUnsignedInt(typeProxy);
5601 bool isFloat = isTypeFloat(typeProxy);
Rex Xuc7d36562016-04-27 08:15:37 +08005602 bool isBool = typeProxy == glslang::EbtBool;
John Kessenich140f3df2015-06-26 16:58:36 -06005603
5604 spv::Op binOp = spv::OpNop;
John Kessenichec43d0a2015-07-04 17:17:31 -06005605 bool needMatchingVectors = true; // for non-matrix ops, would a scalar need to smear to match a vector?
John Kessenich140f3df2015-06-26 16:58:36 -06005606 bool comparison = false;
5607
5608 switch (op) {
5609 case glslang::EOpAdd:
5610 case glslang::EOpAddAssign:
5611 if (isFloat)
5612 binOp = spv::OpFAdd;
5613 else
5614 binOp = spv::OpIAdd;
5615 break;
5616 case glslang::EOpSub:
5617 case glslang::EOpSubAssign:
5618 if (isFloat)
5619 binOp = spv::OpFSub;
5620 else
5621 binOp = spv::OpISub;
5622 break;
5623 case glslang::EOpMul:
5624 case glslang::EOpMulAssign:
5625 if (isFloat)
5626 binOp = spv::OpFMul;
5627 else
5628 binOp = spv::OpIMul;
5629 break;
5630 case glslang::EOpVectorTimesScalar:
5631 case glslang::EOpVectorTimesScalarAssign:
John Kessenich8d72f1a2016-05-20 12:06:03 -06005632 if (isFloat && (builder.isVector(left) || builder.isVector(right))) {
John Kessenichec43d0a2015-07-04 17:17:31 -06005633 if (builder.isVector(right))
5634 std::swap(left, right);
5635 assert(builder.isScalar(right));
5636 needMatchingVectors = false;
5637 binOp = spv::OpVectorTimesScalar;
t.jung697fdf02018-11-14 13:04:39 +01005638 } else if (isFloat)
5639 binOp = spv::OpFMul;
5640 else
John Kessenichec43d0a2015-07-04 17:17:31 -06005641 binOp = spv::OpIMul;
John Kessenich140f3df2015-06-26 16:58:36 -06005642 break;
5643 case glslang::EOpVectorTimesMatrix:
5644 case glslang::EOpVectorTimesMatrixAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06005645 binOp = spv::OpVectorTimesMatrix;
5646 break;
5647 case glslang::EOpMatrixTimesVector:
John Kessenich140f3df2015-06-26 16:58:36 -06005648 binOp = spv::OpMatrixTimesVector;
5649 break;
5650 case glslang::EOpMatrixTimesScalar:
5651 case glslang::EOpMatrixTimesScalarAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06005652 binOp = spv::OpMatrixTimesScalar;
5653 break;
5654 case glslang::EOpMatrixTimesMatrix:
5655 case glslang::EOpMatrixTimesMatrixAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06005656 binOp = spv::OpMatrixTimesMatrix;
5657 break;
5658 case glslang::EOpOuterProduct:
5659 binOp = spv::OpOuterProduct;
John Kessenichec43d0a2015-07-04 17:17:31 -06005660 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06005661 break;
5662
5663 case glslang::EOpDiv:
5664 case glslang::EOpDivAssign:
5665 if (isFloat)
5666 binOp = spv::OpFDiv;
5667 else if (isUnsigned)
5668 binOp = spv::OpUDiv;
5669 else
5670 binOp = spv::OpSDiv;
5671 break;
5672 case glslang::EOpMod:
5673 case glslang::EOpModAssign:
5674 if (isFloat)
5675 binOp = spv::OpFMod;
5676 else if (isUnsigned)
5677 binOp = spv::OpUMod;
5678 else
5679 binOp = spv::OpSMod;
5680 break;
5681 case glslang::EOpRightShift:
5682 case glslang::EOpRightShiftAssign:
5683 if (isUnsigned)
5684 binOp = spv::OpShiftRightLogical;
5685 else
5686 binOp = spv::OpShiftRightArithmetic;
5687 break;
5688 case glslang::EOpLeftShift:
5689 case glslang::EOpLeftShiftAssign:
5690 binOp = spv::OpShiftLeftLogical;
5691 break;
5692 case glslang::EOpAnd:
5693 case glslang::EOpAndAssign:
5694 binOp = spv::OpBitwiseAnd;
5695 break;
5696 case glslang::EOpLogicalAnd:
John Kessenichec43d0a2015-07-04 17:17:31 -06005697 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06005698 binOp = spv::OpLogicalAnd;
5699 break;
5700 case glslang::EOpInclusiveOr:
5701 case glslang::EOpInclusiveOrAssign:
5702 binOp = spv::OpBitwiseOr;
5703 break;
5704 case glslang::EOpLogicalOr:
John Kessenichec43d0a2015-07-04 17:17:31 -06005705 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06005706 binOp = spv::OpLogicalOr;
5707 break;
5708 case glslang::EOpExclusiveOr:
5709 case glslang::EOpExclusiveOrAssign:
5710 binOp = spv::OpBitwiseXor;
5711 break;
5712 case glslang::EOpLogicalXor:
John Kessenichec43d0a2015-07-04 17:17:31 -06005713 needMatchingVectors = false;
John Kessenich5e4b1242015-08-06 22:53:06 -06005714 binOp = spv::OpLogicalNotEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06005715 break;
5716
Ian Romanickb3bd4022019-01-21 08:57:25 -08005717 case glslang::EOpAbsDifference:
5718 binOp = isUnsigned ? spv::OpAbsUSubINTEL : spv::OpAbsISubINTEL;
5719 break;
5720
5721 case glslang::EOpAddSaturate:
5722 binOp = isUnsigned ? spv::OpUAddSatINTEL : spv::OpIAddSatINTEL;
5723 break;
5724
5725 case glslang::EOpSubSaturate:
5726 binOp = isUnsigned ? spv::OpUSubSatINTEL : spv::OpISubSatINTEL;
5727 break;
5728
5729 case glslang::EOpAverage:
5730 binOp = isUnsigned ? spv::OpUAverageINTEL : spv::OpIAverageINTEL;
5731 break;
5732
5733 case glslang::EOpAverageRounded:
5734 binOp = isUnsigned ? spv::OpUAverageRoundedINTEL : spv::OpIAverageRoundedINTEL;
5735 break;
5736
5737 case glslang::EOpMul32x16:
5738 binOp = isUnsigned ? spv::OpUMul32x16INTEL : spv::OpIMul32x16INTEL;
5739 break;
5740
John Kessenich140f3df2015-06-26 16:58:36 -06005741 case glslang::EOpLessThan:
5742 case glslang::EOpGreaterThan:
5743 case glslang::EOpLessThanEqual:
5744 case glslang::EOpGreaterThanEqual:
5745 case glslang::EOpEqual:
5746 case glslang::EOpNotEqual:
5747 case glslang::EOpVectorEqual:
5748 case glslang::EOpVectorNotEqual:
5749 comparison = true;
5750 break;
5751 default:
5752 break;
5753 }
5754
John Kessenich7c1aa102015-10-15 13:29:11 -06005755 // handle mapped binary operations (should be non-comparison)
John Kessenich140f3df2015-06-26 16:58:36 -06005756 if (binOp != spv::OpNop) {
John Kessenich7c1aa102015-10-15 13:29:11 -06005757 assert(comparison == false);
Jeff Bolz4605e2e2019-02-19 13:10:32 -06005758 if (builder.isMatrix(left) || builder.isMatrix(right) ||
5759 builder.isCooperativeMatrix(left) || builder.isCooperativeMatrix(right))
John Kessenichead86222018-03-28 18:01:20 -06005760 return createBinaryMatrixOperation(binOp, decorations, typeId, left, right);
John Kessenich140f3df2015-06-26 16:58:36 -06005761
5762 // No matrix involved; make both operands be the same number of components, if needed
John Kessenichec43d0a2015-07-04 17:17:31 -06005763 if (needMatchingVectors)
John Kessenichead86222018-03-28 18:01:20 -06005764 builder.promoteScalar(decorations.precision, left, right);
John Kessenich140f3df2015-06-26 16:58:36 -06005765
qining25262b32016-05-06 17:25:16 -04005766 spv::Id result = builder.createBinOp(binOp, typeId, left, right);
John Kessenichb9197c82019-08-11 07:41:45 -06005767 decorations.addNoContraction(builder, result);
5768 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005769 return builder.setPrecision(result, decorations.precision);
John Kessenich140f3df2015-06-26 16:58:36 -06005770 }
5771
5772 if (! comparison)
5773 return 0;
5774
John Kessenich7c1aa102015-10-15 13:29:11 -06005775 // Handle comparison instructions
John Kessenich140f3df2015-06-26 16:58:36 -06005776
John Kessenich4583b612016-08-07 19:14:22 -06005777 if (reduceComparison && (op == glslang::EOpEqual || op == glslang::EOpNotEqual)
John Kessenichead86222018-03-28 18:01:20 -06005778 && (builder.isVector(left) || builder.isMatrix(left) || builder.isAggregate(left))) {
5779 spv::Id result = builder.createCompositeCompare(decorations.precision, left, right, op == glslang::EOpEqual);
John Kessenichb9197c82019-08-11 07:41:45 -06005780 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005781 return result;
5782 }
John Kessenich140f3df2015-06-26 16:58:36 -06005783
5784 switch (op) {
5785 case glslang::EOpLessThan:
5786 if (isFloat)
5787 binOp = spv::OpFOrdLessThan;
5788 else if (isUnsigned)
5789 binOp = spv::OpULessThan;
5790 else
5791 binOp = spv::OpSLessThan;
5792 break;
5793 case glslang::EOpGreaterThan:
5794 if (isFloat)
5795 binOp = spv::OpFOrdGreaterThan;
5796 else if (isUnsigned)
5797 binOp = spv::OpUGreaterThan;
5798 else
5799 binOp = spv::OpSGreaterThan;
5800 break;
5801 case glslang::EOpLessThanEqual:
5802 if (isFloat)
5803 binOp = spv::OpFOrdLessThanEqual;
5804 else if (isUnsigned)
5805 binOp = spv::OpULessThanEqual;
5806 else
5807 binOp = spv::OpSLessThanEqual;
5808 break;
5809 case glslang::EOpGreaterThanEqual:
5810 if (isFloat)
5811 binOp = spv::OpFOrdGreaterThanEqual;
5812 else if (isUnsigned)
5813 binOp = spv::OpUGreaterThanEqual;
5814 else
5815 binOp = spv::OpSGreaterThanEqual;
5816 break;
5817 case glslang::EOpEqual:
5818 case glslang::EOpVectorEqual:
5819 if (isFloat)
5820 binOp = spv::OpFOrdEqual;
Rex Xuc7d36562016-04-27 08:15:37 +08005821 else if (isBool)
5822 binOp = spv::OpLogicalEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06005823 else
5824 binOp = spv::OpIEqual;
5825 break;
5826 case glslang::EOpNotEqual:
5827 case glslang::EOpVectorNotEqual:
5828 if (isFloat)
Graeme Leese65ce5662020-06-05 13:32:51 +01005829 binOp = spv::OpFUnordNotEqual;
Rex Xuc7d36562016-04-27 08:15:37 +08005830 else if (isBool)
5831 binOp = spv::OpLogicalNotEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06005832 else
5833 binOp = spv::OpINotEqual;
5834 break;
5835 default:
5836 break;
5837 }
5838
qining25262b32016-05-06 17:25:16 -04005839 if (binOp != spv::OpNop) {
5840 spv::Id result = builder.createBinOp(binOp, typeId, left, right);
John Kessenichb9197c82019-08-11 07:41:45 -06005841 decorations.addNoContraction(builder, result);
5842 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005843 return builder.setPrecision(result, decorations.precision);
qining25262b32016-05-06 17:25:16 -04005844 }
John Kessenich140f3df2015-06-26 16:58:36 -06005845
5846 return 0;
5847}
5848
John Kessenich04bb8a02015-12-12 12:28:14 -07005849//
5850// Translate AST matrix operation to SPV operation, already having SPV-based operands/types.
5851// These can be any of:
5852//
5853// matrix * scalar
5854// scalar * matrix
5855// matrix * matrix linear algebraic
5856// matrix * vector
5857// vector * matrix
5858// matrix * matrix componentwise
5859// matrix op matrix op in {+, -, /}
5860// matrix op scalar op in {+, -, /}
5861// scalar op matrix op in {+, -, /}
5862//
John Kessenichead86222018-03-28 18:01:20 -06005863spv::Id TGlslangToSpvTraverser::createBinaryMatrixOperation(spv::Op op, OpDecorations& decorations, spv::Id typeId,
5864 spv::Id left, spv::Id right)
John Kessenich04bb8a02015-12-12 12:28:14 -07005865{
5866 bool firstClass = true;
5867
5868 // First, handle first-class matrix operations (* and matrix/scalar)
5869 switch (op) {
5870 case spv::OpFDiv:
5871 if (builder.isMatrix(left) && builder.isScalar(right)) {
5872 // turn matrix / scalar into a multiply...
Neil Robertseddb1312018-03-13 10:57:59 +01005873 spv::Id resultType = builder.getTypeId(right);
5874 right = builder.createBinOp(spv::OpFDiv, resultType, builder.makeFpConstant(resultType, 1.0), right);
John Kessenich04bb8a02015-12-12 12:28:14 -07005875 op = spv::OpMatrixTimesScalar;
5876 } else
5877 firstClass = false;
5878 break;
5879 case spv::OpMatrixTimesScalar:
Jeff Bolz4605e2e2019-02-19 13:10:32 -06005880 if (builder.isMatrix(right) || builder.isCooperativeMatrix(right))
John Kessenich04bb8a02015-12-12 12:28:14 -07005881 std::swap(left, right);
5882 assert(builder.isScalar(right));
5883 break;
5884 case spv::OpVectorTimesMatrix:
5885 assert(builder.isVector(left));
5886 assert(builder.isMatrix(right));
5887 break;
5888 case spv::OpMatrixTimesVector:
5889 assert(builder.isMatrix(left));
5890 assert(builder.isVector(right));
5891 break;
5892 case spv::OpMatrixTimesMatrix:
5893 assert(builder.isMatrix(left));
5894 assert(builder.isMatrix(right));
5895 break;
5896 default:
5897 firstClass = false;
5898 break;
5899 }
5900
Jeff Bolz4605e2e2019-02-19 13:10:32 -06005901 if (builder.isCooperativeMatrix(left) || builder.isCooperativeMatrix(right))
5902 firstClass = true;
5903
qining25262b32016-05-06 17:25:16 -04005904 if (firstClass) {
5905 spv::Id result = builder.createBinOp(op, typeId, left, right);
John Kessenichb9197c82019-08-11 07:41:45 -06005906 decorations.addNoContraction(builder, result);
5907 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005908 return builder.setPrecision(result, decorations.precision);
qining25262b32016-05-06 17:25:16 -04005909 }
John Kessenich04bb8a02015-12-12 12:28:14 -07005910
LoopDawg592860c2016-06-09 08:57:35 -06005911 // Handle component-wise +, -, *, %, and / for all combinations of type.
John Kessenich04bb8a02015-12-12 12:28:14 -07005912 // The result type of all of them is the same type as the (a) matrix operand.
5913 // The algorithm is to:
5914 // - break the matrix(es) into vectors
5915 // - smear any scalar to a vector
5916 // - do vector operations
5917 // - make a matrix out the vector results
5918 switch (op) {
5919 case spv::OpFAdd:
5920 case spv::OpFSub:
5921 case spv::OpFDiv:
LoopDawg592860c2016-06-09 08:57:35 -06005922 case spv::OpFMod:
John Kessenich04bb8a02015-12-12 12:28:14 -07005923 case spv::OpFMul:
5924 {
5925 // one time set up...
5926 bool leftMat = builder.isMatrix(left);
5927 bool rightMat = builder.isMatrix(right);
5928 unsigned int numCols = leftMat ? builder.getNumColumns(left) : builder.getNumColumns(right);
5929 int numRows = leftMat ? builder.getNumRows(left) : builder.getNumRows(right);
5930 spv::Id scalarType = builder.getScalarTypeId(typeId);
5931 spv::Id vecType = builder.makeVectorType(scalarType, numRows);
5932 std::vector<spv::Id> results;
5933 spv::Id smearVec = spv::NoResult;
5934 if (builder.isScalar(left))
John Kessenichead86222018-03-28 18:01:20 -06005935 smearVec = builder.smearScalar(decorations.precision, left, vecType);
John Kessenich04bb8a02015-12-12 12:28:14 -07005936 else if (builder.isScalar(right))
John Kessenichead86222018-03-28 18:01:20 -06005937 smearVec = builder.smearScalar(decorations.precision, right, vecType);
John Kessenich04bb8a02015-12-12 12:28:14 -07005938
5939 // do each vector op
5940 for (unsigned int c = 0; c < numCols; ++c) {
5941 std::vector<unsigned int> indexes;
5942 indexes.push_back(c);
5943 spv::Id leftVec = leftMat ? builder.createCompositeExtract( left, vecType, indexes) : smearVec;
5944 spv::Id rightVec = rightMat ? builder.createCompositeExtract(right, vecType, indexes) : smearVec;
qining25262b32016-05-06 17:25:16 -04005945 spv::Id result = builder.createBinOp(op, vecType, leftVec, rightVec);
John Kessenichb9197c82019-08-11 07:41:45 -06005946 decorations.addNoContraction(builder, result);
5947 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005948 results.push_back(builder.setPrecision(result, decorations.precision));
John Kessenich04bb8a02015-12-12 12:28:14 -07005949 }
5950
5951 // put the pieces together
John Kessenichead86222018-03-28 18:01:20 -06005952 spv::Id result = builder.setPrecision(builder.createCompositeConstruct(typeId, results), decorations.precision);
John Kessenichb9197c82019-08-11 07:41:45 -06005953 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005954 return result;
John Kessenich04bb8a02015-12-12 12:28:14 -07005955 }
5956 default:
5957 assert(0);
5958 return spv::NoResult;
5959 }
5960}
5961
John Kessenichead86222018-03-28 18:01:20 -06005962spv::Id TGlslangToSpvTraverser::createUnaryOperation(glslang::TOperator op, OpDecorations& decorations, spv::Id typeId,
John Kessenich8985fc92020-03-03 10:25:07 -07005963 spv::Id operand, glslang::TBasicType typeProxy, const spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags)
John Kessenich140f3df2015-06-26 16:58:36 -06005964{
5965 spv::Op unaryOp = spv::OpNop;
Rex Xu9d93a232016-05-05 12:30:44 +08005966 int extBuiltins = -1;
John Kessenich140f3df2015-06-26 16:58:36 -06005967 int libCall = -1;
John Kessenich66011cb2018-03-06 16:12:04 -07005968 bool isUnsigned = isTypeUnsignedInt(typeProxy);
5969 bool isFloat = isTypeFloat(typeProxy);
John Kessenich140f3df2015-06-26 16:58:36 -06005970
5971 switch (op) {
5972 case glslang::EOpNegative:
John Kessenich7a53f762016-01-20 11:19:27 -07005973 if (isFloat) {
John Kessenich140f3df2015-06-26 16:58:36 -06005974 unaryOp = spv::OpFNegate;
John Kessenich7a53f762016-01-20 11:19:27 -07005975 if (builder.isMatrixType(typeId))
John Kessenichead86222018-03-28 18:01:20 -06005976 return createUnaryMatrixOperation(unaryOp, decorations, typeId, operand, typeProxy);
John Kessenich7a53f762016-01-20 11:19:27 -07005977 } else
John Kessenich140f3df2015-06-26 16:58:36 -06005978 unaryOp = spv::OpSNegate;
5979 break;
5980
5981 case glslang::EOpLogicalNot:
5982 case glslang::EOpVectorLogicalNot:
John Kessenich5e4b1242015-08-06 22:53:06 -06005983 unaryOp = spv::OpLogicalNot;
5984 break;
John Kessenich140f3df2015-06-26 16:58:36 -06005985 case glslang::EOpBitwiseNot:
5986 unaryOp = spv::OpNot;
5987 break;
John Kessenich5e4b1242015-08-06 22:53:06 -06005988
John Kessenich140f3df2015-06-26 16:58:36 -06005989 case glslang::EOpDeterminant:
John Kessenich5e4b1242015-08-06 22:53:06 -06005990 libCall = spv::GLSLstd450Determinant;
John Kessenich140f3df2015-06-26 16:58:36 -06005991 break;
5992 case glslang::EOpMatrixInverse:
John Kessenich5e4b1242015-08-06 22:53:06 -06005993 libCall = spv::GLSLstd450MatrixInverse;
John Kessenich140f3df2015-06-26 16:58:36 -06005994 break;
5995 case glslang::EOpTranspose:
5996 unaryOp = spv::OpTranspose;
5997 break;
5998
5999 case glslang::EOpRadians:
John Kessenich5e4b1242015-08-06 22:53:06 -06006000 libCall = spv::GLSLstd450Radians;
John Kessenich140f3df2015-06-26 16:58:36 -06006001 break;
6002 case glslang::EOpDegrees:
John Kessenich5e4b1242015-08-06 22:53:06 -06006003 libCall = spv::GLSLstd450Degrees;
John Kessenich140f3df2015-06-26 16:58:36 -06006004 break;
6005 case glslang::EOpSin:
John Kessenich5e4b1242015-08-06 22:53:06 -06006006 libCall = spv::GLSLstd450Sin;
John Kessenich140f3df2015-06-26 16:58:36 -06006007 break;
6008 case glslang::EOpCos:
John Kessenich5e4b1242015-08-06 22:53:06 -06006009 libCall = spv::GLSLstd450Cos;
John Kessenich140f3df2015-06-26 16:58:36 -06006010 break;
6011 case glslang::EOpTan:
John Kessenich5e4b1242015-08-06 22:53:06 -06006012 libCall = spv::GLSLstd450Tan;
John Kessenich140f3df2015-06-26 16:58:36 -06006013 break;
6014 case glslang::EOpAcos:
John Kessenich5e4b1242015-08-06 22:53:06 -06006015 libCall = spv::GLSLstd450Acos;
John Kessenich140f3df2015-06-26 16:58:36 -06006016 break;
6017 case glslang::EOpAsin:
John Kessenich5e4b1242015-08-06 22:53:06 -06006018 libCall = spv::GLSLstd450Asin;
John Kessenich140f3df2015-06-26 16:58:36 -06006019 break;
6020 case glslang::EOpAtan:
John Kessenich5e4b1242015-08-06 22:53:06 -06006021 libCall = spv::GLSLstd450Atan;
John Kessenich140f3df2015-06-26 16:58:36 -06006022 break;
6023
6024 case glslang::EOpAcosh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006025 libCall = spv::GLSLstd450Acosh;
John Kessenich140f3df2015-06-26 16:58:36 -06006026 break;
6027 case glslang::EOpAsinh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006028 libCall = spv::GLSLstd450Asinh;
John Kessenich140f3df2015-06-26 16:58:36 -06006029 break;
6030 case glslang::EOpAtanh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006031 libCall = spv::GLSLstd450Atanh;
John Kessenich140f3df2015-06-26 16:58:36 -06006032 break;
6033 case glslang::EOpTanh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006034 libCall = spv::GLSLstd450Tanh;
John Kessenich140f3df2015-06-26 16:58:36 -06006035 break;
6036 case glslang::EOpCosh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006037 libCall = spv::GLSLstd450Cosh;
John Kessenich140f3df2015-06-26 16:58:36 -06006038 break;
6039 case glslang::EOpSinh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006040 libCall = spv::GLSLstd450Sinh;
John Kessenich140f3df2015-06-26 16:58:36 -06006041 break;
6042
6043 case glslang::EOpLength:
John Kessenich5e4b1242015-08-06 22:53:06 -06006044 libCall = spv::GLSLstd450Length;
John Kessenich140f3df2015-06-26 16:58:36 -06006045 break;
6046 case glslang::EOpNormalize:
John Kessenich5e4b1242015-08-06 22:53:06 -06006047 libCall = spv::GLSLstd450Normalize;
John Kessenich140f3df2015-06-26 16:58:36 -06006048 break;
6049
6050 case glslang::EOpExp:
John Kessenich5e4b1242015-08-06 22:53:06 -06006051 libCall = spv::GLSLstd450Exp;
John Kessenich140f3df2015-06-26 16:58:36 -06006052 break;
6053 case glslang::EOpLog:
John Kessenich5e4b1242015-08-06 22:53:06 -06006054 libCall = spv::GLSLstd450Log;
John Kessenich140f3df2015-06-26 16:58:36 -06006055 break;
6056 case glslang::EOpExp2:
John Kessenich5e4b1242015-08-06 22:53:06 -06006057 libCall = spv::GLSLstd450Exp2;
John Kessenich140f3df2015-06-26 16:58:36 -06006058 break;
6059 case glslang::EOpLog2:
John Kessenich5e4b1242015-08-06 22:53:06 -06006060 libCall = spv::GLSLstd450Log2;
John Kessenich140f3df2015-06-26 16:58:36 -06006061 break;
6062 case glslang::EOpSqrt:
John Kessenich5e4b1242015-08-06 22:53:06 -06006063 libCall = spv::GLSLstd450Sqrt;
John Kessenich140f3df2015-06-26 16:58:36 -06006064 break;
6065 case glslang::EOpInverseSqrt:
John Kessenich5e4b1242015-08-06 22:53:06 -06006066 libCall = spv::GLSLstd450InverseSqrt;
John Kessenich140f3df2015-06-26 16:58:36 -06006067 break;
6068
6069 case glslang::EOpFloor:
John Kessenich5e4b1242015-08-06 22:53:06 -06006070 libCall = spv::GLSLstd450Floor;
John Kessenich140f3df2015-06-26 16:58:36 -06006071 break;
6072 case glslang::EOpTrunc:
John Kessenich5e4b1242015-08-06 22:53:06 -06006073 libCall = spv::GLSLstd450Trunc;
John Kessenich140f3df2015-06-26 16:58:36 -06006074 break;
6075 case glslang::EOpRound:
John Kessenich5e4b1242015-08-06 22:53:06 -06006076 libCall = spv::GLSLstd450Round;
John Kessenich140f3df2015-06-26 16:58:36 -06006077 break;
6078 case glslang::EOpRoundEven:
John Kessenich5e4b1242015-08-06 22:53:06 -06006079 libCall = spv::GLSLstd450RoundEven;
John Kessenich140f3df2015-06-26 16:58:36 -06006080 break;
6081 case glslang::EOpCeil:
John Kessenich5e4b1242015-08-06 22:53:06 -06006082 libCall = spv::GLSLstd450Ceil;
John Kessenich140f3df2015-06-26 16:58:36 -06006083 break;
6084 case glslang::EOpFract:
John Kessenich5e4b1242015-08-06 22:53:06 -06006085 libCall = spv::GLSLstd450Fract;
John Kessenich140f3df2015-06-26 16:58:36 -06006086 break;
6087
6088 case glslang::EOpIsNan:
6089 unaryOp = spv::OpIsNan;
6090 break;
6091 case glslang::EOpIsInf:
6092 unaryOp = spv::OpIsInf;
6093 break;
LoopDawg592860c2016-06-09 08:57:35 -06006094 case glslang::EOpIsFinite:
6095 unaryOp = spv::OpIsFinite;
6096 break;
John Kessenich140f3df2015-06-26 16:58:36 -06006097
Rex Xucbc426e2015-12-15 16:03:10 +08006098 case glslang::EOpFloatBitsToInt:
6099 case glslang::EOpFloatBitsToUint:
6100 case glslang::EOpIntBitsToFloat:
6101 case glslang::EOpUintBitsToFloat:
Rex Xu8ff43de2016-04-22 16:51:45 +08006102 case glslang::EOpDoubleBitsToInt64:
6103 case glslang::EOpDoubleBitsToUint64:
6104 case glslang::EOpInt64BitsToDouble:
6105 case glslang::EOpUint64BitsToDouble:
Rex Xucabbb782017-03-24 13:41:14 +08006106 case glslang::EOpFloat16BitsToInt16:
6107 case glslang::EOpFloat16BitsToUint16:
6108 case glslang::EOpInt16BitsToFloat16:
6109 case glslang::EOpUint16BitsToFloat16:
Rex Xucbc426e2015-12-15 16:03:10 +08006110 unaryOp = spv::OpBitcast;
6111 break;
6112
John Kessenich140f3df2015-06-26 16:58:36 -06006113 case glslang::EOpPackSnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006114 libCall = spv::GLSLstd450PackSnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006115 break;
6116 case glslang::EOpUnpackSnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006117 libCall = spv::GLSLstd450UnpackSnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006118 break;
6119 case glslang::EOpPackUnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006120 libCall = spv::GLSLstd450PackUnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006121 break;
6122 case glslang::EOpUnpackUnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006123 libCall = spv::GLSLstd450UnpackUnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006124 break;
6125 case glslang::EOpPackHalf2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006126 libCall = spv::GLSLstd450PackHalf2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006127 break;
6128 case glslang::EOpUnpackHalf2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006129 libCall = spv::GLSLstd450UnpackHalf2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006130 break;
John Kessenichb9197c82019-08-11 07:41:45 -06006131#ifndef GLSLANG_WEB
John Kessenichfc51d282015-08-19 13:34:18 -06006132 case glslang::EOpPackSnorm4x8:
6133 libCall = spv::GLSLstd450PackSnorm4x8;
6134 break;
6135 case glslang::EOpUnpackSnorm4x8:
6136 libCall = spv::GLSLstd450UnpackSnorm4x8;
6137 break;
6138 case glslang::EOpPackUnorm4x8:
6139 libCall = spv::GLSLstd450PackUnorm4x8;
6140 break;
6141 case glslang::EOpUnpackUnorm4x8:
6142 libCall = spv::GLSLstd450UnpackUnorm4x8;
6143 break;
6144 case glslang::EOpPackDouble2x32:
6145 libCall = spv::GLSLstd450PackDouble2x32;
6146 break;
6147 case glslang::EOpUnpackDouble2x32:
6148 libCall = spv::GLSLstd450UnpackDouble2x32;
6149 break;
John Kessenichb9197c82019-08-11 07:41:45 -06006150#endif
John Kessenich140f3df2015-06-26 16:58:36 -06006151
Rex Xu8ff43de2016-04-22 16:51:45 +08006152 case glslang::EOpPackInt2x32:
6153 case glslang::EOpUnpackInt2x32:
6154 case glslang::EOpPackUint2x32:
6155 case glslang::EOpUnpackUint2x32:
John Kessenich66011cb2018-03-06 16:12:04 -07006156 case glslang::EOpPack16:
6157 case glslang::EOpPack32:
6158 case glslang::EOpPack64:
6159 case glslang::EOpUnpack32:
6160 case glslang::EOpUnpack16:
6161 case glslang::EOpUnpack8:
Rex Xucabbb782017-03-24 13:41:14 +08006162 case glslang::EOpPackInt2x16:
6163 case glslang::EOpUnpackInt2x16:
6164 case glslang::EOpPackUint2x16:
6165 case glslang::EOpUnpackUint2x16:
6166 case glslang::EOpPackInt4x16:
6167 case glslang::EOpUnpackInt4x16:
6168 case glslang::EOpPackUint4x16:
6169 case glslang::EOpUnpackUint4x16:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006170 case glslang::EOpPackFloat2x16:
6171 case glslang::EOpUnpackFloat2x16:
6172 unaryOp = spv::OpBitcast;
6173 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006174
John Kessenich140f3df2015-06-26 16:58:36 -06006175 case glslang::EOpDPdx:
6176 unaryOp = spv::OpDPdx;
6177 break;
6178 case glslang::EOpDPdy:
6179 unaryOp = spv::OpDPdy;
6180 break;
6181 case glslang::EOpFwidth:
6182 unaryOp = spv::OpFwidth;
6183 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06006184
John Kessenich140f3df2015-06-26 16:58:36 -06006185 case glslang::EOpAny:
6186 unaryOp = spv::OpAny;
6187 break;
6188 case glslang::EOpAll:
6189 unaryOp = spv::OpAll;
6190 break;
6191
6192 case glslang::EOpAbs:
John Kessenich5e4b1242015-08-06 22:53:06 -06006193 if (isFloat)
6194 libCall = spv::GLSLstd450FAbs;
6195 else
6196 libCall = spv::GLSLstd450SAbs;
John Kessenich140f3df2015-06-26 16:58:36 -06006197 break;
6198 case glslang::EOpSign:
John Kessenich5e4b1242015-08-06 22:53:06 -06006199 if (isFloat)
6200 libCall = spv::GLSLstd450FSign;
6201 else
6202 libCall = spv::GLSLstd450SSign;
John Kessenich140f3df2015-06-26 16:58:36 -06006203 break;
6204
John Kessenicha28f7a72019-08-06 07:00:58 -06006205#ifndef GLSLANG_WEB
6206 case glslang::EOpDPdxFine:
6207 unaryOp = spv::OpDPdxFine;
6208 break;
6209 case glslang::EOpDPdyFine:
6210 unaryOp = spv::OpDPdyFine;
6211 break;
6212 case glslang::EOpFwidthFine:
6213 unaryOp = spv::OpFwidthFine;
6214 break;
6215 case glslang::EOpDPdxCoarse:
6216 unaryOp = spv::OpDPdxCoarse;
6217 break;
6218 case glslang::EOpDPdyCoarse:
6219 unaryOp = spv::OpDPdyCoarse;
6220 break;
6221 case glslang::EOpFwidthCoarse:
6222 unaryOp = spv::OpFwidthCoarse;
6223 break;
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04006224 case glslang::EOpRayQueryProceed:
6225 unaryOp = spv::OpRayQueryProceedKHR;
6226 break;
6227 case glslang::EOpRayQueryGetRayTMin:
6228 unaryOp = spv::OpRayQueryGetRayTMinKHR;
6229 break;
6230 case glslang::EOpRayQueryGetRayFlags:
6231 unaryOp = spv::OpRayQueryGetRayFlagsKHR;
6232 break;
6233 case glslang::EOpRayQueryGetWorldRayOrigin:
6234 unaryOp = spv::OpRayQueryGetWorldRayOriginKHR;
6235 break;
6236 case glslang::EOpRayQueryGetWorldRayDirection:
6237 unaryOp = spv::OpRayQueryGetWorldRayDirectionKHR;
6238 break;
6239 case glslang::EOpRayQueryGetIntersectionCandidateAABBOpaque:
6240 unaryOp = spv::OpRayQueryGetIntersectionCandidateAABBOpaqueKHR;
6241 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06006242 case glslang::EOpInterpolateAtCentroid:
6243 if (typeProxy == glslang::EbtFloat16)
6244 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
6245 libCall = spv::GLSLstd450InterpolateAtCentroid;
6246 break;
John Kessenichfc51d282015-08-19 13:34:18 -06006247 case glslang::EOpAtomicCounterIncrement:
6248 case glslang::EOpAtomicCounterDecrement:
6249 case glslang::EOpAtomicCounter:
6250 {
6251 // Handle all of the atomics in one place, in createAtomicOperation()
6252 std::vector<spv::Id> operands;
6253 operands.push_back(operand);
Jeff Bolz38a52fc2019-06-14 09:56:28 -05006254 return createAtomicOperation(op, decorations.precision, typeId, operands, typeProxy, lvalueCoherentFlags);
John Kessenichfc51d282015-08-19 13:34:18 -06006255 }
6256
John Kessenichfc51d282015-08-19 13:34:18 -06006257 case glslang::EOpBitFieldReverse:
6258 unaryOp = spv::OpBitReverse;
6259 break;
6260 case glslang::EOpBitCount:
6261 unaryOp = spv::OpBitCount;
6262 break;
6263 case glslang::EOpFindLSB:
John Kessenich55e7d112015-11-15 21:33:39 -07006264 libCall = spv::GLSLstd450FindILsb;
John Kessenichfc51d282015-08-19 13:34:18 -06006265 break;
6266 case glslang::EOpFindMSB:
John Kessenich55e7d112015-11-15 21:33:39 -07006267 if (isUnsigned)
6268 libCall = spv::GLSLstd450FindUMsb;
6269 else
6270 libCall = spv::GLSLstd450FindSMsb;
John Kessenichfc51d282015-08-19 13:34:18 -06006271 break;
6272
Ian Romanickb3bd4022019-01-21 08:57:25 -08006273 case glslang::EOpCountLeadingZeros:
6274 builder.addCapability(spv::CapabilityIntegerFunctions2INTEL);
6275 builder.addExtension("SPV_INTEL_shader_integer_functions2");
6276 unaryOp = spv::OpUCountLeadingZerosINTEL;
6277 break;
6278
6279 case glslang::EOpCountTrailingZeros:
6280 builder.addCapability(spv::CapabilityIntegerFunctions2INTEL);
6281 builder.addExtension("SPV_INTEL_shader_integer_functions2");
6282 unaryOp = spv::OpUCountTrailingZerosINTEL;
6283 break;
6284
Rex Xu574ab042016-04-14 16:53:07 +08006285 case glslang::EOpBallot:
6286 case glslang::EOpReadFirstInvocation:
Rex Xu338b1852016-05-05 20:38:33 +08006287 case glslang::EOpAnyInvocation:
Rex Xu338b1852016-05-05 20:38:33 +08006288 case glslang::EOpAllInvocations:
Rex Xu338b1852016-05-05 20:38:33 +08006289 case glslang::EOpAllInvocationsEqual:
Rex Xu9d93a232016-05-05 12:30:44 +08006290 case glslang::EOpMinInvocations:
6291 case glslang::EOpMaxInvocations:
6292 case glslang::EOpAddInvocations:
6293 case glslang::EOpMinInvocationsNonUniform:
6294 case glslang::EOpMaxInvocationsNonUniform:
6295 case glslang::EOpAddInvocationsNonUniform:
Rex Xu430ef402016-10-14 17:22:23 +08006296 case glslang::EOpMinInvocationsInclusiveScan:
6297 case glslang::EOpMaxInvocationsInclusiveScan:
6298 case glslang::EOpAddInvocationsInclusiveScan:
6299 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
6300 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
6301 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
6302 case glslang::EOpMinInvocationsExclusiveScan:
6303 case glslang::EOpMaxInvocationsExclusiveScan:
6304 case glslang::EOpAddInvocationsExclusiveScan:
6305 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
6306 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
6307 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
Rex Xu51596642016-09-21 18:56:12 +08006308 {
6309 std::vector<spv::Id> operands;
6310 operands.push_back(operand);
6311 return createInvocationsOperation(op, typeId, operands, typeProxy);
6312 }
John Kessenich66011cb2018-03-06 16:12:04 -07006313 case glslang::EOpSubgroupAll:
6314 case glslang::EOpSubgroupAny:
6315 case glslang::EOpSubgroupAllEqual:
6316 case glslang::EOpSubgroupBroadcastFirst:
6317 case glslang::EOpSubgroupBallot:
6318 case glslang::EOpSubgroupInverseBallot:
6319 case glslang::EOpSubgroupBallotBitCount:
6320 case glslang::EOpSubgroupBallotInclusiveBitCount:
6321 case glslang::EOpSubgroupBallotExclusiveBitCount:
6322 case glslang::EOpSubgroupBallotFindLSB:
6323 case glslang::EOpSubgroupBallotFindMSB:
6324 case glslang::EOpSubgroupAdd:
6325 case glslang::EOpSubgroupMul:
6326 case glslang::EOpSubgroupMin:
6327 case glslang::EOpSubgroupMax:
6328 case glslang::EOpSubgroupAnd:
6329 case glslang::EOpSubgroupOr:
6330 case glslang::EOpSubgroupXor:
6331 case glslang::EOpSubgroupInclusiveAdd:
6332 case glslang::EOpSubgroupInclusiveMul:
6333 case glslang::EOpSubgroupInclusiveMin:
6334 case glslang::EOpSubgroupInclusiveMax:
6335 case glslang::EOpSubgroupInclusiveAnd:
6336 case glslang::EOpSubgroupInclusiveOr:
6337 case glslang::EOpSubgroupInclusiveXor:
6338 case glslang::EOpSubgroupExclusiveAdd:
6339 case glslang::EOpSubgroupExclusiveMul:
6340 case glslang::EOpSubgroupExclusiveMin:
6341 case glslang::EOpSubgroupExclusiveMax:
6342 case glslang::EOpSubgroupExclusiveAnd:
6343 case glslang::EOpSubgroupExclusiveOr:
6344 case glslang::EOpSubgroupExclusiveXor:
6345 case glslang::EOpSubgroupQuadSwapHorizontal:
6346 case glslang::EOpSubgroupQuadSwapVertical:
6347 case glslang::EOpSubgroupQuadSwapDiagonal: {
6348 std::vector<spv::Id> operands;
6349 operands.push_back(operand);
6350 return createSubgroupOperation(op, typeId, operands, typeProxy);
6351 }
Rex Xu9d93a232016-05-05 12:30:44 +08006352 case glslang::EOpMbcnt:
6353 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
6354 libCall = spv::MbcntAMD;
6355 break;
6356
6357 case glslang::EOpCubeFaceIndex:
6358 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_gcn_shader);
6359 libCall = spv::CubeFaceIndexAMD;
6360 break;
6361
6362 case glslang::EOpCubeFaceCoord:
6363 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_gcn_shader);
6364 libCall = spv::CubeFaceCoordAMD;
6365 break;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006366 case glslang::EOpSubgroupPartition:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006367 unaryOp = spv::OpGroupNonUniformPartitionNV;
6368 break;
Jeff Bolz9f2aec42019-01-06 17:58:04 -06006369 case glslang::EOpConstructReference:
6370 unaryOp = spv::OpBitcast;
6371 break;
Daniel Kochffccefd2020-11-23 15:41:27 -05006372
6373 case glslang::EOpConvUint64ToAccStruct:
6374 case glslang::EOpConvUvec2ToAccStruct:
6375 unaryOp = spv::OpConvertUToAccelerationStructureKHR;
6376 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06006377#endif
Jeff Bolz88220d52019-05-08 10:24:46 -05006378
6379 case glslang::EOpCopyObject:
6380 unaryOp = spv::OpCopyObject;
6381 break;
6382
John Kessenich140f3df2015-06-26 16:58:36 -06006383 default:
6384 return 0;
6385 }
6386
6387 spv::Id id;
6388 if (libCall >= 0) {
6389 std::vector<spv::Id> args;
6390 args.push_back(operand);
Rex Xu9d93a232016-05-05 12:30:44 +08006391 id = builder.createBuiltinCall(typeId, extBuiltins >= 0 ? extBuiltins : stdBuiltins, libCall, args);
Rex Xu338b1852016-05-05 20:38:33 +08006392 } else {
John Kessenich91cef522016-05-05 16:45:40 -06006393 id = builder.createUnaryOp(unaryOp, typeId, operand);
Rex Xu338b1852016-05-05 20:38:33 +08006394 }
John Kessenich140f3df2015-06-26 16:58:36 -06006395
John Kessenichb9197c82019-08-11 07:41:45 -06006396 decorations.addNoContraction(builder, id);
6397 decorations.addNonUniform(builder, id);
John Kessenichead86222018-03-28 18:01:20 -06006398 return builder.setPrecision(id, decorations.precision);
John Kessenich140f3df2015-06-26 16:58:36 -06006399}
6400
John Kessenich7a53f762016-01-20 11:19:27 -07006401// Create a unary operation on a matrix
John Kessenichead86222018-03-28 18:01:20 -06006402spv::Id TGlslangToSpvTraverser::createUnaryMatrixOperation(spv::Op op, OpDecorations& decorations, spv::Id typeId,
6403 spv::Id operand, glslang::TBasicType /* typeProxy */)
John Kessenich7a53f762016-01-20 11:19:27 -07006404{
6405 // Handle unary operations vector by vector.
6406 // The result type is the same type as the original type.
6407 // The algorithm is to:
6408 // - break the matrix into vectors
6409 // - apply the operation to each vector
6410 // - make a matrix out the vector results
6411
6412 // get the types sorted out
6413 int numCols = builder.getNumColumns(operand);
6414 int numRows = builder.getNumRows(operand);
Rex Xuc1992e52016-05-17 18:57:18 +08006415 spv::Id srcVecType = builder.makeVectorType(builder.getScalarTypeId(builder.getTypeId(operand)), numRows);
6416 spv::Id destVecType = builder.makeVectorType(builder.getScalarTypeId(typeId), numRows);
John Kessenich7a53f762016-01-20 11:19:27 -07006417 std::vector<spv::Id> results;
6418
6419 // do each vector op
6420 for (int c = 0; c < numCols; ++c) {
6421 std::vector<unsigned int> indexes;
6422 indexes.push_back(c);
Rex Xuc1992e52016-05-17 18:57:18 +08006423 spv::Id srcVec = builder.createCompositeExtract(operand, srcVecType, indexes);
6424 spv::Id destVec = builder.createUnaryOp(op, destVecType, srcVec);
John Kessenichb9197c82019-08-11 07:41:45 -06006425 decorations.addNoContraction(builder, destVec);
6426 decorations.addNonUniform(builder, destVec);
John Kessenichead86222018-03-28 18:01:20 -06006427 results.push_back(builder.setPrecision(destVec, decorations.precision));
John Kessenich7a53f762016-01-20 11:19:27 -07006428 }
6429
6430 // put the pieces together
John Kessenichead86222018-03-28 18:01:20 -06006431 spv::Id result = builder.setPrecision(builder.createCompositeConstruct(typeId, results), decorations.precision);
John Kessenichb9197c82019-08-11 07:41:45 -06006432 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06006433 return result;
John Kessenich7a53f762016-01-20 11:19:27 -07006434}
6435
John Kessenichad7645f2018-06-04 19:11:25 -06006436// For converting integers where both the bitwidth and the signedness could
6437// change, but only do the width change here. The caller is still responsible
6438// for the signedness conversion.
6439spv::Id TGlslangToSpvTraverser::createIntWidthConversion(glslang::TOperator op, spv::Id operand, int vectorSize)
John Kessenich66011cb2018-03-06 16:12:04 -07006440{
John Kessenichad7645f2018-06-04 19:11:25 -06006441 // Get the result type width, based on the type to convert to.
6442 int width = 32;
John Kessenich66011cb2018-03-06 16:12:04 -07006443 switch(op) {
John Kessenichad7645f2018-06-04 19:11:25 -06006444 case glslang::EOpConvInt16ToUint8:
6445 case glslang::EOpConvIntToUint8:
6446 case glslang::EOpConvInt64ToUint8:
6447 case glslang::EOpConvUint16ToInt8:
6448 case glslang::EOpConvUintToInt8:
6449 case glslang::EOpConvUint64ToInt8:
6450 width = 8;
6451 break;
John Kessenich66011cb2018-03-06 16:12:04 -07006452 case glslang::EOpConvInt8ToUint16:
John Kessenichad7645f2018-06-04 19:11:25 -06006453 case glslang::EOpConvIntToUint16:
6454 case glslang::EOpConvInt64ToUint16:
6455 case glslang::EOpConvUint8ToInt16:
6456 case glslang::EOpConvUintToInt16:
6457 case glslang::EOpConvUint64ToInt16:
6458 width = 16;
John Kessenich66011cb2018-03-06 16:12:04 -07006459 break;
6460 case glslang::EOpConvInt8ToUint:
John Kessenichad7645f2018-06-04 19:11:25 -06006461 case glslang::EOpConvInt16ToUint:
6462 case glslang::EOpConvInt64ToUint:
6463 case glslang::EOpConvUint8ToInt:
6464 case glslang::EOpConvUint16ToInt:
6465 case glslang::EOpConvUint64ToInt:
6466 width = 32;
John Kessenich66011cb2018-03-06 16:12:04 -07006467 break;
6468 case glslang::EOpConvInt8ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006469 case glslang::EOpConvInt16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006470 case glslang::EOpConvIntToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006471 case glslang::EOpConvUint8ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07006472 case glslang::EOpConvUint16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07006473 case glslang::EOpConvUintToInt64:
John Kessenichad7645f2018-06-04 19:11:25 -06006474 width = 64;
John Kessenich66011cb2018-03-06 16:12:04 -07006475 break;
6476
6477 default:
6478 assert(false && "Default missing");
6479 break;
6480 }
6481
John Kessenichad7645f2018-06-04 19:11:25 -06006482 // Get the conversion operation and result type,
6483 // based on the target width, but the source type.
6484 spv::Id type = spv::NoType;
6485 spv::Op convOp = spv::OpNop;
6486 switch(op) {
6487 case glslang::EOpConvInt8ToUint16:
6488 case glslang::EOpConvInt8ToUint:
6489 case glslang::EOpConvInt8ToUint64:
6490 case glslang::EOpConvInt16ToUint8:
6491 case glslang::EOpConvInt16ToUint:
6492 case glslang::EOpConvInt16ToUint64:
6493 case glslang::EOpConvIntToUint8:
6494 case glslang::EOpConvIntToUint16:
6495 case glslang::EOpConvIntToUint64:
6496 case glslang::EOpConvInt64ToUint8:
6497 case glslang::EOpConvInt64ToUint16:
6498 case glslang::EOpConvInt64ToUint:
6499 convOp = spv::OpSConvert;
6500 type = builder.makeIntType(width);
6501 break;
6502 default:
6503 convOp = spv::OpUConvert;
6504 type = builder.makeUintType(width);
6505 break;
6506 }
6507
John Kessenich66011cb2018-03-06 16:12:04 -07006508 if (vectorSize > 0)
6509 type = builder.makeVectorType(type, vectorSize);
6510
John Kessenichad7645f2018-06-04 19:11:25 -06006511 return builder.createUnaryOp(convOp, type, operand);
John Kessenich66011cb2018-03-06 16:12:04 -07006512}
6513
John Kessenichead86222018-03-28 18:01:20 -06006514spv::Id TGlslangToSpvTraverser::createConversion(glslang::TOperator op, OpDecorations& decorations, spv::Id destType,
6515 spv::Id operand, glslang::TBasicType typeProxy)
John Kessenich140f3df2015-06-26 16:58:36 -06006516{
6517 spv::Op convOp = spv::OpNop;
6518 spv::Id zero = 0;
6519 spv::Id one = 0;
6520
6521 int vectorSize = builder.isVectorType(destType) ? builder.getNumTypeComponents(destType) : 0;
6522
6523 switch (op) {
John Kessenich66011cb2018-03-06 16:12:04 -07006524 case glslang::EOpConvIntToBool:
6525 case glslang::EOpConvUintToBool:
6526 zero = builder.makeUintConstant(0);
6527 zero = makeSmearedConstant(zero, vectorSize);
6528 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
John Kessenich140f3df2015-06-26 16:58:36 -06006529 case glslang::EOpConvFloatToBool:
6530 zero = builder.makeFloatConstant(0.0F);
6531 zero = makeSmearedConstant(zero, vectorSize);
Graeme Leese65ce5662020-06-05 13:32:51 +01006532 return builder.createBinOp(spv::OpFUnordNotEqual, destType, operand, zero);
John Kessenich140f3df2015-06-26 16:58:36 -06006533 case glslang::EOpConvBoolToFloat:
6534 convOp = spv::OpSelect;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006535 zero = builder.makeFloatConstant(0.0F);
6536 one = builder.makeFloatConstant(1.0F);
John Kessenich140f3df2015-06-26 16:58:36 -06006537 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006538
John Kessenich140f3df2015-06-26 16:58:36 -06006539 case glslang::EOpConvBoolToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08006540 case glslang::EOpConvBoolToInt64:
John Kessenichb9197c82019-08-11 07:41:45 -06006541#ifndef GLSLANG_WEB
6542 if (op == glslang::EOpConvBoolToInt64) {
Rex Xucabbb782017-03-24 13:41:14 +08006543 zero = builder.makeInt64Constant(0);
Rex Xucabbb782017-03-24 13:41:14 +08006544 one = builder.makeInt64Constant(1);
John Kessenichb9197c82019-08-11 07:41:45 -06006545 } else
6546#endif
6547 {
6548 zero = builder.makeIntConstant(0);
Rex Xucabbb782017-03-24 13:41:14 +08006549 one = builder.makeIntConstant(1);
John Kessenichb9197c82019-08-11 07:41:45 -06006550 }
Rex Xucabbb782017-03-24 13:41:14 +08006551
John Kessenich140f3df2015-06-26 16:58:36 -06006552 convOp = spv::OpSelect;
6553 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006554
John Kessenich140f3df2015-06-26 16:58:36 -06006555 case glslang::EOpConvBoolToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08006556 case glslang::EOpConvBoolToUint64:
John Kessenichb9197c82019-08-11 07:41:45 -06006557#ifndef GLSLANG_WEB
6558 if (op == glslang::EOpConvBoolToUint64) {
Rex Xucabbb782017-03-24 13:41:14 +08006559 zero = builder.makeUint64Constant(0);
Rex Xucabbb782017-03-24 13:41:14 +08006560 one = builder.makeUint64Constant(1);
John Kessenichb9197c82019-08-11 07:41:45 -06006561 } else
6562#endif
6563 {
6564 zero = builder.makeUintConstant(0);
Rex Xucabbb782017-03-24 13:41:14 +08006565 one = builder.makeUintConstant(1);
John Kessenichb9197c82019-08-11 07:41:45 -06006566 }
Rex Xucabbb782017-03-24 13:41:14 +08006567
John Kessenich140f3df2015-06-26 16:58:36 -06006568 convOp = spv::OpSelect;
6569 break;
6570
John Kessenich66011cb2018-03-06 16:12:04 -07006571 case glslang::EOpConvInt8ToFloat16:
6572 case glslang::EOpConvInt8ToFloat:
6573 case glslang::EOpConvInt8ToDouble:
6574 case glslang::EOpConvInt16ToFloat16:
6575 case glslang::EOpConvInt16ToFloat:
6576 case glslang::EOpConvInt16ToDouble:
6577 case glslang::EOpConvIntToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06006578 case glslang::EOpConvIntToFloat:
6579 case glslang::EOpConvIntToDouble:
Rex Xu8ff43de2016-04-22 16:51:45 +08006580 case glslang::EOpConvInt64ToFloat:
6581 case glslang::EOpConvInt64ToDouble:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006582 case glslang::EOpConvInt64ToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06006583 convOp = spv::OpConvertSToF;
6584 break;
6585
John Kessenich66011cb2018-03-06 16:12:04 -07006586 case glslang::EOpConvUint8ToFloat16:
6587 case glslang::EOpConvUint8ToFloat:
6588 case glslang::EOpConvUint8ToDouble:
6589 case glslang::EOpConvUint16ToFloat16:
6590 case glslang::EOpConvUint16ToFloat:
6591 case glslang::EOpConvUint16ToDouble:
6592 case glslang::EOpConvUintToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06006593 case glslang::EOpConvUintToFloat:
6594 case glslang::EOpConvUintToDouble:
Rex Xu8ff43de2016-04-22 16:51:45 +08006595 case glslang::EOpConvUint64ToFloat:
6596 case glslang::EOpConvUint64ToDouble:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006597 case glslang::EOpConvUint64ToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06006598 convOp = spv::OpConvertUToF;
6599 break;
6600
John Kessenich66011cb2018-03-06 16:12:04 -07006601 case glslang::EOpConvFloat16ToInt8:
6602 case glslang::EOpConvFloatToInt8:
6603 case glslang::EOpConvDoubleToInt8:
6604 case glslang::EOpConvFloat16ToInt16:
Rex Xucabbb782017-03-24 13:41:14 +08006605 case glslang::EOpConvFloatToInt16:
6606 case glslang::EOpConvDoubleToInt16:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006607 case glslang::EOpConvFloat16ToInt:
John Kessenich66011cb2018-03-06 16:12:04 -07006608 case glslang::EOpConvFloatToInt:
6609 case glslang::EOpConvDoubleToInt:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006610 case glslang::EOpConvFloat16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07006611 case glslang::EOpConvFloatToInt64:
6612 case glslang::EOpConvDoubleToInt64:
John Kessenich140f3df2015-06-26 16:58:36 -06006613 convOp = spv::OpConvertFToS;
6614 break;
6615
John Kessenich66011cb2018-03-06 16:12:04 -07006616 case glslang::EOpConvUint8ToInt8:
6617 case glslang::EOpConvInt8ToUint8:
6618 case glslang::EOpConvUint16ToInt16:
6619 case glslang::EOpConvInt16ToUint16:
John Kessenich140f3df2015-06-26 16:58:36 -06006620 case glslang::EOpConvUintToInt:
6621 case glslang::EOpConvIntToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08006622 case glslang::EOpConvUint64ToInt64:
6623 case glslang::EOpConvInt64ToUint64:
qininge24aa5e2016-04-07 15:40:27 -04006624 if (builder.isInSpecConstCodeGenMode()) {
6625 // Build zero scalar or vector for OpIAdd.
John Kessenich39697cd2019-08-08 10:35:51 -06006626#ifndef GLSLANG_WEB
John Kessenich66011cb2018-03-06 16:12:04 -07006627 if(op == glslang::EOpConvUint8ToInt8 || op == glslang::EOpConvInt8ToUint8) {
6628 zero = builder.makeUint8Constant(0);
6629 } else if (op == glslang::EOpConvUint16ToInt16 || op == glslang::EOpConvInt16ToUint16) {
Rex Xucabbb782017-03-24 13:41:14 +08006630 zero = builder.makeUint16Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006631 } else if (op == glslang::EOpConvUint64ToInt64 || op == glslang::EOpConvInt64ToUint64) {
6632 zero = builder.makeUint64Constant(0);
John Kessenich39697cd2019-08-08 10:35:51 -06006633 } else
6634#endif
6635 {
Rex Xucabbb782017-03-24 13:41:14 +08006636 zero = builder.makeUintConstant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006637 }
qining189b2032016-04-12 23:16:20 -04006638 zero = makeSmearedConstant(zero, vectorSize);
qininge24aa5e2016-04-07 15:40:27 -04006639 // Use OpIAdd, instead of OpBitcast to do the conversion when
6640 // generating for OpSpecConstantOp instruction.
6641 return builder.createBinOp(spv::OpIAdd, destType, operand, zero);
6642 }
6643 // For normal run-time conversion instruction, use OpBitcast.
John Kessenich140f3df2015-06-26 16:58:36 -06006644 convOp = spv::OpBitcast;
6645 break;
6646
John Kessenich66011cb2018-03-06 16:12:04 -07006647 case glslang::EOpConvFloat16ToUint8:
6648 case glslang::EOpConvFloatToUint8:
6649 case glslang::EOpConvDoubleToUint8:
6650 case glslang::EOpConvFloat16ToUint16:
6651 case glslang::EOpConvFloatToUint16:
6652 case glslang::EOpConvDoubleToUint16:
6653 case glslang::EOpConvFloat16ToUint:
John Kessenich140f3df2015-06-26 16:58:36 -06006654 case glslang::EOpConvFloatToUint:
6655 case glslang::EOpConvDoubleToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08006656 case glslang::EOpConvFloatToUint64:
6657 case glslang::EOpConvDoubleToUint64:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006658 case glslang::EOpConvFloat16ToUint64:
John Kessenich140f3df2015-06-26 16:58:36 -06006659 convOp = spv::OpConvertFToU;
6660 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08006661
John Kessenich39697cd2019-08-08 10:35:51 -06006662#ifndef GLSLANG_WEB
6663 case glslang::EOpConvInt8ToBool:
6664 case glslang::EOpConvUint8ToBool:
6665 zero = builder.makeUint8Constant(0);
6666 zero = makeSmearedConstant(zero, vectorSize);
6667 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
6668 case glslang::EOpConvInt16ToBool:
6669 case glslang::EOpConvUint16ToBool:
6670 zero = builder.makeUint16Constant(0);
6671 zero = makeSmearedConstant(zero, vectorSize);
6672 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
6673 case glslang::EOpConvInt64ToBool:
6674 case glslang::EOpConvUint64ToBool:
6675 zero = builder.makeUint64Constant(0);
6676 zero = makeSmearedConstant(zero, vectorSize);
6677 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
6678 case glslang::EOpConvDoubleToBool:
6679 zero = builder.makeDoubleConstant(0.0);
6680 zero = makeSmearedConstant(zero, vectorSize);
Graeme Leese65ce5662020-06-05 13:32:51 +01006681 return builder.createBinOp(spv::OpFUnordNotEqual, destType, operand, zero);
John Kessenich39697cd2019-08-08 10:35:51 -06006682 case glslang::EOpConvFloat16ToBool:
6683 zero = builder.makeFloat16Constant(0.0F);
6684 zero = makeSmearedConstant(zero, vectorSize);
Graeme Leese65ce5662020-06-05 13:32:51 +01006685 return builder.createBinOp(spv::OpFUnordNotEqual, destType, operand, zero);
John Kessenich39697cd2019-08-08 10:35:51 -06006686 case glslang::EOpConvBoolToDouble:
6687 convOp = spv::OpSelect;
6688 zero = builder.makeDoubleConstant(0.0);
6689 one = builder.makeDoubleConstant(1.0);
6690 break;
6691 case glslang::EOpConvBoolToFloat16:
6692 convOp = spv::OpSelect;
6693 zero = builder.makeFloat16Constant(0.0F);
6694 one = builder.makeFloat16Constant(1.0F);
6695 break;
6696 case glslang::EOpConvBoolToInt8:
6697 zero = builder.makeInt8Constant(0);
6698 one = builder.makeInt8Constant(1);
6699 convOp = spv::OpSelect;
6700 break;
6701 case glslang::EOpConvBoolToUint8:
6702 zero = builder.makeUint8Constant(0);
6703 one = builder.makeUint8Constant(1);
6704 convOp = spv::OpSelect;
6705 break;
6706 case glslang::EOpConvBoolToInt16:
6707 zero = builder.makeInt16Constant(0);
6708 one = builder.makeInt16Constant(1);
6709 convOp = spv::OpSelect;
6710 break;
6711 case glslang::EOpConvBoolToUint16:
6712 zero = builder.makeUint16Constant(0);
6713 one = builder.makeUint16Constant(1);
6714 convOp = spv::OpSelect;
6715 break;
6716 case glslang::EOpConvDoubleToFloat:
6717 case glslang::EOpConvFloatToDouble:
6718 case glslang::EOpConvDoubleToFloat16:
6719 case glslang::EOpConvFloat16ToDouble:
6720 case glslang::EOpConvFloatToFloat16:
6721 case glslang::EOpConvFloat16ToFloat:
6722 convOp = spv::OpFConvert;
6723 if (builder.isMatrixType(destType))
6724 return createUnaryMatrixOperation(convOp, decorations, destType, operand, typeProxy);
6725 break;
6726
John Kessenich66011cb2018-03-06 16:12:04 -07006727 case glslang::EOpConvInt8ToInt16:
6728 case glslang::EOpConvInt8ToInt:
6729 case glslang::EOpConvInt8ToInt64:
6730 case glslang::EOpConvInt16ToInt8:
Rex Xucabbb782017-03-24 13:41:14 +08006731 case glslang::EOpConvInt16ToInt:
Rex Xucabbb782017-03-24 13:41:14 +08006732 case glslang::EOpConvInt16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07006733 case glslang::EOpConvIntToInt8:
6734 case glslang::EOpConvIntToInt16:
6735 case glslang::EOpConvIntToInt64:
6736 case glslang::EOpConvInt64ToInt8:
6737 case glslang::EOpConvInt64ToInt16:
6738 case glslang::EOpConvInt64ToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08006739 convOp = spv::OpSConvert;
6740 break;
6741
John Kessenich66011cb2018-03-06 16:12:04 -07006742 case glslang::EOpConvUint8ToUint16:
6743 case glslang::EOpConvUint8ToUint:
6744 case glslang::EOpConvUint8ToUint64:
6745 case glslang::EOpConvUint16ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08006746 case glslang::EOpConvUint16ToUint:
Rex Xucabbb782017-03-24 13:41:14 +08006747 case glslang::EOpConvUint16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006748 case glslang::EOpConvUintToUint8:
6749 case glslang::EOpConvUintToUint16:
6750 case glslang::EOpConvUintToUint64:
6751 case glslang::EOpConvUint64ToUint8:
6752 case glslang::EOpConvUint64ToUint16:
6753 case glslang::EOpConvUint64ToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08006754 convOp = spv::OpUConvert;
6755 break;
6756
John Kessenich66011cb2018-03-06 16:12:04 -07006757 case glslang::EOpConvInt8ToUint16:
6758 case glslang::EOpConvInt8ToUint:
6759 case glslang::EOpConvInt8ToUint64:
6760 case glslang::EOpConvInt16ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08006761 case glslang::EOpConvInt16ToUint:
Rex Xucabbb782017-03-24 13:41:14 +08006762 case glslang::EOpConvInt16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006763 case glslang::EOpConvIntToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08006764 case glslang::EOpConvIntToUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07006765 case glslang::EOpConvIntToUint64:
6766 case glslang::EOpConvInt64ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08006767 case glslang::EOpConvInt64ToUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07006768 case glslang::EOpConvInt64ToUint:
6769 case glslang::EOpConvUint8ToInt16:
6770 case glslang::EOpConvUint8ToInt:
6771 case glslang::EOpConvUint8ToInt64:
6772 case glslang::EOpConvUint16ToInt8:
6773 case glslang::EOpConvUint16ToInt:
6774 case glslang::EOpConvUint16ToInt64:
6775 case glslang::EOpConvUintToInt8:
6776 case glslang::EOpConvUintToInt16:
6777 case glslang::EOpConvUintToInt64:
6778 case glslang::EOpConvUint64ToInt8:
6779 case glslang::EOpConvUint64ToInt16:
6780 case glslang::EOpConvUint64ToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08006781 // OpSConvert/OpUConvert + OpBitCast
John Kessenichad7645f2018-06-04 19:11:25 -06006782 operand = createIntWidthConversion(op, operand, vectorSize);
Rex Xu8ff43de2016-04-22 16:51:45 +08006783
6784 if (builder.isInSpecConstCodeGenMode()) {
6785 // Build zero scalar or vector for OpIAdd.
John Kessenich66011cb2018-03-06 16:12:04 -07006786 switch(op) {
6787 case glslang::EOpConvInt16ToUint8:
6788 case glslang::EOpConvIntToUint8:
6789 case glslang::EOpConvInt64ToUint8:
6790 case glslang::EOpConvUint16ToInt8:
6791 case glslang::EOpConvUintToInt8:
6792 case glslang::EOpConvUint64ToInt8:
6793 zero = builder.makeUint8Constant(0);
6794 break;
6795 case glslang::EOpConvInt8ToUint16:
6796 case glslang::EOpConvIntToUint16:
6797 case glslang::EOpConvInt64ToUint16:
6798 case glslang::EOpConvUint8ToInt16:
6799 case glslang::EOpConvUintToInt16:
6800 case glslang::EOpConvUint64ToInt16:
Rex Xucabbb782017-03-24 13:41:14 +08006801 zero = builder.makeUint16Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006802 break;
6803 case glslang::EOpConvInt8ToUint:
6804 case glslang::EOpConvInt16ToUint:
6805 case glslang::EOpConvInt64ToUint:
6806 case glslang::EOpConvUint8ToInt:
6807 case glslang::EOpConvUint16ToInt:
6808 case glslang::EOpConvUint64ToInt:
Rex Xucabbb782017-03-24 13:41:14 +08006809 zero = builder.makeUintConstant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006810 break;
6811 case glslang::EOpConvInt8ToUint64:
6812 case glslang::EOpConvInt16ToUint64:
6813 case glslang::EOpConvIntToUint64:
6814 case glslang::EOpConvUint8ToInt64:
6815 case glslang::EOpConvUint16ToInt64:
6816 case glslang::EOpConvUintToInt64:
Rex Xucabbb782017-03-24 13:41:14 +08006817 zero = builder.makeUint64Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006818 break;
6819 default:
6820 assert(false && "Default missing");
6821 break;
6822 }
Rex Xu8ff43de2016-04-22 16:51:45 +08006823 zero = makeSmearedConstant(zero, vectorSize);
6824 // Use OpIAdd, instead of OpBitcast to do the conversion when
6825 // generating for OpSpecConstantOp instruction.
6826 return builder.createBinOp(spv::OpIAdd, destType, operand, zero);
6827 }
6828 // For normal run-time conversion instruction, use OpBitcast.
6829 convOp = spv::OpBitcast;
6830 break;
Jeff Bolz9f2aec42019-01-06 17:58:04 -06006831 case glslang::EOpConvUint64ToPtr:
6832 convOp = spv::OpConvertUToPtr;
6833 break;
6834 case glslang::EOpConvPtrToUint64:
6835 convOp = spv::OpConvertPtrToU;
6836 break;
John Kessenich90e402f2019-09-17 23:19:38 -06006837 case glslang::EOpConvPtrToUvec2:
6838 case glslang::EOpConvUvec2ToPtr:
John Kessenichee8e9c12019-10-10 20:54:21 -06006839 if (builder.isVector(operand))
6840 builder.promoteIncorporatedExtension(spv::E_SPV_EXT_physical_storage_buffer,
6841 spv::E_SPV_KHR_physical_storage_buffer, spv::Spv_1_5);
John Kessenich90e402f2019-09-17 23:19:38 -06006842 convOp = spv::OpBitcast;
6843 break;
John Kessenich39697cd2019-08-08 10:35:51 -06006844#endif
6845
John Kessenich140f3df2015-06-26 16:58:36 -06006846 default:
6847 break;
6848 }
6849
6850 spv::Id result = 0;
6851 if (convOp == spv::OpNop)
6852 return result;
6853
6854 if (convOp == spv::OpSelect) {
6855 zero = makeSmearedConstant(zero, vectorSize);
6856 one = makeSmearedConstant(one, vectorSize);
6857 result = builder.createTriOp(convOp, destType, operand, one, zero);
6858 } else
6859 result = builder.createUnaryOp(convOp, destType, operand);
6860
John Kessenichead86222018-03-28 18:01:20 -06006861 result = builder.setPrecision(result, decorations.precision);
John Kessenichb9197c82019-08-11 07:41:45 -06006862 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06006863 return result;
John Kessenich140f3df2015-06-26 16:58:36 -06006864}
6865
6866spv::Id TGlslangToSpvTraverser::makeSmearedConstant(spv::Id constant, int vectorSize)
6867{
6868 if (vectorSize == 0)
6869 return constant;
6870
6871 spv::Id vectorTypeId = builder.makeVectorType(builder.getTypeId(constant), vectorSize);
6872 std::vector<spv::Id> components;
6873 for (int c = 0; c < vectorSize; ++c)
6874 components.push_back(constant);
6875 return builder.makeCompositeConstant(vectorTypeId, components);
6876}
6877
John Kessenich426394d2015-07-23 10:22:48 -06006878// For glslang ops that map to SPV atomic opCodes
John Kessenich8985fc92020-03-03 10:25:07 -07006879spv::Id TGlslangToSpvTraverser::createAtomicOperation(glslang::TOperator op, spv::Decoration /*precision*/,
6880 spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy,
6881 const spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags)
John Kessenich426394d2015-07-23 10:22:48 -06006882{
6883 spv::Op opCode = spv::OpNop;
6884
6885 switch (op) {
6886 case glslang::EOpAtomicAdd:
Rex Xufc618912015-09-09 16:42:49 +08006887 case glslang::EOpImageAtomicAdd:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006888 case glslang::EOpAtomicCounterAdd:
John Kessenich426394d2015-07-23 10:22:48 -06006889 opCode = spv::OpAtomicIAdd;
Vikram Kushwaha79b93922020-07-19 15:45:01 -07006890 if (typeProxy == glslang::EbtFloat || typeProxy == glslang::EbtDouble) {
6891 opCode = spv::OpAtomicFAddEXT;
6892 builder.addExtension(spv::E_SPV_EXT_shader_atomic_float_add);
6893 if (typeProxy == glslang::EbtFloat)
6894 builder.addCapability(spv::CapabilityAtomicFloat32AddEXT);
6895 else
6896 builder.addCapability(spv::CapabilityAtomicFloat64AddEXT);
6897 }
John Kessenich426394d2015-07-23 10:22:48 -06006898 break;
greg-lunarg4e064ee2021-03-15 11:26:11 -06006899 case glslang::EOpAtomicSubtract:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006900 case glslang::EOpAtomicCounterSubtract:
6901 opCode = spv::OpAtomicISub;
6902 break;
John Kessenich426394d2015-07-23 10:22:48 -06006903 case glslang::EOpAtomicMin:
Rex Xufc618912015-09-09 16:42:49 +08006904 case glslang::EOpImageAtomicMin:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006905 case glslang::EOpAtomicCounterMin:
John Kessenich8985fc92020-03-03 10:25:07 -07006906 opCode = (typeProxy == glslang::EbtUint || typeProxy == glslang::EbtUint64) ?
6907 spv::OpAtomicUMin : spv::OpAtomicSMin;
John Kessenich426394d2015-07-23 10:22:48 -06006908 break;
6909 case glslang::EOpAtomicMax:
Rex Xufc618912015-09-09 16:42:49 +08006910 case glslang::EOpImageAtomicMax:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006911 case glslang::EOpAtomicCounterMax:
John Kessenich8985fc92020-03-03 10:25:07 -07006912 opCode = (typeProxy == glslang::EbtUint || typeProxy == glslang::EbtUint64) ?
6913 spv::OpAtomicUMax : spv::OpAtomicSMax;
John Kessenich426394d2015-07-23 10:22:48 -06006914 break;
6915 case glslang::EOpAtomicAnd:
Rex Xufc618912015-09-09 16:42:49 +08006916 case glslang::EOpImageAtomicAnd:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006917 case glslang::EOpAtomicCounterAnd:
John Kessenich426394d2015-07-23 10:22:48 -06006918 opCode = spv::OpAtomicAnd;
6919 break;
6920 case glslang::EOpAtomicOr:
Rex Xufc618912015-09-09 16:42:49 +08006921 case glslang::EOpImageAtomicOr:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006922 case glslang::EOpAtomicCounterOr:
John Kessenich426394d2015-07-23 10:22:48 -06006923 opCode = spv::OpAtomicOr;
6924 break;
6925 case glslang::EOpAtomicXor:
Rex Xufc618912015-09-09 16:42:49 +08006926 case glslang::EOpImageAtomicXor:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006927 case glslang::EOpAtomicCounterXor:
John Kessenich426394d2015-07-23 10:22:48 -06006928 opCode = spv::OpAtomicXor;
6929 break;
6930 case glslang::EOpAtomicExchange:
Rex Xufc618912015-09-09 16:42:49 +08006931 case glslang::EOpImageAtomicExchange:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006932 case glslang::EOpAtomicCounterExchange:
John Kessenich426394d2015-07-23 10:22:48 -06006933 opCode = spv::OpAtomicExchange;
6934 break;
6935 case glslang::EOpAtomicCompSwap:
Rex Xufc618912015-09-09 16:42:49 +08006936 case glslang::EOpImageAtomicCompSwap:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006937 case glslang::EOpAtomicCounterCompSwap:
John Kessenich426394d2015-07-23 10:22:48 -06006938 opCode = spv::OpAtomicCompareExchange;
6939 break;
6940 case glslang::EOpAtomicCounterIncrement:
6941 opCode = spv::OpAtomicIIncrement;
6942 break;
6943 case glslang::EOpAtomicCounterDecrement:
6944 opCode = spv::OpAtomicIDecrement;
6945 break;
6946 case glslang::EOpAtomicCounter:
Jeff Bolz36831c92018-09-05 10:11:41 -05006947 case glslang::EOpImageAtomicLoad:
6948 case glslang::EOpAtomicLoad:
John Kessenich426394d2015-07-23 10:22:48 -06006949 opCode = spv::OpAtomicLoad;
6950 break;
Jeff Bolz36831c92018-09-05 10:11:41 -05006951 case glslang::EOpAtomicStore:
6952 case glslang::EOpImageAtomicStore:
6953 opCode = spv::OpAtomicStore;
6954 break;
John Kessenich426394d2015-07-23 10:22:48 -06006955 default:
John Kessenich55e7d112015-11-15 21:33:39 -07006956 assert(0);
John Kessenich426394d2015-07-23 10:22:48 -06006957 break;
6958 }
6959
Rex Xue8fe8b02017-09-26 15:42:56 +08006960 if (typeProxy == glslang::EbtInt64 || typeProxy == glslang::EbtUint64)
6961 builder.addCapability(spv::CapabilityInt64Atomics);
6962
John Kessenich426394d2015-07-23 10:22:48 -06006963 // Sort out the operands
6964 // - mapping from glslang -> SPV
Jeff Bolz36831c92018-09-05 10:11:41 -05006965 // - there are extra SPV operands that are optional in glslang
John Kessenich3e60a6f2015-09-14 22:45:16 -06006966 // - compare-exchange swaps the value and comparator
6967 // - compare-exchange has an extra memory semantics
John Kessenich48d6e792017-10-06 21:21:48 -06006968 // - EOpAtomicCounterDecrement needs a post decrement
Jeff Bolz36831c92018-09-05 10:11:41 -05006969 spv::Id pointerId = 0, compareId = 0, valueId = 0;
6970 // scope defaults to Device in the old model, QueueFamilyKHR in the new model
6971 spv::Id scopeId;
6972 if (glslangIntermediate->usingVulkanMemoryModel()) {
6973 scopeId = builder.makeUintConstant(spv::ScopeQueueFamilyKHR);
6974 } else {
6975 scopeId = builder.makeUintConstant(spv::ScopeDevice);
6976 }
6977 // semantics default to relaxed
John Kessenich8985fc92020-03-03 10:25:07 -07006978 spv::Id semanticsId = builder.makeUintConstant(lvalueCoherentFlags.isVolatile() &&
6979 glslangIntermediate->usingVulkanMemoryModel() ?
John Kessenichb9197c82019-08-11 07:41:45 -06006980 spv::MemorySemanticsVolatileMask :
6981 spv::MemorySemanticsMaskNone);
Jeff Bolz36831c92018-09-05 10:11:41 -05006982 spv::Id semanticsId2 = semanticsId;
6983
6984 pointerId = operands[0];
6985 if (opCode == spv::OpAtomicIIncrement || opCode == spv::OpAtomicIDecrement) {
6986 // no additional operands
6987 } else if (opCode == spv::OpAtomicCompareExchange) {
6988 compareId = operands[1];
6989 valueId = operands[2];
6990 if (operands.size() > 3) {
6991 scopeId = operands[3];
John Kessenich8985fc92020-03-03 10:25:07 -07006992 semanticsId = builder.makeUintConstant(
6993 builder.getConstantScalar(operands[4]) | builder.getConstantScalar(operands[5]));
6994 semanticsId2 = builder.makeUintConstant(
6995 builder.getConstantScalar(operands[6]) | builder.getConstantScalar(operands[7]));
Jeff Bolz36831c92018-09-05 10:11:41 -05006996 }
6997 } else if (opCode == spv::OpAtomicLoad) {
6998 if (operands.size() > 1) {
6999 scopeId = operands[1];
John Kessenich8985fc92020-03-03 10:25:07 -07007000 semanticsId = builder.makeUintConstant(
7001 builder.getConstantScalar(operands[2]) | builder.getConstantScalar(operands[3]));
Jeff Bolz36831c92018-09-05 10:11:41 -05007002 }
7003 } else {
7004 // atomic store or RMW
7005 valueId = operands[1];
7006 if (operands.size() > 2) {
7007 scopeId = operands[2];
John Kessenich8985fc92020-03-03 10:25:07 -07007008 semanticsId = builder.makeUintConstant
7009 (builder.getConstantScalar(operands[3]) | builder.getConstantScalar(operands[4]));
Jeff Bolz36831c92018-09-05 10:11:41 -05007010 }
Rex Xu04db3f52015-09-16 11:44:02 +08007011 }
John Kessenich426394d2015-07-23 10:22:48 -06007012
Jeff Bolz36831c92018-09-05 10:11:41 -05007013 // Check for capabilities
7014 unsigned semanticsImmediate = builder.getConstantScalar(semanticsId) | builder.getConstantScalar(semanticsId2);
Jeff Bolz38a52fc2019-06-14 09:56:28 -05007015 if (semanticsImmediate & (spv::MemorySemanticsMakeAvailableKHRMask |
7016 spv::MemorySemanticsMakeVisibleKHRMask |
7017 spv::MemorySemanticsOutputMemoryKHRMask |
7018 spv::MemorySemanticsVolatileMask)) {
Jeff Bolz36831c92018-09-05 10:11:41 -05007019 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7020 }
John Kessenich426394d2015-07-23 10:22:48 -06007021
Jeff Bolzbfd84a32021-01-27 13:14:34 -06007022 if (builder.getConstantScalar(scopeId) == spv::ScopeQueueFamily) {
7023 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7024 }
7025
Jeff Bolz36831c92018-09-05 10:11:41 -05007026 if (glslangIntermediate->usingVulkanMemoryModel() && builder.getConstantScalar(scopeId) == spv::ScopeDevice) {
7027 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
7028 }
John Kessenich48d6e792017-10-06 21:21:48 -06007029
Jeff Bolz36831c92018-09-05 10:11:41 -05007030 std::vector<spv::Id> spvAtomicOperands; // hold the spv operands
7031 spvAtomicOperands.push_back(pointerId);
7032 spvAtomicOperands.push_back(scopeId);
7033 spvAtomicOperands.push_back(semanticsId);
7034 if (opCode == spv::OpAtomicCompareExchange) {
7035 spvAtomicOperands.push_back(semanticsId2);
7036 spvAtomicOperands.push_back(valueId);
7037 spvAtomicOperands.push_back(compareId);
7038 } else if (opCode != spv::OpAtomicLoad && opCode != spv::OpAtomicIIncrement && opCode != spv::OpAtomicIDecrement) {
7039 spvAtomicOperands.push_back(valueId);
7040 }
John Kessenich48d6e792017-10-06 21:21:48 -06007041
Jeff Bolz36831c92018-09-05 10:11:41 -05007042 if (opCode == spv::OpAtomicStore) {
7043 builder.createNoResultOp(opCode, spvAtomicOperands);
7044 return 0;
7045 } else {
7046 spv::Id resultId = builder.createOp(opCode, typeId, spvAtomicOperands);
7047
7048 // GLSL and HLSL atomic-counter decrement return post-decrement value,
7049 // while SPIR-V returns pre-decrement value. Translate between these semantics.
7050 if (op == glslang::EOpAtomicCounterDecrement)
7051 resultId = builder.createBinOp(spv::OpISub, typeId, resultId, builder.makeIntConstant(1));
7052
7053 return resultId;
7054 }
John Kessenich426394d2015-07-23 10:22:48 -06007055}
7056
John Kessenich91cef522016-05-05 16:45:40 -06007057// Create group invocation operations.
John Kessenich8985fc92020-03-03 10:25:07 -07007058spv::Id TGlslangToSpvTraverser::createInvocationsOperation(glslang::TOperator op, spv::Id typeId,
7059 std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich91cef522016-05-05 16:45:40 -06007060{
John Kessenich66011cb2018-03-06 16:12:04 -07007061 bool isUnsigned = isTypeUnsignedInt(typeProxy);
7062 bool isFloat = isTypeFloat(typeProxy);
Rex Xu9d93a232016-05-05 12:30:44 +08007063
Rex Xu51596642016-09-21 18:56:12 +08007064 spv::Op opCode = spv::OpNop;
John Kessenich149afc32018-08-14 13:31:43 -06007065 std::vector<spv::IdImmediate> spvGroupOperands;
Rex Xu430ef402016-10-14 17:22:23 +08007066 spv::GroupOperation groupOperation = spv::GroupOperationMax;
7067
chaocf200da82016-12-20 12:44:35 -08007068 if (op == glslang::EOpBallot || op == glslang::EOpReadFirstInvocation ||
7069 op == glslang::EOpReadInvocation) {
Rex Xu51596642016-09-21 18:56:12 +08007070 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
7071 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08007072 } else if (op == glslang::EOpAnyInvocation ||
7073 op == glslang::EOpAllInvocations ||
7074 op == glslang::EOpAllInvocationsEqual) {
7075 builder.addExtension(spv::E_SPV_KHR_subgroup_vote);
7076 builder.addCapability(spv::CapabilitySubgroupVoteKHR);
Rex Xu51596642016-09-21 18:56:12 +08007077 } else {
7078 builder.addCapability(spv::CapabilityGroups);
Rex Xu17ff3432016-10-14 17:41:45 +08007079 if (op == glslang::EOpMinInvocationsNonUniform ||
7080 op == glslang::EOpMaxInvocationsNonUniform ||
Rex Xu430ef402016-10-14 17:22:23 +08007081 op == glslang::EOpAddInvocationsNonUniform ||
7082 op == glslang::EOpMinInvocationsInclusiveScanNonUniform ||
7083 op == glslang::EOpMaxInvocationsInclusiveScanNonUniform ||
7084 op == glslang::EOpAddInvocationsInclusiveScanNonUniform ||
7085 op == glslang::EOpMinInvocationsExclusiveScanNonUniform ||
7086 op == glslang::EOpMaxInvocationsExclusiveScanNonUniform ||
7087 op == glslang::EOpAddInvocationsExclusiveScanNonUniform)
Rex Xu17ff3432016-10-14 17:41:45 +08007088 builder.addExtension(spv::E_SPV_AMD_shader_ballot);
Rex Xu51596642016-09-21 18:56:12 +08007089
Rex Xu430ef402016-10-14 17:22:23 +08007090 switch (op) {
7091 case glslang::EOpMinInvocations:
7092 case glslang::EOpMaxInvocations:
7093 case glslang::EOpAddInvocations:
7094 case glslang::EOpMinInvocationsNonUniform:
7095 case glslang::EOpMaxInvocationsNonUniform:
7096 case glslang::EOpAddInvocationsNonUniform:
7097 groupOperation = spv::GroupOperationReduce;
Rex Xu430ef402016-10-14 17:22:23 +08007098 break;
7099 case glslang::EOpMinInvocationsInclusiveScan:
7100 case glslang::EOpMaxInvocationsInclusiveScan:
7101 case glslang::EOpAddInvocationsInclusiveScan:
7102 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
7103 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
7104 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
7105 groupOperation = spv::GroupOperationInclusiveScan;
Rex Xu430ef402016-10-14 17:22:23 +08007106 break;
7107 case glslang::EOpMinInvocationsExclusiveScan:
7108 case glslang::EOpMaxInvocationsExclusiveScan:
7109 case glslang::EOpAddInvocationsExclusiveScan:
7110 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
7111 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
7112 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
7113 groupOperation = spv::GroupOperationExclusiveScan;
Rex Xu430ef402016-10-14 17:22:23 +08007114 break;
Mike Weiblen4e9e4002017-01-20 13:34:10 -07007115 default:
7116 break;
Rex Xu430ef402016-10-14 17:22:23 +08007117 }
John Kessenich149afc32018-08-14 13:31:43 -06007118 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
7119 spvGroupOperands.push_back(scope);
7120 if (groupOperation != spv::GroupOperationMax) {
John Kessenichd122a722018-09-18 03:43:30 -06007121 spv::IdImmediate groupOp = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06007122 spvGroupOperands.push_back(groupOp);
7123 }
Rex Xu51596642016-09-21 18:56:12 +08007124 }
7125
John Kessenich149afc32018-08-14 13:31:43 -06007126 for (auto opIt = operands.begin(); opIt != operands.end(); ++opIt) {
7127 spv::IdImmediate op = { true, *opIt };
7128 spvGroupOperands.push_back(op);
7129 }
John Kessenich91cef522016-05-05 16:45:40 -06007130
7131 switch (op) {
7132 case glslang::EOpAnyInvocation:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08007133 opCode = spv::OpSubgroupAnyKHR;
Rex Xu51596642016-09-21 18:56:12 +08007134 break;
John Kessenich91cef522016-05-05 16:45:40 -06007135 case glslang::EOpAllInvocations:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08007136 opCode = spv::OpSubgroupAllKHR;
Rex Xu51596642016-09-21 18:56:12 +08007137 break;
John Kessenich91cef522016-05-05 16:45:40 -06007138 case glslang::EOpAllInvocationsEqual:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08007139 opCode = spv::OpSubgroupAllEqualKHR;
7140 break;
Rex Xu51596642016-09-21 18:56:12 +08007141 case glslang::EOpReadInvocation:
chaocf200da82016-12-20 12:44:35 -08007142 opCode = spv::OpSubgroupReadInvocationKHR;
Rex Xub7072052016-09-26 15:53:40 +08007143 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08007144 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08007145 break;
7146 case glslang::EOpReadFirstInvocation:
7147 opCode = spv::OpSubgroupFirstInvocationKHR;
7148 break;
7149 case glslang::EOpBallot:
7150 {
7151 // NOTE: According to the spec, the result type of "OpSubgroupBallotKHR" must be a 4 component vector of 32
7152 // bit integer types. The GLSL built-in function "ballotARB()" assumes the maximum number of invocations in
7153 // a subgroup is 64. Thus, we have to convert uvec4.xy to uint64_t as follow:
7154 //
7155 // result = Bitcast(SubgroupBallotKHR(Predicate).xy)
7156 //
7157 spv::Id uintType = builder.makeUintType(32);
7158 spv::Id uvec4Type = builder.makeVectorType(uintType, 4);
7159 spv::Id result = builder.createOp(spv::OpSubgroupBallotKHR, uvec4Type, spvGroupOperands);
7160
7161 std::vector<spv::Id> components;
7162 components.push_back(builder.createCompositeExtract(result, uintType, 0));
7163 components.push_back(builder.createCompositeExtract(result, uintType, 1));
7164
7165 spv::Id uvec2Type = builder.makeVectorType(uintType, 2);
7166 return builder.createUnaryOp(spv::OpBitcast, typeId,
7167 builder.createCompositeConstruct(uvec2Type, components));
7168 }
7169
Rex Xu9d93a232016-05-05 12:30:44 +08007170 case glslang::EOpMinInvocations:
7171 case glslang::EOpMaxInvocations:
7172 case glslang::EOpAddInvocations:
Rex Xu430ef402016-10-14 17:22:23 +08007173 case glslang::EOpMinInvocationsInclusiveScan:
7174 case glslang::EOpMaxInvocationsInclusiveScan:
7175 case glslang::EOpAddInvocationsInclusiveScan:
7176 case glslang::EOpMinInvocationsExclusiveScan:
7177 case glslang::EOpMaxInvocationsExclusiveScan:
7178 case glslang::EOpAddInvocationsExclusiveScan:
7179 if (op == glslang::EOpMinInvocations ||
7180 op == glslang::EOpMinInvocationsInclusiveScan ||
7181 op == glslang::EOpMinInvocationsExclusiveScan) {
Rex Xu9d93a232016-05-05 12:30:44 +08007182 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007183 opCode = spv::OpGroupFMin;
Rex Xu9d93a232016-05-05 12:30:44 +08007184 else {
7185 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08007186 opCode = spv::OpGroupUMin;
Rex Xu9d93a232016-05-05 12:30:44 +08007187 else
Rex Xu51596642016-09-21 18:56:12 +08007188 opCode = spv::OpGroupSMin;
Rex Xu9d93a232016-05-05 12:30:44 +08007189 }
Rex Xu430ef402016-10-14 17:22:23 +08007190 } else if (op == glslang::EOpMaxInvocations ||
7191 op == glslang::EOpMaxInvocationsInclusiveScan ||
7192 op == glslang::EOpMaxInvocationsExclusiveScan) {
Rex Xu9d93a232016-05-05 12:30:44 +08007193 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007194 opCode = spv::OpGroupFMax;
Rex Xu9d93a232016-05-05 12:30:44 +08007195 else {
7196 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08007197 opCode = spv::OpGroupUMax;
Rex Xu9d93a232016-05-05 12:30:44 +08007198 else
Rex Xu51596642016-09-21 18:56:12 +08007199 opCode = spv::OpGroupSMax;
Rex Xu9d93a232016-05-05 12:30:44 +08007200 }
7201 } else {
7202 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007203 opCode = spv::OpGroupFAdd;
Rex Xu9d93a232016-05-05 12:30:44 +08007204 else
Rex Xu51596642016-09-21 18:56:12 +08007205 opCode = spv::OpGroupIAdd;
Rex Xu9d93a232016-05-05 12:30:44 +08007206 }
7207
Rex Xu2bbbe062016-08-23 15:41:05 +08007208 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08007209 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08007210
7211 break;
Rex Xu9d93a232016-05-05 12:30:44 +08007212 case glslang::EOpMinInvocationsNonUniform:
7213 case glslang::EOpMaxInvocationsNonUniform:
7214 case glslang::EOpAddInvocationsNonUniform:
Rex Xu430ef402016-10-14 17:22:23 +08007215 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
7216 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
7217 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
7218 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
7219 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
7220 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
7221 if (op == glslang::EOpMinInvocationsNonUniform ||
7222 op == glslang::EOpMinInvocationsInclusiveScanNonUniform ||
7223 op == glslang::EOpMinInvocationsExclusiveScanNonUniform) {
Rex Xu9d93a232016-05-05 12:30:44 +08007224 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007225 opCode = spv::OpGroupFMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007226 else {
7227 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08007228 opCode = spv::OpGroupUMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007229 else
Rex Xu51596642016-09-21 18:56:12 +08007230 opCode = spv::OpGroupSMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007231 }
7232 }
Rex Xu430ef402016-10-14 17:22:23 +08007233 else if (op == glslang::EOpMaxInvocationsNonUniform ||
7234 op == glslang::EOpMaxInvocationsInclusiveScanNonUniform ||
7235 op == glslang::EOpMaxInvocationsExclusiveScanNonUniform) {
Rex Xu9d93a232016-05-05 12:30:44 +08007236 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007237 opCode = spv::OpGroupFMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007238 else {
7239 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08007240 opCode = spv::OpGroupUMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007241 else
Rex Xu51596642016-09-21 18:56:12 +08007242 opCode = spv::OpGroupSMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007243 }
7244 }
7245 else {
7246 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007247 opCode = spv::OpGroupFAddNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007248 else
Rex Xu51596642016-09-21 18:56:12 +08007249 opCode = spv::OpGroupIAddNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007250 }
7251
Rex Xu2bbbe062016-08-23 15:41:05 +08007252 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08007253 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08007254
7255 break;
John Kessenich91cef522016-05-05 16:45:40 -06007256 default:
7257 logger->missingFunctionality("invocation operation");
7258 return spv::NoResult;
7259 }
Rex Xu51596642016-09-21 18:56:12 +08007260
7261 assert(opCode != spv::OpNop);
7262 return builder.createOp(opCode, typeId, spvGroupOperands);
John Kessenich91cef522016-05-05 16:45:40 -06007263}
7264
Rex Xu2bbbe062016-08-23 15:41:05 +08007265// Create group invocation operations on a vector
John Kessenich149afc32018-08-14 13:31:43 -06007266spv::Id TGlslangToSpvTraverser::CreateInvocationsVectorOperation(spv::Op op, spv::GroupOperation groupOperation,
7267 spv::Id typeId, std::vector<spv::Id>& operands)
Rex Xu2bbbe062016-08-23 15:41:05 +08007268{
7269 assert(op == spv::OpGroupFMin || op == spv::OpGroupUMin || op == spv::OpGroupSMin ||
7270 op == spv::OpGroupFMax || op == spv::OpGroupUMax || op == spv::OpGroupSMax ||
Rex Xub7072052016-09-26 15:53:40 +08007271 op == spv::OpGroupFAdd || op == spv::OpGroupIAdd || op == spv::OpGroupBroadcast ||
chaocf200da82016-12-20 12:44:35 -08007272 op == spv::OpSubgroupReadInvocationKHR ||
John Kessenich8985fc92020-03-03 10:25:07 -07007273 op == spv::OpGroupFMinNonUniformAMD || op == spv::OpGroupUMinNonUniformAMD ||
7274 op == spv::OpGroupSMinNonUniformAMD ||
7275 op == spv::OpGroupFMaxNonUniformAMD || op == spv::OpGroupUMaxNonUniformAMD ||
7276 op == spv::OpGroupSMaxNonUniformAMD ||
Rex Xu2bbbe062016-08-23 15:41:05 +08007277 op == spv::OpGroupFAddNonUniformAMD || op == spv::OpGroupIAddNonUniformAMD);
7278
7279 // Handle group invocation operations scalar by scalar.
7280 // The result type is the same type as the original type.
7281 // The algorithm is to:
7282 // - break the vector into scalars
7283 // - apply the operation to each scalar
7284 // - make a vector out the scalar results
7285
7286 // get the types sorted out
Rex Xub7072052016-09-26 15:53:40 +08007287 int numComponents = builder.getNumComponents(operands[0]);
7288 spv::Id scalarType = builder.getScalarTypeId(builder.getTypeId(operands[0]));
Rex Xu2bbbe062016-08-23 15:41:05 +08007289 std::vector<spv::Id> results;
7290
7291 // do each scalar op
7292 for (int comp = 0; comp < numComponents; ++comp) {
7293 std::vector<unsigned int> indexes;
7294 indexes.push_back(comp);
John Kessenich149afc32018-08-14 13:31:43 -06007295 spv::IdImmediate scalar = { true, builder.createCompositeExtract(operands[0], scalarType, indexes) };
7296 std::vector<spv::IdImmediate> spvGroupOperands;
chaocf200da82016-12-20 12:44:35 -08007297 if (op == spv::OpSubgroupReadInvocationKHR) {
7298 spvGroupOperands.push_back(scalar);
John Kessenich149afc32018-08-14 13:31:43 -06007299 spv::IdImmediate operand = { true, operands[1] };
7300 spvGroupOperands.push_back(operand);
chaocf200da82016-12-20 12:44:35 -08007301 } else if (op == spv::OpGroupBroadcast) {
John Kessenich149afc32018-08-14 13:31:43 -06007302 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
7303 spvGroupOperands.push_back(scope);
Rex Xub7072052016-09-26 15:53:40 +08007304 spvGroupOperands.push_back(scalar);
John Kessenich149afc32018-08-14 13:31:43 -06007305 spv::IdImmediate operand = { true, operands[1] };
7306 spvGroupOperands.push_back(operand);
Rex Xub7072052016-09-26 15:53:40 +08007307 } else {
John Kessenich149afc32018-08-14 13:31:43 -06007308 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
7309 spvGroupOperands.push_back(scope);
John Kessenichd122a722018-09-18 03:43:30 -06007310 spv::IdImmediate groupOp = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06007311 spvGroupOperands.push_back(groupOp);
Rex Xub7072052016-09-26 15:53:40 +08007312 spvGroupOperands.push_back(scalar);
7313 }
Rex Xu2bbbe062016-08-23 15:41:05 +08007314
Rex Xub7072052016-09-26 15:53:40 +08007315 results.push_back(builder.createOp(op, scalarType, spvGroupOperands));
Rex Xu2bbbe062016-08-23 15:41:05 +08007316 }
7317
7318 // put the pieces together
7319 return builder.createCompositeConstruct(typeId, results);
7320}
Rex Xu2bbbe062016-08-23 15:41:05 +08007321
John Kessenich66011cb2018-03-06 16:12:04 -07007322// Create subgroup invocation operations.
John Kessenich149afc32018-08-14 13:31:43 -06007323spv::Id TGlslangToSpvTraverser::createSubgroupOperation(glslang::TOperator op, spv::Id typeId,
7324 std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich66011cb2018-03-06 16:12:04 -07007325{
7326 // Add the required capabilities.
7327 switch (op) {
7328 case glslang::EOpSubgroupElect:
7329 builder.addCapability(spv::CapabilityGroupNonUniform);
7330 break;
7331 case glslang::EOpSubgroupAll:
7332 case glslang::EOpSubgroupAny:
7333 case glslang::EOpSubgroupAllEqual:
7334 builder.addCapability(spv::CapabilityGroupNonUniform);
7335 builder.addCapability(spv::CapabilityGroupNonUniformVote);
7336 break;
7337 case glslang::EOpSubgroupBroadcast:
7338 case glslang::EOpSubgroupBroadcastFirst:
7339 case glslang::EOpSubgroupBallot:
7340 case glslang::EOpSubgroupInverseBallot:
7341 case glslang::EOpSubgroupBallotBitExtract:
7342 case glslang::EOpSubgroupBallotBitCount:
7343 case glslang::EOpSubgroupBallotInclusiveBitCount:
7344 case glslang::EOpSubgroupBallotExclusiveBitCount:
7345 case glslang::EOpSubgroupBallotFindLSB:
7346 case glslang::EOpSubgroupBallotFindMSB:
7347 builder.addCapability(spv::CapabilityGroupNonUniform);
7348 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
7349 break;
7350 case glslang::EOpSubgroupShuffle:
7351 case glslang::EOpSubgroupShuffleXor:
7352 builder.addCapability(spv::CapabilityGroupNonUniform);
7353 builder.addCapability(spv::CapabilityGroupNonUniformShuffle);
7354 break;
7355 case glslang::EOpSubgroupShuffleUp:
7356 case glslang::EOpSubgroupShuffleDown:
7357 builder.addCapability(spv::CapabilityGroupNonUniform);
7358 builder.addCapability(spv::CapabilityGroupNonUniformShuffleRelative);
7359 break;
7360 case glslang::EOpSubgroupAdd:
7361 case glslang::EOpSubgroupMul:
7362 case glslang::EOpSubgroupMin:
7363 case glslang::EOpSubgroupMax:
7364 case glslang::EOpSubgroupAnd:
7365 case glslang::EOpSubgroupOr:
7366 case glslang::EOpSubgroupXor:
7367 case glslang::EOpSubgroupInclusiveAdd:
7368 case glslang::EOpSubgroupInclusiveMul:
7369 case glslang::EOpSubgroupInclusiveMin:
7370 case glslang::EOpSubgroupInclusiveMax:
7371 case glslang::EOpSubgroupInclusiveAnd:
7372 case glslang::EOpSubgroupInclusiveOr:
7373 case glslang::EOpSubgroupInclusiveXor:
7374 case glslang::EOpSubgroupExclusiveAdd:
7375 case glslang::EOpSubgroupExclusiveMul:
7376 case glslang::EOpSubgroupExclusiveMin:
7377 case glslang::EOpSubgroupExclusiveMax:
7378 case glslang::EOpSubgroupExclusiveAnd:
7379 case glslang::EOpSubgroupExclusiveOr:
7380 case glslang::EOpSubgroupExclusiveXor:
7381 builder.addCapability(spv::CapabilityGroupNonUniform);
7382 builder.addCapability(spv::CapabilityGroupNonUniformArithmetic);
7383 break;
7384 case glslang::EOpSubgroupClusteredAdd:
7385 case glslang::EOpSubgroupClusteredMul:
7386 case glslang::EOpSubgroupClusteredMin:
7387 case glslang::EOpSubgroupClusteredMax:
7388 case glslang::EOpSubgroupClusteredAnd:
7389 case glslang::EOpSubgroupClusteredOr:
7390 case glslang::EOpSubgroupClusteredXor:
7391 builder.addCapability(spv::CapabilityGroupNonUniform);
7392 builder.addCapability(spv::CapabilityGroupNonUniformClustered);
7393 break;
7394 case glslang::EOpSubgroupQuadBroadcast:
7395 case glslang::EOpSubgroupQuadSwapHorizontal:
7396 case glslang::EOpSubgroupQuadSwapVertical:
7397 case glslang::EOpSubgroupQuadSwapDiagonal:
7398 builder.addCapability(spv::CapabilityGroupNonUniform);
7399 builder.addCapability(spv::CapabilityGroupNonUniformQuad);
7400 break;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007401 case glslang::EOpSubgroupPartitionedAdd:
7402 case glslang::EOpSubgroupPartitionedMul:
7403 case glslang::EOpSubgroupPartitionedMin:
7404 case glslang::EOpSubgroupPartitionedMax:
7405 case glslang::EOpSubgroupPartitionedAnd:
7406 case glslang::EOpSubgroupPartitionedOr:
7407 case glslang::EOpSubgroupPartitionedXor:
7408 case glslang::EOpSubgroupPartitionedInclusiveAdd:
7409 case glslang::EOpSubgroupPartitionedInclusiveMul:
7410 case glslang::EOpSubgroupPartitionedInclusiveMin:
7411 case glslang::EOpSubgroupPartitionedInclusiveMax:
7412 case glslang::EOpSubgroupPartitionedInclusiveAnd:
7413 case glslang::EOpSubgroupPartitionedInclusiveOr:
7414 case glslang::EOpSubgroupPartitionedInclusiveXor:
7415 case glslang::EOpSubgroupPartitionedExclusiveAdd:
7416 case glslang::EOpSubgroupPartitionedExclusiveMul:
7417 case glslang::EOpSubgroupPartitionedExclusiveMin:
7418 case glslang::EOpSubgroupPartitionedExclusiveMax:
7419 case glslang::EOpSubgroupPartitionedExclusiveAnd:
7420 case glslang::EOpSubgroupPartitionedExclusiveOr:
7421 case glslang::EOpSubgroupPartitionedExclusiveXor:
7422 builder.addExtension(spv::E_SPV_NV_shader_subgroup_partitioned);
7423 builder.addCapability(spv::CapabilityGroupNonUniformPartitionedNV);
7424 break;
John Kessenich66011cb2018-03-06 16:12:04 -07007425 default: assert(0 && "Unhandled subgroup operation!");
7426 }
7427
Jeff Bolzc5b669e2019-09-08 08:49:18 -05007428
7429 const bool isUnsigned = isTypeUnsignedInt(typeProxy);
7430 const bool isFloat = isTypeFloat(typeProxy);
John Kessenich66011cb2018-03-06 16:12:04 -07007431 const bool isBool = typeProxy == glslang::EbtBool;
7432
7433 spv::Op opCode = spv::OpNop;
7434
7435 // Figure out which opcode to use.
7436 switch (op) {
7437 case glslang::EOpSubgroupElect: opCode = spv::OpGroupNonUniformElect; break;
7438 case glslang::EOpSubgroupAll: opCode = spv::OpGroupNonUniformAll; break;
7439 case glslang::EOpSubgroupAny: opCode = spv::OpGroupNonUniformAny; break;
7440 case glslang::EOpSubgroupAllEqual: opCode = spv::OpGroupNonUniformAllEqual; break;
7441 case glslang::EOpSubgroupBroadcast: opCode = spv::OpGroupNonUniformBroadcast; break;
7442 case glslang::EOpSubgroupBroadcastFirst: opCode = spv::OpGroupNonUniformBroadcastFirst; break;
7443 case glslang::EOpSubgroupBallot: opCode = spv::OpGroupNonUniformBallot; break;
7444 case glslang::EOpSubgroupInverseBallot: opCode = spv::OpGroupNonUniformInverseBallot; break;
7445 case glslang::EOpSubgroupBallotBitExtract: opCode = spv::OpGroupNonUniformBallotBitExtract; break;
7446 case glslang::EOpSubgroupBallotBitCount:
7447 case glslang::EOpSubgroupBallotInclusiveBitCount:
7448 case glslang::EOpSubgroupBallotExclusiveBitCount: opCode = spv::OpGroupNonUniformBallotBitCount; break;
7449 case glslang::EOpSubgroupBallotFindLSB: opCode = spv::OpGroupNonUniformBallotFindLSB; break;
7450 case glslang::EOpSubgroupBallotFindMSB: opCode = spv::OpGroupNonUniformBallotFindMSB; break;
7451 case glslang::EOpSubgroupShuffle: opCode = spv::OpGroupNonUniformShuffle; break;
7452 case glslang::EOpSubgroupShuffleXor: opCode = spv::OpGroupNonUniformShuffleXor; break;
7453 case glslang::EOpSubgroupShuffleUp: opCode = spv::OpGroupNonUniformShuffleUp; break;
7454 case glslang::EOpSubgroupShuffleDown: opCode = spv::OpGroupNonUniformShuffleDown; break;
7455 case glslang::EOpSubgroupAdd:
7456 case glslang::EOpSubgroupInclusiveAdd:
7457 case glslang::EOpSubgroupExclusiveAdd:
7458 case glslang::EOpSubgroupClusteredAdd:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007459 case glslang::EOpSubgroupPartitionedAdd:
7460 case glslang::EOpSubgroupPartitionedInclusiveAdd:
7461 case glslang::EOpSubgroupPartitionedExclusiveAdd:
John Kessenich66011cb2018-03-06 16:12:04 -07007462 if (isFloat) {
7463 opCode = spv::OpGroupNonUniformFAdd;
7464 } else {
7465 opCode = spv::OpGroupNonUniformIAdd;
7466 }
7467 break;
7468 case glslang::EOpSubgroupMul:
7469 case glslang::EOpSubgroupInclusiveMul:
7470 case glslang::EOpSubgroupExclusiveMul:
7471 case glslang::EOpSubgroupClusteredMul:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007472 case glslang::EOpSubgroupPartitionedMul:
7473 case glslang::EOpSubgroupPartitionedInclusiveMul:
7474 case glslang::EOpSubgroupPartitionedExclusiveMul:
John Kessenich66011cb2018-03-06 16:12:04 -07007475 if (isFloat) {
7476 opCode = spv::OpGroupNonUniformFMul;
7477 } else {
7478 opCode = spv::OpGroupNonUniformIMul;
7479 }
7480 break;
7481 case glslang::EOpSubgroupMin:
7482 case glslang::EOpSubgroupInclusiveMin:
7483 case glslang::EOpSubgroupExclusiveMin:
7484 case glslang::EOpSubgroupClusteredMin:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007485 case glslang::EOpSubgroupPartitionedMin:
7486 case glslang::EOpSubgroupPartitionedInclusiveMin:
7487 case glslang::EOpSubgroupPartitionedExclusiveMin:
John Kessenich66011cb2018-03-06 16:12:04 -07007488 if (isFloat) {
7489 opCode = spv::OpGroupNonUniformFMin;
7490 } else if (isUnsigned) {
7491 opCode = spv::OpGroupNonUniformUMin;
7492 } else {
7493 opCode = spv::OpGroupNonUniformSMin;
7494 }
7495 break;
7496 case glslang::EOpSubgroupMax:
7497 case glslang::EOpSubgroupInclusiveMax:
7498 case glslang::EOpSubgroupExclusiveMax:
7499 case glslang::EOpSubgroupClusteredMax:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007500 case glslang::EOpSubgroupPartitionedMax:
7501 case glslang::EOpSubgroupPartitionedInclusiveMax:
7502 case glslang::EOpSubgroupPartitionedExclusiveMax:
John Kessenich66011cb2018-03-06 16:12:04 -07007503 if (isFloat) {
7504 opCode = spv::OpGroupNonUniformFMax;
7505 } else if (isUnsigned) {
7506 opCode = spv::OpGroupNonUniformUMax;
7507 } else {
7508 opCode = spv::OpGroupNonUniformSMax;
7509 }
7510 break;
7511 case glslang::EOpSubgroupAnd:
7512 case glslang::EOpSubgroupInclusiveAnd:
7513 case glslang::EOpSubgroupExclusiveAnd:
7514 case glslang::EOpSubgroupClusteredAnd:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007515 case glslang::EOpSubgroupPartitionedAnd:
7516 case glslang::EOpSubgroupPartitionedInclusiveAnd:
7517 case glslang::EOpSubgroupPartitionedExclusiveAnd:
John Kessenich66011cb2018-03-06 16:12:04 -07007518 if (isBool) {
7519 opCode = spv::OpGroupNonUniformLogicalAnd;
7520 } else {
7521 opCode = spv::OpGroupNonUniformBitwiseAnd;
7522 }
7523 break;
7524 case glslang::EOpSubgroupOr:
7525 case glslang::EOpSubgroupInclusiveOr:
7526 case glslang::EOpSubgroupExclusiveOr:
7527 case glslang::EOpSubgroupClusteredOr:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007528 case glslang::EOpSubgroupPartitionedOr:
7529 case glslang::EOpSubgroupPartitionedInclusiveOr:
7530 case glslang::EOpSubgroupPartitionedExclusiveOr:
John Kessenich66011cb2018-03-06 16:12:04 -07007531 if (isBool) {
7532 opCode = spv::OpGroupNonUniformLogicalOr;
7533 } else {
7534 opCode = spv::OpGroupNonUniformBitwiseOr;
7535 }
7536 break;
7537 case glslang::EOpSubgroupXor:
7538 case glslang::EOpSubgroupInclusiveXor:
7539 case glslang::EOpSubgroupExclusiveXor:
7540 case glslang::EOpSubgroupClusteredXor:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007541 case glslang::EOpSubgroupPartitionedXor:
7542 case glslang::EOpSubgroupPartitionedInclusiveXor:
7543 case glslang::EOpSubgroupPartitionedExclusiveXor:
John Kessenich66011cb2018-03-06 16:12:04 -07007544 if (isBool) {
7545 opCode = spv::OpGroupNonUniformLogicalXor;
7546 } else {
7547 opCode = spv::OpGroupNonUniformBitwiseXor;
7548 }
7549 break;
7550 case glslang::EOpSubgroupQuadBroadcast: opCode = spv::OpGroupNonUniformQuadBroadcast; break;
7551 case glslang::EOpSubgroupQuadSwapHorizontal:
7552 case glslang::EOpSubgroupQuadSwapVertical:
7553 case glslang::EOpSubgroupQuadSwapDiagonal: opCode = spv::OpGroupNonUniformQuadSwap; break;
7554 default: assert(0 && "Unhandled subgroup operation!");
7555 }
7556
John Kessenich149afc32018-08-14 13:31:43 -06007557 // get the right Group Operation
7558 spv::GroupOperation groupOperation = spv::GroupOperationMax;
John Kessenich66011cb2018-03-06 16:12:04 -07007559 switch (op) {
John Kessenich149afc32018-08-14 13:31:43 -06007560 default:
7561 break;
John Kessenich66011cb2018-03-06 16:12:04 -07007562 case glslang::EOpSubgroupBallotBitCount:
7563 case glslang::EOpSubgroupAdd:
7564 case glslang::EOpSubgroupMul:
7565 case glslang::EOpSubgroupMin:
7566 case glslang::EOpSubgroupMax:
7567 case glslang::EOpSubgroupAnd:
7568 case glslang::EOpSubgroupOr:
7569 case glslang::EOpSubgroupXor:
John Kessenich149afc32018-08-14 13:31:43 -06007570 groupOperation = spv::GroupOperationReduce;
John Kessenich66011cb2018-03-06 16:12:04 -07007571 break;
7572 case glslang::EOpSubgroupBallotInclusiveBitCount:
7573 case glslang::EOpSubgroupInclusiveAdd:
7574 case glslang::EOpSubgroupInclusiveMul:
7575 case glslang::EOpSubgroupInclusiveMin:
7576 case glslang::EOpSubgroupInclusiveMax:
7577 case glslang::EOpSubgroupInclusiveAnd:
7578 case glslang::EOpSubgroupInclusiveOr:
7579 case glslang::EOpSubgroupInclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06007580 groupOperation = spv::GroupOperationInclusiveScan;
John Kessenich66011cb2018-03-06 16:12:04 -07007581 break;
7582 case glslang::EOpSubgroupBallotExclusiveBitCount:
7583 case glslang::EOpSubgroupExclusiveAdd:
7584 case glslang::EOpSubgroupExclusiveMul:
7585 case glslang::EOpSubgroupExclusiveMin:
7586 case glslang::EOpSubgroupExclusiveMax:
7587 case glslang::EOpSubgroupExclusiveAnd:
7588 case glslang::EOpSubgroupExclusiveOr:
7589 case glslang::EOpSubgroupExclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06007590 groupOperation = spv::GroupOperationExclusiveScan;
John Kessenich66011cb2018-03-06 16:12:04 -07007591 break;
7592 case glslang::EOpSubgroupClusteredAdd:
7593 case glslang::EOpSubgroupClusteredMul:
7594 case glslang::EOpSubgroupClusteredMin:
7595 case glslang::EOpSubgroupClusteredMax:
7596 case glslang::EOpSubgroupClusteredAnd:
7597 case glslang::EOpSubgroupClusteredOr:
7598 case glslang::EOpSubgroupClusteredXor:
John Kessenich149afc32018-08-14 13:31:43 -06007599 groupOperation = spv::GroupOperationClusteredReduce;
John Kessenich66011cb2018-03-06 16:12:04 -07007600 break;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007601 case glslang::EOpSubgroupPartitionedAdd:
7602 case glslang::EOpSubgroupPartitionedMul:
7603 case glslang::EOpSubgroupPartitionedMin:
7604 case glslang::EOpSubgroupPartitionedMax:
7605 case glslang::EOpSubgroupPartitionedAnd:
7606 case glslang::EOpSubgroupPartitionedOr:
7607 case glslang::EOpSubgroupPartitionedXor:
John Kessenich149afc32018-08-14 13:31:43 -06007608 groupOperation = spv::GroupOperationPartitionedReduceNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007609 break;
7610 case glslang::EOpSubgroupPartitionedInclusiveAdd:
7611 case glslang::EOpSubgroupPartitionedInclusiveMul:
7612 case glslang::EOpSubgroupPartitionedInclusiveMin:
7613 case glslang::EOpSubgroupPartitionedInclusiveMax:
7614 case glslang::EOpSubgroupPartitionedInclusiveAnd:
7615 case glslang::EOpSubgroupPartitionedInclusiveOr:
7616 case glslang::EOpSubgroupPartitionedInclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06007617 groupOperation = spv::GroupOperationPartitionedInclusiveScanNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007618 break;
7619 case glslang::EOpSubgroupPartitionedExclusiveAdd:
7620 case glslang::EOpSubgroupPartitionedExclusiveMul:
7621 case glslang::EOpSubgroupPartitionedExclusiveMin:
7622 case glslang::EOpSubgroupPartitionedExclusiveMax:
7623 case glslang::EOpSubgroupPartitionedExclusiveAnd:
7624 case glslang::EOpSubgroupPartitionedExclusiveOr:
7625 case glslang::EOpSubgroupPartitionedExclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06007626 groupOperation = spv::GroupOperationPartitionedExclusiveScanNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007627 break;
John Kessenich66011cb2018-03-06 16:12:04 -07007628 }
7629
John Kessenich149afc32018-08-14 13:31:43 -06007630 // build the instruction
7631 std::vector<spv::IdImmediate> spvGroupOperands;
7632
7633 // Every operation begins with the Execution Scope operand.
7634 spv::IdImmediate executionScope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
7635 spvGroupOperands.push_back(executionScope);
7636
7637 // Next, for all operations that use a Group Operation, push that as an operand.
7638 if (groupOperation != spv::GroupOperationMax) {
John Kessenichd122a722018-09-18 03:43:30 -06007639 spv::IdImmediate groupOperand = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06007640 spvGroupOperands.push_back(groupOperand);
7641 }
7642
John Kessenich66011cb2018-03-06 16:12:04 -07007643 // Push back the operands next.
John Kessenich149afc32018-08-14 13:31:43 -06007644 for (auto opIt = operands.cbegin(); opIt != operands.cend(); ++opIt) {
7645 spv::IdImmediate operand = { true, *opIt };
7646 spvGroupOperands.push_back(operand);
John Kessenich66011cb2018-03-06 16:12:04 -07007647 }
7648
7649 // Some opcodes have additional operands.
John Kessenich149afc32018-08-14 13:31:43 -06007650 spv::Id directionId = spv::NoResult;
John Kessenich66011cb2018-03-06 16:12:04 -07007651 switch (op) {
7652 default: break;
John Kessenich149afc32018-08-14 13:31:43 -06007653 case glslang::EOpSubgroupQuadSwapHorizontal: directionId = builder.makeUintConstant(0); break;
7654 case glslang::EOpSubgroupQuadSwapVertical: directionId = builder.makeUintConstant(1); break;
7655 case glslang::EOpSubgroupQuadSwapDiagonal: directionId = builder.makeUintConstant(2); break;
7656 }
7657 if (directionId != spv::NoResult) {
7658 spv::IdImmediate direction = { true, directionId };
7659 spvGroupOperands.push_back(direction);
John Kessenich66011cb2018-03-06 16:12:04 -07007660 }
7661
7662 return builder.createOp(opCode, typeId, spvGroupOperands);
7663}
7664
John Kessenich8985fc92020-03-03 10:25:07 -07007665spv::Id TGlslangToSpvTraverser::createMiscOperation(glslang::TOperator op, spv::Decoration precision,
7666 spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich140f3df2015-06-26 16:58:36 -06007667{
John Kessenich66011cb2018-03-06 16:12:04 -07007668 bool isUnsigned = isTypeUnsignedInt(typeProxy);
7669 bool isFloat = isTypeFloat(typeProxy);
John Kessenich5e4b1242015-08-06 22:53:06 -06007670
John Kessenich140f3df2015-06-26 16:58:36 -06007671 spv::Op opCode = spv::OpNop;
Rex Xu9d93a232016-05-05 12:30:44 +08007672 int extBuiltins = -1;
John Kessenich140f3df2015-06-26 16:58:36 -06007673 int libCall = -1;
Mark Adams364c21c2016-01-06 13:41:02 -05007674 size_t consumedOperands = operands.size();
John Kessenich55e7d112015-11-15 21:33:39 -07007675 spv::Id typeId0 = 0;
7676 if (consumedOperands > 0)
7677 typeId0 = builder.getTypeId(operands[0]);
Rex Xu470026f2017-03-29 17:12:40 +08007678 spv::Id typeId1 = 0;
7679 if (consumedOperands > 1)
7680 typeId1 = builder.getTypeId(operands[1]);
John Kessenich55e7d112015-11-15 21:33:39 -07007681 spv::Id frexpIntType = 0;
John Kessenich140f3df2015-06-26 16:58:36 -06007682
7683 switch (op) {
7684 case glslang::EOpMin:
John Kessenich5e4b1242015-08-06 22:53:06 -06007685 if (isFloat)
John Kessenich605afc72019-06-17 23:33:09 -06007686 libCall = nanMinMaxClamp ? spv::GLSLstd450NMin : spv::GLSLstd450FMin;
John Kessenich5e4b1242015-08-06 22:53:06 -06007687 else if (isUnsigned)
7688 libCall = spv::GLSLstd450UMin;
7689 else
7690 libCall = spv::GLSLstd450SMin;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007691 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06007692 break;
7693 case glslang::EOpModf:
John Kessenich5e4b1242015-08-06 22:53:06 -06007694 libCall = spv::GLSLstd450Modf;
John Kessenich140f3df2015-06-26 16:58:36 -06007695 break;
7696 case glslang::EOpMax:
John Kessenich5e4b1242015-08-06 22:53:06 -06007697 if (isFloat)
John Kessenich605afc72019-06-17 23:33:09 -06007698 libCall = nanMinMaxClamp ? spv::GLSLstd450NMax : spv::GLSLstd450FMax;
John Kessenich5e4b1242015-08-06 22:53:06 -06007699 else if (isUnsigned)
7700 libCall = spv::GLSLstd450UMax;
7701 else
7702 libCall = spv::GLSLstd450SMax;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007703 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06007704 break;
7705 case glslang::EOpPow:
John Kessenich5e4b1242015-08-06 22:53:06 -06007706 libCall = spv::GLSLstd450Pow;
John Kessenich140f3df2015-06-26 16:58:36 -06007707 break;
7708 case glslang::EOpDot:
7709 opCode = spv::OpDot;
7710 break;
7711 case glslang::EOpAtan:
John Kessenich5e4b1242015-08-06 22:53:06 -06007712 libCall = spv::GLSLstd450Atan2;
John Kessenich140f3df2015-06-26 16:58:36 -06007713 break;
7714
7715 case glslang::EOpClamp:
John Kessenich5e4b1242015-08-06 22:53:06 -06007716 if (isFloat)
John Kessenich605afc72019-06-17 23:33:09 -06007717 libCall = nanMinMaxClamp ? spv::GLSLstd450NClamp : spv::GLSLstd450FClamp;
John Kessenich5e4b1242015-08-06 22:53:06 -06007718 else if (isUnsigned)
7719 libCall = spv::GLSLstd450UClamp;
7720 else
7721 libCall = spv::GLSLstd450SClamp;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007722 builder.promoteScalar(precision, operands.front(), operands[1]);
7723 builder.promoteScalar(precision, operands.front(), operands[2]);
John Kessenich140f3df2015-06-26 16:58:36 -06007724 break;
7725 case glslang::EOpMix:
Rex Xud715adc2016-03-15 12:08:31 +08007726 if (! builder.isBoolType(builder.getScalarTypeId(builder.getTypeId(operands.back())))) {
7727 assert(isFloat);
John Kessenich55e7d112015-11-15 21:33:39 -07007728 libCall = spv::GLSLstd450FMix;
Rex Xud715adc2016-03-15 12:08:31 +08007729 } else {
John Kessenich6c292d32016-02-15 20:58:50 -07007730 opCode = spv::OpSelect;
Rex Xud715adc2016-03-15 12:08:31 +08007731 std::swap(operands.front(), operands.back());
John Kessenich6c292d32016-02-15 20:58:50 -07007732 }
John Kesseniche7c83cf2015-12-13 13:34:37 -07007733 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06007734 break;
7735 case glslang::EOpStep:
John Kessenich5e4b1242015-08-06 22:53:06 -06007736 libCall = spv::GLSLstd450Step;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007737 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06007738 break;
7739 case glslang::EOpSmoothStep:
John Kessenich5e4b1242015-08-06 22:53:06 -06007740 libCall = spv::GLSLstd450SmoothStep;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007741 builder.promoteScalar(precision, operands[0], operands[2]);
7742 builder.promoteScalar(precision, operands[1], operands[2]);
John Kessenich140f3df2015-06-26 16:58:36 -06007743 break;
7744
7745 case glslang::EOpDistance:
John Kessenich5e4b1242015-08-06 22:53:06 -06007746 libCall = spv::GLSLstd450Distance;
John Kessenich140f3df2015-06-26 16:58:36 -06007747 break;
7748 case glslang::EOpCross:
John Kessenich5e4b1242015-08-06 22:53:06 -06007749 libCall = spv::GLSLstd450Cross;
John Kessenich140f3df2015-06-26 16:58:36 -06007750 break;
7751 case glslang::EOpFaceForward:
John Kessenich5e4b1242015-08-06 22:53:06 -06007752 libCall = spv::GLSLstd450FaceForward;
John Kessenich140f3df2015-06-26 16:58:36 -06007753 break;
7754 case glslang::EOpReflect:
John Kessenich5e4b1242015-08-06 22:53:06 -06007755 libCall = spv::GLSLstd450Reflect;
John Kessenich140f3df2015-06-26 16:58:36 -06007756 break;
7757 case glslang::EOpRefract:
John Kessenich5e4b1242015-08-06 22:53:06 -06007758 libCall = spv::GLSLstd450Refract;
John Kessenich140f3df2015-06-26 16:58:36 -06007759 break;
John Kessenich3dd1ce52019-10-17 07:08:40 -06007760 case glslang::EOpBarrier:
7761 {
7762 // This is for the extended controlBarrier function, with four operands.
7763 // The unextended barrier() goes through createNoArgOperation.
7764 assert(operands.size() == 4);
7765 unsigned int executionScope = builder.getConstantScalar(operands[0]);
7766 unsigned int memoryScope = builder.getConstantScalar(operands[1]);
7767 unsigned int semantics = builder.getConstantScalar(operands[2]) | builder.getConstantScalar(operands[3]);
John Kessenich8985fc92020-03-03 10:25:07 -07007768 builder.createControlBarrier((spv::Scope)executionScope, (spv::Scope)memoryScope,
7769 (spv::MemorySemanticsMask)semantics);
John Kessenich3dd1ce52019-10-17 07:08:40 -06007770 if (semantics & (spv::MemorySemanticsMakeAvailableKHRMask |
7771 spv::MemorySemanticsMakeVisibleKHRMask |
7772 spv::MemorySemanticsOutputMemoryKHRMask |
7773 spv::MemorySemanticsVolatileMask)) {
7774 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7775 }
John Kessenich8985fc92020-03-03 10:25:07 -07007776 if (glslangIntermediate->usingVulkanMemoryModel() && (executionScope == spv::ScopeDevice ||
7777 memoryScope == spv::ScopeDevice)) {
John Kessenich3dd1ce52019-10-17 07:08:40 -06007778 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
7779 }
7780 return 0;
7781 }
7782 break;
7783 case glslang::EOpMemoryBarrier:
7784 {
7785 // This is for the extended memoryBarrier function, with three operands.
7786 // The unextended memoryBarrier() goes through createNoArgOperation.
7787 assert(operands.size() == 3);
7788 unsigned int memoryScope = builder.getConstantScalar(operands[0]);
7789 unsigned int semantics = builder.getConstantScalar(operands[1]) | builder.getConstantScalar(operands[2]);
7790 builder.createMemoryBarrier((spv::Scope)memoryScope, (spv::MemorySemanticsMask)semantics);
7791 if (semantics & (spv::MemorySemanticsMakeAvailableKHRMask |
7792 spv::MemorySemanticsMakeVisibleKHRMask |
7793 spv::MemorySemanticsOutputMemoryKHRMask |
7794 spv::MemorySemanticsVolatileMask)) {
7795 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7796 }
7797 if (glslangIntermediate->usingVulkanMemoryModel() && memoryScope == spv::ScopeDevice) {
7798 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
7799 }
7800 return 0;
7801 }
7802 break;
7803
John Kessenicha28f7a72019-08-06 07:00:58 -06007804#ifndef GLSLANG_WEB
Rex Xu7a26c172015-12-08 17:12:09 +08007805 case glslang::EOpInterpolateAtSample:
Rex Xub4a2a6c2018-05-17 13:51:28 +08007806 if (typeProxy == glslang::EbtFloat16)
7807 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
Rex Xu7a26c172015-12-08 17:12:09 +08007808 libCall = spv::GLSLstd450InterpolateAtSample;
7809 break;
7810 case glslang::EOpInterpolateAtOffset:
Rex Xub4a2a6c2018-05-17 13:51:28 +08007811 if (typeProxy == glslang::EbtFloat16)
7812 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
Rex Xu7a26c172015-12-08 17:12:09 +08007813 libCall = spv::GLSLstd450InterpolateAtOffset;
7814 break;
John Kessenich55e7d112015-11-15 21:33:39 -07007815 case glslang::EOpAddCarry:
7816 opCode = spv::OpIAddCarry;
7817 typeId = builder.makeStructResultType(typeId0, typeId0);
7818 consumedOperands = 2;
7819 break;
7820 case glslang::EOpSubBorrow:
7821 opCode = spv::OpISubBorrow;
7822 typeId = builder.makeStructResultType(typeId0, typeId0);
7823 consumedOperands = 2;
7824 break;
7825 case glslang::EOpUMulExtended:
7826 opCode = spv::OpUMulExtended;
7827 typeId = builder.makeStructResultType(typeId0, typeId0);
7828 consumedOperands = 2;
7829 break;
7830 case glslang::EOpIMulExtended:
7831 opCode = spv::OpSMulExtended;
7832 typeId = builder.makeStructResultType(typeId0, typeId0);
7833 consumedOperands = 2;
7834 break;
7835 case glslang::EOpBitfieldExtract:
7836 if (isUnsigned)
7837 opCode = spv::OpBitFieldUExtract;
7838 else
7839 opCode = spv::OpBitFieldSExtract;
7840 break;
7841 case glslang::EOpBitfieldInsert:
7842 opCode = spv::OpBitFieldInsert;
7843 break;
7844
7845 case glslang::EOpFma:
7846 libCall = spv::GLSLstd450Fma;
7847 break;
7848 case glslang::EOpFrexp:
Rex Xu470026f2017-03-29 17:12:40 +08007849 {
7850 libCall = spv::GLSLstd450FrexpStruct;
7851 assert(builder.isPointerType(typeId1));
7852 typeId1 = builder.getContainedTypeId(typeId1);
Rex Xu470026f2017-03-29 17:12:40 +08007853 int width = builder.getScalarTypeWidth(typeId1);
Rex Xu7c88aff2018-04-11 16:56:50 +08007854 if (width == 16)
7855 // Using 16-bit exp operand, enable extension SPV_AMD_gpu_shader_int16
7856 builder.addExtension(spv::E_SPV_AMD_gpu_shader_int16);
Rex Xu470026f2017-03-29 17:12:40 +08007857 if (builder.getNumComponents(operands[0]) == 1)
7858 frexpIntType = builder.makeIntegerType(width, true);
7859 else
John Kessenich8985fc92020-03-03 10:25:07 -07007860 frexpIntType = builder.makeVectorType(builder.makeIntegerType(width, true),
7861 builder.getNumComponents(operands[0]));
Rex Xu470026f2017-03-29 17:12:40 +08007862 typeId = builder.makeStructResultType(typeId0, frexpIntType);
7863 consumedOperands = 1;
7864 }
John Kessenich55e7d112015-11-15 21:33:39 -07007865 break;
7866 case glslang::EOpLdexp:
7867 libCall = spv::GLSLstd450Ldexp;
7868 break;
7869
Rex Xu574ab042016-04-14 16:53:07 +08007870 case glslang::EOpReadInvocation:
Rex Xu51596642016-09-21 18:56:12 +08007871 return createInvocationsOperation(op, typeId, operands, typeProxy);
Rex Xu574ab042016-04-14 16:53:07 +08007872
John Kessenich66011cb2018-03-06 16:12:04 -07007873 case glslang::EOpSubgroupBroadcast:
7874 case glslang::EOpSubgroupBallotBitExtract:
7875 case glslang::EOpSubgroupShuffle:
7876 case glslang::EOpSubgroupShuffleXor:
7877 case glslang::EOpSubgroupShuffleUp:
7878 case glslang::EOpSubgroupShuffleDown:
7879 case glslang::EOpSubgroupClusteredAdd:
7880 case glslang::EOpSubgroupClusteredMul:
7881 case glslang::EOpSubgroupClusteredMin:
7882 case glslang::EOpSubgroupClusteredMax:
7883 case glslang::EOpSubgroupClusteredAnd:
7884 case glslang::EOpSubgroupClusteredOr:
7885 case glslang::EOpSubgroupClusteredXor:
7886 case glslang::EOpSubgroupQuadBroadcast:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007887 case glslang::EOpSubgroupPartitionedAdd:
7888 case glslang::EOpSubgroupPartitionedMul:
7889 case glslang::EOpSubgroupPartitionedMin:
7890 case glslang::EOpSubgroupPartitionedMax:
7891 case glslang::EOpSubgroupPartitionedAnd:
7892 case glslang::EOpSubgroupPartitionedOr:
7893 case glslang::EOpSubgroupPartitionedXor:
7894 case glslang::EOpSubgroupPartitionedInclusiveAdd:
7895 case glslang::EOpSubgroupPartitionedInclusiveMul:
7896 case glslang::EOpSubgroupPartitionedInclusiveMin:
7897 case glslang::EOpSubgroupPartitionedInclusiveMax:
7898 case glslang::EOpSubgroupPartitionedInclusiveAnd:
7899 case glslang::EOpSubgroupPartitionedInclusiveOr:
7900 case glslang::EOpSubgroupPartitionedInclusiveXor:
7901 case glslang::EOpSubgroupPartitionedExclusiveAdd:
7902 case glslang::EOpSubgroupPartitionedExclusiveMul:
7903 case glslang::EOpSubgroupPartitionedExclusiveMin:
7904 case glslang::EOpSubgroupPartitionedExclusiveMax:
7905 case glslang::EOpSubgroupPartitionedExclusiveAnd:
7906 case glslang::EOpSubgroupPartitionedExclusiveOr:
7907 case glslang::EOpSubgroupPartitionedExclusiveXor:
John Kessenich66011cb2018-03-06 16:12:04 -07007908 return createSubgroupOperation(op, typeId, operands, typeProxy);
7909
Rex Xu9d93a232016-05-05 12:30:44 +08007910 case glslang::EOpSwizzleInvocations:
7911 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
7912 libCall = spv::SwizzleInvocationsAMD;
7913 break;
7914 case glslang::EOpSwizzleInvocationsMasked:
7915 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
7916 libCall = spv::SwizzleInvocationsMaskedAMD;
7917 break;
7918 case glslang::EOpWriteInvocation:
7919 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
7920 libCall = spv::WriteInvocationAMD;
7921 break;
7922
7923 case glslang::EOpMin3:
7924 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
7925 if (isFloat)
7926 libCall = spv::FMin3AMD;
7927 else {
7928 if (isUnsigned)
7929 libCall = spv::UMin3AMD;
7930 else
7931 libCall = spv::SMin3AMD;
7932 }
7933 break;
7934 case glslang::EOpMax3:
7935 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
7936 if (isFloat)
7937 libCall = spv::FMax3AMD;
7938 else {
7939 if (isUnsigned)
7940 libCall = spv::UMax3AMD;
7941 else
7942 libCall = spv::SMax3AMD;
7943 }
7944 break;
7945 case glslang::EOpMid3:
7946 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
7947 if (isFloat)
7948 libCall = spv::FMid3AMD;
7949 else {
7950 if (isUnsigned)
7951 libCall = spv::UMid3AMD;
7952 else
7953 libCall = spv::SMid3AMD;
7954 }
7955 break;
7956
7957 case glslang::EOpInterpolateAtVertex:
Rex Xub4a2a6c2018-05-17 13:51:28 +08007958 if (typeProxy == glslang::EbtFloat16)
7959 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
Rex Xu9d93a232016-05-05 12:30:44 +08007960 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
7961 libCall = spv::InterpolateAtVertexAMD;
7962 break;
Chao Chen3c366992018-09-19 11:41:59 -07007963
Daniel Kochdb32b242020-03-17 20:42:47 -04007964 case glslang::EOpReportIntersection:
Chao Chenb50c02e2018-09-19 11:42:24 -07007965 typeId = builder.makeBoolType();
Daniel Kochdb32b242020-03-17 20:42:47 -04007966 opCode = spv::OpReportIntersectionKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007967 break;
Daniel Kochffccefd2020-11-23 15:41:27 -05007968 case glslang::EOpTraceNV:
7969 builder.createNoResultOp(spv::OpTraceNV, operands);
7970 return 0;
7971 case glslang::EOpTraceKHR:
Daniel Kochdb32b242020-03-17 20:42:47 -04007972 builder.createNoResultOp(spv::OpTraceRayKHR, operands);
Ashwin Leleff1783d2018-10-22 16:41:44 -07007973 return 0;
Daniel Kochffccefd2020-11-23 15:41:27 -05007974 case glslang::EOpExecuteCallableNV:
7975 builder.createNoResultOp(spv::OpExecuteCallableNV, operands);
7976 return 0;
7977 case glslang::EOpExecuteCallableKHR:
Daniel Kochdb32b242020-03-17 20:42:47 -04007978 builder.createNoResultOp(spv::OpExecuteCallableKHR, operands);
Chao Chenb50c02e2018-09-19 11:42:24 -07007979 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007980
7981 case glslang::EOpRayQueryInitialize:
Torosdagli06c2eee2020-03-19 11:09:57 -04007982 builder.createNoResultOp(spv::OpRayQueryInitializeKHR, operands);
7983 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007984 case glslang::EOpRayQueryTerminate:
Torosdagli06c2eee2020-03-19 11:09:57 -04007985 builder.createNoResultOp(spv::OpRayQueryTerminateKHR, operands);
7986 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007987 case glslang::EOpRayQueryGenerateIntersection:
Torosdagli06c2eee2020-03-19 11:09:57 -04007988 builder.createNoResultOp(spv::OpRayQueryGenerateIntersectionKHR, operands);
7989 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007990 case glslang::EOpRayQueryConfirmIntersection:
Torosdagli06c2eee2020-03-19 11:09:57 -04007991 builder.createNoResultOp(spv::OpRayQueryConfirmIntersectionKHR, operands);
7992 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007993 case glslang::EOpRayQueryProceed:
Torosdagli06c2eee2020-03-19 11:09:57 -04007994 typeId = builder.makeBoolType();
7995 opCode = spv::OpRayQueryProceedKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007996 break;
7997 case glslang::EOpRayQueryGetIntersectionType:
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04007998 typeId = builder.makeUintType(32);
Torosdagli06c2eee2020-03-19 11:09:57 -04007999 opCode = spv::OpRayQueryGetIntersectionTypeKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008000 break;
8001 case glslang::EOpRayQueryGetRayTMin:
Torosdagli06c2eee2020-03-19 11:09:57 -04008002 typeId = builder.makeFloatType(32);
8003 opCode = spv::OpRayQueryGetRayTMinKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008004 break;
8005 case glslang::EOpRayQueryGetRayFlags:
Torosdagli06c2eee2020-03-19 11:09:57 -04008006 typeId = builder.makeIntType(32);
8007 opCode = spv::OpRayQueryGetRayFlagsKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008008 break;
8009 case glslang::EOpRayQueryGetIntersectionT:
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04008010 typeId = builder.makeFloatType(32);
Torosdagli06c2eee2020-03-19 11:09:57 -04008011 opCode = spv::OpRayQueryGetIntersectionTKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008012 break;
8013 case glslang::EOpRayQueryGetIntersectionInstanceCustomIndex:
Torosdagli06c2eee2020-03-19 11:09:57 -04008014 typeId = builder.makeIntType(32);
8015 opCode = spv::OpRayQueryGetIntersectionInstanceCustomIndexKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008016 break;
8017 case glslang::EOpRayQueryGetIntersectionInstanceId:
Torosdagli06c2eee2020-03-19 11:09:57 -04008018 typeId = builder.makeIntType(32);
8019 opCode = spv::OpRayQueryGetIntersectionInstanceIdKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008020 break;
8021 case glslang::EOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffset:
Daniel Kochc0bcfaf2020-12-12 12:34:24 -05008022 typeId = builder.makeUintType(32);
Torosdagli06c2eee2020-03-19 11:09:57 -04008023 opCode = spv::OpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffsetKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008024 break;
8025 case glslang::EOpRayQueryGetIntersectionGeometryIndex:
Torosdagli06c2eee2020-03-19 11:09:57 -04008026 typeId = builder.makeIntType(32);
8027 opCode = spv::OpRayQueryGetIntersectionGeometryIndexKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008028 break;
8029 case glslang::EOpRayQueryGetIntersectionPrimitiveIndex:
Torosdagli06c2eee2020-03-19 11:09:57 -04008030 typeId = builder.makeIntType(32);
8031 opCode = spv::OpRayQueryGetIntersectionPrimitiveIndexKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008032 break;
8033 case glslang::EOpRayQueryGetIntersectionBarycentrics:
Torosdagli06c2eee2020-03-19 11:09:57 -04008034 typeId = builder.makeVectorType(builder.makeFloatType(32), 2);
8035 opCode = spv::OpRayQueryGetIntersectionBarycentricsKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008036 break;
8037 case glslang::EOpRayQueryGetIntersectionFrontFace:
Torosdagli06c2eee2020-03-19 11:09:57 -04008038 typeId = builder.makeBoolType();
8039 opCode = spv::OpRayQueryGetIntersectionFrontFaceKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008040 break;
8041 case glslang::EOpRayQueryGetIntersectionCandidateAABBOpaque:
Torosdagli06c2eee2020-03-19 11:09:57 -04008042 typeId = builder.makeBoolType();
8043 opCode = spv::OpRayQueryGetIntersectionCandidateAABBOpaqueKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008044 break;
8045 case glslang::EOpRayQueryGetIntersectionObjectRayDirection:
Torosdagli06c2eee2020-03-19 11:09:57 -04008046 typeId = builder.makeVectorType(builder.makeFloatType(32), 3);
8047 opCode = spv::OpRayQueryGetIntersectionObjectRayDirectionKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008048 break;
8049 case glslang::EOpRayQueryGetIntersectionObjectRayOrigin:
Torosdagli06c2eee2020-03-19 11:09:57 -04008050 typeId = builder.makeVectorType(builder.makeFloatType(32), 3);
8051 opCode = spv::OpRayQueryGetIntersectionObjectRayOriginKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008052 break;
8053 case glslang::EOpRayQueryGetWorldRayDirection:
Torosdagli06c2eee2020-03-19 11:09:57 -04008054 typeId = builder.makeVectorType(builder.makeFloatType(32), 3);
8055 opCode = spv::OpRayQueryGetWorldRayDirectionKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008056 break;
8057 case glslang::EOpRayQueryGetWorldRayOrigin:
Torosdagli06c2eee2020-03-19 11:09:57 -04008058 typeId = builder.makeVectorType(builder.makeFloatType(32), 3);
8059 opCode = spv::OpRayQueryGetWorldRayOriginKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008060 break;
8061 case glslang::EOpRayQueryGetIntersectionObjectToWorld:
Torosdagli06c2eee2020-03-19 11:09:57 -04008062 typeId = builder.makeMatrixType(builder.makeFloatType(32), 4, 3);
Torosdagli06c2eee2020-03-19 11:09:57 -04008063 opCode = spv::OpRayQueryGetIntersectionObjectToWorldKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008064 break;
8065 case glslang::EOpRayQueryGetIntersectionWorldToObject:
Torosdagli06c2eee2020-03-19 11:09:57 -04008066 typeId = builder.makeMatrixType(builder.makeFloatType(32), 4, 3);
Torosdagli06c2eee2020-03-19 11:09:57 -04008067 opCode = spv::OpRayQueryGetIntersectionWorldToObjectKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008068 break;
Chao Chen3c366992018-09-19 11:41:59 -07008069 case glslang::EOpWritePackedPrimitiveIndices4x8NV:
8070 builder.createNoResultOp(spv::OpWritePackedPrimitiveIndices4x8NV, operands);
8071 return 0;
Jeff Bolz4605e2e2019-02-19 13:10:32 -06008072 case glslang::EOpCooperativeMatrixMulAdd:
8073 opCode = spv::OpCooperativeMatrixMulAddNV;
8074 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06008075#endif // GLSLANG_WEB
John Kessenich140f3df2015-06-26 16:58:36 -06008076 default:
8077 return 0;
8078 }
8079
8080 spv::Id id = 0;
John Kessenich2359bd02015-12-06 19:29:11 -07008081 if (libCall >= 0) {
David Neto8d63a3d2015-12-07 16:17:06 -05008082 // Use an extended instruction from the standard library.
8083 // Construct the call arguments, without modifying the original operands vector.
8084 // We might need the remaining arguments, e.g. in the EOpFrexp case.
8085 std::vector<spv::Id> callArguments(operands.begin(), operands.begin() + consumedOperands);
Rex Xu9d93a232016-05-05 12:30:44 +08008086 id = builder.createBuiltinCall(typeId, extBuiltins >= 0 ? extBuiltins : stdBuiltins, libCall, callArguments);
t.jungb16bea82018-11-15 10:21:36 +01008087 } else if (opCode == spv::OpDot && !isFloat) {
8088 // int dot(int, int)
8089 // NOTE: never called for scalar/vector1, this is turned into simple mul before this can be reached
8090 const int componentCount = builder.getNumComponents(operands[0]);
8091 spv::Id mulOp = builder.createBinOp(spv::OpIMul, builder.getTypeId(operands[0]), operands[0], operands[1]);
8092 builder.setPrecision(mulOp, precision);
8093 id = builder.createCompositeExtract(mulOp, typeId, 0);
8094 for (int i = 1; i < componentCount; ++i) {
8095 builder.setPrecision(id, precision);
John Kessenich5de15a22019-12-26 10:56:54 -07008096 id = builder.createBinOp(spv::OpIAdd, typeId, id, builder.createCompositeExtract(mulOp, typeId, i));
t.jungb16bea82018-11-15 10:21:36 +01008097 }
John Kessenich2359bd02015-12-06 19:29:11 -07008098 } else {
John Kessenich55e7d112015-11-15 21:33:39 -07008099 switch (consumedOperands) {
John Kessenich140f3df2015-06-26 16:58:36 -06008100 case 0:
8101 // should all be handled by visitAggregate and createNoArgOperation
8102 assert(0);
8103 return 0;
8104 case 1:
8105 // should all be handled by createUnaryOperation
8106 assert(0);
8107 return 0;
8108 case 2:
8109 id = builder.createBinOp(opCode, typeId, operands[0], operands[1]);
8110 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008111 default:
John Kessenich55e7d112015-11-15 21:33:39 -07008112 // anything 3 or over doesn't have l-value operands, so all should be consumed
8113 assert(consumedOperands == operands.size());
8114 id = builder.createOp(opCode, typeId, operands);
John Kessenich140f3df2015-06-26 16:58:36 -06008115 break;
8116 }
8117 }
8118
John Kessenichb9197c82019-08-11 07:41:45 -06008119#ifndef GLSLANG_WEB
John Kessenich55e7d112015-11-15 21:33:39 -07008120 // Decode the return types that were structures
8121 switch (op) {
8122 case glslang::EOpAddCarry:
8123 case glslang::EOpSubBorrow:
8124 builder.createStore(builder.createCompositeExtract(id, typeId0, 1), operands[2]);
8125 id = builder.createCompositeExtract(id, typeId0, 0);
8126 break;
8127 case glslang::EOpUMulExtended:
8128 case glslang::EOpIMulExtended:
8129 builder.createStore(builder.createCompositeExtract(id, typeId0, 0), operands[3]);
8130 builder.createStore(builder.createCompositeExtract(id, typeId0, 1), operands[2]);
8131 break;
8132 case glslang::EOpFrexp:
Rex Xu470026f2017-03-29 17:12:40 +08008133 {
8134 assert(operands.size() == 2);
8135 if (builder.isFloatType(builder.getScalarTypeId(typeId1))) {
8136 // "exp" is floating-point type (from HLSL intrinsic)
8137 spv::Id member1 = builder.createCompositeExtract(id, frexpIntType, 1);
8138 member1 = builder.createUnaryOp(spv::OpConvertSToF, typeId1, member1);
8139 builder.createStore(member1, operands[1]);
8140 } else
8141 // "exp" is integer type (from GLSL built-in function)
8142 builder.createStore(builder.createCompositeExtract(id, frexpIntType, 1), operands[1]);
8143 id = builder.createCompositeExtract(id, typeId0, 0);
8144 }
John Kessenich55e7d112015-11-15 21:33:39 -07008145 break;
8146 default:
8147 break;
8148 }
John Kessenichb9197c82019-08-11 07:41:45 -06008149#endif
John Kessenich55e7d112015-11-15 21:33:39 -07008150
John Kessenich32cfd492016-02-02 12:37:46 -07008151 return builder.setPrecision(id, precision);
John Kessenich140f3df2015-06-26 16:58:36 -06008152}
8153
Rex Xu9d93a232016-05-05 12:30:44 +08008154// Intrinsics with no arguments (or no return value, and no precision).
8155spv::Id TGlslangToSpvTraverser::createNoArgOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId)
John Kessenich140f3df2015-06-26 16:58:36 -06008156{
Jeff Bolz36831c92018-09-05 10:11:41 -05008157 // GLSL memory barriers use queuefamily scope in new model, device scope in old model
John Kessenich8985fc92020-03-03 10:25:07 -07008158 spv::Scope memoryBarrierScope = glslangIntermediate->usingVulkanMemoryModel() ?
8159 spv::ScopeQueueFamilyKHR : spv::ScopeDevice;
John Kessenich140f3df2015-06-26 16:58:36 -06008160
8161 switch (op) {
John Kessenich140f3df2015-06-26 16:58:36 -06008162 case glslang::EOpBarrier:
John Kessenich82979362017-12-11 04:02:24 -07008163 if (glslangIntermediate->getStage() == EShLangTessControl) {
Jeff Bolz36831c92018-09-05 10:11:41 -05008164 if (glslangIntermediate->usingVulkanMemoryModel()) {
8165 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
8166 spv::MemorySemanticsOutputMemoryKHRMask |
8167 spv::MemorySemanticsAcquireReleaseMask);
8168 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
8169 } else {
8170 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeInvocation, spv::MemorySemanticsMaskNone);
8171 }
John Kessenich82979362017-12-11 04:02:24 -07008172 } else {
8173 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
8174 spv::MemorySemanticsWorkgroupMemoryMask |
8175 spv::MemorySemanticsAcquireReleaseMask);
8176 }
John Kessenich140f3df2015-06-26 16:58:36 -06008177 return 0;
8178 case glslang::EOpMemoryBarrier:
Jeff Bolz36831c92018-09-05 10:11:41 -05008179 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsAllMemory |
8180 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06008181 return 0;
John Kessenich140f3df2015-06-26 16:58:36 -06008182 case glslang::EOpMemoryBarrierBuffer:
Jeff Bolz36831c92018-09-05 10:11:41 -05008183 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsUniformMemoryMask |
8184 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06008185 return 0;
John Kessenich140f3df2015-06-26 16:58:36 -06008186 case glslang::EOpMemoryBarrierShared:
Jeff Bolz36831c92018-09-05 10:11:41 -05008187 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsWorkgroupMemoryMask |
8188 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06008189 return 0;
8190 case glslang::EOpGroupMemoryBarrier:
John Kessenich82979362017-12-11 04:02:24 -07008191 builder.createMemoryBarrier(spv::ScopeWorkgroup, spv::MemorySemanticsAllMemory |
8192 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06008193 return 0;
John Kessenich3dd1ce52019-10-17 07:08:40 -06008194#ifndef GLSLANG_WEB
8195 case glslang::EOpMemoryBarrierAtomicCounter:
8196 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsAtomicCounterMemoryMask |
8197 spv::MemorySemanticsAcquireReleaseMask);
8198 return 0;
8199 case glslang::EOpMemoryBarrierImage:
8200 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsImageMemoryMask |
8201 spv::MemorySemanticsAcquireReleaseMask);
8202 return 0;
LoopDawg6e72fdd2016-06-15 09:50:24 -06008203 case glslang::EOpAllMemoryBarrierWithGroupSync:
John Kessenich838d7af2017-12-12 22:50:53 -07008204 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeDevice,
John Kessenich82979362017-12-11 04:02:24 -07008205 spv::MemorySemanticsAllMemory |
John Kessenich838d7af2017-12-12 22:50:53 -07008206 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06008207 return 0;
John Kessenich838d7af2017-12-12 22:50:53 -07008208 case glslang::EOpDeviceMemoryBarrier:
8209 builder.createMemoryBarrier(spv::ScopeDevice, spv::MemorySemanticsUniformMemoryMask |
8210 spv::MemorySemanticsImageMemoryMask |
8211 spv::MemorySemanticsAcquireReleaseMask);
8212 return 0;
8213 case glslang::EOpDeviceMemoryBarrierWithGroupSync:
8214 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeDevice, spv::MemorySemanticsUniformMemoryMask |
8215 spv::MemorySemanticsImageMemoryMask |
8216 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06008217 return 0;
8218 case glslang::EOpWorkgroupMemoryBarrier:
John Kessenich838d7af2017-12-12 22:50:53 -07008219 builder.createMemoryBarrier(spv::ScopeWorkgroup, spv::MemorySemanticsWorkgroupMemoryMask |
8220 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06008221 return 0;
8222 case glslang::EOpWorkgroupMemoryBarrierWithGroupSync:
John Kessenich838d7af2017-12-12 22:50:53 -07008223 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
8224 spv::MemorySemanticsWorkgroupMemoryMask |
8225 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06008226 return 0;
John Kessenich66011cb2018-03-06 16:12:04 -07008227 case glslang::EOpSubgroupBarrier:
8228 builder.createControlBarrier(spv::ScopeSubgroup, spv::ScopeSubgroup, spv::MemorySemanticsAllMemory |
8229 spv::MemorySemanticsAcquireReleaseMask);
8230 return spv::NoResult;
8231 case glslang::EOpSubgroupMemoryBarrier:
8232 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsAllMemory |
8233 spv::MemorySemanticsAcquireReleaseMask);
8234 return spv::NoResult;
8235 case glslang::EOpSubgroupMemoryBarrierBuffer:
8236 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsUniformMemoryMask |
8237 spv::MemorySemanticsAcquireReleaseMask);
8238 return spv::NoResult;
8239 case glslang::EOpSubgroupMemoryBarrierImage:
8240 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsImageMemoryMask |
8241 spv::MemorySemanticsAcquireReleaseMask);
8242 return spv::NoResult;
8243 case glslang::EOpSubgroupMemoryBarrierShared:
8244 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsWorkgroupMemoryMask |
8245 spv::MemorySemanticsAcquireReleaseMask);
8246 return spv::NoResult;
John Kessenichf8d1d742019-10-21 06:55:11 -06008247
8248 case glslang::EOpEmitVertex:
8249 builder.createNoResultOp(spv::OpEmitVertex);
8250 return 0;
8251 case glslang::EOpEndPrimitive:
8252 builder.createNoResultOp(spv::OpEndPrimitive);
8253 return 0;
8254
John Kessenich66011cb2018-03-06 16:12:04 -07008255 case glslang::EOpSubgroupElect: {
8256 std::vector<spv::Id> operands;
8257 return createSubgroupOperation(op, typeId, operands, glslang::EbtVoid);
8258 }
Rex Xu9d93a232016-05-05 12:30:44 +08008259 case glslang::EOpTime:
8260 {
8261 std::vector<spv::Id> args; // Dummy arguments
8262 spv::Id id = builder.createBuiltinCall(typeId, getExtBuiltins(spv::E_SPV_AMD_gcn_shader), spv::TimeAMD, args);
8263 return builder.setPrecision(id, precision);
8264 }
Daniel Kochffccefd2020-11-23 15:41:27 -05008265 case glslang::EOpIgnoreIntersectionNV:
8266 builder.createNoResultOp(spv::OpIgnoreIntersectionNV);
Chao Chenb50c02e2018-09-19 11:42:24 -07008267 return 0;
Daniel Kochffccefd2020-11-23 15:41:27 -05008268 case glslang::EOpTerminateRayNV:
8269 builder.createNoResultOp(spv::OpTerminateRayNV);
Chao Chenb50c02e2018-09-19 11:42:24 -07008270 return 0;
Torosdagli06c2eee2020-03-19 11:09:57 -04008271 case glslang::EOpRayQueryInitialize:
8272 builder.createNoResultOp(spv::OpRayQueryInitializeKHR);
8273 return 0;
8274 case glslang::EOpRayQueryTerminate:
8275 builder.createNoResultOp(spv::OpRayQueryTerminateKHR);
8276 return 0;
8277 case glslang::EOpRayQueryGenerateIntersection:
8278 builder.createNoResultOp(spv::OpRayQueryGenerateIntersectionKHR);
8279 return 0;
8280 case glslang::EOpRayQueryConfirmIntersection:
8281 builder.createNoResultOp(spv::OpRayQueryConfirmIntersectionKHR);
8282 return 0;
Jeff Bolzc6f0ce82019-06-03 11:33:50 -05008283 case glslang::EOpBeginInvocationInterlock:
8284 builder.createNoResultOp(spv::OpBeginInvocationInterlockEXT);
8285 return 0;
8286 case glslang::EOpEndInvocationInterlock:
8287 builder.createNoResultOp(spv::OpEndInvocationInterlockEXT);
8288 return 0;
8289
Jeff Bolzba6170b2019-07-01 09:23:23 -05008290 case glslang::EOpIsHelperInvocation:
8291 {
8292 std::vector<spv::Id> args; // Dummy arguments
Rex Xubb7307b2019-07-15 14:57:20 +08008293 builder.addExtension(spv::E_SPV_EXT_demote_to_helper_invocation);
8294 builder.addCapability(spv::CapabilityDemoteToHelperInvocationEXT);
8295 return builder.createOp(spv::OpIsHelperInvocationEXT, typeId, args);
Jeff Bolzba6170b2019-07-01 09:23:23 -05008296 }
8297
amhagan91fb0092019-07-10 21:14:38 -04008298 case glslang::EOpReadClockSubgroupKHR: {
8299 std::vector<spv::Id> args;
8300 args.push_back(builder.makeUintConstant(spv::ScopeSubgroup));
8301 builder.addExtension(spv::E_SPV_KHR_shader_clock);
8302 builder.addCapability(spv::CapabilityShaderClockKHR);
8303 return builder.createOp(spv::OpReadClockKHR, typeId, args);
8304 }
8305
8306 case glslang::EOpReadClockDeviceKHR: {
8307 std::vector<spv::Id> args;
8308 args.push_back(builder.makeUintConstant(spv::ScopeDevice));
8309 builder.addExtension(spv::E_SPV_KHR_shader_clock);
8310 builder.addCapability(spv::CapabilityShaderClockKHR);
8311 return builder.createOp(spv::OpReadClockKHR, typeId, args);
8312 }
John Kessenich3dd1ce52019-10-17 07:08:40 -06008313#endif
John Kessenich140f3df2015-06-26 16:58:36 -06008314 default:
John Kessenich155d3512019-08-08 23:29:20 -06008315 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008316 }
John Kessenich155d3512019-08-08 23:29:20 -06008317
8318 logger->missingFunctionality("unknown operation with no arguments");
8319
8320 return 0;
John Kessenich140f3df2015-06-26 16:58:36 -06008321}
8322
8323spv::Id TGlslangToSpvTraverser::getSymbolId(const glslang::TIntermSymbol* symbol)
8324{
John Kessenich2f273362015-07-18 22:34:27 -06008325 auto iter = symbolValues.find(symbol->getId());
John Kessenich140f3df2015-06-26 16:58:36 -06008326 spv::Id id;
8327 if (symbolValues.end() != iter) {
8328 id = iter->second;
8329 return id;
8330 }
8331
8332 // it was not found, create it
John Kessenich9c14f772019-06-17 08:38:35 -06008333 spv::BuiltIn builtIn = TranslateBuiltInDecoration(symbol->getQualifier().builtIn, false);
Daniel Kochdb32b242020-03-17 20:42:47 -04008334 auto forcedType = getForcedType(symbol->getQualifier().builtIn, symbol->getType());
John Kessenich9c14f772019-06-17 08:38:35 -06008335 id = createSpvVariable(symbol, forcedType.first);
John Kessenich140f3df2015-06-26 16:58:36 -06008336 symbolValues[symbol->getId()] = id;
John Kessenich9c14f772019-06-17 08:38:35 -06008337 if (forcedType.second != spv::NoType)
8338 forceType[id] = forcedType.second;
John Kessenich140f3df2015-06-26 16:58:36 -06008339
Rex Xuc884b4a2016-06-29 15:03:44 +08008340 if (symbol->getBasicType() != glslang::EbtBlock) {
John Kessenich5d610ee2018-03-07 18:05:55 -07008341 builder.addDecoration(id, TranslatePrecisionDecoration(symbol->getType()));
8342 builder.addDecoration(id, TranslateInterpolationDecoration(symbol->getType().getQualifier()));
8343 builder.addDecoration(id, TranslateAuxiliaryStorageDecoration(symbol->getType().getQualifier()));
John Kessenicha28f7a72019-08-06 07:00:58 -06008344#ifndef GLSLANG_WEB
Chao Chen3c366992018-09-19 11:41:59 -07008345 addMeshNVDecoration(id, /*member*/ -1, symbol->getType().getQualifier());
John Kessenichb9197c82019-08-11 07:41:45 -06008346 if (symbol->getQualifier().hasComponent())
8347 builder.addDecoration(id, spv::DecorationComponent, symbol->getQualifier().layoutComponent);
8348 if (symbol->getQualifier().hasIndex())
8349 builder.addDecoration(id, spv::DecorationIndex, symbol->getQualifier().layoutIndex);
Chao Chen3c366992018-09-19 11:41:59 -07008350#endif
John Kessenich6c292d32016-02-15 20:58:50 -07008351 if (symbol->getType().getQualifier().hasSpecConstantId())
John Kessenich5d610ee2018-03-07 18:05:55 -07008352 builder.addDecoration(id, spv::DecorationSpecId, symbol->getType().getQualifier().layoutSpecConstantId);
John Kessenich91e4aa52016-07-07 17:46:42 -06008353 // atomic counters use this:
8354 if (symbol->getQualifier().hasOffset())
8355 builder.addDecoration(id, spv::DecorationOffset, symbol->getQualifier().layoutOffset);
John Kessenich140f3df2015-06-26 16:58:36 -06008356 }
8357
scygan2c864272016-05-18 18:09:17 +02008358 if (symbol->getQualifier().hasLocation())
8359 builder.addDecoration(id, spv::DecorationLocation, symbol->getQualifier().layoutLocation);
John Kessenich5d610ee2018-03-07 18:05:55 -07008360 builder.addDecoration(id, TranslateInvariantDecoration(symbol->getType().getQualifier()));
John Kessenichf2d8a5c2016-03-03 22:29:11 -07008361 if (symbol->getQualifier().hasStream() && glslangIntermediate->isMultiStream()) {
John Kessenich92187592016-02-01 13:45:25 -07008362 builder.addCapability(spv::CapabilityGeometryStreams);
John Kessenich140f3df2015-06-26 16:58:36 -06008363 builder.addDecoration(id, spv::DecorationStream, symbol->getQualifier().layoutStream);
John Kessenich92187592016-02-01 13:45:25 -07008364 }
John Kessenich140f3df2015-06-26 16:58:36 -06008365 if (symbol->getQualifier().hasSet())
8366 builder.addDecoration(id, spv::DecorationDescriptorSet, symbol->getQualifier().layoutSet);
John Kessenich6c292d32016-02-15 20:58:50 -07008367 else if (IsDescriptorResource(symbol->getType())) {
8368 // default to 0
8369 builder.addDecoration(id, spv::DecorationDescriptorSet, 0);
8370 }
John Kessenich140f3df2015-06-26 16:58:36 -06008371 if (symbol->getQualifier().hasBinding())
8372 builder.addDecoration(id, spv::DecorationBinding, symbol->getQualifier().layoutBinding);
Jeff Bolz0a93cfb2018-12-11 20:53:59 -06008373 else if (IsDescriptorResource(symbol->getType())) {
8374 // default to 0
8375 builder.addDecoration(id, spv::DecorationBinding, 0);
8376 }
John Kessenich6c292d32016-02-15 20:58:50 -07008377 if (symbol->getQualifier().hasAttachment())
8378 builder.addDecoration(id, spv::DecorationInputAttachmentIndex, symbol->getQualifier().layoutAttachment);
John Kessenich140f3df2015-06-26 16:58:36 -06008379 if (glslangIntermediate->getXfbMode()) {
John Kessenich92187592016-02-01 13:45:25 -07008380 builder.addCapability(spv::CapabilityTransformFeedback);
John Kessenichedaf5562017-12-15 06:21:46 -07008381 if (symbol->getQualifier().hasXfbBuffer()) {
John Kessenich140f3df2015-06-26 16:58:36 -06008382 builder.addDecoration(id, spv::DecorationXfbBuffer, symbol->getQualifier().layoutXfbBuffer);
John Kessenichedaf5562017-12-15 06:21:46 -07008383 unsigned stride = glslangIntermediate->getXfbStride(symbol->getQualifier().layoutXfbBuffer);
8384 if (stride != glslang::TQualifier::layoutXfbStrideEnd)
8385 builder.addDecoration(id, spv::DecorationXfbStride, stride);
8386 }
8387 if (symbol->getQualifier().hasXfbOffset())
8388 builder.addDecoration(id, spv::DecorationOffset, symbol->getQualifier().layoutXfbOffset);
John Kessenich140f3df2015-06-26 16:58:36 -06008389 }
8390
John Kessenichb9197c82019-08-11 07:41:45 -06008391 // add built-in variable decoration
8392 if (builtIn != spv::BuiltInMax) {
8393 builder.addDecoration(id, spv::DecorationBuiltIn, (int)builtIn);
8394 }
8395
8396#ifndef GLSLANG_WEB
Daniel Kochffccefd2020-11-23 15:41:27 -05008397 // Subgroup builtins which have input storage class are volatile for ray tracing stages.
8398 if (symbol->getType().isImage() || symbol->getQualifier().isPipeInput()) {
Rex Xu1da878f2016-02-21 20:59:01 +08008399 std::vector<spv::Decoration> memory;
John Kessenich8985fc92020-03-03 10:25:07 -07008400 TranslateMemoryDecoration(symbol->getType().getQualifier(), memory,
8401 glslangIntermediate->usingVulkanMemoryModel());
Rex Xu1da878f2016-02-21 20:59:01 +08008402 for (unsigned int i = 0; i < memory.size(); ++i)
John Kessenich5d610ee2018-03-07 18:05:55 -07008403 builder.addDecoration(id, memory[i]);
Rex Xu1da878f2016-02-21 20:59:01 +08008404 }
8405
chaoc0ad6a4e2016-12-19 16:29:34 -08008406 if (builtIn == spv::BuiltInSampleMask) {
8407 spv::Decoration decoration;
8408 // GL_NV_sample_mask_override_coverage extension
8409 if (glslangIntermediate->getLayoutOverrideCoverage())
chaoc771d89f2017-01-13 01:10:53 -08008410 decoration = (spv::Decoration)spv::DecorationOverrideCoverageNV;
chaoc0ad6a4e2016-12-19 16:29:34 -08008411 else
8412 decoration = (spv::Decoration)spv::DecorationMax;
John Kessenich5d610ee2018-03-07 18:05:55 -07008413 builder.addDecoration(id, decoration);
chaoc0ad6a4e2016-12-19 16:29:34 -08008414 if (decoration != spv::DecorationMax) {
Jason Macnakdbd4c3c2019-07-12 14:33:02 -07008415 builder.addCapability(spv::CapabilitySampleMaskOverrideCoverageNV);
chaoc0ad6a4e2016-12-19 16:29:34 -08008416 builder.addExtension(spv::E_SPV_NV_sample_mask_override_coverage);
8417 }
8418 }
chaoc771d89f2017-01-13 01:10:53 -08008419 else if (builtIn == spv::BuiltInLayer) {
8420 // SPV_NV_viewport_array2 extension
John Kessenichb41bff62017-08-11 13:07:17 -06008421 if (symbol->getQualifier().layoutViewportRelative) {
John Kessenich5d610ee2018-03-07 18:05:55 -07008422 builder.addDecoration(id, (spv::Decoration)spv::DecorationViewportRelativeNV);
chaoc771d89f2017-01-13 01:10:53 -08008423 builder.addCapability(spv::CapabilityShaderViewportMaskNV);
8424 builder.addExtension(spv::E_SPV_NV_viewport_array2);
8425 }
John Kessenichb41bff62017-08-11 13:07:17 -06008426 if (symbol->getQualifier().layoutSecondaryViewportRelativeOffset != -2048) {
John Kessenich5d610ee2018-03-07 18:05:55 -07008427 builder.addDecoration(id, (spv::Decoration)spv::DecorationSecondaryViewportRelativeNV,
8428 symbol->getQualifier().layoutSecondaryViewportRelativeOffset);
chaoc771d89f2017-01-13 01:10:53 -08008429 builder.addCapability(spv::CapabilityShaderStereoViewNV);
8430 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
8431 }
8432 }
8433
chaoc6e5acae2016-12-20 13:28:52 -08008434 if (symbol->getQualifier().layoutPassthrough) {
John Kessenich5d610ee2018-03-07 18:05:55 -07008435 builder.addDecoration(id, spv::DecorationPassthroughNV);
chaoc771d89f2017-01-13 01:10:53 -08008436 builder.addCapability(spv::CapabilityGeometryShaderPassthroughNV);
chaoc6e5acae2016-12-20 13:28:52 -08008437 builder.addExtension(spv::E_SPV_NV_geometry_shader_passthrough);
8438 }
Chao Chen9eada4b2018-09-19 11:39:56 -07008439 if (symbol->getQualifier().pervertexNV) {
8440 builder.addDecoration(id, spv::DecorationPerVertexNV);
8441 builder.addCapability(spv::CapabilityFragmentBarycentricNV);
8442 builder.addExtension(spv::E_SPV_NV_fragment_shader_barycentric);
8443 }
chaoc0ad6a4e2016-12-19 16:29:34 -08008444
John Kessenich5d610ee2018-03-07 18:05:55 -07008445 if (glslangIntermediate->getHlslFunctionality1() && symbol->getType().getQualifier().semanticName != nullptr) {
8446 builder.addExtension("SPV_GOOGLE_hlsl_functionality1");
8447 builder.addDecoration(id, (spv::Decoration)spv::DecorationHlslSemanticGOOGLE,
8448 symbol->getType().getQualifier().semanticName);
8449 }
8450
John Kessenich7015bd62019-08-01 03:28:08 -06008451 if (symbol->isReference()) {
John Kessenich8985fc92020-03-03 10:25:07 -07008452 builder.addDecoration(id, symbol->getType().getQualifier().restrict ?
8453 spv::DecorationRestrictPointerEXT : spv::DecorationAliasedPointerEXT);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06008454 }
John Kessenichb9197c82019-08-11 07:41:45 -06008455#endif
Jeff Bolz9f2aec42019-01-06 17:58:04 -06008456
John Kessenich140f3df2015-06-26 16:58:36 -06008457 return id;
8458}
8459
John Kessenicha28f7a72019-08-06 07:00:58 -06008460#ifndef GLSLANG_WEB
Chao Chen3c366992018-09-19 11:41:59 -07008461// add per-primitive, per-view. per-task decorations to a struct member (member >= 0) or an object
8462void TGlslangToSpvTraverser::addMeshNVDecoration(spv::Id id, int member, const glslang::TQualifier& qualifier)
8463{
8464 if (member >= 0) {
Sahil Parmar38772c02018-10-25 23:50:59 -07008465 if (qualifier.perPrimitiveNV) {
8466 // Need to add capability/extension for fragment shader.
8467 // Mesh shader already adds this by default.
8468 if (glslangIntermediate->getStage() == EShLangFragment) {
8469 builder.addCapability(spv::CapabilityMeshShadingNV);
8470 builder.addExtension(spv::E_SPV_NV_mesh_shader);
8471 }
Chao Chen3c366992018-09-19 11:41:59 -07008472 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerPrimitiveNV);
Sahil Parmar38772c02018-10-25 23:50:59 -07008473 }
Chao Chen3c366992018-09-19 11:41:59 -07008474 if (qualifier.perViewNV)
8475 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerViewNV);
8476 if (qualifier.perTaskNV)
8477 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerTaskNV);
8478 } else {
Sahil Parmar38772c02018-10-25 23:50:59 -07008479 if (qualifier.perPrimitiveNV) {
8480 // Need to add capability/extension for fragment shader.
8481 // Mesh shader already adds this by default.
8482 if (glslangIntermediate->getStage() == EShLangFragment) {
8483 builder.addCapability(spv::CapabilityMeshShadingNV);
8484 builder.addExtension(spv::E_SPV_NV_mesh_shader);
8485 }
Chao Chen3c366992018-09-19 11:41:59 -07008486 builder.addDecoration(id, spv::DecorationPerPrimitiveNV);
Sahil Parmar38772c02018-10-25 23:50:59 -07008487 }
Chao Chen3c366992018-09-19 11:41:59 -07008488 if (qualifier.perViewNV)
8489 builder.addDecoration(id, spv::DecorationPerViewNV);
8490 if (qualifier.perTaskNV)
8491 builder.addDecoration(id, spv::DecorationPerTaskNV);
8492 }
8493}
8494#endif
8495
John Kessenich55e7d112015-11-15 21:33:39 -07008496// Make a full tree of instructions to build a SPIR-V specialization constant,
John Kessenich6c292d32016-02-15 20:58:50 -07008497// or regular constant if possible.
John Kessenich55e7d112015-11-15 21:33:39 -07008498//
8499// TBD: this is not yet done, nor verified to be the best design, it does do the leaf symbols though
8500//
8501// Recursively walk the nodes. The nodes form a tree whose leaves are
8502// regular constants, which themselves are trees that createSpvConstant()
8503// recursively walks. So, this function walks the "top" of the tree:
8504// - emit specialization constant-building instructions for specConstant
8505// - when running into a non-spec-constant, switch to createSpvConstant()
qining08408382016-03-21 09:51:37 -04008506spv::Id TGlslangToSpvTraverser::createSpvConstant(const glslang::TIntermTyped& node)
John Kessenich55e7d112015-11-15 21:33:39 -07008507{
John Kessenich7cc0e282016-03-20 00:46:02 -06008508 assert(node.getQualifier().isConstant());
John Kessenich55e7d112015-11-15 21:33:39 -07008509
qining4f4bb812016-04-03 23:55:17 -04008510 // Handle front-end constants first (non-specialization constants).
John Kessenich6c292d32016-02-15 20:58:50 -07008511 if (! node.getQualifier().specConstant) {
8512 // hand off to the non-spec-constant path
8513 assert(node.getAsConstantUnion() != nullptr || node.getAsSymbolNode() != nullptr);
8514 int nextConst = 0;
John Kessenich8985fc92020-03-03 10:25:07 -07008515 return createSpvConstantFromConstUnionArray(node.getType(), node.getAsConstantUnion() ?
8516 node.getAsConstantUnion()->getConstArray() : node.getAsSymbolNode()->getConstArray(),
8517 nextConst, false);
John Kessenich6c292d32016-02-15 20:58:50 -07008518 }
8519
8520 // We now know we have a specialization constant to build
8521
Ricardo Garcia232ba0d2020-06-03 15:52:55 +02008522 // Extra capabilities may be needed.
8523 if (node.getType().contains8BitInt())
8524 builder.addCapability(spv::CapabilityInt8);
8525 if (node.getType().contains16BitFloat())
8526 builder.addCapability(spv::CapabilityFloat16);
8527 if (node.getType().contains16BitInt())
8528 builder.addCapability(spv::CapabilityInt16);
8529 if (node.getType().contains64BitInt())
8530 builder.addCapability(spv::CapabilityInt64);
8531 if (node.getType().containsDouble())
8532 builder.addCapability(spv::CapabilityFloat64);
8533
John Kessenichd94c0032016-05-30 19:29:40 -06008534 // gl_WorkGroupSize is a special case until the front-end handles hierarchical specialization constants,
qining4f4bb812016-04-03 23:55:17 -04008535 // even then, it's specialization ids are handled by special case syntax in GLSL: layout(local_size_x = ...
8536 if (node.getType().getQualifier().builtIn == glslang::EbvWorkGroupSize) {
8537 std::vector<spv::Id> dimConstId;
8538 for (int dim = 0; dim < 3; ++dim) {
8539 bool specConst = (glslangIntermediate->getLocalSizeSpecId(dim) != glslang::TQualifier::layoutNotSet);
8540 dimConstId.push_back(builder.makeUintConstant(glslangIntermediate->getLocalSize(dim), specConst));
John Kessenich5d610ee2018-03-07 18:05:55 -07008541 if (specConst) {
8542 builder.addDecoration(dimConstId.back(), spv::DecorationSpecId,
8543 glslangIntermediate->getLocalSizeSpecId(dim));
8544 }
qining4f4bb812016-04-03 23:55:17 -04008545 }
8546 return builder.makeCompositeConstant(builder.makeVectorType(builder.makeUintType(32), 3), dimConstId, true);
8547 }
8548
8549 // An AST node labelled as specialization constant should be a symbol node.
8550 // Its initializer should either be a sub tree with constant nodes, or a constant union array.
8551 if (auto* sn = node.getAsSymbolNode()) {
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07008552 spv::Id result;
qining4f4bb812016-04-03 23:55:17 -04008553 if (auto* sub_tree = sn->getConstSubtree()) {
qining27e04a02016-04-14 16:40:20 -04008554 // Traverse the constant constructor sub tree like generating normal run-time instructions.
8555 // During the AST traversal, if the node is marked as 'specConstant', SpecConstantOpModeGuard
8556 // will set the builder into spec constant op instruction generating mode.
8557 sub_tree->traverse(this);
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07008558 result = accessChainLoad(sub_tree->getType());
8559 } else if (auto* const_union_array = &sn->getConstArray()) {
qining4f4bb812016-04-03 23:55:17 -04008560 int nextConst = 0;
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07008561 result = createSpvConstantFromConstUnionArray(sn->getType(), *const_union_array, nextConst, true);
Dan Sinclair70661b92018-11-12 13:56:52 -05008562 } else {
8563 logger->missingFunctionality("Invalid initializer for spec onstant.");
Dan Sinclair70661b92018-11-12 13:56:52 -05008564 return spv::NoResult;
John Kessenich6c292d32016-02-15 20:58:50 -07008565 }
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07008566 builder.addName(result, sn->getName().c_str());
8567 return result;
John Kessenich6c292d32016-02-15 20:58:50 -07008568 }
qining4f4bb812016-04-03 23:55:17 -04008569
8570 // Neither a front-end constant node, nor a specialization constant node with constant union array or
8571 // constant sub tree as initializer.
Lei Zhang17535f72016-05-04 15:55:59 -04008572 logger->missingFunctionality("Neither a front-end constant nor a spec constant.");
qining4f4bb812016-04-03 23:55:17 -04008573 return spv::NoResult;
John Kessenich55e7d112015-11-15 21:33:39 -07008574}
8575
John Kessenich140f3df2015-06-26 16:58:36 -06008576// Use 'consts' as the flattened glslang source of scalar constants to recursively
8577// build the aggregate SPIR-V constant.
8578//
8579// If there are not enough elements present in 'consts', 0 will be substituted;
8580// an empty 'consts' can be used to create a fully zeroed SPIR-V constant.
8581//
John Kessenich8985fc92020-03-03 10:25:07 -07008582spv::Id TGlslangToSpvTraverser::createSpvConstantFromConstUnionArray(const glslang::TType& glslangType,
8583 const glslang::TConstUnionArray& consts, int& nextConst, bool specConstant)
John Kessenich140f3df2015-06-26 16:58:36 -06008584{
8585 // vector of constants for SPIR-V
8586 std::vector<spv::Id> spvConsts;
8587
8588 // Type is used for struct and array constants
8589 spv::Id typeId = convertGlslangToSpvType(glslangType);
8590
8591 if (glslangType.isArray()) {
John Kessenich65c78a02015-08-10 17:08:55 -06008592 glslang::TType elementType(glslangType, 0);
8593 for (int i = 0; i < glslangType.getOuterArraySize(); ++i)
qining08408382016-03-21 09:51:37 -04008594 spvConsts.push_back(createSpvConstantFromConstUnionArray(elementType, consts, nextConst, false));
John Kessenich140f3df2015-06-26 16:58:36 -06008595 } else if (glslangType.isMatrix()) {
John Kessenich65c78a02015-08-10 17:08:55 -06008596 glslang::TType vectorType(glslangType, 0);
John Kessenich140f3df2015-06-26 16:58:36 -06008597 for (int col = 0; col < glslangType.getMatrixCols(); ++col)
qining08408382016-03-21 09:51:37 -04008598 spvConsts.push_back(createSpvConstantFromConstUnionArray(vectorType, consts, nextConst, false));
Jeff Bolz4605e2e2019-02-19 13:10:32 -06008599 } else if (glslangType.isCoopMat()) {
8600 glslang::TType componentType(glslangType.getBasicType());
8601 spvConsts.push_back(createSpvConstantFromConstUnionArray(componentType, consts, nextConst, false));
Jeff Bolz9f2aec42019-01-06 17:58:04 -06008602 } else if (glslangType.isStruct()) {
John Kessenich140f3df2015-06-26 16:58:36 -06008603 glslang::TVector<glslang::TTypeLoc>::const_iterator iter;
8604 for (iter = glslangType.getStruct()->begin(); iter != glslangType.getStruct()->end(); ++iter)
qining08408382016-03-21 09:51:37 -04008605 spvConsts.push_back(createSpvConstantFromConstUnionArray(*iter->type, consts, nextConst, false));
John Kessenich8d72f1a2016-05-20 12:06:03 -06008606 } else if (glslangType.getVectorSize() > 1) {
John Kessenich140f3df2015-06-26 16:58:36 -06008607 for (unsigned int i = 0; i < (unsigned int)glslangType.getVectorSize(); ++i) {
8608 bool zero = nextConst >= consts.size();
8609 switch (glslangType.getBasicType()) {
John Kessenich39697cd2019-08-08 10:35:51 -06008610 case glslang::EbtInt:
8611 spvConsts.push_back(builder.makeIntConstant(zero ? 0 : consts[nextConst].getIConst()));
8612 break;
8613 case glslang::EbtUint:
8614 spvConsts.push_back(builder.makeUintConstant(zero ? 0 : consts[nextConst].getUConst()));
8615 break;
8616 case glslang::EbtFloat:
8617 spvConsts.push_back(builder.makeFloatConstant(zero ? 0.0F : (float)consts[nextConst].getDConst()));
8618 break;
8619 case glslang::EbtBool:
8620 spvConsts.push_back(builder.makeBoolConstant(zero ? false : consts[nextConst].getBConst()));
8621 break;
8622#ifndef GLSLANG_WEB
John Kessenich66011cb2018-03-06 16:12:04 -07008623 case glslang::EbtInt8:
8624 spvConsts.push_back(builder.makeInt8Constant(zero ? 0 : consts[nextConst].getI8Const()));
8625 break;
8626 case glslang::EbtUint8:
8627 spvConsts.push_back(builder.makeUint8Constant(zero ? 0 : consts[nextConst].getU8Const()));
8628 break;
8629 case glslang::EbtInt16:
8630 spvConsts.push_back(builder.makeInt16Constant(zero ? 0 : consts[nextConst].getI16Const()));
8631 break;
8632 case glslang::EbtUint16:
8633 spvConsts.push_back(builder.makeUint16Constant(zero ? 0 : consts[nextConst].getU16Const()));
8634 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08008635 case glslang::EbtInt64:
8636 spvConsts.push_back(builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const()));
8637 break;
8638 case glslang::EbtUint64:
8639 spvConsts.push_back(builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const()));
8640 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008641 case glslang::EbtDouble:
8642 spvConsts.push_back(builder.makeDoubleConstant(zero ? 0.0 : consts[nextConst].getDConst()));
8643 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08008644 case glslang::EbtFloat16:
8645 spvConsts.push_back(builder.makeFloat16Constant(zero ? 0.0F : (float)consts[nextConst].getDConst()));
8646 break;
John Kessenich39697cd2019-08-08 10:35:51 -06008647#endif
John Kessenich140f3df2015-06-26 16:58:36 -06008648 default:
John Kessenich55e7d112015-11-15 21:33:39 -07008649 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06008650 break;
8651 }
8652 ++nextConst;
8653 }
8654 } else {
8655 // we have a non-aggregate (scalar) constant
8656 bool zero = nextConst >= consts.size();
8657 spv::Id scalar = 0;
8658 switch (glslangType.getBasicType()) {
John Kessenich39697cd2019-08-08 10:35:51 -06008659 case glslang::EbtInt:
8660 scalar = builder.makeIntConstant(zero ? 0 : consts[nextConst].getIConst(), specConstant);
8661 break;
8662 case glslang::EbtUint:
8663 scalar = builder.makeUintConstant(zero ? 0 : consts[nextConst].getUConst(), specConstant);
8664 break;
8665 case glslang::EbtFloat:
8666 scalar = builder.makeFloatConstant(zero ? 0.0F : (float)consts[nextConst].getDConst(), specConstant);
8667 break;
8668 case glslang::EbtBool:
8669 scalar = builder.makeBoolConstant(zero ? false : consts[nextConst].getBConst(), specConstant);
8670 break;
8671#ifndef GLSLANG_WEB
John Kessenich66011cb2018-03-06 16:12:04 -07008672 case glslang::EbtInt8:
8673 scalar = builder.makeInt8Constant(zero ? 0 : consts[nextConst].getI8Const(), specConstant);
8674 break;
8675 case glslang::EbtUint8:
8676 scalar = builder.makeUint8Constant(zero ? 0 : consts[nextConst].getU8Const(), specConstant);
8677 break;
8678 case glslang::EbtInt16:
8679 scalar = builder.makeInt16Constant(zero ? 0 : consts[nextConst].getI16Const(), specConstant);
8680 break;
8681 case glslang::EbtUint16:
8682 scalar = builder.makeUint16Constant(zero ? 0 : consts[nextConst].getU16Const(), specConstant);
8683 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08008684 case glslang::EbtInt64:
8685 scalar = builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const(), specConstant);
8686 break;
8687 case glslang::EbtUint64:
8688 scalar = builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const(), specConstant);
8689 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008690 case glslang::EbtDouble:
John Kessenich55e7d112015-11-15 21:33:39 -07008691 scalar = builder.makeDoubleConstant(zero ? 0.0 : consts[nextConst].getDConst(), specConstant);
John Kessenich140f3df2015-06-26 16:58:36 -06008692 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08008693 case glslang::EbtFloat16:
8694 scalar = builder.makeFloat16Constant(zero ? 0.0F : (float)consts[nextConst].getDConst(), specConstant);
8695 break;
Jeff Bolz3fd12322019-03-05 23:27:09 -06008696 case glslang::EbtReference:
8697 scalar = builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const(), specConstant);
8698 scalar = builder.createUnaryOp(spv::OpBitcast, typeId, scalar);
8699 break;
John Kessenich39697cd2019-08-08 10:35:51 -06008700#endif
Jeff Bolz04d73732019-05-31 13:06:01 -05008701 case glslang::EbtString:
8702 scalar = builder.getStringId(consts[nextConst].getSConst()->c_str());
8703 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008704 default:
John Kessenich55e7d112015-11-15 21:33:39 -07008705 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06008706 break;
8707 }
8708 ++nextConst;
8709 return scalar;
8710 }
8711
8712 return builder.makeCompositeConstant(typeId, spvConsts);
8713}
8714
John Kessenich7c1aa102015-10-15 13:29:11 -06008715// Return true if the node is a constant or symbol whose reading has no
8716// non-trivial observable cost or effect.
8717bool TGlslangToSpvTraverser::isTrivialLeaf(const glslang::TIntermTyped* node)
8718{
8719 // don't know what this is
8720 if (node == nullptr)
8721 return false;
8722
8723 // a constant is safe
8724 if (node->getAsConstantUnion() != nullptr)
8725 return true;
8726
8727 // not a symbol means non-trivial
8728 if (node->getAsSymbolNode() == nullptr)
8729 return false;
8730
8731 // a symbol, depends on what's being read
8732 switch (node->getType().getQualifier().storage) {
8733 case glslang::EvqTemporary:
8734 case glslang::EvqGlobal:
8735 case glslang::EvqIn:
8736 case glslang::EvqInOut:
8737 case glslang::EvqConst:
8738 case glslang::EvqConstReadOnly:
8739 case glslang::EvqUniform:
8740 return true;
8741 default:
8742 return false;
8743 }
qining25262b32016-05-06 17:25:16 -04008744}
John Kessenich7c1aa102015-10-15 13:29:11 -06008745
8746// A node is trivial if it is a single operation with no side effects.
John Kessenich84cc15f2017-05-24 16:44:47 -06008747// HLSL (and/or vectors) are always trivial, as it does not short circuit.
John Kessenich0d2b4712017-05-19 20:19:00 -06008748// Otherwise, error on the side of saying non-trivial.
John Kessenich7c1aa102015-10-15 13:29:11 -06008749// Return true if trivial.
8750bool TGlslangToSpvTraverser::isTrivial(const glslang::TIntermTyped* node)
8751{
8752 if (node == nullptr)
8753 return false;
8754
John Kessenich84cc15f2017-05-24 16:44:47 -06008755 // count non scalars as trivial, as well as anything coming from HLSL
8756 if (! node->getType().isScalarOrVec1() || glslangIntermediate->getSource() == glslang::EShSourceHlsl)
John Kessenich0d2b4712017-05-19 20:19:00 -06008757 return true;
8758
John Kessenich7c1aa102015-10-15 13:29:11 -06008759 // symbols and constants are trivial
8760 if (isTrivialLeaf(node))
8761 return true;
8762
8763 // otherwise, it needs to be a simple operation or one or two leaf nodes
8764
8765 // not a simple operation
8766 const glslang::TIntermBinary* binaryNode = node->getAsBinaryNode();
8767 const glslang::TIntermUnary* unaryNode = node->getAsUnaryNode();
8768 if (binaryNode == nullptr && unaryNode == nullptr)
8769 return false;
8770
8771 // not on leaf nodes
8772 if (binaryNode && (! isTrivialLeaf(binaryNode->getLeft()) || ! isTrivialLeaf(binaryNode->getRight())))
8773 return false;
8774
8775 if (unaryNode && ! isTrivialLeaf(unaryNode->getOperand())) {
8776 return false;
8777 }
8778
8779 switch (node->getAsOperator()->getOp()) {
8780 case glslang::EOpLogicalNot:
8781 case glslang::EOpConvIntToBool:
8782 case glslang::EOpConvUintToBool:
8783 case glslang::EOpConvFloatToBool:
8784 case glslang::EOpConvDoubleToBool:
8785 case glslang::EOpEqual:
8786 case glslang::EOpNotEqual:
8787 case glslang::EOpLessThan:
8788 case glslang::EOpGreaterThan:
8789 case glslang::EOpLessThanEqual:
8790 case glslang::EOpGreaterThanEqual:
8791 case glslang::EOpIndexDirect:
8792 case glslang::EOpIndexDirectStruct:
8793 case glslang::EOpLogicalXor:
8794 case glslang::EOpAny:
8795 case glslang::EOpAll:
8796 return true;
8797 default:
8798 return false;
8799 }
8800}
8801
8802// Emit short-circuiting code, where 'right' is never evaluated unless
8803// the left side is true (for &&) or false (for ||).
John Kessenich8985fc92020-03-03 10:25:07 -07008804spv::Id TGlslangToSpvTraverser::createShortCircuit(glslang::TOperator op, glslang::TIntermTyped& left,
8805 glslang::TIntermTyped& right)
John Kessenich7c1aa102015-10-15 13:29:11 -06008806{
8807 spv::Id boolTypeId = builder.makeBoolType();
8808
8809 // emit left operand
8810 builder.clearAccessChain();
8811 left.traverse(this);
Rex Xub4fd8d12016-03-03 14:38:51 +08008812 spv::Id leftId = accessChainLoad(left.getType());
John Kessenich7c1aa102015-10-15 13:29:11 -06008813
8814 // Operands to accumulate OpPhi operands
8815 std::vector<spv::Id> phiOperands;
8816 // accumulate left operand's phi information
8817 phiOperands.push_back(leftId);
8818 phiOperands.push_back(builder.getBuildPoint()->getId());
8819
8820 // Make the two kinds of operation symmetric with a "!"
8821 // || => emit "if (! left) result = right"
8822 // && => emit "if ( left) result = right"
8823 //
8824 // TODO: this runtime "not" for || could be avoided by adding functionality
8825 // to 'builder' to have an "else" without an "then"
8826 if (op == glslang::EOpLogicalOr)
8827 leftId = builder.createUnaryOp(spv::OpLogicalNot, boolTypeId, leftId);
8828
8829 // make an "if" based on the left value
Rex Xu57e65922017-07-04 23:23:40 +08008830 spv::Builder::If ifBuilder(leftId, spv::SelectionControlMaskNone, builder);
John Kessenich7c1aa102015-10-15 13:29:11 -06008831
8832 // emit right operand as the "then" part of the "if"
8833 builder.clearAccessChain();
8834 right.traverse(this);
Rex Xub4fd8d12016-03-03 14:38:51 +08008835 spv::Id rightId = accessChainLoad(right.getType());
John Kessenich7c1aa102015-10-15 13:29:11 -06008836
8837 // accumulate left operand's phi information
8838 phiOperands.push_back(rightId);
8839 phiOperands.push_back(builder.getBuildPoint()->getId());
8840
8841 // finish the "if"
8842 ifBuilder.makeEndIf();
8843
8844 // phi together the two results
8845 return builder.createOp(spv::OpPhi, boolTypeId, phiOperands);
8846}
8847
John Kessenicha28f7a72019-08-06 07:00:58 -06008848#ifndef GLSLANG_WEB
Rex Xu9d93a232016-05-05 12:30:44 +08008849// Return type Id of the imported set of extended instructions corresponds to the name.
8850// Import this set if it has not been imported yet.
8851spv::Id TGlslangToSpvTraverser::getExtBuiltins(const char* name)
8852{
8853 if (extBuiltinMap.find(name) != extBuiltinMap.end())
8854 return extBuiltinMap[name];
8855 else {
Rex Xu51596642016-09-21 18:56:12 +08008856 builder.addExtension(name);
Rex Xu9d93a232016-05-05 12:30:44 +08008857 spv::Id extBuiltins = builder.import(name);
8858 extBuiltinMap[name] = extBuiltins;
8859 return extBuiltins;
8860 }
8861}
Frank Henigman541f7bb2018-01-16 00:18:26 -05008862#endif
Rex Xu9d93a232016-05-05 12:30:44 +08008863
John Kessenich140f3df2015-06-26 16:58:36 -06008864}; // end anonymous namespace
8865
8866namespace glslang {
8867
John Kessenich68d78fd2015-07-12 19:28:10 -06008868void GetSpirvVersion(std::string& version)
8869{
John Kessenich9e55f632015-07-15 10:03:39 -06008870 const int bufSize = 100;
John Kessenichf98ee232015-07-12 19:39:51 -06008871 char buf[bufSize];
John Kessenich55e7d112015-11-15 21:33:39 -07008872 snprintf(buf, bufSize, "0x%08x, Revision %d", spv::Version, spv::Revision);
John Kessenich68d78fd2015-07-12 19:28:10 -06008873 version = buf;
8874}
8875
John Kessenicha372a3e2017-11-02 22:32:14 -06008876// For low-order part of the generator's magic number. Bump up
8877// when there is a change in the style (e.g., if SSA form changes,
8878// or a different instruction sequence to do something gets used).
8879int GetSpirvGeneratorVersion()
8880{
John Kessenich3f0d4bc2017-12-16 23:46:37 -07008881 // return 1; // start
8882 // return 2; // EOpAtomicCounterDecrement gets a post decrement, to map between GLSL -> SPIR-V
John Kessenich71b5da62018-02-06 08:06:36 -07008883 // return 3; // change/correct barrier-instruction operands, to match memory model group decisions
John Kessenich0216f242018-03-03 11:47:07 -07008884 // return 4; // some deeper access chains: for dynamic vector component, and local Boolean component
John Kessenichac370792018-03-07 11:24:50 -07008885 // return 5; // make OpArrayLength result type be an int with signedness of 0
John Kessenichd6c97552018-06-04 15:33:31 -06008886 // return 6; // revert version 5 change, which makes a different (new) kind of incorrect code,
8887 // versions 4 and 6 each generate OpArrayLength as it has long been done
John Kessenich31c33702019-11-02 21:26:40 -06008888 // return 7; // GLSL volatile keyword maps to both SPIR-V decorations Volatile and Coherent
John Kessenich3641ff72020-06-10 07:38:31 -06008889 // return 8; // switch to new dead block eliminator; use OpUnreachable
Graeme Leese060882f2020-06-22 11:03:46 +01008890 // return 9; // don't include opaque function parameters in OpEntryPoint global's operand list
8891 return 10; // Generate OpFUnordNotEqual for != comparisons
John Kessenicha372a3e2017-11-02 22:32:14 -06008892}
8893
John Kessenich140f3df2015-06-26 16:58:36 -06008894// Write SPIR-V out to a binary file
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008895void OutputSpvBin(const std::vector<unsigned int>& spirv, const char* baseName)
John Kessenich140f3df2015-06-26 16:58:36 -06008896{
8897 std::ofstream out;
John Kessenich68d78fd2015-07-12 19:28:10 -06008898 out.open(baseName, std::ios::binary | std::ios::out);
John Kessenich8f674e82017-02-18 09:45:40 -07008899 if (out.fail())
8900 printf("ERROR: Failed to open file: %s\n", baseName);
John Kessenich140f3df2015-06-26 16:58:36 -06008901 for (int i = 0; i < (int)spirv.size(); ++i) {
8902 unsigned int word = spirv[i];
8903 out.write((const char*)&word, 4);
8904 }
8905 out.close();
8906}
8907
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008908// Write SPIR-V out to a text file with 32-bit hexadecimal words
Flavioaea3c892017-02-06 11:46:35 -08008909void OutputSpvHex(const std::vector<unsigned int>& spirv, const char* baseName, const char* varName)
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008910{
Shahbaz Youssefi1ef2e252020-07-03 15:42:53 -04008911#if !defined(GLSLANG_WEB) && !defined(GLSLANG_ANGLE)
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008912 std::ofstream out;
8913 out.open(baseName, std::ios::binary | std::ios::out);
John Kessenich8f674e82017-02-18 09:45:40 -07008914 if (out.fail())
8915 printf("ERROR: Failed to open file: %s\n", baseName);
Ben Claytonfbe9a232020-06-17 11:17:19 +01008916 out << "\t// " <<
8917 GetSpirvGeneratorVersion() <<
8918 GLSLANG_VERSION_MAJOR << "." << GLSLANG_VERSION_MINOR << "." << GLSLANG_VERSION_PATCH <<
8919 GLSLANG_VERSION_FLAVOR << std::endl;
Flavio15017db2017-02-15 14:29:33 -08008920 if (varName != nullptr) {
8921 out << "\t #pragma once" << std::endl;
8922 out << "const uint32_t " << varName << "[] = {" << std::endl;
8923 }
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008924 const int WORDS_PER_LINE = 8;
8925 for (int i = 0; i < (int)spirv.size(); i += WORDS_PER_LINE) {
8926 out << "\t";
8927 for (int j = 0; j < WORDS_PER_LINE && i + j < (int)spirv.size(); ++j) {
8928 const unsigned int word = spirv[i + j];
8929 out << "0x" << std::hex << std::setw(8) << std::setfill('0') << word;
8930 if (i + j + 1 < (int)spirv.size()) {
8931 out << ",";
8932 }
8933 }
8934 out << std::endl;
8935 }
Flavio15017db2017-02-15 14:29:33 -08008936 if (varName != nullptr) {
8937 out << "};";
johnkslangf881f082020-08-04 02:13:50 -06008938 out << std::endl;
Flavio15017db2017-02-15 14:29:33 -08008939 }
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008940 out.close();
John Kessenich155d3512019-08-08 23:29:20 -06008941#endif
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008942}
8943
John Kessenich140f3df2015-06-26 16:58:36 -06008944//
8945// Set up the glslang traversal
8946//
John Kessenich4e11b612018-08-30 16:56:59 -06008947void GlslangToSpv(const TIntermediate& intermediate, std::vector<unsigned int>& spirv, SpvOptions* options)
John Kessenich140f3df2015-06-26 16:58:36 -06008948{
Lei Zhang17535f72016-05-04 15:55:59 -04008949 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -06008950 GlslangToSpv(intermediate, spirv, &logger, options);
Lei Zhang09caf122016-05-02 18:11:54 -04008951}
8952
John Kessenich4e11b612018-08-30 16:56:59 -06008953void GlslangToSpv(const TIntermediate& intermediate, std::vector<unsigned int>& spirv,
John Kessenich121853f2017-05-31 17:11:16 -06008954 spv::SpvBuildLogger* logger, SpvOptions* options)
Lei Zhang09caf122016-05-02 18:11:54 -04008955{
John Kessenich140f3df2015-06-26 16:58:36 -06008956 TIntermNode* root = intermediate.getTreeRoot();
8957
8958 if (root == 0)
8959 return;
8960
John Kessenich4e11b612018-08-30 16:56:59 -06008961 SpvOptions defaultOptions;
John Kessenich121853f2017-05-31 17:11:16 -06008962 if (options == nullptr)
8963 options = &defaultOptions;
8964
John Kessenich4e11b612018-08-30 16:56:59 -06008965 GetThreadPoolAllocator().push();
John Kessenich140f3df2015-06-26 16:58:36 -06008966
John Kessenich2b5ea9f2018-01-31 18:35:56 -07008967 TGlslangToSpvTraverser it(intermediate.getSpv().spv, &intermediate, logger, *options);
John Kessenich140f3df2015-06-26 16:58:36 -06008968 root->traverse(&it);
John Kessenichfca82622016-11-26 13:23:20 -07008969 it.finishSpv();
John Kessenich140f3df2015-06-26 16:58:36 -06008970 it.dumpSpv(spirv);
8971
GregFfb03a552018-03-29 11:49:14 -06008972#if ENABLE_OPT
GregFcd1f1692017-09-21 18:40:22 -06008973 // If from HLSL, run spirv-opt to "legalize" the SPIR-V for Vulkan
8974 // eg. forward and remove memory writes of opaque types.
Jeff Bolzfd556e32019-06-07 14:42:08 -05008975 bool prelegalization = intermediate.getSource() == EShSourceHlsl;
Shahbaz Youssefid52dce52020-06-17 12:47:44 -04008976 if ((prelegalization || options->optimizeSize) && !options->disableOptimizer) {
8977 SpirvToolsTransform(intermediate, spirv, logger, options);
Jeff Bolzfd556e32019-06-07 14:42:08 -05008978 prelegalization = false;
8979 }
Shahbaz Youssefid52dce52020-06-17 12:47:44 -04008980 else if (options->stripDebugInfo) {
8981 // Strip debug info even if optimization is disabled.
8982 SpirvToolsStripDebugInfo(intermediate, spirv, logger);
8983 }
John Kessenich717c80a2018-08-23 15:17:10 -06008984
John Kessenich4e11b612018-08-30 16:56:59 -06008985 if (options->validate)
Jeff Bolzfd556e32019-06-07 14:42:08 -05008986 SpirvToolsValidate(intermediate, spirv, logger, prelegalization);
John Kessenich4e11b612018-08-30 16:56:59 -06008987
John Kessenich717c80a2018-08-23 15:17:10 -06008988 if (options->disassemble)
John Kessenich4e11b612018-08-30 16:56:59 -06008989 SpirvToolsDisassemble(std::cout, spirv);
John Kessenich717c80a2018-08-23 15:17:10 -06008990
GregFcd1f1692017-09-21 18:40:22 -06008991#endif
8992
John Kessenich4e11b612018-08-30 16:56:59 -06008993 GetThreadPoolAllocator().pop();
John Kessenich140f3df2015-06-26 16:58:36 -06008994}
8995
8996}; // end namespace glslang