blob: 8eb06b7cdff967b4fb41df2ead0557c20c9c8863 [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:
2787 case glslang::EOpAtomicMin:
2788 case glslang::EOpAtomicMax:
2789 case glslang::EOpAtomicAnd:
2790 case glslang::EOpAtomicOr:
2791 case glslang::EOpAtomicXor:
2792 case glslang::EOpAtomicExchange:
2793 case glslang::EOpAtomicCompSwap:
2794 atomic = true;
2795 break;
2796
John Kesseniche5eee8f2019-10-18 01:03:11 -06002797#ifndef GLSLANG_WEB
2798 case glslang::EOpAtomicStore:
2799 noReturnValue = true;
2800 // fallthrough
2801 case glslang::EOpAtomicLoad:
2802 atomic = true;
2803 break;
2804
John Kessenich0d0c6d32017-07-23 16:08:26 -06002805 case glslang::EOpAtomicCounterAdd:
2806 case glslang::EOpAtomicCounterSubtract:
2807 case glslang::EOpAtomicCounterMin:
2808 case glslang::EOpAtomicCounterMax:
2809 case glslang::EOpAtomicCounterAnd:
2810 case glslang::EOpAtomicCounterOr:
2811 case glslang::EOpAtomicCounterXor:
2812 case glslang::EOpAtomicCounterExchange:
2813 case glslang::EOpAtomicCounterCompSwap:
2814 builder.addExtension("SPV_KHR_shader_atomic_counter_ops");
2815 builder.addCapability(spv::CapabilityAtomicStorageOps);
2816 atomic = true;
2817 break;
2818
Ian Romanickb3bd4022019-01-21 08:57:25 -08002819 case glslang::EOpAbsDifference:
2820 case glslang::EOpAddSaturate:
2821 case glslang::EOpSubSaturate:
2822 case glslang::EOpAverage:
2823 case glslang::EOpAverageRounded:
2824 case glslang::EOpMul32x16:
2825 builder.addCapability(spv::CapabilityIntegerFunctions2INTEL);
2826 builder.addExtension("SPV_INTEL_shader_integer_functions2");
2827 binOp = node->getOp();
2828 break;
2829
Daniel Kochffccefd2020-11-23 15:41:27 -05002830 case glslang::EOpIgnoreIntersectionNV:
2831 case glslang::EOpTerminateRayNV:
2832 case glslang::EOpTraceNV:
2833 case glslang::EOpTraceKHR:
2834 case glslang::EOpExecuteCallableNV:
2835 case glslang::EOpExecuteCallableKHR:
Chao Chen3c366992018-09-19 11:41:59 -07002836 case glslang::EOpWritePackedPrimitiveIndices4x8NV:
2837 noReturnValue = true;
2838 break;
Torosdagli06c2eee2020-03-19 11:09:57 -04002839 case glslang::EOpRayQueryInitialize:
2840 case glslang::EOpRayQueryTerminate:
2841 case glslang::EOpRayQueryGenerateIntersection:
2842 case glslang::EOpRayQueryConfirmIntersection:
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002843 builder.addExtension("SPV_KHR_ray_query");
Daniel Kochffccefd2020-11-23 15:41:27 -05002844 builder.addCapability(spv::CapabilityRayQueryKHR);
Torosdagli06c2eee2020-03-19 11:09:57 -04002845 noReturnValue = true;
2846 break;
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002847 case glslang::EOpRayQueryProceed:
2848 case glslang::EOpRayQueryGetIntersectionType:
2849 case glslang::EOpRayQueryGetRayTMin:
2850 case glslang::EOpRayQueryGetRayFlags:
2851 case glslang::EOpRayQueryGetIntersectionT:
2852 case glslang::EOpRayQueryGetIntersectionInstanceCustomIndex:
2853 case glslang::EOpRayQueryGetIntersectionInstanceId:
2854 case glslang::EOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffset:
2855 case glslang::EOpRayQueryGetIntersectionGeometryIndex:
2856 case glslang::EOpRayQueryGetIntersectionPrimitiveIndex:
2857 case glslang::EOpRayQueryGetIntersectionBarycentrics:
2858 case glslang::EOpRayQueryGetIntersectionFrontFace:
2859 case glslang::EOpRayQueryGetIntersectionCandidateAABBOpaque:
2860 case glslang::EOpRayQueryGetIntersectionObjectRayDirection:
2861 case glslang::EOpRayQueryGetIntersectionObjectRayOrigin:
2862 case glslang::EOpRayQueryGetWorldRayDirection:
2863 case glslang::EOpRayQueryGetWorldRayOrigin:
2864 case glslang::EOpRayQueryGetIntersectionObjectToWorld:
2865 case glslang::EOpRayQueryGetIntersectionWorldToObject:
2866 builder.addExtension("SPV_KHR_ray_query");
Daniel Kochffccefd2020-11-23 15:41:27 -05002867 builder.addCapability(spv::CapabilityRayQueryKHR);
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002868 break;
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002869 case glslang::EOpCooperativeMatrixLoad:
2870 case glslang::EOpCooperativeMatrixStore:
2871 noReturnValue = true;
2872 break;
Jeff Bolzc6f0ce82019-06-03 11:33:50 -05002873 case glslang::EOpBeginInvocationInterlock:
2874 case glslang::EOpEndInvocationInterlock:
2875 builder.addExtension(spv::E_SPV_EXT_fragment_shader_interlock);
2876 noReturnValue = true;
2877 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06002878#endif
Chao Chen3c366992018-09-19 11:41:59 -07002879
Jeff Bolz04d73732019-05-31 13:06:01 -05002880 case glslang::EOpDebugPrintf:
2881 noReturnValue = true;
2882 break;
2883
John Kessenich140f3df2015-06-26 16:58:36 -06002884 default:
2885 break;
2886 }
2887
2888 //
2889 // See if it maps to a regular operation.
2890 //
John Kessenich140f3df2015-06-26 16:58:36 -06002891 if (binOp != glslang::EOpNull) {
2892 glslang::TIntermTyped* left = node->getSequence()[0]->getAsTyped();
2893 glslang::TIntermTyped* right = node->getSequence()[1]->getAsTyped();
2894 assert(left && right);
2895
2896 builder.clearAccessChain();
2897 left->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002898 spv::Id leftId = accessChainLoad(left->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002899
2900 builder.clearAccessChain();
2901 right->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002902 spv::Id rightId = accessChainLoad(right->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002903
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002904 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenichead86222018-03-28 18:01:20 -06002905 OpDecorations decorations = { precision,
John Kessenich5611c6d2018-04-05 11:25:02 -06002906 TranslateNoContractionDecoration(node->getType().getQualifier()),
2907 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06002908 result = createBinaryOperation(binOp, decorations,
John Kessenich8c8505c2016-07-26 12:50:38 -06002909 resultType(), leftId, rightId,
John Kessenich140f3df2015-06-26 16:58:36 -06002910 left->getType().getBasicType(), reduceComparison);
2911
2912 // code above should only make binOp that exists in createBinaryOperation
John Kessenich55e7d112015-11-15 21:33:39 -07002913 assert(result != spv::NoResult);
John Kessenich140f3df2015-06-26 16:58:36 -06002914 builder.clearAccessChain();
2915 builder.setAccessChainRValue(result);
2916
2917 return false;
2918 }
2919
John Kessenich426394d2015-07-23 10:22:48 -06002920 //
2921 // Create the list of operands.
2922 //
John Kessenich140f3df2015-06-26 16:58:36 -06002923 glslang::TIntermSequence& glslangOperands = node->getSequence();
2924 std::vector<spv::Id> operands;
Jeff Bolz4605e2e2019-02-19 13:10:32 -06002925 std::vector<spv::IdImmediate> memoryAccessOperands;
John Kessenich140f3df2015-06-26 16:58:36 -06002926 for (int arg = 0; arg < (int)glslangOperands.size(); ++arg) {
John Kessenich140f3df2015-06-26 16:58:36 -06002927 // special case l-value operands; there are just a few
2928 bool lvalue = false;
2929 switch (node->getOp()) {
John Kessenich140f3df2015-06-26 16:58:36 -06002930 case glslang::EOpModf:
2931 if (arg == 1)
2932 lvalue = true;
2933 break;
John Kesseniche5eee8f2019-10-18 01:03:11 -06002934
Torosdagli06c2eee2020-03-19 11:09:57 -04002935 case glslang::EOpRayQueryInitialize:
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04002936 case glslang::EOpRayQueryTerminate:
2937 case glslang::EOpRayQueryConfirmIntersection:
2938 case glslang::EOpRayQueryProceed:
Torosdagli06c2eee2020-03-19 11:09:57 -04002939 case glslang::EOpRayQueryGenerateIntersection:
2940 case glslang::EOpRayQueryGetIntersectionType:
2941 case glslang::EOpRayQueryGetIntersectionT:
2942 case glslang::EOpRayQueryGetIntersectionInstanceCustomIndex:
2943 case glslang::EOpRayQueryGetIntersectionInstanceId:
2944 case glslang::EOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffset:
2945 case glslang::EOpRayQueryGetIntersectionGeometryIndex:
2946 case glslang::EOpRayQueryGetIntersectionPrimitiveIndex:
2947 case glslang::EOpRayQueryGetIntersectionBarycentrics:
2948 case glslang::EOpRayQueryGetIntersectionFrontFace:
2949 case glslang::EOpRayQueryGetIntersectionObjectRayDirection:
2950 case glslang::EOpRayQueryGetIntersectionObjectRayOrigin:
2951 case glslang::EOpRayQueryGetIntersectionObjectToWorld:
2952 case glslang::EOpRayQueryGetIntersectionWorldToObject:
2953 if (arg == 0)
2954 lvalue = true;
2955 break;
2956
John Kesseniche5eee8f2019-10-18 01:03:11 -06002957 case glslang::EOpAtomicAdd:
2958 case glslang::EOpAtomicMin:
2959 case glslang::EOpAtomicMax:
2960 case glslang::EOpAtomicAnd:
2961 case glslang::EOpAtomicOr:
2962 case glslang::EOpAtomicXor:
2963 case glslang::EOpAtomicExchange:
2964 case glslang::EOpAtomicCompSwap:
2965 if (arg == 0)
2966 lvalue = true;
2967 break;
2968
John Kessenicha28f7a72019-08-06 07:00:58 -06002969#ifndef GLSLANG_WEB
2970 case glslang::EOpFrexp:
2971 if (arg == 1)
2972 lvalue = true;
2973 break;
Rex Xu7a26c172015-12-08 17:12:09 +08002974 case glslang::EOpInterpolateAtSample:
2975 case glslang::EOpInterpolateAtOffset:
Rex Xu9d93a232016-05-05 12:30:44 +08002976 case glslang::EOpInterpolateAtVertex:
John Kessenich8c8505c2016-07-26 12:50:38 -06002977 if (arg == 0) {
Rex Xu7a26c172015-12-08 17:12:09 +08002978 lvalue = true;
John Kessenich8c8505c2016-07-26 12:50:38 -06002979
2980 // Does it need a swizzle inversion? If so, evaluation is inverted;
2981 // operate first on the swizzle base, then apply the swizzle.
John Kessenichbbbd9a22020-03-03 07:21:37 -07002982 // That is, we transform
2983 //
2984 // interpolate(v.zy) -> interpolate(v).zy
2985 //
John Kessenichecba76f2017-01-06 00:34:48 -07002986 if (glslangOperands[0]->getAsOperator() &&
John Kessenich8c8505c2016-07-26 12:50:38 -06002987 glslangOperands[0]->getAsOperator()->getOp() == glslang::EOpVectorSwizzle)
John Kessenich8985fc92020-03-03 10:25:07 -07002988 invertedType = convertGlslangToSpvType(
2989 glslangOperands[0]->getAsBinaryNode()->getLeft()->getType());
John Kessenich8c8505c2016-07-26 12:50:38 -06002990 }
Rex Xu7a26c172015-12-08 17:12:09 +08002991 break;
Jeff Bolz36831c92018-09-05 10:11:41 -05002992 case glslang::EOpAtomicLoad:
2993 case glslang::EOpAtomicStore:
John Kessenich0d0c6d32017-07-23 16:08:26 -06002994 case glslang::EOpAtomicCounterAdd:
2995 case glslang::EOpAtomicCounterSubtract:
2996 case glslang::EOpAtomicCounterMin:
2997 case glslang::EOpAtomicCounterMax:
2998 case glslang::EOpAtomicCounterAnd:
2999 case glslang::EOpAtomicCounterOr:
3000 case glslang::EOpAtomicCounterXor:
3001 case glslang::EOpAtomicCounterExchange:
3002 case glslang::EOpAtomicCounterCompSwap:
Rex Xud4782c12015-09-06 16:30:11 +08003003 if (arg == 0)
3004 lvalue = true;
3005 break;
John Kessenich55e7d112015-11-15 21:33:39 -07003006 case glslang::EOpAddCarry:
3007 case glslang::EOpSubBorrow:
3008 if (arg == 2)
3009 lvalue = true;
3010 break;
3011 case glslang::EOpUMulExtended:
3012 case glslang::EOpIMulExtended:
3013 if (arg >= 2)
3014 lvalue = true;
3015 break;
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003016 case glslang::EOpCooperativeMatrixLoad:
3017 if (arg == 0 || arg == 1)
3018 lvalue = true;
3019 break;
3020 case glslang::EOpCooperativeMatrixStore:
3021 if (arg == 1)
3022 lvalue = true;
3023 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06003024#endif
John Kessenich140f3df2015-06-26 16:58:36 -06003025 default:
3026 break;
3027 }
John Kessenich8c8505c2016-07-26 12:50:38 -06003028 builder.clearAccessChain();
3029 if (invertedType != spv::NoType && arg == 0)
3030 glslangOperands[0]->getAsBinaryNode()->getLeft()->traverse(this);
3031 else
3032 glslangOperands[arg]->traverse(this);
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003033
John Kessenichb9197c82019-08-11 07:41:45 -06003034#ifndef GLSLANG_WEB
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003035 if (node->getOp() == glslang::EOpCooperativeMatrixLoad ||
3036 node->getOp() == glslang::EOpCooperativeMatrixStore) {
3037
3038 if (arg == 1) {
3039 // fold "element" parameter into the access chain
3040 spv::Builder::AccessChain save = builder.getAccessChain();
3041 builder.clearAccessChain();
3042 glslangOperands[2]->traverse(this);
3043
3044 spv::Id elementId = accessChainLoad(glslangOperands[2]->getAsTyped()->getType());
3045
3046 builder.setAccessChain(save);
3047
3048 // Point to the first element of the array.
John Kessenich8985fc92020-03-03 10:25:07 -07003049 builder.accessChainPush(elementId,
3050 TranslateCoherent(glslangOperands[arg]->getAsTyped()->getType()),
3051 glslangOperands[arg]->getAsTyped()->getType().getBufferReferenceAlignment());
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003052
3053 spv::Builder::AccessChain::CoherentFlags coherentFlags = builder.getAccessChain().coherentFlags;
3054 unsigned int alignment = builder.getAccessChain().alignment;
3055
3056 int memoryAccess = TranslateMemoryAccess(coherentFlags);
3057 if (node->getOp() == glslang::EOpCooperativeMatrixLoad)
3058 memoryAccess &= ~spv::MemoryAccessMakePointerAvailableKHRMask;
3059 if (node->getOp() == glslang::EOpCooperativeMatrixStore)
3060 memoryAccess &= ~spv::MemoryAccessMakePointerVisibleKHRMask;
John Kessenich8985fc92020-03-03 10:25:07 -07003061 if (builder.getStorageClass(builder.getAccessChain().base) ==
3062 spv::StorageClassPhysicalStorageBufferEXT) {
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003063 memoryAccess = (spv::MemoryAccessMask)(memoryAccess | spv::MemoryAccessAlignedMask);
3064 }
3065
3066 memoryAccessOperands.push_back(spv::IdImmediate(false, memoryAccess));
3067
3068 if (memoryAccess & spv::MemoryAccessAlignedMask) {
3069 memoryAccessOperands.push_back(spv::IdImmediate(false, alignment));
3070 }
3071
John Kessenich8985fc92020-03-03 10:25:07 -07003072 if (memoryAccess &
3073 (spv::MemoryAccessMakePointerAvailableKHRMask | spv::MemoryAccessMakePointerVisibleKHRMask)) {
3074 memoryAccessOperands.push_back(spv::IdImmediate(true,
3075 builder.makeUintConstant(TranslateMemoryScope(coherentFlags))));
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003076 }
3077 } else if (arg == 2) {
3078 continue;
3079 }
3080 }
John Kessenichb9197c82019-08-11 07:41:45 -06003081#endif
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003082
John Kessenichbbbd9a22020-03-03 07:21:37 -07003083 // for l-values, pass the address, for r-values, pass the value
Jeff Bolz38a52fc2019-06-14 09:56:28 -05003084 if (lvalue) {
John Kessenichbbbd9a22020-03-03 07:21:37 -07003085 if (invertedType == spv::NoType && !builder.isSpvLvalue()) {
3086 // SPIR-V cannot represent an l-value containing a swizzle that doesn't
3087 // reduce to a simple access chain. So, we need a temporary vector to
3088 // receive the result, and must later swizzle that into the original
3089 // l-value.
Cody Northrop4d2298b2020-04-13 21:59:49 -06003090 complexLvalues.push_back(builder.getAccessChain());
John Kessenich435dd802020-06-30 01:27:08 -06003091 temporaryLvalues.push_back(builder.createVariable(
3092 spv::NoPrecision, spv::StorageClassFunction,
Cody Northrop4d2298b2020-04-13 21:59:49 -06003093 builder.accessChainGetInferredType(), "swizzleTemp"));
3094 operands.push_back(temporaryLvalues.back());
John Kessenichbbbd9a22020-03-03 07:21:37 -07003095 } else {
3096 operands.push_back(builder.accessChainGetLValue());
3097 }
Jeff Bolz38a52fc2019-06-14 09:56:28 -05003098 lvalueCoherentFlags = builder.getAccessChain().coherentFlags;
3099 lvalueCoherentFlags |= TranslateCoherent(glslangOperands[arg]->getAsTyped()->getType());
3100 } else {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003101 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Torosdagli06c2eee2020-03-19 11:09:57 -04003102 glslang::TOperator glslangOp = node->getOp();
3103 if (arg == 1 &&
3104 (glslangOp == glslang::EOpRayQueryGetIntersectionType ||
3105 glslangOp == glslang::EOpRayQueryGetIntersectionT ||
3106 glslangOp == glslang::EOpRayQueryGetIntersectionInstanceCustomIndex ||
3107 glslangOp == glslang::EOpRayQueryGetIntersectionInstanceId ||
3108 glslangOp == glslang::EOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffset ||
3109 glslangOp == glslang::EOpRayQueryGetIntersectionGeometryIndex ||
3110 glslangOp == glslang::EOpRayQueryGetIntersectionPrimitiveIndex ||
3111 glslangOp == glslang::EOpRayQueryGetIntersectionBarycentrics ||
3112 glslangOp == glslang::EOpRayQueryGetIntersectionFrontFace ||
3113 glslangOp == glslang::EOpRayQueryGetIntersectionObjectRayDirection ||
3114 glslangOp == glslang::EOpRayQueryGetIntersectionObjectRayOrigin ||
3115 glslangOp == glslang::EOpRayQueryGetIntersectionObjectToWorld ||
3116 glslangOp == glslang::EOpRayQueryGetIntersectionWorldToObject
3117 )) {
3118 bool cond = glslangOperands[arg]->getAsConstantUnion()->getConstArray()[0].getBConst();
3119 operands.push_back(builder.makeIntConstant(cond ? 1 : 0));
Daniel Kochffccefd2020-11-23 15:41:27 -05003120 } else if ((arg == 10 && glslangOp == glslang::EOpTraceKHR) ||
3121 (arg == 1 && glslangOp == glslang::EOpExecuteCallableKHR)) {
3122 const int opdNum = glslangOp == glslang::EOpTraceKHR ? 10 : 1;
3123 const int set = glslangOp == glslang::EOpTraceKHR ? 0 : 1;
3124 const int location = glslangOperands[opdNum]->getAsConstantUnion()->getConstArray()[0].getUConst();
3125 auto itNode = locationToSymbol[set].find(location);
3126 visitSymbol(itNode->second);
3127 spv::Id symId = getSymbolId(itNode->second);
3128 operands.push_back(symId);
3129 } else {
Torosdagli06c2eee2020-03-19 11:09:57 -04003130 operands.push_back(accessChainLoad(glslangOperands[arg]->getAsTyped()->getType()));
Daniel Kochffccefd2020-11-23 15:41:27 -05003131 }
John Kesseniche485c7a2017-05-31 18:50:53 -06003132 }
John Kessenich140f3df2015-06-26 16:58:36 -06003133 }
John Kessenich426394d2015-07-23 10:22:48 -06003134
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003135 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenichb9197c82019-08-11 07:41:45 -06003136#ifndef GLSLANG_WEB
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003137 if (node->getOp() == glslang::EOpCooperativeMatrixLoad) {
3138 std::vector<spv::IdImmediate> idImmOps;
3139
3140 idImmOps.push_back(spv::IdImmediate(true, operands[1])); // buf
3141 idImmOps.push_back(spv::IdImmediate(true, operands[2])); // stride
3142 idImmOps.push_back(spv::IdImmediate(true, operands[3])); // colMajor
3143 idImmOps.insert(idImmOps.end(), memoryAccessOperands.begin(), memoryAccessOperands.end());
3144 // get the pointee type
3145 spv::Id typeId = builder.getContainedTypeId(builder.getTypeId(operands[0]));
3146 assert(builder.isCooperativeMatrixType(typeId));
3147 // do the op
3148 spv::Id result = builder.createOp(spv::OpCooperativeMatrixLoadNV, typeId, idImmOps);
3149 // store the result to the pointer (out param 'm')
3150 builder.createStore(result, operands[0]);
3151 result = 0;
3152 } else if (node->getOp() == glslang::EOpCooperativeMatrixStore) {
3153 std::vector<spv::IdImmediate> idImmOps;
3154
3155 idImmOps.push_back(spv::IdImmediate(true, operands[1])); // buf
3156 idImmOps.push_back(spv::IdImmediate(true, operands[0])); // object
3157 idImmOps.push_back(spv::IdImmediate(true, operands[2])); // stride
3158 idImmOps.push_back(spv::IdImmediate(true, operands[3])); // colMajor
3159 idImmOps.insert(idImmOps.end(), memoryAccessOperands.begin(), memoryAccessOperands.end());
3160
3161 builder.createNoResultOp(spv::OpCooperativeMatrixStoreNV, idImmOps);
3162 result = 0;
John Kessenichb9197c82019-08-11 07:41:45 -06003163 } else
3164#endif
John Kesseniche5eee8f2019-10-18 01:03:11 -06003165 if (atomic) {
3166 // Handle all atomics
Greg Fischerb5c8fd42021-03-08 14:02:06 -07003167 glslang::TBasicType typeProxy = (node->getOp() == glslang::EOpAtomicStore)
3168 ? node->getSequence()[0]->getAsTyped()->getBasicType() : node->getBasicType();
3169 result = createAtomicOperation(node->getOp(), precision, resultType(), operands, typeProxy,
John Kessenich8985fc92020-03-03 10:25:07 -07003170 lvalueCoherentFlags);
Jeff Bolz04d73732019-05-31 13:06:01 -05003171 } else if (node->getOp() == glslang::EOpDebugPrintf) {
3172 if (!nonSemanticDebugPrintf) {
3173 nonSemanticDebugPrintf = builder.import("NonSemantic.DebugPrintf");
3174 }
3175 result = builder.createBuiltinCall(builder.makeVoidType(), nonSemanticDebugPrintf, spv::NonSemanticDebugPrintfDebugPrintf, operands);
3176 builder.addExtension(spv::E_SPV_KHR_non_semantic_info);
John Kesseniche5eee8f2019-10-18 01:03:11 -06003177 } else {
John Kessenich426394d2015-07-23 10:22:48 -06003178 // Pass through to generic operations.
3179 switch (glslangOperands.size()) {
3180 case 0:
John Kessenich8c8505c2016-07-26 12:50:38 -06003181 result = createNoArgOperation(node->getOp(), precision, resultType());
John Kessenich426394d2015-07-23 10:22:48 -06003182 break;
3183 case 1:
John Kessenichead86222018-03-28 18:01:20 -06003184 {
3185 OpDecorations decorations = { precision,
John Kessenich5611c6d2018-04-05 11:25:02 -06003186 TranslateNoContractionDecoration(node->getType().getQualifier()),
3187 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06003188 result = createUnaryOperation(
3189 node->getOp(), decorations,
3190 resultType(), operands.front(),
Jeff Bolz38a52fc2019-06-14 09:56:28 -05003191 glslangOperands[0]->getAsTyped()->getBasicType(), lvalueCoherentFlags);
John Kessenichead86222018-03-28 18:01:20 -06003192 }
John Kessenich426394d2015-07-23 10:22:48 -06003193 break;
3194 default:
John Kessenich8c8505c2016-07-26 12:50:38 -06003195 result = createMiscOperation(node->getOp(), precision, resultType(), operands, node->getBasicType());
John Kessenich426394d2015-07-23 10:22:48 -06003196 break;
3197 }
Cody Northrop4d2298b2020-04-13 21:59:49 -06003198
John Kessenichbbbd9a22020-03-03 07:21:37 -07003199 if (invertedType != spv::NoResult)
John Kessenich8c8505c2016-07-26 12:50:38 -06003200 result = createInvertedSwizzle(precision, *glslangOperands[0]->getAsBinaryNode(), result);
Cody Northrop4d2298b2020-04-13 21:59:49 -06003201
3202 for (unsigned int i = 0; i < temporaryLvalues.size(); ++i) {
3203 builder.setAccessChain(complexLvalues[i]);
greg-lunarg639f5462020-11-12 11:10:07 -07003204 builder.accessChainStore(builder.createLoad(temporaryLvalues[i], spv::NoPrecision),
3205 TranslateNonUniformDecoration(complexLvalues[i].coherentFlags));
John Kessenichbbbd9a22020-03-03 07:21:37 -07003206 }
John Kessenich140f3df2015-06-26 16:58:36 -06003207 }
3208
3209 if (noReturnValue)
3210 return false;
3211
3212 if (! result) {
Lei Zhang17535f72016-05-04 15:55:59 -04003213 logger->missingFunctionality("unknown glslang aggregate");
John Kessenich50e57562015-12-21 21:21:11 -07003214 return true; // pick up a child as a placeholder operand
John Kessenich140f3df2015-06-26 16:58:36 -06003215 } else {
3216 builder.clearAccessChain();
3217 builder.setAccessChainRValue(result);
3218 return false;
3219 }
3220}
3221
John Kessenich433e9ff2017-01-26 20:31:11 -07003222// This path handles both if-then-else and ?:
3223// The if-then-else has a node type of void, while
3224// ?: has either a void or a non-void node type
3225//
3226// Leaving the result, when not void:
3227// GLSL only has r-values as the result of a :?, but
3228// if we have an l-value, that can be more efficient if it will
3229// become the base of a complex r-value expression, because the
3230// next layer copies r-values into memory to use the access-chain mechanism
John Kessenich140f3df2015-06-26 16:58:36 -06003231bool TGlslangToSpvTraverser::visitSelection(glslang::TVisit /* visit */, glslang::TIntermSelection* node)
3232{
John Kessenich0c1e71a2019-01-10 18:23:06 +07003233 // see if OpSelect can handle it
3234 const auto isOpSelectable = [&]() {
3235 if (node->getBasicType() == glslang::EbtVoid)
3236 return false;
3237 // OpSelect can do all other types starting with SPV 1.4
3238 if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_4) {
3239 // pre-1.4, only scalars and vectors can be handled
3240 if ((!node->getType().isScalar() && !node->getType().isVector()))
3241 return false;
3242 }
3243 return true;
3244 };
3245
John Kessenich4bee5312018-02-20 21:29:05 -07003246 // See if it simple and safe, or required, to execute both sides.
3247 // Crucially, side effects must be either semantically required or avoided,
3248 // and there are performance trade-offs.
3249 // Return true if required or a good idea (and safe) to execute both sides,
3250 // false otherwise.
3251 const auto bothSidesPolicy = [&]() -> bool {
3252 // do we have both sides?
John Kessenich433e9ff2017-01-26 20:31:11 -07003253 if (node->getTrueBlock() == nullptr ||
3254 node->getFalseBlock() == nullptr)
3255 return false;
3256
John Kessenich4bee5312018-02-20 21:29:05 -07003257 // required? (unless we write additional code to look for side effects
3258 // and make performance trade-offs if none are present)
3259 if (!node->getShortCircuit())
3260 return true;
3261
3262 // if not required to execute both, decide based on performance/practicality...
3263
John Kessenich0c1e71a2019-01-10 18:23:06 +07003264 if (!isOpSelectable())
John Kessenich4bee5312018-02-20 21:29:05 -07003265 return false;
3266
John Kessenich433e9ff2017-01-26 20:31:11 -07003267 assert(node->getType() == node->getTrueBlock() ->getAsTyped()->getType() &&
3268 node->getType() == node->getFalseBlock()->getAsTyped()->getType());
3269
3270 // return true if a single operand to ? : is okay for OpSelect
3271 const auto operandOkay = [](glslang::TIntermTyped* node) {
John Kessenich8e6c6ce2017-01-28 19:29:42 -07003272 return node->getAsSymbolNode() || node->getType().getQualifier().isConstant();
John Kessenich433e9ff2017-01-26 20:31:11 -07003273 };
3274
3275 return operandOkay(node->getTrueBlock() ->getAsTyped()) &&
3276 operandOkay(node->getFalseBlock()->getAsTyped());
3277 };
3278
John Kessenich4bee5312018-02-20 21:29:05 -07003279 spv::Id result = spv::NoResult; // upcoming result selecting between trueValue and falseValue
3280 // emit the condition before doing anything with selection
3281 node->getCondition()->traverse(this);
3282 spv::Id condition = accessChainLoad(node->getCondition()->getType());
3283
3284 // Find a way of executing both sides and selecting the right result.
3285 const auto executeBothSides = [&]() -> void {
3286 // execute both sides
John Kessenich433e9ff2017-01-26 20:31:11 -07003287 node->getTrueBlock()->traverse(this);
3288 spv::Id trueValue = accessChainLoad(node->getTrueBlock()->getAsTyped()->getType());
3289 node->getFalseBlock()->traverse(this);
3290 spv::Id falseValue = accessChainLoad(node->getTrueBlock()->getAsTyped()->getType());
3291
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003292 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06003293
John Kessenich4bee5312018-02-20 21:29:05 -07003294 // done if void
3295 if (node->getBasicType() == glslang::EbtVoid)
3296 return;
John Kesseniche434ad92017-03-30 10:09:28 -06003297
John Kessenich4bee5312018-02-20 21:29:05 -07003298 // emit code to select between trueValue and falseValue
3299
3300 // see if OpSelect can handle it
John Kessenich0c1e71a2019-01-10 18:23:06 +07003301 if (isOpSelectable()) {
John Kessenich4bee5312018-02-20 21:29:05 -07003302 // Emit OpSelect for this selection.
3303
3304 // smear condition to vector, if necessary (AST is always scalar)
John Kessenich0c1e71a2019-01-10 18:23:06 +07003305 // Before 1.4, smear like for mix(), starting with 1.4, keep it scalar
3306 if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_4 && builder.isVector(trueValue)) {
John Kessenich4bee5312018-02-20 21:29:05 -07003307 condition = builder.smearScalar(spv::NoPrecision, condition,
3308 builder.makeVectorType(builder.makeBoolType(),
3309 builder.getNumComponents(trueValue)));
John Kessenich0c1e71a2019-01-10 18:23:06 +07003310 }
John Kessenich4bee5312018-02-20 21:29:05 -07003311
3312 // OpSelect
3313 result = builder.createTriOp(spv::OpSelect,
3314 convertGlslangToSpvType(node->getType()), condition,
3315 trueValue, falseValue);
3316
3317 builder.clearAccessChain();
3318 builder.setAccessChainRValue(result);
3319 } else {
3320 // We need control flow to select the result.
3321 // TODO: Once SPIR-V OpSelect allows arbitrary types, eliminate this path.
John Kessenich435dd802020-06-30 01:27:08 -06003322 result = builder.createVariable(TranslatePrecisionDecoration(node->getType()),
3323 spv::StorageClassFunction, convertGlslangToSpvType(node->getType()));
John Kessenich4bee5312018-02-20 21:29:05 -07003324
3325 // Selection control:
3326 const spv::SelectionControlMask control = TranslateSelectionControl(*node);
3327
3328 // make an "if" based on the value created by the condition
3329 spv::Builder::If ifBuilder(condition, control, builder);
3330
3331 // emit the "then" statement
3332 builder.createStore(trueValue, result);
3333 ifBuilder.makeBeginElse();
3334 // emit the "else" statement
3335 builder.createStore(falseValue, result);
3336
3337 // finish off the control flow
3338 ifBuilder.makeEndIf();
3339
3340 builder.clearAccessChain();
3341 builder.setAccessChainLValue(result);
3342 }
John Kessenich433e9ff2017-01-26 20:31:11 -07003343 };
3344
John Kessenich4bee5312018-02-20 21:29:05 -07003345 // Execute the one side needed, as per the condition
3346 const auto executeOneSide = [&]() {
3347 // Always emit control flow.
John Kessenich435dd802020-06-30 01:27:08 -06003348 if (node->getBasicType() != glslang::EbtVoid) {
3349 result = builder.createVariable(TranslatePrecisionDecoration(node->getType()), spv::StorageClassFunction,
3350 convertGlslangToSpvType(node->getType()));
3351 }
John Kessenich433e9ff2017-01-26 20:31:11 -07003352
John Kessenich4bee5312018-02-20 21:29:05 -07003353 // Selection control:
3354 const spv::SelectionControlMask control = TranslateSelectionControl(*node);
3355
3356 // make an "if" based on the value created by the condition
3357 spv::Builder::If ifBuilder(condition, control, builder);
3358
3359 // emit the "then" statement
3360 if (node->getTrueBlock() != nullptr) {
3361 node->getTrueBlock()->traverse(this);
3362 if (result != spv::NoResult)
3363 builder.createStore(accessChainLoad(node->getTrueBlock()->getAsTyped()->getType()), result);
3364 }
3365
3366 if (node->getFalseBlock() != nullptr) {
3367 ifBuilder.makeBeginElse();
3368 // emit the "else" statement
3369 node->getFalseBlock()->traverse(this);
3370 if (result != spv::NoResult)
3371 builder.createStore(accessChainLoad(node->getFalseBlock()->getAsTyped()->getType()), result);
3372 }
3373
3374 // finish off the control flow
3375 ifBuilder.makeEndIf();
3376
3377 if (result != spv::NoResult) {
3378 builder.clearAccessChain();
3379 builder.setAccessChainLValue(result);
3380 }
3381 };
3382
3383 // Try for OpSelect (or a requirement to execute both sides)
3384 if (bothSidesPolicy()) {
John Kessenich8e6c6ce2017-01-28 19:29:42 -07003385 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
3386 if (node->getType().getQualifier().isSpecConstant())
3387 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
John Kessenich4bee5312018-02-20 21:29:05 -07003388 executeBothSides();
3389 } else
3390 executeOneSide();
John Kessenich140f3df2015-06-26 16:58:36 -06003391
3392 return false;
3393}
3394
3395bool TGlslangToSpvTraverser::visitSwitch(glslang::TVisit /* visit */, glslang::TIntermSwitch* node)
3396{
3397 // emit and get the condition before doing anything with switch
3398 node->getCondition()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07003399 spv::Id selector = accessChainLoad(node->getCondition()->getAsTyped()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06003400
Rex Xu57e65922017-07-04 23:23:40 +08003401 // Selection control:
John Kesseniche18fd202018-01-30 11:01:39 -07003402 const spv::SelectionControlMask control = TranslateSwitchControl(*node);
Rex Xu57e65922017-07-04 23:23:40 +08003403
John Kessenich140f3df2015-06-26 16:58:36 -06003404 // browse the children to sort out code segments
3405 int defaultSegment = -1;
3406 std::vector<TIntermNode*> codeSegments;
3407 glslang::TIntermSequence& sequence = node->getBody()->getSequence();
3408 std::vector<int> caseValues;
3409 std::vector<int> valueIndexToSegment(sequence.size()); // note: probably not all are used, it is an overestimate
3410 for (glslang::TIntermSequence::iterator c = sequence.begin(); c != sequence.end(); ++c) {
3411 TIntermNode* child = *c;
3412 if (child->getAsBranchNode() && child->getAsBranchNode()->getFlowOp() == glslang::EOpDefault)
baldurkd76692d2015-07-12 11:32:58 +02003413 defaultSegment = (int)codeSegments.size();
John Kessenich140f3df2015-06-26 16:58:36 -06003414 else if (child->getAsBranchNode() && child->getAsBranchNode()->getFlowOp() == glslang::EOpCase) {
baldurkd76692d2015-07-12 11:32:58 +02003415 valueIndexToSegment[caseValues.size()] = (int)codeSegments.size();
John Kessenich8985fc92020-03-03 10:25:07 -07003416 caseValues.push_back(child->getAsBranchNode()->getExpression()->getAsConstantUnion()
3417 ->getConstArray()[0].getIConst());
John Kessenich140f3df2015-06-26 16:58:36 -06003418 } else
3419 codeSegments.push_back(child);
3420 }
3421
qining25262b32016-05-06 17:25:16 -04003422 // handle the case where the last code segment is missing, due to no code
John Kessenich140f3df2015-06-26 16:58:36 -06003423 // statements between the last case and the end of the switch statement
3424 if ((caseValues.size() && (int)codeSegments.size() == valueIndexToSegment[caseValues.size() - 1]) ||
3425 (int)codeSegments.size() == defaultSegment)
3426 codeSegments.push_back(nullptr);
3427
3428 // make the switch statement
3429 std::vector<spv::Block*> segmentBlocks; // returned, as the blocks allocated in the call
John Kessenich8985fc92020-03-03 10:25:07 -07003430 builder.makeSwitch(selector, control, (int)codeSegments.size(), caseValues, valueIndexToSegment, defaultSegment,
3431 segmentBlocks);
John Kessenich140f3df2015-06-26 16:58:36 -06003432
3433 // emit all the code in the segments
3434 breakForLoop.push(false);
3435 for (unsigned int s = 0; s < codeSegments.size(); ++s) {
3436 builder.nextSwitchSegment(segmentBlocks, s);
3437 if (codeSegments[s])
3438 codeSegments[s]->traverse(this);
3439 else
3440 builder.addSwitchBreak();
3441 }
3442 breakForLoop.pop();
3443
3444 builder.endSwitch(segmentBlocks);
3445
3446 return false;
3447}
3448
3449void TGlslangToSpvTraverser::visitConstantUnion(glslang::TIntermConstantUnion* node)
3450{
3451 int nextConst = 0;
qining08408382016-03-21 09:51:37 -04003452 spv::Id constant = createSpvConstantFromConstUnionArray(node->getType(), node->getConstArray(), nextConst, false);
John Kessenich140f3df2015-06-26 16:58:36 -06003453
3454 builder.clearAccessChain();
3455 builder.setAccessChainRValue(constant);
3456}
3457
3458bool TGlslangToSpvTraverser::visitLoop(glslang::TVisit /* visit */, glslang::TIntermLoop* node)
3459{
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003460 auto blocks = builder.makeNewLoop();
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003461 builder.createBranch(&blocks.head);
steve-lunargf1709e72017-05-02 20:14:50 -06003462
3463 // Loop control:
John Kessenich1f4d0462019-01-12 17:31:41 +07003464 std::vector<unsigned int> operands;
3465 const spv::LoopControlMask control = TranslateLoopControl(*node, operands);
steve-lunargf1709e72017-05-02 20:14:50 -06003466
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05003467 // Spec requires back edges to target header blocks, and every header block
3468 // must dominate its merge block. Make a header block first to ensure these
3469 // conditions are met. By definition, it will contain OpLoopMerge, followed
3470 // by a block-ending branch. But we don't want to put any other body/test
3471 // instructions in it, since the body/test may have arbitrary instructions,
3472 // including merges of its own.
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003473 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05003474 builder.setBuildPoint(&blocks.head);
John Kessenich1f4d0462019-01-12 17:31:41 +07003475 builder.createLoopMerge(&blocks.merge, &blocks.continue_target, control, operands);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003476 if (node->testFirst() && node->getTest()) {
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05003477 spv::Block& test = builder.makeNewBlock();
3478 builder.createBranch(&test);
3479
3480 builder.setBuildPoint(&test);
John Kessenich140f3df2015-06-26 16:58:36 -06003481 node->getTest()->traverse(this);
John Kesseniche485c7a2017-05-31 18:50:53 -06003482 spv::Id condition = accessChainLoad(node->getTest()->getType());
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003483 builder.createConditionalBranch(condition, &blocks.body, &blocks.merge);
3484
3485 builder.setBuildPoint(&blocks.body);
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003486 breakForLoop.push(true);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003487 if (node->getBody())
Dejan Mircevskie537b8b2016-01-10 19:37:00 -05003488 node->getBody()->traverse(this);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003489 builder.createBranch(&blocks.continue_target);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05003490 breakForLoop.pop();
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003491
3492 builder.setBuildPoint(&blocks.continue_target);
3493 if (node->getTerminal())
3494 node->getTerminal()->traverse(this);
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003495 builder.createBranch(&blocks.head);
David Netoc22f37c2015-07-15 16:21:26 -04003496 } else {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003497 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003498 builder.createBranch(&blocks.body);
3499
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05003500 breakForLoop.push(true);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003501 builder.setBuildPoint(&blocks.body);
3502 if (node->getBody())
Dejan Mircevskie537b8b2016-01-10 19:37:00 -05003503 node->getBody()->traverse(this);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003504 builder.createBranch(&blocks.continue_target);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05003505 breakForLoop.pop();
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003506
3507 builder.setBuildPoint(&blocks.continue_target);
3508 if (node->getTerminal())
3509 node->getTerminal()->traverse(this);
3510 if (node->getTest()) {
3511 node->getTest()->traverse(this);
3512 spv::Id condition =
John Kessenich32cfd492016-02-02 12:37:46 -07003513 accessChainLoad(node->getTest()->getType());
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003514 builder.createConditionalBranch(condition, &blocks.head, &blocks.merge);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003515 } else {
Dejan Mircevskied55bcd2016-01-19 21:13:38 -05003516 // TODO: unless there was a break/return/discard instruction
3517 // somewhere in the body, this is an infinite loop, so we should
3518 // issue a warning.
Dejan Mircevski832c65c2016-01-11 15:57:11 -05003519 builder.createBranch(&blocks.head);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003520 }
John Kessenich140f3df2015-06-26 16:58:36 -06003521 }
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05003522 builder.setBuildPoint(&blocks.merge);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05003523 builder.closeLoop();
John Kessenich140f3df2015-06-26 16:58:36 -06003524 return false;
3525}
3526
3527bool TGlslangToSpvTraverser::visitBranch(glslang::TVisit /* visit */, glslang::TIntermBranch* node)
3528{
3529 if (node->getExpression())
3530 node->getExpression()->traverse(this);
3531
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003532 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06003533
John Kessenich140f3df2015-06-26 16:58:36 -06003534 switch (node->getFlowOp()) {
3535 case glslang::EOpKill:
Daniel Kochffccefd2020-11-23 15:41:27 -05003536 builder.makeStatementTerminator(spv::OpKill, "post-discard");
John Kessenich140f3df2015-06-26 16:58:36 -06003537 break;
Jesse Hall74e8f052020-11-09 08:30:01 -08003538 case glslang::EOpTerminateInvocation:
3539 builder.addExtension(spv::E_SPV_KHR_terminate_invocation);
Daniel Kochffccefd2020-11-23 15:41:27 -05003540 builder.makeStatementTerminator(spv::OpTerminateInvocation, "post-terminate-invocation");
Jesse Hall74e8f052020-11-09 08:30:01 -08003541 break;
John Kessenich140f3df2015-06-26 16:58:36 -06003542 case glslang::EOpBreak:
3543 if (breakForLoop.top())
3544 builder.createLoopExit();
3545 else
3546 builder.addSwitchBreak();
3547 break;
3548 case glslang::EOpContinue:
John Kessenich140f3df2015-06-26 16:58:36 -06003549 builder.createLoopContinue();
3550 break;
3551 case glslang::EOpReturn:
John Kessenich435dd802020-06-30 01:27:08 -06003552 if (node->getExpression() != nullptr) {
John Kesseniched33e052016-10-06 12:59:51 -06003553 const glslang::TType& glslangReturnType = node->getExpression()->getType();
3554 spv::Id returnId = accessChainLoad(glslangReturnType);
John Kessenich435dd802020-06-30 01:27:08 -06003555 if (builder.getTypeId(returnId) != currentFunction->getReturnType() ||
3556 TranslatePrecisionDecoration(glslangReturnType) != currentFunction->getReturnPrecision()) {
John Kesseniched33e052016-10-06 12:59:51 -06003557 builder.clearAccessChain();
John Kessenich435dd802020-06-30 01:27:08 -06003558 spv::Id copyId = builder.createVariable(currentFunction->getReturnPrecision(),
3559 spv::StorageClassFunction, currentFunction->getReturnType());
John Kesseniched33e052016-10-06 12:59:51 -06003560 builder.setAccessChainLValue(copyId);
3561 multiTypeStore(glslangReturnType, returnId);
John Kessenich435dd802020-06-30 01:27:08 -06003562 returnId = builder.createLoad(copyId, currentFunction->getReturnPrecision());
John Kesseniched33e052016-10-06 12:59:51 -06003563 }
3564 builder.makeReturn(false, returnId);
3565 } else
John Kesseniche770b3e2015-09-14 20:58:02 -06003566 builder.makeReturn(false);
John Kessenich140f3df2015-06-26 16:58:36 -06003567
3568 builder.clearAccessChain();
3569 break;
3570
John Kessenichb9197c82019-08-11 07:41:45 -06003571#ifndef GLSLANG_WEB
Jeff Bolzba6170b2019-07-01 09:23:23 -05003572 case glslang::EOpDemote:
3573 builder.createNoResultOp(spv::OpDemoteToHelperInvocationEXT);
3574 builder.addExtension(spv::E_SPV_EXT_demote_to_helper_invocation);
3575 builder.addCapability(spv::CapabilityDemoteToHelperInvocationEXT);
3576 break;
Daniel Kochffccefd2020-11-23 15:41:27 -05003577 case glslang::EOpTerminateRayKHR:
3578 builder.makeStatementTerminator(spv::OpTerminateRayKHR, "post-terminateRayKHR");
3579 break;
3580 case glslang::EOpIgnoreIntersectionKHR:
3581 builder.makeStatementTerminator(spv::OpIgnoreIntersectionKHR, "post-ignoreIntersectionKHR");
3582 break;
John Kessenichb9197c82019-08-11 07:41:45 -06003583#endif
Jeff Bolzba6170b2019-07-01 09:23:23 -05003584
John Kessenich140f3df2015-06-26 16:58:36 -06003585 default:
John Kessenich55e7d112015-11-15 21:33:39 -07003586 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06003587 break;
3588 }
3589
3590 return false;
3591}
3592
John Kessenich9c14f772019-06-17 08:38:35 -06003593spv::Id TGlslangToSpvTraverser::createSpvVariable(const glslang::TIntermSymbol* node, spv::Id forcedType)
John Kessenich140f3df2015-06-26 16:58:36 -06003594{
qining25262b32016-05-06 17:25:16 -04003595 // First, steer off constants, which are not SPIR-V variables, but
John Kessenich140f3df2015-06-26 16:58:36 -06003596 // can still have a mapping to a SPIR-V Id.
John Kessenich55e7d112015-11-15 21:33:39 -07003597 // This includes specialization constants.
John Kessenich7cc0e282016-03-20 00:46:02 -06003598 if (node->getQualifier().isConstant()) {
Dan Sinclair12fcaa22018-11-13 09:17:44 -05003599 spv::Id result = createSpvConstant(*node);
3600 if (result != spv::NoResult)
3601 return result;
John Kessenich140f3df2015-06-26 16:58:36 -06003602 }
3603
3604 // Now, handle actual variables
John Kessenicha5c5fb62017-05-05 05:09:58 -06003605 spv::StorageClass storageClass = TranslateStorageClass(node->getType());
John Kessenich9c14f772019-06-17 08:38:35 -06003606 spv::Id spvType = forcedType == spv::NoType ? convertGlslangToSpvType(node->getType())
3607 : forcedType;
John Kessenich140f3df2015-06-26 16:58:36 -06003608
John Kessenichb9197c82019-08-11 07:41:45 -06003609 const bool contains16BitType = node->getType().contains16BitFloat() ||
3610 node->getType().contains16BitInt();
Rex Xuf89ad982017-04-07 23:22:33 +08003611 if (contains16BitType) {
John Kessenich18310872018-05-14 22:08:53 -06003612 switch (storageClass) {
3613 case spv::StorageClassInput:
3614 case spv::StorageClassOutput:
John Kessenich8317e6c2019-08-18 23:58:08 -06003615 builder.addIncorporatedExtension(spv::E_SPV_KHR_16bit_storage, spv::Spv_1_3);
Rex Xuf89ad982017-04-07 23:22:33 +08003616 builder.addCapability(spv::CapabilityStorageInputOutput16);
John Kessenich18310872018-05-14 22:08:53 -06003617 break;
John Kessenich18310872018-05-14 22:08:53 -06003618 case spv::StorageClassUniform:
John Kessenich8317e6c2019-08-18 23:58:08 -06003619 builder.addIncorporatedExtension(spv::E_SPV_KHR_16bit_storage, spv::Spv_1_3);
Rex Xuf89ad982017-04-07 23:22:33 +08003620 if (node->getType().getQualifier().storage == glslang::EvqBuffer)
3621 builder.addCapability(spv::CapabilityStorageUniformBufferBlock16);
John Kessenich18310872018-05-14 22:08:53 -06003622 else
3623 builder.addCapability(spv::CapabilityStorageUniform16);
3624 break;
John Kessenichb9197c82019-08-11 07:41:45 -06003625#ifndef GLSLANG_WEB
3626 case spv::StorageClassPushConstant:
John Kessenich8317e6c2019-08-18 23:58:08 -06003627 builder.addIncorporatedExtension(spv::E_SPV_KHR_16bit_storage, spv::Spv_1_3);
John Kessenichb9197c82019-08-11 07:41:45 -06003628 builder.addCapability(spv::CapabilityStoragePushConstant16);
3629 break;
John Kessenich18310872018-05-14 22:08:53 -06003630 case spv::StorageClassStorageBuffer:
Jeff Bolz9f2aec42019-01-06 17:58:04 -06003631 case spv::StorageClassPhysicalStorageBufferEXT:
John Kessenich8317e6c2019-08-18 23:58:08 -06003632 builder.addIncorporatedExtension(spv::E_SPV_KHR_16bit_storage, spv::Spv_1_3);
John Kessenich18310872018-05-14 22:08:53 -06003633 builder.addCapability(spv::CapabilityStorageUniformBufferBlock16);
3634 break;
John Kessenichb9197c82019-08-11 07:41:45 -06003635#endif
John Kessenich18310872018-05-14 22:08:53 -06003636 default:
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -07003637 if (storageClass == spv::StorageClassWorkgroup &&
3638 node->getType().getBasicType() == glslang::EbtBlock) {
3639 builder.addCapability(spv::CapabilityWorkgroupMemoryExplicitLayout16BitAccessKHR);
3640 break;
3641 }
John Kessenichb9197c82019-08-11 07:41:45 -06003642 if (node->getType().contains16BitFloat())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06003643 builder.addCapability(spv::CapabilityFloat16);
John Kessenichb9197c82019-08-11 07:41:45 -06003644 if (node->getType().contains16BitInt())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06003645 builder.addCapability(spv::CapabilityInt16);
John Kessenich18310872018-05-14 22:08:53 -06003646 break;
Rex Xuf89ad982017-04-07 23:22:33 +08003647 }
3648 }
Rex Xuf89ad982017-04-07 23:22:33 +08003649
John Kessenichb9197c82019-08-11 07:41:45 -06003650 if (node->getType().contains8BitInt()) {
John Kessenich312dcfb2018-07-03 13:19:51 -06003651 if (storageClass == spv::StorageClassPushConstant) {
John Kessenich8317e6c2019-08-18 23:58:08 -06003652 builder.addIncorporatedExtension(spv::E_SPV_KHR_8bit_storage, spv::Spv_1_5);
John Kessenich312dcfb2018-07-03 13:19:51 -06003653 builder.addCapability(spv::CapabilityStoragePushConstant8);
3654 } else if (storageClass == spv::StorageClassUniform) {
John Kessenich8317e6c2019-08-18 23:58:08 -06003655 builder.addIncorporatedExtension(spv::E_SPV_KHR_8bit_storage, spv::Spv_1_5);
John Kessenich312dcfb2018-07-03 13:19:51 -06003656 builder.addCapability(spv::CapabilityUniformAndStorageBuffer8BitAccess);
Neil Henningb6b01f02018-10-23 15:02:29 +01003657 } else if (storageClass == spv::StorageClassStorageBuffer) {
John Kessenich8317e6c2019-08-18 23:58:08 -06003658 builder.addIncorporatedExtension(spv::E_SPV_KHR_8bit_storage, spv::Spv_1_5);
Neil Henningb6b01f02018-10-23 15:02:29 +01003659 builder.addCapability(spv::CapabilityStorageBuffer8BitAccess);
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -07003660 } else if (storageClass == spv::StorageClassWorkgroup &&
3661 node->getType().getBasicType() == glslang::EbtBlock) {
3662 builder.addCapability(spv::CapabilityWorkgroupMemoryExplicitLayout8BitAccessKHR);
Jeff Bolz2b2316d2019-02-17 22:49:28 -06003663 } else {
3664 builder.addCapability(spv::CapabilityInt8);
John Kessenich312dcfb2018-07-03 13:19:51 -06003665 }
3666 }
3667
John Kessenich140f3df2015-06-26 16:58:36 -06003668 const char* name = node->getName().c_str();
3669 if (glslang::IsAnonymous(name))
3670 name = "";
3671
Alejandro Piñeiroff6dcca2020-06-04 09:39:31 +02003672 spv::Id initializer = spv::NoResult;
3673
John Kessenichc739e032020-06-11 08:30:03 -06003674 if (node->getType().getQualifier().storage == glslang::EvqUniform && !node->getConstArray().empty()) {
3675 int nextConst = 0;
3676 initializer = createSpvConstantFromConstUnionArray(node->getType(),
3677 node->getConstArray(),
3678 nextConst,
3679 false /* specConst */);
3680 } else if (node->getType().getQualifier().isNullInit()) {
3681 initializer = builder.makeNullConstant(spvType);
Alejandro Piñeiroff6dcca2020-06-04 09:39:31 +02003682 }
3683
John Kessenich435dd802020-06-30 01:27:08 -06003684 return builder.createVariable(spv::NoPrecision, storageClass, spvType, name, initializer);
John Kessenich140f3df2015-06-26 16:58:36 -06003685}
3686
3687// Return type Id of the sampled type.
3688spv::Id TGlslangToSpvTraverser::getSampledType(const glslang::TSampler& sampler)
3689{
3690 switch (sampler.type) {
John Kessenicha28f7a72019-08-06 07:00:58 -06003691 case glslang::EbtInt: return builder.makeIntType(32);
3692 case glslang::EbtUint: return builder.makeUintType(32);
John Kessenich140f3df2015-06-26 16:58:36 -06003693 case glslang::EbtFloat: return builder.makeFloatType(32);
John Kessenicha28f7a72019-08-06 07:00:58 -06003694#ifndef GLSLANG_WEB
Rex Xu1e5d7b02016-11-29 17:36:31 +08003695 case glslang::EbtFloat16:
3696 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float_fetch);
3697 builder.addCapability(spv::CapabilityFloat16ImageAMD);
3698 return builder.makeFloatType(16);
Tobski8c1a3a02020-11-04 16:24:23 +00003699 case glslang::EbtInt64: return builder.makeIntType(64);
3700 builder.addExtension(spv::E_SPV_EXT_shader_image_int64);
3701 builder.addCapability(spv::CapabilityFloat16ImageAMD);
3702 case glslang::EbtUint64: return builder.makeUintType(64);
3703 builder.addExtension(spv::E_SPV_EXT_shader_image_int64);
3704 builder.addCapability(spv::CapabilityFloat16ImageAMD);
Rex Xu1e5d7b02016-11-29 17:36:31 +08003705#endif
John Kessenich140f3df2015-06-26 16:58:36 -06003706 default:
John Kessenich55e7d112015-11-15 21:33:39 -07003707 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06003708 return builder.makeFloatType(32);
3709 }
3710}
3711
John Kessenich8c8505c2016-07-26 12:50:38 -06003712// If node is a swizzle operation, return the type that should be used if
3713// the swizzle base is first consumed by another operation, before the swizzle
3714// is applied.
3715spv::Id TGlslangToSpvTraverser::getInvertedSwizzleType(const glslang::TIntermTyped& node)
3716{
John Kessenichecba76f2017-01-06 00:34:48 -07003717 if (node.getAsOperator() &&
John Kessenich8c8505c2016-07-26 12:50:38 -06003718 node.getAsOperator()->getOp() == glslang::EOpVectorSwizzle)
3719 return convertGlslangToSpvType(node.getAsBinaryNode()->getLeft()->getType());
3720 else
3721 return spv::NoType;
3722}
3723
3724// When inverting a swizzle with a parent op, this function
3725// will apply the swizzle operation to a completed parent operation.
John Kessenich8985fc92020-03-03 10:25:07 -07003726spv::Id TGlslangToSpvTraverser::createInvertedSwizzle(spv::Decoration precision, const glslang::TIntermTyped& node,
3727 spv::Id parentResult)
John Kessenich8c8505c2016-07-26 12:50:38 -06003728{
3729 std::vector<unsigned> swizzle;
3730 convertSwizzle(*node.getAsBinaryNode()->getRight()->getAsAggregate(), swizzle);
3731 return builder.createRvalueSwizzle(precision, convertGlslangToSpvType(node.getType()), parentResult, swizzle);
3732}
3733
John Kessenich8c8505c2016-07-26 12:50:38 -06003734// Convert a glslang AST swizzle node to a swizzle vector for building SPIR-V.
3735void TGlslangToSpvTraverser::convertSwizzle(const glslang::TIntermAggregate& node, std::vector<unsigned>& swizzle)
3736{
3737 const glslang::TIntermSequence& swizzleSequence = node.getSequence();
3738 for (int i = 0; i < (int)swizzleSequence.size(); ++i)
3739 swizzle.push_back(swizzleSequence[i]->getAsConstantUnion()->getConstArray()[0].getIConst());
3740}
3741
John Kessenich3ac051e2015-12-20 11:29:16 -07003742// Convert from a glslang type to an SPV type, by calling into a
3743// recursive version of this function. This establishes the inherited
3744// layout state rooted from the top-level type.
Jeff Bolz9f2aec42019-01-06 17:58:04 -06003745spv::Id TGlslangToSpvTraverser::convertGlslangToSpvType(const glslang::TType& type, bool forwardReferenceOnly)
John Kessenich140f3df2015-06-26 16:58:36 -06003746{
Jeff Bolz9f2aec42019-01-06 17:58:04 -06003747 return convertGlslangToSpvType(type, getExplicitLayout(type), type.getQualifier(), false, forwardReferenceOnly);
John Kessenich31ed4832015-09-09 17:51:38 -06003748}
3749
3750// Do full recursive conversion of an arbitrary glslang type to a SPIR-V Id.
John Kessenich7b9fa252016-01-21 18:56:57 -07003751// explicitLayout can be kept the same throughout the hierarchical recursive walk.
John Kessenich6090df02016-06-30 21:18:02 -06003752// Mutually recursive with convertGlslangStructToSpvType().
John Kessenichead86222018-03-28 18:01:20 -06003753spv::Id TGlslangToSpvTraverser::convertGlslangToSpvType(const glslang::TType& type,
Jeff Bolz9f2aec42019-01-06 17:58:04 -06003754 glslang::TLayoutPacking explicitLayout, const glslang::TQualifier& qualifier,
3755 bool lastBufferBlockMember, bool forwardReferenceOnly)
John Kessenich31ed4832015-09-09 17:51:38 -06003756{
John Kesseniche0b6cad2015-12-24 10:30:13 -07003757 spv::Id spvType = spv::NoResult;
John Kessenich140f3df2015-06-26 16:58:36 -06003758
3759 switch (type.getBasicType()) {
3760 case glslang::EbtVoid:
3761 spvType = builder.makeVoidType();
John Kessenich55e7d112015-11-15 21:33:39 -07003762 assert (! type.isArray());
John Kessenich140f3df2015-06-26 16:58:36 -06003763 break;
John Kessenich140f3df2015-06-26 16:58:36 -06003764 case glslang::EbtBool:
John Kessenich103bef92016-02-08 21:38:15 -07003765 // "transparent" bool doesn't exist in SPIR-V. The GLSL convention is
3766 // a 32-bit int where non-0 means true.
3767 if (explicitLayout != glslang::ElpNone)
3768 spvType = builder.makeUintType(32);
3769 else
3770 spvType = builder.makeBoolType();
John Kessenich140f3df2015-06-26 16:58:36 -06003771 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06003772 case glslang::EbtInt:
3773 spvType = builder.makeIntType(32);
3774 break;
3775 case glslang::EbtUint:
3776 spvType = builder.makeUintType(32);
3777 break;
3778 case glslang::EbtFloat:
3779 spvType = builder.makeFloatType(32);
3780 break;
3781#ifndef GLSLANG_WEB
3782 case glslang::EbtDouble:
3783 spvType = builder.makeFloatType(64);
3784 break;
3785 case glslang::EbtFloat16:
3786 spvType = builder.makeFloatType(16);
3787 break;
John Kessenich31aa3d62018-08-15 13:54:09 -06003788 case glslang::EbtInt8:
John Kessenich66011cb2018-03-06 16:12:04 -07003789 spvType = builder.makeIntType(8);
3790 break;
3791 case glslang::EbtUint8:
John Kessenich66011cb2018-03-06 16:12:04 -07003792 spvType = builder.makeUintType(8);
3793 break;
John Kessenich31aa3d62018-08-15 13:54:09 -06003794 case glslang::EbtInt16:
John Kessenich66011cb2018-03-06 16:12:04 -07003795 spvType = builder.makeIntType(16);
3796 break;
3797 case glslang::EbtUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07003798 spvType = builder.makeUintType(16);
3799 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08003800 case glslang::EbtInt64:
Rex Xu8ff43de2016-04-22 16:51:45 +08003801 spvType = builder.makeIntType(64);
3802 break;
3803 case glslang::EbtUint64:
Rex Xu8ff43de2016-04-22 16:51:45 +08003804 spvType = builder.makeUintType(64);
3805 break;
John Kessenich426394d2015-07-23 10:22:48 -06003806 case glslang::EbtAtomicUint:
John Kessenich2d0cc782016-07-07 13:20:00 -06003807 builder.addCapability(spv::CapabilityAtomicStorage);
John Kessenich426394d2015-07-23 10:22:48 -06003808 spvType = builder.makeUintType(32);
3809 break;
Daniel Kochdb32b242020-03-17 20:42:47 -04003810 case glslang::EbtAccStruct:
Daniel Koch4d41da32020-11-24 23:06:16 -05003811 switch (glslangIntermediate->getStage()) {
3812 case EShLangRayGen:
3813 case EShLangIntersect:
3814 case EShLangAnyHit:
3815 case EShLangClosestHit:
3816 case EShLangMiss:
3817 case EShLangCallable:
3818 // these all should have the RayTracingNV/KHR capability already
3819 break;
3820 default:
3821 {
3822 auto& extensions = glslangIntermediate->getRequestedExtensions();
3823 if (extensions.find("GL_EXT_ray_query") != extensions.end()) {
3824 builder.addExtension(spv::E_SPV_KHR_ray_query);
3825 builder.addCapability(spv::CapabilityRayQueryKHR);
3826 }
3827 }
3828 break;
3829 }
Daniel Kochdb32b242020-03-17 20:42:47 -04003830 spvType = builder.makeAccelerationStructureType();
Chao Chenb50c02e2018-09-19 11:42:24 -07003831 break;
Torosdagli06c2eee2020-03-19 11:09:57 -04003832 case glslang::EbtRayQuery:
Daniel Koch4d41da32020-11-24 23:06:16 -05003833 {
3834 auto& extensions = glslangIntermediate->getRequestedExtensions();
3835 if (extensions.find("GL_EXT_ray_query") != extensions.end()) {
3836 builder.addExtension(spv::E_SPV_KHR_ray_query);
3837 builder.addCapability(spv::CapabilityRayQueryKHR);
3838 }
3839 spvType = builder.makeRayQueryType();
3840 }
Torosdagli06c2eee2020-03-19 11:09:57 -04003841 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06003842 case glslang::EbtReference:
3843 {
3844 // Make the forward pointer, then recurse to convert the structure type, then
3845 // patch up the forward pointer with a real pointer type.
3846 if (forwardPointers.find(type.getReferentType()) == forwardPointers.end()) {
3847 spv::Id forwardId = builder.makeForwardPointer(spv::StorageClassPhysicalStorageBufferEXT);
3848 forwardPointers[type.getReferentType()] = forwardId;
3849 }
3850 spvType = forwardPointers[type.getReferentType()];
3851 if (!forwardReferenceOnly) {
3852 spv::Id referentType = convertGlslangToSpvType(*type.getReferentType());
3853 builder.makePointerFromForwardPointer(spv::StorageClassPhysicalStorageBufferEXT,
3854 forwardPointers[type.getReferentType()],
3855 referentType);
3856 }
3857 }
3858 break;
Chao Chenb50c02e2018-09-19 11:42:24 -07003859#endif
John Kessenich140f3df2015-06-26 16:58:36 -06003860 case glslang::EbtSampler:
3861 {
3862 const glslang::TSampler& sampler = type.getSampler();
John Kessenich3e4b6ff2019-08-08 01:15:24 -06003863 if (sampler.isPureSampler()) {
John Kessenich6c292d32016-02-15 20:58:50 -07003864 spvType = builder.makeSamplerType();
3865 } else {
3866 // an image is present, make its type
John Kessenich3e4b6ff2019-08-08 01:15:24 -06003867 spvType = builder.makeImageType(getSampledType(sampler), TranslateDimensionality(sampler),
3868 sampler.isShadow(), sampler.isArrayed(), sampler.isMultiSample(),
3869 sampler.isImageClass() ? 2 : 1, TranslateImageFormat(type));
3870 if (sampler.isCombined()) {
John Kessenich6c292d32016-02-15 20:58:50 -07003871 // already has both image and sampler, make the combined type
3872 spvType = builder.makeSampledImageType(spvType);
3873 }
John Kessenich55e7d112015-11-15 21:33:39 -07003874 }
John Kesseniche0b6cad2015-12-24 10:30:13 -07003875 }
John Kessenich140f3df2015-06-26 16:58:36 -06003876 break;
3877 case glslang::EbtStruct:
3878 case glslang::EbtBlock:
3879 {
3880 // If we've seen this struct type, return it
John Kessenich6090df02016-06-30 21:18:02 -06003881 const glslang::TTypeList* glslangMembers = type.getStruct();
John Kesseniche0b6cad2015-12-24 10:30:13 -07003882
3883 // Try to share structs for different layouts, but not yet for other
3884 // kinds of qualification (primarily not yet including interpolant qualification).
John Kessenichf2b7f332016-09-01 17:05:23 -06003885 if (! HasNonLayoutQualifiers(type, qualifier))
John Kessenich6090df02016-06-30 21:18:02 -06003886 spvType = structMap[explicitLayout][qualifier.layoutMatrix][glslangMembers];
John Kesseniche0b6cad2015-12-24 10:30:13 -07003887 if (spvType != spv::NoResult)
John Kessenich140f3df2015-06-26 16:58:36 -06003888 break;
3889
3890 // else, we haven't seen it...
John Kessenich140f3df2015-06-26 16:58:36 -06003891 if (type.getBasicType() == glslang::EbtBlock)
Roy05a5b532020-01-03 16:21:34 +08003892 memberRemapper[glslangTypeToIdMap[glslangMembers]].resize(glslangMembers->size());
John Kessenich6090df02016-06-30 21:18:02 -06003893 spvType = convertGlslangStructToSpvType(type, glslangMembers, explicitLayout, qualifier);
John Kessenich140f3df2015-06-26 16:58:36 -06003894 }
3895 break;
Jeff Bolz04d73732019-05-31 13:06:01 -05003896 case glslang::EbtString:
3897 // no type used for OpString
3898 return 0;
John Kessenich140f3df2015-06-26 16:58:36 -06003899 default:
John Kessenich55e7d112015-11-15 21:33:39 -07003900 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06003901 break;
3902 }
3903
3904 if (type.isMatrix())
3905 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows());
3906 else {
3907 // If this variable has a vector element count greater than 1, create a SPIR-V vector
3908 if (type.getVectorSize() > 1)
3909 spvType = builder.makeVectorType(spvType, type.getVectorSize());
3910 }
3911
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003912 if (type.isCoopMat()) {
3913 builder.addCapability(spv::CapabilityCooperativeMatrixNV);
3914 builder.addExtension(spv::E_SPV_NV_cooperative_matrix);
3915 if (type.getBasicType() == glslang::EbtFloat16)
3916 builder.addCapability(spv::CapabilityFloat16);
Jeff Bolz387657e2019-08-22 20:28:00 -05003917 if (type.getBasicType() == glslang::EbtUint8 ||
3918 type.getBasicType() == glslang::EbtInt8) {
3919 builder.addCapability(spv::CapabilityInt8);
3920 }
Jeff Bolz4605e2e2019-02-19 13:10:32 -06003921
3922 spv::Id scope = makeArraySizeId(*type.getTypeParameters(), 1);
3923 spv::Id rows = makeArraySizeId(*type.getTypeParameters(), 2);
3924 spv::Id cols = makeArraySizeId(*type.getTypeParameters(), 3);
3925
3926 spvType = builder.makeCooperativeMatrixType(spvType, scope, rows, cols);
3927 }
3928
John Kessenich140f3df2015-06-26 16:58:36 -06003929 if (type.isArray()) {
John Kessenichc9e0a422015-12-29 21:27:24 -07003930 int stride = 0; // keep this 0 unless doing an explicit layout; 0 will mean no decoration, no stride
3931
John Kessenichc9a80832015-09-12 12:17:44 -06003932 // Do all but the outer dimension
John Kessenichc9e0a422015-12-29 21:27:24 -07003933 if (type.getArraySizes()->getNumDims() > 1) {
John Kessenichf8842e52016-01-04 19:22:56 -07003934 // We need to decorate array strides for types needing explicit layout, except blocks.
3935 if (explicitLayout != glslang::ElpNone && type.getBasicType() != glslang::EbtBlock) {
John Kessenichc9e0a422015-12-29 21:27:24 -07003936 // Use a dummy glslang type for querying internal strides of
3937 // arrays of arrays, but using just a one-dimensional array.
3938 glslang::TType simpleArrayType(type, 0); // deference type of the array
John Kessenich859b0342018-03-26 00:38:53 -06003939 while (simpleArrayType.getArraySizes()->getNumDims() > 1)
3940 simpleArrayType.getArraySizes()->dereference();
John Kessenichc9e0a422015-12-29 21:27:24 -07003941
3942 // Will compute the higher-order strides here, rather than making a whole
3943 // pile of types and doing repetitive recursion on their contents.
3944 stride = getArrayStride(simpleArrayType, explicitLayout, qualifier.layoutMatrix);
3945 }
John Kessenichf8842e52016-01-04 19:22:56 -07003946
3947 // make the arrays
John Kessenichc9e0a422015-12-29 21:27:24 -07003948 for (int dim = type.getArraySizes()->getNumDims() - 1; dim > 0; --dim) {
John Kessenich6c292d32016-02-15 20:58:50 -07003949 spvType = builder.makeArrayType(spvType, makeArraySizeId(*type.getArraySizes(), dim), stride);
John Kessenichc9e0a422015-12-29 21:27:24 -07003950 if (stride > 0)
3951 builder.addDecoration(spvType, spv::DecorationArrayStride, stride);
John Kessenich6c292d32016-02-15 20:58:50 -07003952 stride *= type.getArraySizes()->getDimSize(dim);
John Kessenichc9e0a422015-12-29 21:27:24 -07003953 }
3954 } else {
3955 // single-dimensional array, and don't yet have stride
3956
John Kessenichf8842e52016-01-04 19:22:56 -07003957 // We need to decorate array strides for types needing explicit layout, except blocks.
John Kessenichc9e0a422015-12-29 21:27:24 -07003958 if (explicitLayout != glslang::ElpNone && type.getBasicType() != glslang::EbtBlock)
3959 stride = getArrayStride(type, explicitLayout, qualifier.layoutMatrix);
John Kessenichc9a80832015-09-12 12:17:44 -06003960 }
John Kessenich31ed4832015-09-09 17:51:38 -06003961
John Kessenichead86222018-03-28 18:01:20 -06003962 // Do the outer dimension, which might not be known for a runtime-sized array.
3963 // (Unsized arrays that survive through linking will be runtime-sized arrays)
3964 if (type.isSizedArray())
John Kessenich6c292d32016-02-15 20:58:50 -07003965 spvType = builder.makeArrayType(spvType, makeArraySizeId(*type.getArraySizes(), 0), stride);
John Kessenich5611c6d2018-04-05 11:25:02 -06003966 else {
John Kessenichb9197c82019-08-11 07:41:45 -06003967#ifndef GLSLANG_WEB
John Kessenich5611c6d2018-04-05 11:25:02 -06003968 if (!lastBufferBlockMember) {
John Kessenich8317e6c2019-08-18 23:58:08 -06003969 builder.addIncorporatedExtension("SPV_EXT_descriptor_indexing", spv::Spv_1_5);
John Kessenich5611c6d2018-04-05 11:25:02 -06003970 builder.addCapability(spv::CapabilityRuntimeDescriptorArrayEXT);
3971 }
John Kessenichb9197c82019-08-11 07:41:45 -06003972#endif
John Kessenich3dd1ce52019-10-17 07:08:40 -06003973 spvType = builder.makeRuntimeArray(spvType);
John Kessenich5611c6d2018-04-05 11:25:02 -06003974 }
John Kessenichc9e0a422015-12-29 21:27:24 -07003975 if (stride > 0)
3976 builder.addDecoration(spvType, spv::DecorationArrayStride, stride);
John Kessenich140f3df2015-06-26 16:58:36 -06003977 }
3978
3979 return spvType;
3980}
3981
John Kessenich0e737842017-03-24 18:38:16 -06003982// TODO: this functionality should exist at a higher level, in creating the AST
3983//
3984// Identify interface members that don't have their required extension turned on.
3985//
3986bool TGlslangToSpvTraverser::filterMember(const glslang::TType& member)
3987{
John Kessenicha28f7a72019-08-06 07:00:58 -06003988#ifndef GLSLANG_WEB
John Kessenich0e737842017-03-24 18:38:16 -06003989 auto& extensions = glslangIntermediate->getRequestedExtensions();
3990
Rex Xubcf291a2017-03-29 23:01:36 +08003991 if (member.getFieldName() == "gl_SecondaryViewportMaskNV" &&
3992 extensions.find("GL_NV_stereo_view_rendering") == extensions.end())
3993 return true;
John Kessenich0e737842017-03-24 18:38:16 -06003994 if (member.getFieldName() == "gl_SecondaryPositionNV" &&
3995 extensions.find("GL_NV_stereo_view_rendering") == extensions.end())
3996 return true;
Chao Chen3c366992018-09-19 11:41:59 -07003997
3998 if (glslangIntermediate->getStage() != EShLangMeshNV) {
3999 if (member.getFieldName() == "gl_ViewportMask" &&
4000 extensions.find("GL_NV_viewport_array2") == extensions.end())
4001 return true;
4002 if (member.getFieldName() == "gl_PositionPerViewNV" &&
4003 extensions.find("GL_NVX_multiview_per_view_attributes") == extensions.end())
4004 return true;
4005 if (member.getFieldName() == "gl_ViewportMaskPerViewNV" &&
4006 extensions.find("GL_NVX_multiview_per_view_attributes") == extensions.end())
4007 return true;
4008 }
4009#endif
John Kessenich0e737842017-03-24 18:38:16 -06004010
4011 return false;
4012};
4013
John Kessenich6090df02016-06-30 21:18:02 -06004014// Do full recursive conversion of a glslang structure (or block) type to a SPIR-V Id.
4015// explicitLayout can be kept the same throughout the hierarchical recursive walk.
4016// Mutually recursive with convertGlslangToSpvType().
4017spv::Id TGlslangToSpvTraverser::convertGlslangStructToSpvType(const glslang::TType& type,
4018 const glslang::TTypeList* glslangMembers,
4019 glslang::TLayoutPacking explicitLayout,
4020 const glslang::TQualifier& qualifier)
4021{
4022 // Create a vector of struct types for SPIR-V to consume
4023 std::vector<spv::Id> spvMembers;
John Kessenich8985fc92020-03-03 10:25:07 -07004024 int memberDelta = 0; // how much the member's index changes from glslang to SPIR-V, normally 0,
4025 // except sometimes for blocks
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004026 std::vector<std::pair<glslang::TType*, glslang::TQualifier> > deferredForwardPointers;
John Kessenich6090df02016-06-30 21:18:02 -06004027 for (int i = 0; i < (int)glslangMembers->size(); i++) {
4028 glslang::TType& glslangMember = *(*glslangMembers)[i].type;
4029 if (glslangMember.hiddenMember()) {
4030 ++memberDelta;
4031 if (type.getBasicType() == glslang::EbtBlock)
Roy05a5b532020-01-03 16:21:34 +08004032 memberRemapper[glslangTypeToIdMap[glslangMembers]][i] = -1;
John Kessenich6090df02016-06-30 21:18:02 -06004033 } else {
John Kessenich0e737842017-03-24 18:38:16 -06004034 if (type.getBasicType() == glslang::EbtBlock) {
Ashwin Lelec1e61d62019-07-22 12:36:38 -07004035 if (filterMember(glslangMember)) {
4036 memberDelta++;
Roy05a5b532020-01-03 16:21:34 +08004037 memberRemapper[glslangTypeToIdMap[glslangMembers]][i] = -1;
John Kessenich0e737842017-03-24 18:38:16 -06004038 continue;
Ashwin Lelec1e61d62019-07-22 12:36:38 -07004039 }
Roy05a5b532020-01-03 16:21:34 +08004040 memberRemapper[glslangTypeToIdMap[glslangMembers]][i] = i - memberDelta;
John Kessenich0e737842017-03-24 18:38:16 -06004041 }
John Kessenich6090df02016-06-30 21:18:02 -06004042 // modify just this child's view of the qualifier
4043 glslang::TQualifier memberQualifier = glslangMember.getQualifier();
4044 InheritQualifiers(memberQualifier, qualifier);
4045
John Kessenich7cdf3fc2017-06-04 13:22:39 -06004046 // manually inherit location
John Kessenich6090df02016-06-30 21:18:02 -06004047 if (! memberQualifier.hasLocation() && qualifier.hasLocation())
John Kessenich7cdf3fc2017-06-04 13:22:39 -06004048 memberQualifier.layoutLocation = qualifier.layoutLocation;
John Kessenich6090df02016-06-30 21:18:02 -06004049
4050 // recurse
John Kessenichead86222018-03-28 18:01:20 -06004051 bool lastBufferBlockMember = qualifier.storage == glslang::EvqBuffer &&
4052 i == (int)glslangMembers->size() - 1;
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004053
4054 // Make forward pointers for any pointer members, and create a list of members to
4055 // convert to spirv types after creating the struct.
John Kessenich7015bd62019-08-01 03:28:08 -06004056 if (glslangMember.isReference()) {
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004057 if (forwardPointers.find(glslangMember.getReferentType()) == forwardPointers.end()) {
4058 deferredForwardPointers.push_back(std::make_pair(&glslangMember, memberQualifier));
4059 }
4060 spvMembers.push_back(
John Kessenich8985fc92020-03-03 10:25:07 -07004061 convertGlslangToSpvType(glslangMember, explicitLayout, memberQualifier, lastBufferBlockMember,
4062 true));
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004063 } else {
4064 spvMembers.push_back(
John Kessenich8985fc92020-03-03 10:25:07 -07004065 convertGlslangToSpvType(glslangMember, explicitLayout, memberQualifier, lastBufferBlockMember,
4066 false));
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004067 }
John Kessenich6090df02016-06-30 21:18:02 -06004068 }
4069 }
4070
4071 // Make the SPIR-V type
4072 spv::Id spvType = builder.makeStructType(spvMembers, type.getTypeName().c_str());
John Kessenichf2b7f332016-09-01 17:05:23 -06004073 if (! HasNonLayoutQualifiers(type, qualifier))
John Kessenich6090df02016-06-30 21:18:02 -06004074 structMap[explicitLayout][qualifier.layoutMatrix][glslangMembers] = spvType;
4075
4076 // Decorate it
4077 decorateStructType(type, glslangMembers, explicitLayout, qualifier, spvType);
4078
John Kessenichd72f4882019-01-16 14:55:37 +07004079 for (int i = 0; i < (int)deferredForwardPointers.size(); ++i) {
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004080 auto it = deferredForwardPointers[i];
4081 convertGlslangToSpvType(*it.first, explicitLayout, it.second, false);
4082 }
4083
John Kessenich6090df02016-06-30 21:18:02 -06004084 return spvType;
4085}
4086
4087void TGlslangToSpvTraverser::decorateStructType(const glslang::TType& type,
4088 const glslang::TTypeList* glslangMembers,
4089 glslang::TLayoutPacking explicitLayout,
4090 const glslang::TQualifier& qualifier,
4091 spv::Id spvType)
4092{
4093 // Name and decorate the non-hidden members
4094 int offset = -1;
4095 int locationOffset = 0; // for use within the members of this struct
Chow478b2322020-11-04 04:34:19 +08004096 bool memberLocationInvalid = type.isArrayOfArrays() ||
4097 (type.isArray() && (type.getQualifier().isArrayedIo(glslangIntermediate->getStage()) == false));
John Kessenich6090df02016-06-30 21:18:02 -06004098 for (int i = 0; i < (int)glslangMembers->size(); i++) {
4099 glslang::TType& glslangMember = *(*glslangMembers)[i].type;
4100 int member = i;
John Kessenich0e737842017-03-24 18:38:16 -06004101 if (type.getBasicType() == glslang::EbtBlock) {
Roy05a5b532020-01-03 16:21:34 +08004102 member = memberRemapper[glslangTypeToIdMap[glslangMembers]][i];
John Kessenich0e737842017-03-24 18:38:16 -06004103 if (filterMember(glslangMember))
4104 continue;
4105 }
John Kessenich6090df02016-06-30 21:18:02 -06004106
4107 // modify just this child's view of the qualifier
4108 glslang::TQualifier memberQualifier = glslangMember.getQualifier();
4109 InheritQualifiers(memberQualifier, qualifier);
4110
4111 // using -1 above to indicate a hidden member
John Kessenich5d610ee2018-03-07 18:05:55 -07004112 if (member < 0)
4113 continue;
4114
4115 builder.addMemberName(spvType, member, glslangMember.getFieldName().c_str());
4116 builder.addMemberDecoration(spvType, member,
4117 TranslateLayoutDecoration(glslangMember, memberQualifier.layoutMatrix));
4118 builder.addMemberDecoration(spvType, member, TranslatePrecisionDecoration(glslangMember));
4119 // Add interpolation and auxiliary storage decorations only to
4120 // top-level members of Input and Output storage classes
4121 if (type.getQualifier().storage == glslang::EvqVaryingIn ||
4122 type.getQualifier().storage == glslang::EvqVaryingOut) {
4123 if (type.getBasicType() == glslang::EbtBlock ||
4124 glslangIntermediate->getSource() == glslang::EShSourceHlsl) {
4125 builder.addMemberDecoration(spvType, member, TranslateInterpolationDecoration(memberQualifier));
4126 builder.addMemberDecoration(spvType, member, TranslateAuxiliaryStorageDecoration(memberQualifier));
John Kessenicha28f7a72019-08-06 07:00:58 -06004127#ifndef GLSLANG_WEB
Chao Chen3c366992018-09-19 11:41:59 -07004128 addMeshNVDecoration(spvType, member, memberQualifier);
4129#endif
John Kessenich6090df02016-06-30 21:18:02 -06004130 }
John Kessenich5d610ee2018-03-07 18:05:55 -07004131 }
4132 builder.addMemberDecoration(spvType, member, TranslateInvariantDecoration(memberQualifier));
John Kessenich6090df02016-06-30 21:18:02 -06004133
John Kessenichb9197c82019-08-11 07:41:45 -06004134#ifndef GLSLANG_WEB
John Kessenich5d610ee2018-03-07 18:05:55 -07004135 if (type.getBasicType() == glslang::EbtBlock &&
4136 qualifier.storage == glslang::EvqBuffer) {
4137 // Add memory decorations only to top-level members of shader storage block
4138 std::vector<spv::Decoration> memory;
Jeff Bolz36831c92018-09-05 10:11:41 -05004139 TranslateMemoryDecoration(memberQualifier, memory, glslangIntermediate->usingVulkanMemoryModel());
John Kessenich5d610ee2018-03-07 18:05:55 -07004140 for (unsigned int i = 0; i < memory.size(); ++i)
4141 builder.addMemberDecoration(spvType, member, memory[i]);
4142 }
John Kessenichf8d1d742019-10-21 06:55:11 -06004143
John Kessenichb9197c82019-08-11 07:41:45 -06004144#endif
John Kessenich6090df02016-06-30 21:18:02 -06004145
John Kessenich5d610ee2018-03-07 18:05:55 -07004146 // Location assignment was already completed correctly by the front end,
4147 // just track whether a member needs to be decorated.
4148 // Ignore member locations if the container is an array, as that's
4149 // ill-specified and decisions have been made to not allow this.
Chow478b2322020-11-04 04:34:19 +08004150 if (!memberLocationInvalid && memberQualifier.hasLocation())
John Kessenich5d610ee2018-03-07 18:05:55 -07004151 builder.addMemberDecoration(spvType, member, spv::DecorationLocation, memberQualifier.layoutLocation);
John Kessenich6090df02016-06-30 21:18:02 -06004152
John Kessenich5d610ee2018-03-07 18:05:55 -07004153 if (qualifier.hasLocation()) // track for upcoming inheritance
4154 locationOffset += glslangIntermediate->computeTypeLocationSize(
4155 glslangMember, glslangIntermediate->getStage());
John Kessenich2f47bc92016-06-30 21:47:35 -06004156
John Kessenich5d610ee2018-03-07 18:05:55 -07004157 // component, XFB, others
4158 if (glslangMember.getQualifier().hasComponent())
4159 builder.addMemberDecoration(spvType, member, spv::DecorationComponent,
4160 glslangMember.getQualifier().layoutComponent);
4161 if (glslangMember.getQualifier().hasXfbOffset())
4162 builder.addMemberDecoration(spvType, member, spv::DecorationOffset,
4163 glslangMember.getQualifier().layoutXfbOffset);
4164 else if (explicitLayout != glslang::ElpNone) {
4165 // figure out what to do with offset, which is accumulating
4166 int nextOffset;
4167 updateMemberOffset(type, glslangMember, offset, nextOffset, explicitLayout, memberQualifier.layoutMatrix);
4168 if (offset >= 0)
4169 builder.addMemberDecoration(spvType, member, spv::DecorationOffset, offset);
4170 offset = nextOffset;
4171 }
John Kessenich6090df02016-06-30 21:18:02 -06004172
John Kessenich5d610ee2018-03-07 18:05:55 -07004173 if (glslangMember.isMatrix() && explicitLayout != glslang::ElpNone)
4174 builder.addMemberDecoration(spvType, member, spv::DecorationMatrixStride,
4175 getMatrixStride(glslangMember, explicitLayout, memberQualifier.layoutMatrix));
John Kessenich6090df02016-06-30 21:18:02 -06004176
John Kessenich5d610ee2018-03-07 18:05:55 -07004177 // built-in variable decorations
4178 spv::BuiltIn builtIn = TranslateBuiltInDecoration(glslangMember.getQualifier().builtIn, true);
4179 if (builtIn != spv::BuiltInMax)
4180 builder.addMemberDecoration(spvType, member, spv::DecorationBuiltIn, (int)builtIn);
chaoc771d89f2017-01-13 01:10:53 -08004181
John Kessenichb9197c82019-08-11 07:41:45 -06004182#ifndef GLSLANG_WEB
John Kessenich5611c6d2018-04-05 11:25:02 -06004183 // nonuniform
4184 builder.addMemberDecoration(spvType, member, TranslateNonUniformDecoration(glslangMember.getQualifier()));
4185
John Kessenichead86222018-03-28 18:01:20 -06004186 if (glslangIntermediate->getHlslFunctionality1() && memberQualifier.semanticName != nullptr) {
4187 builder.addExtension("SPV_GOOGLE_hlsl_functionality1");
4188 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationHlslSemanticGOOGLE,
4189 memberQualifier.semanticName);
4190 }
4191
John Kessenich5d610ee2018-03-07 18:05:55 -07004192 if (builtIn == spv::BuiltInLayer) {
4193 // SPV_NV_viewport_array2 extension
4194 if (glslangMember.getQualifier().layoutViewportRelative){
4195 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationViewportRelativeNV);
4196 builder.addCapability(spv::CapabilityShaderViewportMaskNV);
4197 builder.addExtension(spv::E_SPV_NV_viewport_array2);
chaoc771d89f2017-01-13 01:10:53 -08004198 }
John Kessenich5d610ee2018-03-07 18:05:55 -07004199 if (glslangMember.getQualifier().layoutSecondaryViewportRelativeOffset != -2048){
4200 builder.addMemberDecoration(spvType, member,
4201 (spv::Decoration)spv::DecorationSecondaryViewportRelativeNV,
4202 glslangMember.getQualifier().layoutSecondaryViewportRelativeOffset);
4203 builder.addCapability(spv::CapabilityShaderStereoViewNV);
4204 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
chaocdf3956c2017-02-14 14:52:34 -08004205 }
John Kessenich5d610ee2018-03-07 18:05:55 -07004206 }
4207 if (glslangMember.getQualifier().layoutPassthrough) {
4208 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationPassthroughNV);
4209 builder.addCapability(spv::CapabilityGeometryShaderPassthroughNV);
4210 builder.addExtension(spv::E_SPV_NV_geometry_shader_passthrough);
4211 }
chaoc771d89f2017-01-13 01:10:53 -08004212#endif
John Kessenich6090df02016-06-30 21:18:02 -06004213 }
4214
4215 // Decorate the structure
John Kessenich5d610ee2018-03-07 18:05:55 -07004216 builder.addDecoration(spvType, TranslateLayoutDecoration(type, qualifier.layoutMatrix));
4217 builder.addDecoration(spvType, TranslateBlockDecoration(type, glslangIntermediate->usingStorageBuffer()));
John Kessenich6090df02016-06-30 21:18:02 -06004218}
4219
John Kessenich6c292d32016-02-15 20:58:50 -07004220// Turn the expression forming the array size into an id.
4221// This is not quite trivial, because of specialization constants.
4222// Sometimes, a raw constant is turned into an Id, and sometimes
4223// a specialization constant expression is.
4224spv::Id TGlslangToSpvTraverser::makeArraySizeId(const glslang::TArraySizes& arraySizes, int dim)
4225{
4226 // First, see if this is sized with a node, meaning a specialization constant:
4227 glslang::TIntermTyped* specNode = arraySizes.getDimNode(dim);
4228 if (specNode != nullptr) {
4229 builder.clearAccessChain();
4230 specNode->traverse(this);
4231 return accessChainLoad(specNode->getAsTyped()->getType());
4232 }
qining25262b32016-05-06 17:25:16 -04004233
John Kessenich6c292d32016-02-15 20:58:50 -07004234 // Otherwise, need a compile-time (front end) size, get it:
4235 int size = arraySizes.getDimSize(dim);
4236 assert(size > 0);
4237 return builder.makeUintConstant(size);
4238}
4239
John Kessenich103bef92016-02-08 21:38:15 -07004240// Wrap the builder's accessChainLoad to:
4241// - localize handling of RelaxedPrecision
4242// - use the SPIR-V inferred type instead of another conversion of the glslang type
4243// (avoids unnecessary work and possible type punning for structures)
4244// - do conversion of concrete to abstract type
John Kessenich32cfd492016-02-02 12:37:46 -07004245spv::Id TGlslangToSpvTraverser::accessChainLoad(const glslang::TType& type)
4246{
John Kessenich103bef92016-02-08 21:38:15 -07004247 spv::Id nominalTypeId = builder.accessChainGetInferredType();
Jeff Bolz36831c92018-09-05 10:11:41 -05004248
4249 spv::Builder::AccessChain::CoherentFlags coherentFlags = builder.getAccessChain().coherentFlags;
4250 coherentFlags |= TranslateCoherent(type);
4251
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004252 unsigned int alignment = builder.getAccessChain().alignment;
Jeff Bolz7895e472019-03-06 13:34:10 -06004253 alignment |= type.getBufferReferenceAlignment();
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004254
John Kessenich5611c6d2018-04-05 11:25:02 -06004255 spv::Id loadedId = builder.accessChainLoad(TranslatePrecisionDecoration(type),
greg-lunarg639f5462020-11-12 11:10:07 -07004256 TranslateNonUniformDecoration(builder.getAccessChain().coherentFlags),
John Kessenich8985fc92020-03-03 10:25:07 -07004257 TranslateNonUniformDecoration(type.getQualifier()),
4258 nominalTypeId,
4259 spv::MemoryAccessMask(TranslateMemoryAccess(coherentFlags) & ~spv::MemoryAccessMakePointerAvailableKHRMask),
4260 TranslateMemoryScope(coherentFlags),
4261 alignment);
John Kessenich103bef92016-02-08 21:38:15 -07004262
4263 // Need to convert to abstract types when necessary
Rex Xu27253232016-02-23 17:51:09 +08004264 if (type.getBasicType() == glslang::EbtBool) {
4265 if (builder.isScalarType(nominalTypeId)) {
4266 // Conversion for bool
4267 spv::Id boolType = builder.makeBoolType();
4268 if (nominalTypeId != boolType)
4269 loadedId = builder.createBinOp(spv::OpINotEqual, boolType, loadedId, builder.makeUintConstant(0));
4270 } else if (builder.isVectorType(nominalTypeId)) {
4271 // Conversion for bvec
4272 int vecSize = builder.getNumTypeComponents(nominalTypeId);
4273 spv::Id bvecType = builder.makeVectorType(builder.makeBoolType(), vecSize);
4274 if (nominalTypeId != bvecType)
John Kessenich8985fc92020-03-03 10:25:07 -07004275 loadedId = builder.createBinOp(spv::OpINotEqual, bvecType, loadedId,
4276 makeSmearedConstant(builder.makeUintConstant(0), vecSize));
Rex Xu27253232016-02-23 17:51:09 +08004277 }
4278 }
John Kessenich103bef92016-02-08 21:38:15 -07004279
4280 return loadedId;
John Kessenich32cfd492016-02-02 12:37:46 -07004281}
4282
Rex Xu27253232016-02-23 17:51:09 +08004283// Wrap the builder's accessChainStore to:
4284// - do conversion of concrete to abstract type
John Kessenich4bf71552016-09-02 11:20:21 -06004285//
4286// Implicitly uses the existing builder.accessChain as the storage target.
Rex Xu27253232016-02-23 17:51:09 +08004287void TGlslangToSpvTraverser::accessChainStore(const glslang::TType& type, spv::Id rvalue)
4288{
4289 // Need to convert to abstract types when necessary
4290 if (type.getBasicType() == glslang::EbtBool) {
4291 spv::Id nominalTypeId = builder.accessChainGetInferredType();
4292
4293 if (builder.isScalarType(nominalTypeId)) {
4294 // Conversion for bool
4295 spv::Id boolType = builder.makeBoolType();
John Kessenichb6cabc42017-05-19 23:29:50 -06004296 if (nominalTypeId != boolType) {
4297 // keep these outside arguments, for determinant order-of-evaluation
4298 spv::Id one = builder.makeUintConstant(1);
4299 spv::Id zero = builder.makeUintConstant(0);
4300 rvalue = builder.createTriOp(spv::OpSelect, nominalTypeId, rvalue, one, zero);
4301 } else if (builder.getTypeId(rvalue) != boolType)
John Kessenich80f92a12017-05-19 23:00:13 -06004302 rvalue = builder.createBinOp(spv::OpINotEqual, boolType, rvalue, builder.makeUintConstant(0));
Rex Xu27253232016-02-23 17:51:09 +08004303 } else if (builder.isVectorType(nominalTypeId)) {
4304 // Conversion for bvec
4305 int vecSize = builder.getNumTypeComponents(nominalTypeId);
4306 spv::Id bvecType = builder.makeVectorType(builder.makeBoolType(), vecSize);
John Kessenichb6cabc42017-05-19 23:29:50 -06004307 if (nominalTypeId != bvecType) {
4308 // keep these outside arguments, for determinant order-of-evaluation
John Kessenich7b8c3862017-05-19 23:44:51 -06004309 spv::Id one = makeSmearedConstant(builder.makeUintConstant(1), vecSize);
4310 spv::Id zero = makeSmearedConstant(builder.makeUintConstant(0), vecSize);
4311 rvalue = builder.createTriOp(spv::OpSelect, nominalTypeId, rvalue, one, zero);
John Kessenichb6cabc42017-05-19 23:29:50 -06004312 } else if (builder.getTypeId(rvalue) != bvecType)
John Kessenich80f92a12017-05-19 23:00:13 -06004313 rvalue = builder.createBinOp(spv::OpINotEqual, bvecType, rvalue,
4314 makeSmearedConstant(builder.makeUintConstant(0), vecSize));
Rex Xu27253232016-02-23 17:51:09 +08004315 }
4316 }
4317
Jeff Bolz36831c92018-09-05 10:11:41 -05004318 spv::Builder::AccessChain::CoherentFlags coherentFlags = builder.getAccessChain().coherentFlags;
4319 coherentFlags |= TranslateCoherent(type);
4320
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004321 unsigned int alignment = builder.getAccessChain().alignment;
Jeff Bolz7895e472019-03-06 13:34:10 -06004322 alignment |= type.getBufferReferenceAlignment();
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004323
greg-lunarg639f5462020-11-12 11:10:07 -07004324 builder.accessChainStore(rvalue, TranslateNonUniformDecoration(builder.getAccessChain().coherentFlags),
John Kessenich8985fc92020-03-03 10:25:07 -07004325 spv::MemoryAccessMask(TranslateMemoryAccess(coherentFlags) &
4326 ~spv::MemoryAccessMakePointerVisibleKHRMask),
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004327 TranslateMemoryScope(coherentFlags), alignment);
Rex Xu27253232016-02-23 17:51:09 +08004328}
4329
John Kessenich4bf71552016-09-02 11:20:21 -06004330// For storing when types match at the glslang level, but not might match at the
4331// SPIR-V level.
4332//
4333// This especially happens when a single glslang type expands to multiple
John Kesseniched33e052016-10-06 12:59:51 -06004334// SPIR-V types, like a struct that is used in a member-undecorated way as well
John Kessenich4bf71552016-09-02 11:20:21 -06004335// as in a member-decorated way.
4336//
4337// NOTE: This function can handle any store request; if it's not special it
4338// simplifies to a simple OpStore.
4339//
4340// Implicitly uses the existing builder.accessChain as the storage target.
4341void TGlslangToSpvTraverser::multiTypeStore(const glslang::TType& type, spv::Id rValue)
4342{
John Kessenichb3e24e42016-09-11 12:33:43 -06004343 // we only do the complex path here if it's an aggregate
4344 if (! type.isStruct() && ! type.isArray()) {
John Kessenich4bf71552016-09-02 11:20:21 -06004345 accessChainStore(type, rValue);
4346 return;
4347 }
4348
John Kessenichb3e24e42016-09-11 12:33:43 -06004349 // and, it has to be a case of type aliasing
John Kessenich4bf71552016-09-02 11:20:21 -06004350 spv::Id rType = builder.getTypeId(rValue);
4351 spv::Id lValue = builder.accessChainGetLValue();
4352 spv::Id lType = builder.getContainedTypeId(builder.getTypeId(lValue));
4353 if (lType == rType) {
4354 accessChainStore(type, rValue);
4355 return;
4356 }
4357
John Kessenichb3e24e42016-09-11 12:33:43 -06004358 // Recursively (as needed) copy an aggregate type to a different aggregate type,
John Kessenich4bf71552016-09-02 11:20:21 -06004359 // where the two types were the same type in GLSL. This requires member
4360 // by member copy, recursively.
4361
John Kessenichfbb6bdf2019-01-15 21:48:27 +07004362 // SPIR-V 1.4 added an instruction to do help do this.
4363 if (glslangIntermediate->getSpv().spv >= glslang::EShTargetSpv_1_4) {
4364 // However, bool in uniform space is changed to int, so
4365 // OpCopyLogical does not work for that.
4366 // TODO: It would be more robust to do a full recursive verification of the types satisfying SPIR-V rules.
4367 bool rBool = builder.containsType(builder.getTypeId(rValue), spv::OpTypeBool, 0);
4368 bool lBool = builder.containsType(lType, spv::OpTypeBool, 0);
4369 if (lBool == rBool) {
4370 spv::Id logicalCopy = builder.createUnaryOp(spv::OpCopyLogical, lType, rValue);
4371 accessChainStore(type, logicalCopy);
4372 return;
4373 }
4374 }
4375
John Kessenichb3e24e42016-09-11 12:33:43 -06004376 // If an array, copy element by element.
4377 if (type.isArray()) {
4378 glslang::TType glslangElementType(type, 0);
4379 spv::Id elementRType = builder.getContainedTypeId(rType);
4380 for (int index = 0; index < type.getOuterArraySize(); ++index) {
4381 // get the source member
4382 spv::Id elementRValue = builder.createCompositeExtract(rValue, elementRType, index);
John Kessenich4bf71552016-09-02 11:20:21 -06004383
John Kessenichb3e24e42016-09-11 12:33:43 -06004384 // set up the target storage
4385 builder.clearAccessChain();
4386 builder.setAccessChainLValue(lValue);
John Kessenich8985fc92020-03-03 10:25:07 -07004387 builder.accessChainPush(builder.makeIntConstant(index), TranslateCoherent(type),
4388 type.getBufferReferenceAlignment());
John Kessenich4bf71552016-09-02 11:20:21 -06004389
John Kessenichb3e24e42016-09-11 12:33:43 -06004390 // store the member
4391 multiTypeStore(glslangElementType, elementRValue);
4392 }
4393 } else {
4394 assert(type.isStruct());
John Kessenich4bf71552016-09-02 11:20:21 -06004395
John Kessenichb3e24e42016-09-11 12:33:43 -06004396 // loop over structure members
4397 const glslang::TTypeList& members = *type.getStruct();
4398 for (int m = 0; m < (int)members.size(); ++m) {
4399 const glslang::TType& glslangMemberType = *members[m].type;
4400
4401 // get the source member
4402 spv::Id memberRType = builder.getContainedTypeId(rType, m);
4403 spv::Id memberRValue = builder.createCompositeExtract(rValue, memberRType, m);
4404
4405 // set up the target storage
4406 builder.clearAccessChain();
4407 builder.setAccessChainLValue(lValue);
John Kessenich8985fc92020-03-03 10:25:07 -07004408 builder.accessChainPush(builder.makeIntConstant(m), TranslateCoherent(type),
4409 type.getBufferReferenceAlignment());
John Kessenichb3e24e42016-09-11 12:33:43 -06004410
4411 // store the member
4412 multiTypeStore(glslangMemberType, memberRValue);
4413 }
John Kessenich4bf71552016-09-02 11:20:21 -06004414 }
4415}
4416
John Kessenichf85e8062015-12-19 13:57:10 -07004417// Decide whether or not this type should be
4418// decorated with offsets and strides, and if so
4419// whether std140 or std430 rules should be applied.
4420glslang::TLayoutPacking TGlslangToSpvTraverser::getExplicitLayout(const glslang::TType& type) const
John Kessenich31ed4832015-09-09 17:51:38 -06004421{
John Kessenichf85e8062015-12-19 13:57:10 -07004422 // has to be a block
4423 if (type.getBasicType() != glslang::EbtBlock)
4424 return glslang::ElpNone;
4425
Chao Chen3c366992018-09-19 11:41:59 -07004426 // has to be a uniform or buffer block or task in/out blocks
John Kessenichf85e8062015-12-19 13:57:10 -07004427 if (type.getQualifier().storage != glslang::EvqUniform &&
Chao Chen3c366992018-09-19 11:41:59 -07004428 type.getQualifier().storage != glslang::EvqBuffer &&
Caio Marcelo de Oliveira Filho4bfbf622020-06-02 16:58:51 -07004429 type.getQualifier().storage != glslang::EvqShared &&
Chao Chen3c366992018-09-19 11:41:59 -07004430 !type.getQualifier().isTaskMemory())
John Kessenichf85e8062015-12-19 13:57:10 -07004431 return glslang::ElpNone;
4432
4433 // return the layout to use
4434 switch (type.getQualifier().layoutPacking) {
4435 case glslang::ElpStd140:
4436 case glslang::ElpStd430:
Jeff Bolz7da39ed2018-11-14 09:30:53 -06004437 case glslang::ElpScalar:
John Kessenichf85e8062015-12-19 13:57:10 -07004438 return type.getQualifier().layoutPacking;
4439 default:
4440 return glslang::ElpNone;
4441 }
John Kessenich31ed4832015-09-09 17:51:38 -06004442}
4443
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004444// Given an array type, returns the integer stride required for that array
John Kessenich8985fc92020-03-03 10:25:07 -07004445int TGlslangToSpvTraverser::getArrayStride(const glslang::TType& arrayType, glslang::TLayoutPacking explicitLayout,
4446 glslang::TLayoutMatrix matrixLayout)
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004447{
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004448 int size;
John Kessenich49987892015-12-29 17:11:44 -07004449 int stride;
John Kessenich8985fc92020-03-03 10:25:07 -07004450 glslangIntermediate->getMemberAlignment(arrayType, size, stride, explicitLayout,
4451 matrixLayout == glslang::ElmRowMajor);
John Kesseniche721f492015-12-06 19:17:49 -07004452
4453 return stride;
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004454}
4455
John Kessenich49987892015-12-29 17:11:44 -07004456// 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 -07004457// when used as a member of an interface block
John Kessenich8985fc92020-03-03 10:25:07 -07004458int TGlslangToSpvTraverser::getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacking explicitLayout,
4459 glslang::TLayoutMatrix matrixLayout)
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004460{
John Kessenich49987892015-12-29 17:11:44 -07004461 glslang::TType elementType;
4462 elementType.shallowCopy(matrixType);
4463 elementType.clearArraySizes();
4464
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004465 int size;
John Kessenich49987892015-12-29 17:11:44 -07004466 int stride;
John Kessenich8985fc92020-03-03 10:25:07 -07004467 glslangIntermediate->getMemberAlignment(elementType, size, stride, explicitLayout,
4468 matrixLayout == glslang::ElmRowMajor);
John Kessenich49987892015-12-29 17:11:44 -07004469
4470 return stride;
Jason Ekstrand54aedf12015-09-05 09:50:58 -07004471}
4472
John Kessenich5e4b1242015-08-06 22:53:06 -06004473// Given a member type of a struct, realign the current offset for it, and compute
4474// the next (not yet aligned) offset for the next member, which will get aligned
4475// on the next call.
4476// 'currentOffset' should be passed in already initialized, ready to modify, and reflecting
4477// the migration of data from nextOffset -> currentOffset. It should be -1 on the first call.
4478// -1 means a non-forced member offset (no decoration needed).
John Kessenich8985fc92020-03-03 10:25:07 -07004479void TGlslangToSpvTraverser::updateMemberOffset(const glslang::TType& structType, const glslang::TType& memberType,
4480 int& currentOffset, int& nextOffset, glslang::TLayoutPacking explicitLayout, glslang::TLayoutMatrix matrixLayout)
John Kessenich5e4b1242015-08-06 22:53:06 -06004481{
4482 // this will get a positive value when deemed necessary
4483 nextOffset = -1;
4484
John Kessenich5e4b1242015-08-06 22:53:06 -06004485 // override anything in currentOffset with user-set offset
4486 if (memberType.getQualifier().hasOffset())
4487 currentOffset = memberType.getQualifier().layoutOffset;
4488
4489 // It could be that current linker usage in glslang updated all the layoutOffset,
4490 // in which case the following code does not matter. But, that's not quite right
4491 // once cross-compilation unit GLSL validation is done, as the original user
4492 // settings are needed in layoutOffset, and then the following will come into play.
4493
John Kessenichf85e8062015-12-19 13:57:10 -07004494 if (explicitLayout == glslang::ElpNone) {
John Kessenich5e4b1242015-08-06 22:53:06 -06004495 if (! memberType.getQualifier().hasOffset())
4496 currentOffset = -1;
4497
4498 return;
4499 }
4500
John Kessenichf85e8062015-12-19 13:57:10 -07004501 // Getting this far means we need explicit offsets
John Kessenich5e4b1242015-08-06 22:53:06 -06004502 if (currentOffset < 0)
4503 currentOffset = 0;
qining25262b32016-05-06 17:25:16 -04004504
John Kessenich5e4b1242015-08-06 22:53:06 -06004505 // Now, currentOffset is valid (either 0, or from a previous nextOffset),
4506 // but possibly not yet correctly aligned.
4507
4508 int memberSize;
John Kessenich49987892015-12-29 17:11:44 -07004509 int dummyStride;
John Kessenich8985fc92020-03-03 10:25:07 -07004510 int memberAlignment = glslangIntermediate->getMemberAlignment(memberType, memberSize, dummyStride, explicitLayout,
4511 matrixLayout == glslang::ElmRowMajor);
John Kessenich4f1403e2017-04-05 17:38:20 -06004512
4513 // Adjust alignment for HLSL rules
John Kessenich735d7e52017-07-13 11:39:16 -06004514 // TODO: make this consistent in early phases of code:
4515 // adjusting this late means inconsistencies with earlier code, which for reflection is an issue
4516 // Until reflection is brought in sync with these adjustments, don't apply to $Global,
4517 // which is the most likely to rely on reflection, and least likely to rely implicit layouts
John Kesseniche7df8e02018-08-22 17:12:46 -06004518 if (glslangIntermediate->usingHlslOffsets() &&
John Kessenich735d7e52017-07-13 11:39:16 -06004519 ! memberType.isArray() && memberType.isVector() && structType.getTypeName().compare("$Global") != 0) {
John Kessenich4f1403e2017-04-05 17:38:20 -06004520 int dummySize;
4521 int componentAlignment = glslangIntermediate->getBaseAlignmentScalar(memberType, dummySize);
4522 if (componentAlignment <= 4)
4523 memberAlignment = componentAlignment;
4524 }
4525
4526 // Bump up to member alignment
John Kessenich5e4b1242015-08-06 22:53:06 -06004527 glslang::RoundToPow2(currentOffset, memberAlignment);
John Kessenich4f1403e2017-04-05 17:38:20 -06004528
4529 // Bump up to vec4 if there is a bad straddle
John Kessenich8985fc92020-03-03 10:25:07 -07004530 if (explicitLayout != glslang::ElpScalar && glslangIntermediate->improperStraddle(memberType, memberSize,
4531 currentOffset))
John Kessenich4f1403e2017-04-05 17:38:20 -06004532 glslang::RoundToPow2(currentOffset, 16);
4533
John Kessenich5e4b1242015-08-06 22:53:06 -06004534 nextOffset = currentOffset + memberSize;
4535}
4536
David Netoa901ffe2016-06-08 14:11:40 +01004537void TGlslangToSpvTraverser::declareUseOfStructMember(const glslang::TTypeList& members, int glslangMember)
John Kessenichebb50532016-05-16 19:22:05 -06004538{
David Netoa901ffe2016-06-08 14:11:40 +01004539 const glslang::TBuiltInVariable glslangBuiltIn = members[glslangMember].type->getQualifier().builtIn;
4540 switch (glslangBuiltIn)
4541 {
John Kessenicha28f7a72019-08-06 07:00:58 -06004542 case glslang::EbvPointSize:
4543#ifndef GLSLANG_WEB
David Netoa901ffe2016-06-08 14:11:40 +01004544 case glslang::EbvClipDistance:
4545 case glslang::EbvCullDistance:
chaoc771d89f2017-01-13 01:10:53 -08004546 case glslang::EbvViewportMaskNV:
4547 case glslang::EbvSecondaryPositionNV:
4548 case glslang::EbvSecondaryViewportMaskNV:
chaocdf3956c2017-02-14 14:52:34 -08004549 case glslang::EbvPositionPerViewNV:
4550 case glslang::EbvViewportMaskPerViewNV:
Chao Chen3c366992018-09-19 11:41:59 -07004551 case glslang::EbvTaskCountNV:
4552 case glslang::EbvPrimitiveCountNV:
4553 case glslang::EbvPrimitiveIndicesNV:
4554 case glslang::EbvClipDistancePerViewNV:
4555 case glslang::EbvCullDistancePerViewNV:
4556 case glslang::EbvLayerPerViewNV:
4557 case glslang::EbvMeshViewCountNV:
4558 case glslang::EbvMeshViewIndicesNV:
chaoc771d89f2017-01-13 01:10:53 -08004559#endif
David Netoa901ffe2016-06-08 14:11:40 +01004560 // Generate the associated capability. Delegate to TranslateBuiltInDecoration.
4561 // Alternately, we could just call this for any glslang built-in, since the
4562 // capability already guards against duplicates.
4563 TranslateBuiltInDecoration(glslangBuiltIn, false);
4564 break;
4565 default:
4566 // Capabilities were already generated when the struct was declared.
4567 break;
4568 }
John Kessenichebb50532016-05-16 19:22:05 -06004569}
4570
John Kessenich6fccb3c2016-09-19 16:01:41 -06004571bool TGlslangToSpvTraverser::isShaderEntryPoint(const glslang::TIntermAggregate* node)
John Kessenich140f3df2015-06-26 16:58:36 -06004572{
John Kessenicheee9d532016-09-19 18:09:30 -06004573 return node->getName().compare(glslangIntermediate->getEntryPointMangledName().c_str()) == 0;
John Kessenich140f3df2015-06-26 16:58:36 -06004574}
4575
John Kessenichd41993d2017-09-10 15:21:05 -06004576// Does parameter need a place to keep writes, separate from the original?
John Kessenich6a14f782017-12-04 02:48:10 -07004577// Assumes called after originalParam(), which filters out block/buffer/opaque-based
4578// qualifiers such that we should have only in/out/inout/constreadonly here.
John Kessenichd3ed90b2018-05-04 11:43:03 -06004579bool TGlslangToSpvTraverser::writableParam(glslang::TStorageQualifier qualifier) const
John Kessenichd41993d2017-09-10 15:21:05 -06004580{
John Kessenich6a14f782017-12-04 02:48:10 -07004581 assert(qualifier == glslang::EvqIn ||
4582 qualifier == glslang::EvqOut ||
4583 qualifier == glslang::EvqInOut ||
rdbd8edfd82020-06-02 08:30:07 +02004584 qualifier == glslang::EvqUniform ||
John Kessenich6a14f782017-12-04 02:48:10 -07004585 qualifier == glslang::EvqConstReadOnly);
rdbd8edfd82020-06-02 08:30:07 +02004586 return qualifier != glslang::EvqConstReadOnly &&
4587 qualifier != glslang::EvqUniform;
John Kessenichd41993d2017-09-10 15:21:05 -06004588}
4589
4590// Is parameter pass-by-original?
4591bool TGlslangToSpvTraverser::originalParam(glslang::TStorageQualifier qualifier, const glslang::TType& paramType,
4592 bool implicitThisParam)
4593{
4594 if (implicitThisParam) // implicit this
4595 return true;
4596 if (glslangIntermediate->getSource() == glslang::EShSourceHlsl)
John Kessenich6a14f782017-12-04 02:48:10 -07004597 return paramType.getBasicType() == glslang::EbtBlock;
John Kessenichd41993d2017-09-10 15:21:05 -06004598 return paramType.containsOpaque() || // sampler, etc.
4599 (paramType.getBasicType() == glslang::EbtBlock && qualifier == glslang::EvqBuffer); // SSBO
4600}
4601
John Kessenich140f3df2015-06-26 16:58:36 -06004602// Make all the functions, skeletally, without actually visiting their bodies.
4603void TGlslangToSpvTraverser::makeFunctions(const glslang::TIntermSequence& glslFunctions)
4604{
John Kessenich8985fc92020-03-03 10:25:07 -07004605 const auto getParamDecorations = [&](std::vector<spv::Decoration>& decorations, const glslang::TType& type,
4606 bool useVulkanMemoryModel) {
John Kessenichfad62972017-07-18 02:35:46 -06004607 spv::Decoration paramPrecision = TranslatePrecisionDecoration(type);
4608 if (paramPrecision != spv::NoPrecision)
4609 decorations.push_back(paramPrecision);
Jeff Bolz36831c92018-09-05 10:11:41 -05004610 TranslateMemoryDecoration(type.getQualifier(), decorations, useVulkanMemoryModel);
John Kessenich7015bd62019-08-01 03:28:08 -06004611 if (type.isReference()) {
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004612 // Original and non-writable params pass the pointer directly and
4613 // use restrict/aliased, others are stored to a pointer in Function
4614 // memory and use RestrictPointer/AliasedPointer.
4615 if (originalParam(type.getQualifier().storage, type, false) ||
4616 !writableParam(type.getQualifier().storage)) {
John Kessenichf8d1d742019-10-21 06:55:11 -06004617 decorations.push_back(type.getQualifier().isRestrict() ? spv::DecorationRestrict :
4618 spv::DecorationAliased);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004619 } else {
John Kessenichf8d1d742019-10-21 06:55:11 -06004620 decorations.push_back(type.getQualifier().isRestrict() ? spv::DecorationRestrictPointerEXT :
4621 spv::DecorationAliasedPointerEXT);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06004622 }
4623 }
John Kessenichfad62972017-07-18 02:35:46 -06004624 };
4625
John Kessenich140f3df2015-06-26 16:58:36 -06004626 for (int f = 0; f < (int)glslFunctions.size(); ++f) {
4627 glslang::TIntermAggregate* glslFunction = glslFunctions[f]->getAsAggregate();
John Kessenich6fccb3c2016-09-19 16:01:41 -06004628 if (! glslFunction || glslFunction->getOp() != glslang::EOpFunction || isShaderEntryPoint(glslFunction))
John Kessenich140f3df2015-06-26 16:58:36 -06004629 continue;
4630
4631 // We're on a user function. Set up the basic interface for the function now,
John Kessenich4bf71552016-09-02 11:20:21 -06004632 // so that it's available to call. Translating the body will happen later.
John Kessenich140f3df2015-06-26 16:58:36 -06004633 //
qining25262b32016-05-06 17:25:16 -04004634 // Typically (except for a "const in" parameter), an address will be passed to the
John Kessenich140f3df2015-06-26 16:58:36 -06004635 // function. What it is an address of varies:
4636 //
John Kessenich4bf71552016-09-02 11:20:21 -06004637 // - "in" parameters not marked as "const" can be written to without modifying the calling
4638 // argument so that write needs to be to a copy, hence the address of a copy works.
John Kessenich140f3df2015-06-26 16:58:36 -06004639 //
4640 // - "const in" parameters can just be the r-value, as no writes need occur.
4641 //
John Kessenich4bf71552016-09-02 11:20:21 -06004642 // - "out" and "inout" arguments can't be done as pointers to the calling argument, because
4643 // 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 -06004644
4645 std::vector<spv::Id> paramTypes;
John Kessenichfad62972017-07-18 02:35:46 -06004646 std::vector<std::vector<spv::Decoration>> paramDecorations; // list of decorations per parameter
John Kessenich140f3df2015-06-26 16:58:36 -06004647 glslang::TIntermSequence& parameters = glslFunction->getSequence()[0]->getAsAggregate()->getSequence();
4648
John Kessenich155d3512019-08-08 23:29:20 -06004649#ifdef ENABLE_HLSL
John Kessenichfad62972017-07-18 02:35:46 -06004650 bool implicitThis = (int)parameters.size() > 0 && parameters[0]->getAsSymbolNode()->getName() ==
4651 glslangIntermediate->implicitThisName;
John Kessenich155d3512019-08-08 23:29:20 -06004652#else
4653 bool implicitThis = false;
4654#endif
John Kessenich37789792017-03-21 23:56:40 -06004655
John Kessenichfad62972017-07-18 02:35:46 -06004656 paramDecorations.resize(parameters.size());
John Kessenich140f3df2015-06-26 16:58:36 -06004657 for (int p = 0; p < (int)parameters.size(); ++p) {
4658 const glslang::TType& paramType = parameters[p]->getAsTyped()->getType();
4659 spv::Id typeId = convertGlslangToSpvType(paramType);
John Kessenichd41993d2017-09-10 15:21:05 -06004660 if (originalParam(paramType.getQualifier().storage, paramType, implicitThis && p == 0))
John Kessenicha5c5fb62017-05-05 05:09:58 -06004661 typeId = builder.makePointer(TranslateStorageClass(paramType), typeId);
John Kessenichd41993d2017-09-10 15:21:05 -06004662 else if (writableParam(paramType.getQualifier().storage))
John Kessenich140f3df2015-06-26 16:58:36 -06004663 typeId = builder.makePointer(spv::StorageClassFunction, typeId);
4664 else
John Kessenich4bf71552016-09-02 11:20:21 -06004665 rValueParameters.insert(parameters[p]->getAsSymbolNode()->getId());
Jeff Bolz36831c92018-09-05 10:11:41 -05004666 getParamDecorations(paramDecorations[p], paramType, glslangIntermediate->usingVulkanMemoryModel());
John Kessenich140f3df2015-06-26 16:58:36 -06004667 paramTypes.push_back(typeId);
4668 }
4669
4670 spv::Block* functionBlock;
John Kessenich32cfd492016-02-02 12:37:46 -07004671 spv::Function *function = builder.makeFunctionEntry(TranslatePrecisionDecoration(glslFunction->getType()),
4672 convertGlslangToSpvType(glslFunction->getType()),
John Kessenichfad62972017-07-18 02:35:46 -06004673 glslFunction->getName().c_str(), paramTypes,
4674 paramDecorations, &functionBlock);
John Kessenich37789792017-03-21 23:56:40 -06004675 if (implicitThis)
4676 function->setImplicitThis();
John Kessenich140f3df2015-06-26 16:58:36 -06004677
4678 // Track function to emit/call later
4679 functionMap[glslFunction->getName().c_str()] = function;
4680
4681 // Set the parameter id's
4682 for (int p = 0; p < (int)parameters.size(); ++p) {
4683 symbolValues[parameters[p]->getAsSymbolNode()->getId()] = function->getParamId(p);
4684 // give a name too
4685 builder.addName(function->getParamId(p), parameters[p]->getAsSymbolNode()->getName().c_str());
Jeff Bolz2b2316d2019-02-17 22:49:28 -06004686
4687 const glslang::TType& paramType = parameters[p]->getAsTyped()->getType();
John Kessenichb9197c82019-08-11 07:41:45 -06004688 if (paramType.contains8BitInt())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06004689 builder.addCapability(spv::CapabilityInt8);
John Kessenichb9197c82019-08-11 07:41:45 -06004690 if (paramType.contains16BitInt())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06004691 builder.addCapability(spv::CapabilityInt16);
John Kessenichb9197c82019-08-11 07:41:45 -06004692 if (paramType.contains16BitFloat())
Jeff Bolz2b2316d2019-02-17 22:49:28 -06004693 builder.addCapability(spv::CapabilityFloat16);
John Kessenich140f3df2015-06-26 16:58:36 -06004694 }
4695 }
4696}
4697
4698// Process all the initializers, while skipping the functions and link objects
4699void TGlslangToSpvTraverser::makeGlobalInitializers(const glslang::TIntermSequence& initializers)
4700{
4701 builder.setBuildPoint(shaderEntry->getLastBlock());
4702 for (int i = 0; i < (int)initializers.size(); ++i) {
4703 glslang::TIntermAggregate* initializer = initializers[i]->getAsAggregate();
John Kessenich8985fc92020-03-03 10:25:07 -07004704 if (initializer && initializer->getOp() != glslang::EOpFunction && initializer->getOp() !=
4705 glslang::EOpLinkerObjects) {
John Kessenich140f3df2015-06-26 16:58:36 -06004706
4707 // We're on a top-level node that's not a function. Treat as an initializer, whose
John Kessenich6fccb3c2016-09-19 16:01:41 -06004708 // code goes into the beginning of the entry point.
John Kessenich140f3df2015-06-26 16:58:36 -06004709 initializer->traverse(this);
4710 }
4711 }
4712}
Daniel Kochffccefd2020-11-23 15:41:27 -05004713// Walk over all linker objects to create a map for payload and callable data linker objects
4714// and their location to be used during codegen for OpTraceKHR and OpExecuteCallableKHR
4715// This is done here since it is possible that these linker objects are not be referenced in the AST
4716void TGlslangToSpvTraverser::collectRayTracingLinkerObjects()
4717{
4718 glslang::TIntermAggregate* linkerObjects = glslangIntermediate->findLinkerObjects();
4719 for (auto& objSeq : linkerObjects->getSequence()) {
4720 auto objNode = objSeq->getAsSymbolNode();
4721 if (objNode != nullptr) {
4722 if (objNode->getQualifier().hasLocation()) {
4723 unsigned int location = objNode->getQualifier().layoutLocation;
4724 auto st = objNode->getQualifier().storage;
4725 int set;
4726 switch (st)
4727 {
4728 case glslang::EvqPayload:
4729 case glslang::EvqPayloadIn:
4730 set = 0;
4731 break;
4732 case glslang::EvqCallableData:
4733 case glslang::EvqCallableDataIn:
4734 set = 1;
4735 break;
John Kessenich140f3df2015-06-26 16:58:36 -06004736
Daniel Kochffccefd2020-11-23 15:41:27 -05004737 default:
4738 set = -1;
4739 }
4740 if (set != -1)
4741 locationToSymbol[set].insert(std::make_pair(location, objNode));
4742 }
4743 }
4744 }
4745}
John Kessenich140f3df2015-06-26 16:58:36 -06004746// Process all the functions, while skipping initializers.
4747void TGlslangToSpvTraverser::visitFunctions(const glslang::TIntermSequence& glslFunctions)
4748{
4749 for (int f = 0; f < (int)glslFunctions.size(); ++f) {
4750 glslang::TIntermAggregate* node = glslFunctions[f]->getAsAggregate();
John Kessenich6a60c2f2016-12-08 21:01:59 -07004751 if (node && (node->getOp() == glslang::EOpFunction || node->getOp() == glslang::EOpLinkerObjects))
John Kessenich140f3df2015-06-26 16:58:36 -06004752 node->traverse(this);
4753 }
4754}
4755
4756void TGlslangToSpvTraverser::handleFunctionEntry(const glslang::TIntermAggregate* node)
4757{
qining25262b32016-05-06 17:25:16 -04004758 // SPIR-V functions should already be in the functionMap from the prepass
John Kessenich140f3df2015-06-26 16:58:36 -06004759 // that called makeFunctions().
John Kesseniched33e052016-10-06 12:59:51 -06004760 currentFunction = functionMap[node->getName().c_str()];
4761 spv::Block* functionBlock = currentFunction->getEntryBlock();
John Kessenich140f3df2015-06-26 16:58:36 -06004762 builder.setBuildPoint(functionBlock);
4763}
4764
John Kessenich8985fc92020-03-03 10:25:07 -07004765void TGlslangToSpvTraverser::translateArguments(const glslang::TIntermAggregate& node, std::vector<spv::Id>& arguments,
4766 spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags)
John Kessenich140f3df2015-06-26 16:58:36 -06004767{
Rex Xufc618912015-09-09 16:42:49 +08004768 const glslang::TIntermSequence& glslangArguments = node.getSequence();
Rex Xu48edadf2015-12-31 16:11:41 +08004769
4770 glslang::TSampler sampler = {};
4771 bool cubeCompare = false;
John Kessenicha28f7a72019-08-06 07:00:58 -06004772#ifndef GLSLANG_WEB
Rex Xu1e5d7b02016-11-29 17:36:31 +08004773 bool f16ShadowCompare = false;
4774#endif
Rex Xu5eafa472016-02-19 22:24:03 +08004775 if (node.isTexture() || node.isImage()) {
Rex Xu48edadf2015-12-31 16:11:41 +08004776 sampler = glslangArguments[0]->getAsTyped()->getType().getSampler();
4777 cubeCompare = sampler.dim == glslang::EsdCube && sampler.arrayed && sampler.shadow;
John Kessenicha28f7a72019-08-06 07:00:58 -06004778#ifndef GLSLANG_WEB
John Kessenich8985fc92020-03-03 10:25:07 -07004779 f16ShadowCompare = sampler.shadow &&
4780 glslangArguments[1]->getAsTyped()->getType().getBasicType() == glslang::EbtFloat16;
Rex Xu1e5d7b02016-11-29 17:36:31 +08004781#endif
Rex Xu48edadf2015-12-31 16:11:41 +08004782 }
4783
John Kessenich140f3df2015-06-26 16:58:36 -06004784 for (int i = 0; i < (int)glslangArguments.size(); ++i) {
4785 builder.clearAccessChain();
4786 glslangArguments[i]->traverse(this);
Rex Xufc618912015-09-09 16:42:49 +08004787
John Kessenicha28f7a72019-08-06 07:00:58 -06004788#ifndef GLSLANG_WEB
Rex Xufc618912015-09-09 16:42:49 +08004789 // Special case l-value operands
4790 bool lvalue = false;
4791 switch (node.getOp()) {
4792 case glslang::EOpImageAtomicAdd:
4793 case glslang::EOpImageAtomicMin:
4794 case glslang::EOpImageAtomicMax:
4795 case glslang::EOpImageAtomicAnd:
4796 case glslang::EOpImageAtomicOr:
4797 case glslang::EOpImageAtomicXor:
4798 case glslang::EOpImageAtomicExchange:
4799 case glslang::EOpImageAtomicCompSwap:
Jeff Bolz36831c92018-09-05 10:11:41 -05004800 case glslang::EOpImageAtomicLoad:
4801 case glslang::EOpImageAtomicStore:
Rex Xufc618912015-09-09 16:42:49 +08004802 if (i == 0)
4803 lvalue = true;
4804 break;
Rex Xu5eafa472016-02-19 22:24:03 +08004805 case glslang::EOpSparseImageLoad:
4806 if ((sampler.ms && i == 3) || (! sampler.ms && i == 2))
4807 lvalue = true;
4808 break;
Rex Xu1e5d7b02016-11-29 17:36:31 +08004809 case glslang::EOpSparseTexture:
4810 if (((cubeCompare || f16ShadowCompare) && i == 3) || (! (cubeCompare || f16ShadowCompare) && i == 2))
4811 lvalue = true;
4812 break;
4813 case glslang::EOpSparseTextureClamp:
4814 if (((cubeCompare || f16ShadowCompare) && i == 4) || (! (cubeCompare || f16ShadowCompare) && i == 3))
4815 lvalue = true;
4816 break;
4817 case glslang::EOpSparseTextureLod:
4818 case glslang::EOpSparseTextureOffset:
4819 if ((f16ShadowCompare && i == 4) || (! f16ShadowCompare && i == 3))
4820 lvalue = true;
4821 break;
Rex Xu48edadf2015-12-31 16:11:41 +08004822 case glslang::EOpSparseTextureFetch:
4823 if ((sampler.dim != glslang::EsdRect && i == 3) || (sampler.dim == glslang::EsdRect && i == 2))
4824 lvalue = true;
4825 break;
4826 case glslang::EOpSparseTextureFetchOffset:
4827 if ((sampler.dim != glslang::EsdRect && i == 4) || (sampler.dim == glslang::EsdRect && i == 3))
4828 lvalue = true;
4829 break;
Rex Xu1e5d7b02016-11-29 17:36:31 +08004830 case glslang::EOpSparseTextureLodOffset:
4831 case glslang::EOpSparseTextureGrad:
4832 case glslang::EOpSparseTextureOffsetClamp:
4833 if ((f16ShadowCompare && i == 5) || (! f16ShadowCompare && i == 4))
4834 lvalue = true;
4835 break;
4836 case glslang::EOpSparseTextureGradOffset:
4837 case glslang::EOpSparseTextureGradClamp:
4838 if ((f16ShadowCompare && i == 6) || (! f16ShadowCompare && i == 5))
4839 lvalue = true;
4840 break;
4841 case glslang::EOpSparseTextureGradOffsetClamp:
4842 if ((f16ShadowCompare && i == 7) || (! f16ShadowCompare && i == 6))
4843 lvalue = true;
4844 break;
Rex Xu225e0fc2016-11-17 17:47:59 +08004845 case glslang::EOpSparseTextureGather:
Rex Xu48edadf2015-12-31 16:11:41 +08004846 if ((sampler.shadow && i == 3) || (! sampler.shadow && i == 2))
4847 lvalue = true;
4848 break;
4849 case glslang::EOpSparseTextureGatherOffset:
4850 case glslang::EOpSparseTextureGatherOffsets:
4851 if ((sampler.shadow && i == 4) || (! sampler.shadow && i == 3))
4852 lvalue = true;
4853 break;
Rex Xu225e0fc2016-11-17 17:47:59 +08004854 case glslang::EOpSparseTextureGatherLod:
4855 if (i == 3)
4856 lvalue = true;
4857 break;
4858 case glslang::EOpSparseTextureGatherLodOffset:
4859 case glslang::EOpSparseTextureGatherLodOffsets:
4860 if (i == 4)
4861 lvalue = true;
4862 break;
Rex Xu129799a2017-07-05 17:23:28 +08004863 case glslang::EOpSparseImageLoadLod:
4864 if (i == 3)
4865 lvalue = true;
4866 break;
Chao Chen3a137962018-09-19 11:41:27 -07004867 case glslang::EOpImageSampleFootprintNV:
4868 if (i == 4)
4869 lvalue = true;
4870 break;
4871 case glslang::EOpImageSampleFootprintClampNV:
4872 case glslang::EOpImageSampleFootprintLodNV:
4873 if (i == 5)
4874 lvalue = true;
4875 break;
4876 case glslang::EOpImageSampleFootprintGradNV:
4877 if (i == 6)
4878 lvalue = true;
4879 break;
4880 case glslang::EOpImageSampleFootprintGradClampNV:
4881 if (i == 7)
4882 lvalue = true;
4883 break;
Rex Xufc618912015-09-09 16:42:49 +08004884 default:
4885 break;
4886 }
4887
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004888 if (lvalue) {
greg-lunarg639f5462020-11-12 11:10:07 -07004889 spv::Id lvalue_id = builder.accessChainGetLValue();
4890 arguments.push_back(lvalue_id);
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004891 lvalueCoherentFlags = builder.getAccessChain().coherentFlags;
greg-lunarg639f5462020-11-12 11:10:07 -07004892 builder.addDecoration(lvalue_id, TranslateNonUniformDecoration(lvalueCoherentFlags));
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004893 lvalueCoherentFlags |= TranslateCoherent(glslangArguments[i]->getAsTyped()->getType());
4894 } else
John Kessenicha28f7a72019-08-06 07:00:58 -06004895#endif
John Kessenich32cfd492016-02-02 12:37:46 -07004896 arguments.push_back(accessChainLoad(glslangArguments[i]->getAsTyped()->getType()));
John Kessenich140f3df2015-06-26 16:58:36 -06004897 }
4898}
4899
John Kessenichfc51d282015-08-19 13:34:18 -06004900void TGlslangToSpvTraverser::translateArguments(glslang::TIntermUnary& node, std::vector<spv::Id>& arguments)
John Kessenich140f3df2015-06-26 16:58:36 -06004901{
John Kessenichfc51d282015-08-19 13:34:18 -06004902 builder.clearAccessChain();
4903 node.getOperand()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07004904 arguments.push_back(accessChainLoad(node.getOperand()->getType()));
John Kessenichfc51d282015-08-19 13:34:18 -06004905}
John Kessenich140f3df2015-06-26 16:58:36 -06004906
John Kessenichfc51d282015-08-19 13:34:18 -06004907spv::Id TGlslangToSpvTraverser::createImageTextureFunctionCall(glslang::TIntermOperator* node)
4908{
John Kesseniche485c7a2017-05-31 18:50:53 -06004909 if (! node->isImage() && ! node->isTexture())
John Kessenichfc51d282015-08-19 13:34:18 -06004910 return spv::NoResult;
John Kesseniche485c7a2017-05-31 18:50:53 -06004911
greg-lunarg5d43c4a2018-12-07 17:36:33 -07004912 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06004913
John Kessenichfc51d282015-08-19 13:34:18 -06004914 // Process a GLSL texturing op (will be SPV image)
Jeff Bolz36831c92018-09-05 10:11:41 -05004915
John Kessenichf43c7392019-03-31 10:51:57 -06004916 const glslang::TType &imageType = node->getAsAggregate()
4917 ? node->getAsAggregate()->getSequence()[0]->getAsTyped()->getType()
4918 : node->getAsUnaryNode()->getOperand()->getAsTyped()->getType();
Jeff Bolz36831c92018-09-05 10:11:41 -05004919 const glslang::TSampler sampler = imageType.getSampler();
John Kessenicha28f7a72019-08-06 07:00:58 -06004920#ifdef GLSLANG_WEB
4921 const bool f16ShadowCompare = false;
4922#else
Rex Xu1e5d7b02016-11-29 17:36:31 +08004923 bool f16ShadowCompare = (sampler.shadow && node->getAsAggregate())
John Kessenichf43c7392019-03-31 10:51:57 -06004924 ? node->getAsAggregate()->getSequence()[1]->getAsTyped()->getType().getBasicType() == glslang::EbtFloat16
4925 : false;
Rex Xu1e5d7b02016-11-29 17:36:31 +08004926#endif
4927
John Kessenichf43c7392019-03-31 10:51:57 -06004928 const auto signExtensionMask = [&]() {
4929 if (builder.getSpvVersion() >= spv::Spv_1_4) {
4930 if (sampler.type == glslang::EbtUint)
4931 return spv::ImageOperandsZeroExtendMask;
4932 else if (sampler.type == glslang::EbtInt)
4933 return spv::ImageOperandsSignExtendMask;
4934 }
4935 return spv::ImageOperandsMaskNone;
4936 };
4937
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004938 spv::Builder::AccessChain::CoherentFlags lvalueCoherentFlags;
4939
John Kessenichfc51d282015-08-19 13:34:18 -06004940 std::vector<spv::Id> arguments;
4941 if (node->getAsAggregate())
Jeff Bolz38a52fc2019-06-14 09:56:28 -05004942 translateArguments(*node->getAsAggregate(), arguments, lvalueCoherentFlags);
John Kessenichfc51d282015-08-19 13:34:18 -06004943 else
4944 translateArguments(*node->getAsUnaryNode(), arguments);
John Kessenich12c155f2020-06-30 07:52:05 -06004945 spv::Decoration precision = TranslatePrecisionDecoration(node->getType());
John Kessenichfc51d282015-08-19 13:34:18 -06004946
4947 spv::Builder::TextureParameters params = { };
4948 params.sampler = arguments[0];
4949
Rex Xu04db3f52015-09-16 11:44:02 +08004950 glslang::TCrackedTextureOp cracked;
4951 node->crackTexture(sampler, cracked);
4952
amhagan05506bb2017-06-13 16:53:02 -04004953 const bool isUnsignedResult = node->getType().getBasicType() == glslang::EbtUint;
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004954
Bas Nieuwenhuizen58064312020-09-03 03:04:13 +02004955 if (builder.isSampledImage(params.sampler) &&
4956 ((cracked.query && node->getOp() != glslang::EOpTextureQueryLod) || cracked.fragMask || cracked.fetch)) {
4957 params.sampler = builder.createUnaryOp(spv::OpImage, builder.getImageType(params.sampler), params.sampler);
4958 if (imageType.getQualifier().isNonUniform()) {
4959 builder.addDecoration(params.sampler, spv::DecorationNonUniformEXT);
4960 }
4961 }
John Kessenichfc51d282015-08-19 13:34:18 -06004962 // Check for queries
4963 if (cracked.query) {
4964 switch (node->getOp()) {
4965 case glslang::EOpImageQuerySize:
4966 case glslang::EOpTextureQuerySize:
John Kessenich140f3df2015-06-26 16:58:36 -06004967 if (arguments.size() > 1) {
4968 params.lod = arguments[1];
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004969 return builder.createTextureQueryCall(spv::OpImageQuerySizeLod, params, isUnsignedResult);
John Kessenich140f3df2015-06-26 16:58:36 -06004970 } else
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004971 return builder.createTextureQueryCall(spv::OpImageQuerySize, params, isUnsignedResult);
John Kessenicha28f7a72019-08-06 07:00:58 -06004972#ifndef GLSLANG_WEB
John Kessenichfc51d282015-08-19 13:34:18 -06004973 case glslang::EOpImageQuerySamples:
4974 case glslang::EOpTextureQuerySamples:
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004975 return builder.createTextureQueryCall(spv::OpImageQuerySamples, params, isUnsignedResult);
John Kessenichfc51d282015-08-19 13:34:18 -06004976 case glslang::EOpTextureQueryLod:
4977 params.coords = arguments[1];
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004978 return builder.createTextureQueryCall(spv::OpImageQueryLod, params, isUnsignedResult);
John Kessenichfc51d282015-08-19 13:34:18 -06004979 case glslang::EOpTextureQueryLevels:
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07004980 return builder.createTextureQueryCall(spv::OpImageQueryLevels, params, isUnsignedResult);
Rex Xu48edadf2015-12-31 16:11:41 +08004981 case glslang::EOpSparseTexelsResident:
4982 return builder.createUnaryOp(spv::OpImageSparseTexelsResident, builder.makeBoolType(), arguments[0]);
John Kessenicha28f7a72019-08-06 07:00:58 -06004983#endif
John Kessenichfc51d282015-08-19 13:34:18 -06004984 default:
4985 assert(0);
4986 break;
John Kessenich140f3df2015-06-26 16:58:36 -06004987 }
John Kessenich140f3df2015-06-26 16:58:36 -06004988 }
4989
LoopDawg4425f242018-02-18 11:40:01 -07004990 int components = node->getType().getVectorSize();
4991
4992 if (node->getOp() == glslang::EOpTextureFetch) {
4993 // These must produce 4 components, per SPIR-V spec. We'll add a conversion constructor if needed.
4994 // This will only happen through the HLSL path for operator[], so we do not have to handle e.g.
4995 // the EOpTexture/Proj/Lod/etc family. It would be harmless to do so, but would need more logic
4996 // here around e.g. which ones return scalars or other types.
4997 components = 4;
4998 }
4999
5000 glslang::TType returnType(node->getType().getBasicType(), glslang::EvqTemporary, components);
5001
5002 auto resultType = [&returnType,this]{ return convertGlslangToSpvType(returnType); };
5003
Rex Xufc618912015-09-09 16:42:49 +08005004 // Check for image functions other than queries
5005 if (node->isImage()) {
John Kessenich149afc32018-08-14 13:31:43 -06005006 std::vector<spv::IdImmediate> operands;
John Kessenich56bab042015-09-16 10:54:31 -06005007 auto opIt = arguments.begin();
John Kessenich149afc32018-08-14 13:31:43 -06005008 spv::IdImmediate image = { true, *(opIt++) };
5009 operands.push_back(image);
John Kessenich6c292d32016-02-15 20:58:50 -07005010
5011 // Handle subpass operations
5012 // TODO: GLSL should change to have the "MS" only on the type rather than the
5013 // built-in function.
5014 if (cracked.subpass) {
5015 // add on the (0,0) coordinate
5016 spv::Id zero = builder.makeIntConstant(0);
5017 std::vector<spv::Id> comps;
5018 comps.push_back(zero);
5019 comps.push_back(zero);
John Kessenich149afc32018-08-14 13:31:43 -06005020 spv::IdImmediate coord = { true,
5021 builder.makeCompositeConstant(builder.makeVectorType(builder.makeIntType(32), 2), comps) };
5022 operands.push_back(coord);
John Kessenichf43c7392019-03-31 10:51:57 -06005023 spv::IdImmediate imageOperands = { false, spv::ImageOperandsMaskNone };
5024 imageOperands.word = imageOperands.word | signExtensionMask();
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005025 if (sampler.isMultiSample()) {
John Kessenichf43c7392019-03-31 10:51:57 -06005026 imageOperands.word = imageOperands.word | spv::ImageOperandsSampleMask;
5027 }
5028 if (imageOperands.word != spv::ImageOperandsMaskNone) {
John Kessenich149afc32018-08-14 13:31:43 -06005029 operands.push_back(imageOperands);
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005030 if (sampler.isMultiSample()) {
John Kessenichf43c7392019-03-31 10:51:57 -06005031 spv::IdImmediate imageOperand = { true, *(opIt++) };
5032 operands.push_back(imageOperand);
5033 }
John Kessenich6c292d32016-02-15 20:58:50 -07005034 }
John Kessenichfe4e5722017-10-19 02:07:30 -06005035 spv::Id result = builder.createOp(spv::OpImageRead, resultType(), operands);
5036 builder.setPrecision(result, precision);
5037 return result;
John Kessenich6c292d32016-02-15 20:58:50 -07005038 }
5039
John Kessenich149afc32018-08-14 13:31:43 -06005040 spv::IdImmediate coord = { true, *(opIt++) };
5041 operands.push_back(coord);
Rex Xu129799a2017-07-05 17:23:28 +08005042 if (node->getOp() == glslang::EOpImageLoad || node->getOp() == glslang::EOpImageLoadLod) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005043 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005044 if (sampler.isMultiSample()) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005045 mask = mask | spv::ImageOperandsSampleMask;
5046 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005047 if (cracked.lod) {
Rex Xu129799a2017-07-05 17:23:28 +08005048 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
5049 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
Jeff Bolz36831c92018-09-05 10:11:41 -05005050 mask = mask | spv::ImageOperandsLodMask;
John Kessenich55e7d112015-11-15 21:33:39 -07005051 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005052 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
5053 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelAvailableKHRMask);
John Kessenichf43c7392019-03-31 10:51:57 -06005054 mask = mask | signExtensionMask();
John Kessenich6e384fe2019-05-10 06:47:00 -06005055 if (mask != spv::ImageOperandsMaskNone) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005056 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
5057 operands.push_back(imageOperands);
5058 }
5059 if (mask & spv::ImageOperandsSampleMask) {
5060 spv::IdImmediate imageOperand = { true, *opIt++ };
5061 operands.push_back(imageOperand);
5062 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005063 if (mask & spv::ImageOperandsLodMask) {
5064 spv::IdImmediate imageOperand = { true, *opIt++ };
5065 operands.push_back(imageOperand);
5066 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005067 if (mask & spv::ImageOperandsMakeTexelVisibleKHRMask) {
John Kessenichf43c7392019-03-31 10:51:57 -06005068 spv::IdImmediate imageOperand = { true,
5069 builder.makeUintConstant(TranslateMemoryScope(TranslateCoherent(imageType))) };
Jeff Bolz36831c92018-09-05 10:11:41 -05005070 operands.push_back(imageOperand);
5071 }
5072
John Kessenich149afc32018-08-14 13:31:43 -06005073 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
John Kessenich5d0fa972016-02-15 11:57:00 -07005074 builder.addCapability(spv::CapabilityStorageImageReadWithoutFormat);
John Kessenichfe4e5722017-10-19 02:07:30 -06005075
John Kessenich149afc32018-08-14 13:31:43 -06005076 std::vector<spv::Id> result(1, builder.createOp(spv::OpImageRead, resultType(), operands));
LoopDawg4425f242018-02-18 11:40:01 -07005077 builder.setPrecision(result[0], precision);
5078
5079 // If needed, add a conversion constructor to the proper size.
5080 if (components != node->getType().getVectorSize())
5081 result[0] = builder.createConstructor(precision, result, convertGlslangToSpvType(node->getType()));
5082
5083 return result[0];
Rex Xu129799a2017-07-05 17:23:28 +08005084 } else if (node->getOp() == glslang::EOpImageStore || node->getOp() == glslang::EOpImageStoreLod) {
Rex Xu129799a2017-07-05 17:23:28 +08005085
Jeff Bolz36831c92018-09-05 10:11:41 -05005086 // Push the texel value before the operands
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005087 if (sampler.isMultiSample() || cracked.lod) {
John Kessenich149afc32018-08-14 13:31:43 -06005088 spv::IdImmediate texel = { true, *(opIt + 1) };
5089 operands.push_back(texel);
John Kessenich149afc32018-08-14 13:31:43 -06005090 } else {
5091 spv::IdImmediate texel = { true, *opIt };
5092 operands.push_back(texel);
5093 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005094
5095 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005096 if (sampler.isMultiSample()) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005097 mask = mask | spv::ImageOperandsSampleMask;
5098 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005099 if (cracked.lod) {
5100 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
5101 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
5102 mask = mask | spv::ImageOperandsLodMask;
5103 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005104 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
5105 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelVisibleKHRMask);
John Kessenichf43c7392019-03-31 10:51:57 -06005106 mask = mask | signExtensionMask();
John Kessenich6e384fe2019-05-10 06:47:00 -06005107 if (mask != spv::ImageOperandsMaskNone) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005108 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
5109 operands.push_back(imageOperands);
5110 }
5111 if (mask & spv::ImageOperandsSampleMask) {
5112 spv::IdImmediate imageOperand = { true, *opIt++ };
5113 operands.push_back(imageOperand);
5114 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005115 if (mask & spv::ImageOperandsLodMask) {
5116 spv::IdImmediate imageOperand = { true, *opIt++ };
5117 operands.push_back(imageOperand);
5118 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005119 if (mask & spv::ImageOperandsMakeTexelAvailableKHRMask) {
John Kessenichf43c7392019-03-31 10:51:57 -06005120 spv::IdImmediate imageOperand = { true,
5121 builder.makeUintConstant(TranslateMemoryScope(TranslateCoherent(imageType))) };
Jeff Bolz36831c92018-09-05 10:11:41 -05005122 operands.push_back(imageOperand);
5123 }
5124
John Kessenich56bab042015-09-16 10:54:31 -06005125 builder.createNoResultOp(spv::OpImageWrite, operands);
John Kessenich149afc32018-08-14 13:31:43 -06005126 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
John Kessenich5d0fa972016-02-15 11:57:00 -07005127 builder.addCapability(spv::CapabilityStorageImageWriteWithoutFormat);
John Kessenich56bab042015-09-16 10:54:31 -06005128 return spv::NoResult;
John Kessenichf43c7392019-03-31 10:51:57 -06005129 } else if (node->getOp() == glslang::EOpSparseImageLoad ||
5130 node->getOp() == glslang::EOpSparseImageLoadLod) {
Rex Xu5eafa472016-02-19 22:24:03 +08005131 builder.addCapability(spv::CapabilitySparseResidency);
John Kessenich149afc32018-08-14 13:31:43 -06005132 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
Rex Xu5eafa472016-02-19 22:24:03 +08005133 builder.addCapability(spv::CapabilityStorageImageReadWithoutFormat);
5134
Jeff Bolz36831c92018-09-05 10:11:41 -05005135 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005136 if (sampler.isMultiSample()) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005137 mask = mask | spv::ImageOperandsSampleMask;
5138 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005139 if (cracked.lod) {
Rex Xu129799a2017-07-05 17:23:28 +08005140 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
5141 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
5142
Jeff Bolz36831c92018-09-05 10:11:41 -05005143 mask = mask | spv::ImageOperandsLodMask;
5144 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005145 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
5146 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelAvailableKHRMask);
John Kessenichf43c7392019-03-31 10:51:57 -06005147 mask = mask | signExtensionMask();
John Kessenich6e384fe2019-05-10 06:47:00 -06005148 if (mask != spv::ImageOperandsMaskNone) {
Jeff Bolz36831c92018-09-05 10:11:41 -05005149 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
John Kessenich149afc32018-08-14 13:31:43 -06005150 operands.push_back(imageOperands);
Jeff Bolz36831c92018-09-05 10:11:41 -05005151 }
5152 if (mask & spv::ImageOperandsSampleMask) {
John Kessenich149afc32018-08-14 13:31:43 -06005153 spv::IdImmediate imageOperand = { true, *opIt++ };
5154 operands.push_back(imageOperand);
Jeff Bolz36831c92018-09-05 10:11:41 -05005155 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005156 if (mask & spv::ImageOperandsLodMask) {
5157 spv::IdImmediate imageOperand = { true, *opIt++ };
5158 operands.push_back(imageOperand);
5159 }
Jeff Bolz36831c92018-09-05 10:11:41 -05005160 if (mask & spv::ImageOperandsMakeTexelVisibleKHRMask) {
John Kessenich8985fc92020-03-03 10:25:07 -07005161 spv::IdImmediate imageOperand = { true, builder.makeUintConstant(TranslateMemoryScope(
5162 TranslateCoherent(imageType))) };
Jeff Bolz36831c92018-09-05 10:11:41 -05005163 operands.push_back(imageOperand);
Rex Xu5eafa472016-02-19 22:24:03 +08005164 }
5165
5166 // Create the return type that was a special structure
5167 spv::Id texelOut = *opIt;
John Kessenich8c8505c2016-07-26 12:50:38 -06005168 spv::Id typeId0 = resultType();
Rex Xu5eafa472016-02-19 22:24:03 +08005169 spv::Id typeId1 = builder.getDerefTypeId(texelOut);
5170 spv::Id resultTypeId = builder.makeStructResultType(typeId0, typeId1);
5171
5172 spv::Id resultId = builder.createOp(spv::OpImageSparseRead, resultTypeId, operands);
5173
5174 // Decode the return type
5175 builder.createStore(builder.createCompositeExtract(resultId, typeId1, 1), texelOut);
5176 return builder.createCompositeExtract(resultId, typeId0, 0);
John Kessenichcd261442016-01-22 09:54:12 -07005177 } else {
Rex Xu6b86d492015-09-16 17:48:22 +08005178 // Process image atomic operations
5179
5180 // GLSL "IMAGE_PARAMS" will involve in constructing an image texel pointer and this pointer,
5181 // as the first source operand, is required by SPIR-V atomic operations.
John Kessenich149afc32018-08-14 13:31:43 -06005182 // For non-MS, the sample value should be 0
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005183 spv::IdImmediate sample = { true, sampler.isMultiSample() ? *(opIt++) : builder.makeUintConstant(0) };
John Kessenich149afc32018-08-14 13:31:43 -06005184 operands.push_back(sample);
John Kessenich140f3df2015-06-26 16:58:36 -06005185
Jeff Bolz36831c92018-09-05 10:11:41 -05005186 spv::Id resultTypeId;
5187 // imageAtomicStore has a void return type so base the pointer type on
5188 // the type of the value operand.
5189 if (node->getOp() == glslang::EOpImageAtomicStore) {
Rex Xufb18b6d2020-02-22 22:04:31 +08005190 resultTypeId = builder.makePointer(spv::StorageClassImage, builder.getTypeId(*opIt));
Jeff Bolz36831c92018-09-05 10:11:41 -05005191 } else {
5192 resultTypeId = builder.makePointer(spv::StorageClassImage, resultType());
5193 }
John Kessenich56bab042015-09-16 10:54:31 -06005194 spv::Id pointer = builder.createOp(spv::OpImageTexelPointer, resultTypeId, operands);
Jeff Bolz39ffdaf2020-03-09 10:48:12 -05005195 if (imageType.getQualifier().nonUniform) {
5196 builder.addDecoration(pointer, spv::DecorationNonUniformEXT);
5197 }
Rex Xufc618912015-09-09 16:42:49 +08005198
5199 std::vector<spv::Id> operands;
5200 operands.push_back(pointer);
5201 for (; opIt != arguments.end(); ++opIt)
5202 operands.push_back(*opIt);
5203
John Kessenich8985fc92020-03-03 10:25:07 -07005204 return createAtomicOperation(node->getOp(), precision, resultType(), operands, node->getBasicType(),
5205 lvalueCoherentFlags);
Rex Xufc618912015-09-09 16:42:49 +08005206 }
5207 }
5208
John Kessenicha28f7a72019-08-06 07:00:58 -06005209#ifndef GLSLANG_WEB
amhagan05506bb2017-06-13 16:53:02 -04005210 // Check for fragment mask functions other than queries
5211 if (cracked.fragMask) {
5212 assert(sampler.ms);
5213
5214 auto opIt = arguments.begin();
5215 std::vector<spv::Id> operands;
5216
amhagan05506bb2017-06-13 16:53:02 -04005217 operands.push_back(params.sampler);
5218 ++opIt;
5219
5220 if (sampler.isSubpass()) {
5221 // add on the (0,0) coordinate
5222 spv::Id zero = builder.makeIntConstant(0);
5223 std::vector<spv::Id> comps;
5224 comps.push_back(zero);
5225 comps.push_back(zero);
John Kessenich8985fc92020-03-03 10:25:07 -07005226 operands.push_back(builder.makeCompositeConstant(
5227 builder.makeVectorType(builder.makeIntType(32), 2), comps));
amhagan05506bb2017-06-13 16:53:02 -04005228 }
5229
5230 for (; opIt != arguments.end(); ++opIt)
5231 operands.push_back(*opIt);
5232
5233 spv::Op fragMaskOp = spv::OpNop;
5234 if (node->getOp() == glslang::EOpFragmentMaskFetch)
5235 fragMaskOp = spv::OpFragmentMaskFetchAMD;
5236 else if (node->getOp() == glslang::EOpFragmentFetch)
5237 fragMaskOp = spv::OpFragmentFetchAMD;
5238
5239 builder.addExtension(spv::E_SPV_AMD_shader_fragment_mask);
5240 builder.addCapability(spv::CapabilityFragmentMaskAMD);
5241 return builder.createOp(fragMaskOp, resultType(), operands);
5242 }
5243#endif
5244
Rex Xufc618912015-09-09 16:42:49 +08005245 // Check for texture functions other than queries
Rex Xu48edadf2015-12-31 16:11:41 +08005246 bool sparse = node->isSparseTexture();
Chao Chen3a137962018-09-19 11:41:27 -07005247 bool imageFootprint = node->isImageFootprint();
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005248 bool cubeCompare = sampler.dim == glslang::EsdCube && sampler.isArrayed() && sampler.isShadow();
Rex Xu71519fe2015-11-11 15:35:47 +08005249
John Kessenichfc51d282015-08-19 13:34:18 -06005250 // check for bias argument
5251 bool bias = false;
Rex Xu225e0fc2016-11-17 17:47:59 +08005252 if (! cracked.lod && ! cracked.grad && ! cracked.fetch && ! cubeCompare) {
John Kessenichfc51d282015-08-19 13:34:18 -06005253 int nonBiasArgCount = 2;
Rex Xu225e0fc2016-11-17 17:47:59 +08005254 if (cracked.gather)
5255 ++nonBiasArgCount; // comp argument should be present when bias argument is present
Rex Xu1e5d7b02016-11-29 17:36:31 +08005256
5257 if (f16ShadowCompare)
5258 ++nonBiasArgCount;
John Kessenichfc51d282015-08-19 13:34:18 -06005259 if (cracked.offset)
5260 ++nonBiasArgCount;
Rex Xu225e0fc2016-11-17 17:47:59 +08005261 else if (cracked.offsets)
5262 ++nonBiasArgCount;
John Kessenichfc51d282015-08-19 13:34:18 -06005263 if (cracked.grad)
5264 nonBiasArgCount += 2;
Rex Xu48edadf2015-12-31 16:11:41 +08005265 if (cracked.lodClamp)
5266 ++nonBiasArgCount;
5267 if (sparse)
5268 ++nonBiasArgCount;
Chao Chen3a137962018-09-19 11:41:27 -07005269 if (imageFootprint)
5270 //Following three extra arguments
5271 // int granularity, bool coarse, out gl_TextureFootprint2DNV footprint
5272 nonBiasArgCount += 3;
John Kessenichfc51d282015-08-19 13:34:18 -06005273 if ((int)arguments.size() > nonBiasArgCount)
5274 bias = true;
5275 }
5276
John Kessenicha28f7a72019-08-06 07:00:58 -06005277#ifndef GLSLANG_WEB
Rex Xu225e0fc2016-11-17 17:47:59 +08005278 if (cracked.gather) {
5279 const auto& sourceExtensions = glslangIntermediate->getRequestedExtensions();
5280 if (bias || cracked.lod ||
5281 sourceExtensions.find(glslang::E_GL_AMD_texture_gather_bias_lod) != sourceExtensions.end()) {
5282 builder.addExtension(spv::E_SPV_AMD_texture_gather_bias_lod);
Rex Xu301a2bc2017-06-14 23:09:39 +08005283 builder.addCapability(spv::CapabilityImageGatherBiasLodAMD);
Rex Xu225e0fc2016-11-17 17:47:59 +08005284 }
5285 }
5286#endif
5287
John Kessenichfc51d282015-08-19 13:34:18 -06005288 // set the rest of the arguments
John Kessenich55e7d112015-11-15 21:33:39 -07005289
John Kessenichfc51d282015-08-19 13:34:18 -06005290 params.coords = arguments[1];
5291 int extraArgs = 0;
John Kessenich019f08f2016-02-15 15:40:42 -07005292 bool noImplicitLod = false;
John Kessenich55e7d112015-11-15 21:33:39 -07005293
5294 // sort out where Dref is coming from
Rex Xu1e5d7b02016-11-29 17:36:31 +08005295 if (cubeCompare || f16ShadowCompare) {
John Kessenichfc51d282015-08-19 13:34:18 -06005296 params.Dref = arguments[2];
Rex Xu48edadf2015-12-31 16:11:41 +08005297 ++extraArgs;
5298 } else if (sampler.shadow && cracked.gather) {
John Kessenich55e7d112015-11-15 21:33:39 -07005299 params.Dref = arguments[2];
5300 ++extraArgs;
5301 } else if (sampler.shadow) {
John Kessenichfc51d282015-08-19 13:34:18 -06005302 std::vector<spv::Id> indexes;
John Kessenich76d4dfc2016-06-16 12:43:23 -06005303 int dRefComp;
John Kessenichfc51d282015-08-19 13:34:18 -06005304 if (cracked.proj)
John Kessenich76d4dfc2016-06-16 12:43:23 -06005305 dRefComp = 2; // "The resulting 3rd component of P in the shadow forms is used as Dref"
John Kessenichfc51d282015-08-19 13:34:18 -06005306 else
John Kessenich76d4dfc2016-06-16 12:43:23 -06005307 dRefComp = builder.getNumComponents(params.coords) - 1;
5308 indexes.push_back(dRefComp);
John Kessenich8985fc92020-03-03 10:25:07 -07005309 params.Dref = builder.createCompositeExtract(params.coords,
5310 builder.getScalarTypeId(builder.getTypeId(params.coords)), indexes);
John Kessenichfc51d282015-08-19 13:34:18 -06005311 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005312
5313 // lod
John Kessenichfc51d282015-08-19 13:34:18 -06005314 if (cracked.lod) {
LoopDawgef94b1a2017-07-24 18:45:37 -06005315 params.lod = arguments[2 + extraArgs];
John Kessenichfc51d282015-08-19 13:34:18 -06005316 ++extraArgs;
John Kessenichb9197c82019-08-11 07:41:45 -06005317 } else if (glslangIntermediate->getStage() != EShLangFragment &&
5318 !(glslangIntermediate->getStage() == EShLangCompute &&
5319 glslangIntermediate->hasLayoutDerivativeModeNone())) {
John Kessenich019f08f2016-02-15 15:40:42 -07005320 // we need to invent the default lod for an explicit lod instruction for a non-fragment stage
5321 noImplicitLod = true;
5322 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005323
5324 // multisample
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005325 if (sampler.isMultiSample()) {
LoopDawgef94b1a2017-07-24 18:45:37 -06005326 params.sample = arguments[2 + extraArgs]; // For MS, "sample" should be specified
Rex Xu04db3f52015-09-16 11:44:02 +08005327 ++extraArgs;
John Kessenichfc51d282015-08-19 13:34:18 -06005328 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005329
5330 // gradient
John Kessenichfc51d282015-08-19 13:34:18 -06005331 if (cracked.grad) {
5332 params.gradX = arguments[2 + extraArgs];
5333 params.gradY = arguments[3 + extraArgs];
5334 extraArgs += 2;
5335 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005336
5337 // offset and offsets
John Kessenich55e7d112015-11-15 21:33:39 -07005338 if (cracked.offset) {
John Kessenichfc51d282015-08-19 13:34:18 -06005339 params.offset = arguments[2 + extraArgs];
5340 ++extraArgs;
John Kessenich55e7d112015-11-15 21:33:39 -07005341 } else if (cracked.offsets) {
5342 params.offsets = arguments[2 + extraArgs];
5343 ++extraArgs;
John Kessenichfc51d282015-08-19 13:34:18 -06005344 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005345
John Kessenich3e4b6ff2019-08-08 01:15:24 -06005346#ifndef GLSLANG_WEB
John Kessenich76d4dfc2016-06-16 12:43:23 -06005347 // lod clamp
Rex Xu48edadf2015-12-31 16:11:41 +08005348 if (cracked.lodClamp) {
5349 params.lodClamp = arguments[2 + extraArgs];
5350 ++extraArgs;
5351 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005352 // sparse
Rex Xu48edadf2015-12-31 16:11:41 +08005353 if (sparse) {
5354 params.texelOut = arguments[2 + extraArgs];
5355 ++extraArgs;
5356 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06005357 // gather component
John Kessenich55e7d112015-11-15 21:33:39 -07005358 if (cracked.gather && ! sampler.shadow) {
5359 // default component is 0, if missing, otherwise an argument
5360 if (2 + extraArgs < (int)arguments.size()) {
John Kessenich76d4dfc2016-06-16 12:43:23 -06005361 params.component = arguments[2 + extraArgs];
John Kessenich55e7d112015-11-15 21:33:39 -07005362 ++extraArgs;
Rex Xu225e0fc2016-11-17 17:47:59 +08005363 } else
John Kessenich76d4dfc2016-06-16 12:43:23 -06005364 params.component = builder.makeIntConstant(0);
Rex Xu225e0fc2016-11-17 17:47:59 +08005365 }
Chao Chen3a137962018-09-19 11:41:27 -07005366 spv::Id resultStruct = spv::NoResult;
5367 if (imageFootprint) {
5368 //Following three extra arguments
5369 // int granularity, bool coarse, out gl_TextureFootprint2DNV footprint
5370 params.granularity = arguments[2 + extraArgs];
5371 params.coarse = arguments[3 + extraArgs];
5372 resultStruct = arguments[4 + extraArgs];
5373 extraArgs += 3;
5374 }
5375#endif
Rex Xu225e0fc2016-11-17 17:47:59 +08005376 // bias
5377 if (bias) {
5378 params.bias = arguments[2 + extraArgs];
5379 ++extraArgs;
John Kessenich55e7d112015-11-15 21:33:39 -07005380 }
John Kessenichfc51d282015-08-19 13:34:18 -06005381
John Kessenicha28f7a72019-08-06 07:00:58 -06005382#ifndef GLSLANG_WEB
Chao Chen3a137962018-09-19 11:41:27 -07005383 if (imageFootprint) {
5384 builder.addExtension(spv::E_SPV_NV_shader_image_footprint);
5385 builder.addCapability(spv::CapabilityImageFootprintNV);
5386
5387
5388 //resultStructType(OpenGL type) contains 5 elements:
5389 //struct gl_TextureFootprint2DNV {
5390 // uvec2 anchor;
5391 // uvec2 offset;
5392 // uvec2 mask;
5393 // uint lod;
5394 // uint granularity;
5395 //};
5396 //or
5397 //struct gl_TextureFootprint3DNV {
5398 // uvec3 anchor;
5399 // uvec3 offset;
5400 // uvec2 mask;
5401 // uint lod;
5402 // uint granularity;
5403 //};
5404 spv::Id resultStructType = builder.getContainedTypeId(builder.getTypeId(resultStruct));
5405 assert(builder.isStructType(resultStructType));
5406
5407 //resType (SPIR-V type) contains 6 elements:
5408 //Member 0 must be a Boolean type scalar(LOD),
5409 //Member 1 must be a vector of integer type, whose Signedness operand is 0(anchor),
5410 //Member 2 must be a vector of integer type, whose Signedness operand is 0(offset),
5411 //Member 3 must be a vector of integer type, whose Signedness operand is 0(mask),
5412 //Member 4 must be a scalar of integer type, whose Signedness operand is 0(lod),
5413 //Member 5 must be a scalar of integer type, whose Signedness operand is 0(granularity).
5414 std::vector<spv::Id> members;
5415 members.push_back(resultType());
5416 for (int i = 0; i < 5; i++) {
5417 members.push_back(builder.getContainedTypeId(resultStructType, i));
5418 }
5419 spv::Id resType = builder.makeStructType(members, "ResType");
5420
5421 //call ImageFootprintNV
John Kessenichf43c7392019-03-31 10:51:57 -06005422 spv::Id res = builder.createTextureCall(precision, resType, sparse, cracked.fetch, cracked.proj,
5423 cracked.gather, noImplicitLod, params, signExtensionMask());
Chao Chen3a137962018-09-19 11:41:27 -07005424
5425 //copy resType (SPIR-V type) to resultStructType(OpenGL type)
5426 for (int i = 0; i < 5; i++) {
5427 builder.clearAccessChain();
5428 builder.setAccessChainLValue(resultStruct);
5429
5430 //Accessing to a struct we created, no coherent flag is set
5431 spv::Builder::AccessChain::CoherentFlags flags;
5432 flags.clear();
5433
Jeff Bolz9f2aec42019-01-06 17:58:04 -06005434 builder.accessChainPush(builder.makeIntConstant(i), flags, 0);
John Kessenich8985fc92020-03-03 10:25:07 -07005435 builder.accessChainStore(builder.createCompositeExtract(res, builder.getContainedTypeId(resType, i+1),
Bas Nieuwenhuizende949a22020-08-24 23:27:26 +02005436 i+1), TranslateNonUniformDecoration(imageType.getQualifier()));
Chao Chen3a137962018-09-19 11:41:27 -07005437 }
5438 return builder.createCompositeExtract(res, resultType(), 0);
5439 }
5440#endif
5441
John Kessenich65336482016-06-16 14:06:26 -06005442 // projective component (might not to move)
5443 // GLSL: "The texture coordinates consumed from P, not including the last component of P,
5444 // are divided by the last component of P."
5445 // SPIR-V: "... (u [, v] [, w], q)... It may be a vector larger than needed, but all
5446 // unused components will appear after all used components."
5447 if (cracked.proj) {
5448 int projSourceComp = builder.getNumComponents(params.coords) - 1;
5449 int projTargetComp;
5450 switch (sampler.dim) {
5451 case glslang::Esd1D: projTargetComp = 1; break;
5452 case glslang::Esd2D: projTargetComp = 2; break;
5453 case glslang::EsdRect: projTargetComp = 2; break;
5454 default: projTargetComp = projSourceComp; break;
5455 }
5456 // copy the projective coordinate if we have to
5457 if (projTargetComp != projSourceComp) {
John Kessenichecba76f2017-01-06 00:34:48 -07005458 spv::Id projComp = builder.createCompositeExtract(params.coords,
John Kessenich8985fc92020-03-03 10:25:07 -07005459 builder.getScalarTypeId(builder.getTypeId(params.coords)), projSourceComp);
John Kessenich65336482016-06-16 14:06:26 -06005460 params.coords = builder.createCompositeInsert(projComp, params.coords,
John Kessenich8985fc92020-03-03 10:25:07 -07005461 builder.getTypeId(params.coords), projTargetComp);
John Kessenich65336482016-06-16 14:06:26 -06005462 }
5463 }
5464
John Kessenichf8d1d742019-10-21 06:55:11 -06005465#ifndef GLSLANG_WEB
Jeff Bolz36831c92018-09-05 10:11:41 -05005466 // nonprivate
5467 if (imageType.getQualifier().nonprivate) {
5468 params.nonprivate = true;
5469 }
5470
5471 // volatile
5472 if (imageType.getQualifier().volatil) {
5473 params.volatil = true;
5474 }
John Kessenichf8d1d742019-10-21 06:55:11 -06005475#endif
Jeff Bolz36831c92018-09-05 10:11:41 -05005476
St0fFa1184dd2018-04-09 21:08:14 +02005477 std::vector<spv::Id> result( 1,
John Kessenichf43c7392019-03-31 10:51:57 -06005478 builder.createTextureCall(precision, resultType(), sparse, cracked.fetch, cracked.proj, cracked.gather,
5479 noImplicitLod, params, signExtensionMask())
St0fFa1184dd2018-04-09 21:08:14 +02005480 );
LoopDawg4425f242018-02-18 11:40:01 -07005481
5482 if (components != node->getType().getVectorSize())
5483 result[0] = builder.createConstructor(precision, result, convertGlslangToSpvType(node->getType()));
5484
5485 return result[0];
John Kessenich140f3df2015-06-26 16:58:36 -06005486}
5487
5488spv::Id TGlslangToSpvTraverser::handleUserFunctionCall(const glslang::TIntermAggregate* node)
5489{
5490 // Grab the function's pointer from the previously created function
5491 spv::Function* function = functionMap[node->getName().c_str()];
5492 if (! function)
5493 return 0;
5494
5495 const glslang::TIntermSequence& glslangArgs = node->getSequence();
5496 const glslang::TQualifierList& qualifiers = node->getQualifierList();
5497
5498 // See comments in makeFunctions() for details about the semantics for parameter passing.
5499 //
5500 // These imply we need a four step process:
5501 // 1. Evaluate the arguments
5502 // 2. Allocate and make copies of in, out, and inout arguments
5503 // 3. Make the call
5504 // 4. Copy back the results
5505
John Kessenichd3ed90b2018-05-04 11:43:03 -06005506 // 1. Evaluate the arguments and their types
John Kessenich140f3df2015-06-26 16:58:36 -06005507 std::vector<spv::Builder::AccessChain> lValues;
5508 std::vector<spv::Id> rValues;
John Kessenich32cfd492016-02-02 12:37:46 -07005509 std::vector<const glslang::TType*> argTypes;
John Kessenich140f3df2015-06-26 16:58:36 -06005510 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
John Kessenichd3ed90b2018-05-04 11:43:03 -06005511 argTypes.push_back(&glslangArgs[a]->getAsTyped()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06005512 // build l-value
5513 builder.clearAccessChain();
5514 glslangArgs[a]->traverse(this);
John Kessenichd41993d2017-09-10 15:21:05 -06005515 // keep outputs and pass-by-originals as l-values, evaluate others as r-values
John Kessenichd3ed90b2018-05-04 11:43:03 -06005516 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0) ||
John Kessenich6a14f782017-12-04 02:48:10 -07005517 writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06005518 // save l-value
5519 lValues.push_back(builder.getAccessChain());
5520 } else {
5521 // process r-value
John Kessenich32cfd492016-02-02 12:37:46 -07005522 rValues.push_back(accessChainLoad(*argTypes.back()));
John Kessenich140f3df2015-06-26 16:58:36 -06005523 }
5524 }
5525
5526 // 2. Allocate space for anything needing a copy, and if it's "in" or "inout"
5527 // copy the original into that space.
5528 //
5529 // Also, build up the list of actual arguments to pass in for the call
5530 int lValueCount = 0;
5531 int rValueCount = 0;
5532 std::vector<spv::Id> spvArgs;
5533 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
5534 spv::Id arg;
John Kessenichd3ed90b2018-05-04 11:43:03 -06005535 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0)) {
Jason Ekstrand76d0ac12016-05-25 11:50:21 -07005536 builder.setAccessChain(lValues[lValueCount]);
5537 arg = builder.accessChainGetLValue();
5538 ++lValueCount;
John Kessenichd41993d2017-09-10 15:21:05 -06005539 } else if (writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06005540 // need space to hold the copy
John Kessenich435dd802020-06-30 01:27:08 -06005541 arg = builder.createVariable(function->getParamPrecision(a), spv::StorageClassFunction,
John Kessenich8985fc92020-03-03 10:25:07 -07005542 builder.getContainedTypeId(function->getParamType(a)), "param");
John Kessenich140f3df2015-06-26 16:58:36 -06005543 if (qualifiers[a] == glslang::EvqIn || qualifiers[a] == glslang::EvqInOut) {
5544 // need to copy the input into output space
5545 builder.setAccessChain(lValues[lValueCount]);
John Kessenich32cfd492016-02-02 12:37:46 -07005546 spv::Id copy = accessChainLoad(*argTypes[a]);
John Kessenich4bf71552016-09-02 11:20:21 -06005547 builder.clearAccessChain();
5548 builder.setAccessChainLValue(arg);
John Kessenichd3ed90b2018-05-04 11:43:03 -06005549 multiTypeStore(*argTypes[a], copy);
John Kessenich140f3df2015-06-26 16:58:36 -06005550 }
5551 ++lValueCount;
5552 } else {
John Kessenichd3ed90b2018-05-04 11:43:03 -06005553 // process r-value, which involves a copy for a type mismatch
John Kessenich4df10332020-06-26 08:37:06 -06005554 if (function->getParamType(a) != convertGlslangToSpvType(*argTypes[a]) ||
John Kessenich435dd802020-06-30 01:27:08 -06005555 TranslatePrecisionDecoration(*argTypes[a]) != function->getParamPrecision(a))
John Kessenich4df10332020-06-26 08:37:06 -06005556 {
John Kessenich435dd802020-06-30 01:27:08 -06005557 spv::Id argCopy = builder.createVariable(function->getParamPrecision(a), spv::StorageClassFunction, function->getParamType(a), "arg");
John Kessenichd3ed90b2018-05-04 11:43:03 -06005558 builder.clearAccessChain();
5559 builder.setAccessChainLValue(argCopy);
5560 multiTypeStore(*argTypes[a], rValues[rValueCount]);
John Kessenich435dd802020-06-30 01:27:08 -06005561 arg = builder.createLoad(argCopy, function->getParamPrecision(a));
John Kessenichd3ed90b2018-05-04 11:43:03 -06005562 } else
5563 arg = rValues[rValueCount];
John Kessenich140f3df2015-06-26 16:58:36 -06005564 ++rValueCount;
5565 }
5566 spvArgs.push_back(arg);
5567 }
5568
5569 // 3. Make the call.
5570 spv::Id result = builder.createFunctionCall(function, spvArgs);
John Kessenich32cfd492016-02-02 12:37:46 -07005571 builder.setPrecision(result, TranslatePrecisionDecoration(node->getType()));
greg-lunarg639f5462020-11-12 11:10:07 -07005572 builder.addDecoration(result, TranslateNonUniformDecoration(node->getType().getQualifier()));
John Kessenich140f3df2015-06-26 16:58:36 -06005573
5574 // 4. Copy back out an "out" arguments.
5575 lValueCount = 0;
5576 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
John Kessenichd3ed90b2018-05-04 11:43:03 -06005577 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0))
John Kessenichd41993d2017-09-10 15:21:05 -06005578 ++lValueCount;
5579 else if (writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06005580 if (qualifiers[a] == glslang::EvqOut || qualifiers[a] == glslang::EvqInOut) {
John Kessenich435dd802020-06-30 01:27:08 -06005581 spv::Id copy = builder.createLoad(spvArgs[a], spv::NoPrecision);
greg-lunarg639f5462020-11-12 11:10:07 -07005582 builder.addDecoration(copy, TranslateNonUniformDecoration(argTypes[a]->getQualifier()));
John Kessenich140f3df2015-06-26 16:58:36 -06005583 builder.setAccessChain(lValues[lValueCount]);
John Kessenichd3ed90b2018-05-04 11:43:03 -06005584 multiTypeStore(*argTypes[a], copy);
John Kessenich140f3df2015-06-26 16:58:36 -06005585 }
5586 ++lValueCount;
5587 }
5588 }
5589
5590 return result;
5591}
5592
5593// Translate AST operation to SPV operation, already having SPV-based operands/types.
John Kessenichead86222018-03-28 18:01:20 -06005594spv::Id TGlslangToSpvTraverser::createBinaryOperation(glslang::TOperator op, OpDecorations& decorations,
John Kessenich140f3df2015-06-26 16:58:36 -06005595 spv::Id typeId, spv::Id left, spv::Id right,
5596 glslang::TBasicType typeProxy, bool reduceComparison)
5597{
John Kessenich66011cb2018-03-06 16:12:04 -07005598 bool isUnsigned = isTypeUnsignedInt(typeProxy);
5599 bool isFloat = isTypeFloat(typeProxy);
Rex Xuc7d36562016-04-27 08:15:37 +08005600 bool isBool = typeProxy == glslang::EbtBool;
John Kessenich140f3df2015-06-26 16:58:36 -06005601
5602 spv::Op binOp = spv::OpNop;
John Kessenichec43d0a2015-07-04 17:17:31 -06005603 bool needMatchingVectors = true; // for non-matrix ops, would a scalar need to smear to match a vector?
John Kessenich140f3df2015-06-26 16:58:36 -06005604 bool comparison = false;
5605
5606 switch (op) {
5607 case glslang::EOpAdd:
5608 case glslang::EOpAddAssign:
5609 if (isFloat)
5610 binOp = spv::OpFAdd;
5611 else
5612 binOp = spv::OpIAdd;
5613 break;
5614 case glslang::EOpSub:
5615 case glslang::EOpSubAssign:
5616 if (isFloat)
5617 binOp = spv::OpFSub;
5618 else
5619 binOp = spv::OpISub;
5620 break;
5621 case glslang::EOpMul:
5622 case glslang::EOpMulAssign:
5623 if (isFloat)
5624 binOp = spv::OpFMul;
5625 else
5626 binOp = spv::OpIMul;
5627 break;
5628 case glslang::EOpVectorTimesScalar:
5629 case glslang::EOpVectorTimesScalarAssign:
John Kessenich8d72f1a2016-05-20 12:06:03 -06005630 if (isFloat && (builder.isVector(left) || builder.isVector(right))) {
John Kessenichec43d0a2015-07-04 17:17:31 -06005631 if (builder.isVector(right))
5632 std::swap(left, right);
5633 assert(builder.isScalar(right));
5634 needMatchingVectors = false;
5635 binOp = spv::OpVectorTimesScalar;
t.jung697fdf02018-11-14 13:04:39 +01005636 } else if (isFloat)
5637 binOp = spv::OpFMul;
5638 else
John Kessenichec43d0a2015-07-04 17:17:31 -06005639 binOp = spv::OpIMul;
John Kessenich140f3df2015-06-26 16:58:36 -06005640 break;
5641 case glslang::EOpVectorTimesMatrix:
5642 case glslang::EOpVectorTimesMatrixAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06005643 binOp = spv::OpVectorTimesMatrix;
5644 break;
5645 case glslang::EOpMatrixTimesVector:
John Kessenich140f3df2015-06-26 16:58:36 -06005646 binOp = spv::OpMatrixTimesVector;
5647 break;
5648 case glslang::EOpMatrixTimesScalar:
5649 case glslang::EOpMatrixTimesScalarAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06005650 binOp = spv::OpMatrixTimesScalar;
5651 break;
5652 case glslang::EOpMatrixTimesMatrix:
5653 case glslang::EOpMatrixTimesMatrixAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06005654 binOp = spv::OpMatrixTimesMatrix;
5655 break;
5656 case glslang::EOpOuterProduct:
5657 binOp = spv::OpOuterProduct;
John Kessenichec43d0a2015-07-04 17:17:31 -06005658 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06005659 break;
5660
5661 case glslang::EOpDiv:
5662 case glslang::EOpDivAssign:
5663 if (isFloat)
5664 binOp = spv::OpFDiv;
5665 else if (isUnsigned)
5666 binOp = spv::OpUDiv;
5667 else
5668 binOp = spv::OpSDiv;
5669 break;
5670 case glslang::EOpMod:
5671 case glslang::EOpModAssign:
5672 if (isFloat)
5673 binOp = spv::OpFMod;
5674 else if (isUnsigned)
5675 binOp = spv::OpUMod;
5676 else
5677 binOp = spv::OpSMod;
5678 break;
5679 case glslang::EOpRightShift:
5680 case glslang::EOpRightShiftAssign:
5681 if (isUnsigned)
5682 binOp = spv::OpShiftRightLogical;
5683 else
5684 binOp = spv::OpShiftRightArithmetic;
5685 break;
5686 case glslang::EOpLeftShift:
5687 case glslang::EOpLeftShiftAssign:
5688 binOp = spv::OpShiftLeftLogical;
5689 break;
5690 case glslang::EOpAnd:
5691 case glslang::EOpAndAssign:
5692 binOp = spv::OpBitwiseAnd;
5693 break;
5694 case glslang::EOpLogicalAnd:
John Kessenichec43d0a2015-07-04 17:17:31 -06005695 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06005696 binOp = spv::OpLogicalAnd;
5697 break;
5698 case glslang::EOpInclusiveOr:
5699 case glslang::EOpInclusiveOrAssign:
5700 binOp = spv::OpBitwiseOr;
5701 break;
5702 case glslang::EOpLogicalOr:
John Kessenichec43d0a2015-07-04 17:17:31 -06005703 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06005704 binOp = spv::OpLogicalOr;
5705 break;
5706 case glslang::EOpExclusiveOr:
5707 case glslang::EOpExclusiveOrAssign:
5708 binOp = spv::OpBitwiseXor;
5709 break;
5710 case glslang::EOpLogicalXor:
John Kessenichec43d0a2015-07-04 17:17:31 -06005711 needMatchingVectors = false;
John Kessenich5e4b1242015-08-06 22:53:06 -06005712 binOp = spv::OpLogicalNotEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06005713 break;
5714
Ian Romanickb3bd4022019-01-21 08:57:25 -08005715 case glslang::EOpAbsDifference:
5716 binOp = isUnsigned ? spv::OpAbsUSubINTEL : spv::OpAbsISubINTEL;
5717 break;
5718
5719 case glslang::EOpAddSaturate:
5720 binOp = isUnsigned ? spv::OpUAddSatINTEL : spv::OpIAddSatINTEL;
5721 break;
5722
5723 case glslang::EOpSubSaturate:
5724 binOp = isUnsigned ? spv::OpUSubSatINTEL : spv::OpISubSatINTEL;
5725 break;
5726
5727 case glslang::EOpAverage:
5728 binOp = isUnsigned ? spv::OpUAverageINTEL : spv::OpIAverageINTEL;
5729 break;
5730
5731 case glslang::EOpAverageRounded:
5732 binOp = isUnsigned ? spv::OpUAverageRoundedINTEL : spv::OpIAverageRoundedINTEL;
5733 break;
5734
5735 case glslang::EOpMul32x16:
5736 binOp = isUnsigned ? spv::OpUMul32x16INTEL : spv::OpIMul32x16INTEL;
5737 break;
5738
John Kessenich140f3df2015-06-26 16:58:36 -06005739 case glslang::EOpLessThan:
5740 case glslang::EOpGreaterThan:
5741 case glslang::EOpLessThanEqual:
5742 case glslang::EOpGreaterThanEqual:
5743 case glslang::EOpEqual:
5744 case glslang::EOpNotEqual:
5745 case glslang::EOpVectorEqual:
5746 case glslang::EOpVectorNotEqual:
5747 comparison = true;
5748 break;
5749 default:
5750 break;
5751 }
5752
John Kessenich7c1aa102015-10-15 13:29:11 -06005753 // handle mapped binary operations (should be non-comparison)
John Kessenich140f3df2015-06-26 16:58:36 -06005754 if (binOp != spv::OpNop) {
John Kessenich7c1aa102015-10-15 13:29:11 -06005755 assert(comparison == false);
Jeff Bolz4605e2e2019-02-19 13:10:32 -06005756 if (builder.isMatrix(left) || builder.isMatrix(right) ||
5757 builder.isCooperativeMatrix(left) || builder.isCooperativeMatrix(right))
John Kessenichead86222018-03-28 18:01:20 -06005758 return createBinaryMatrixOperation(binOp, decorations, typeId, left, right);
John Kessenich140f3df2015-06-26 16:58:36 -06005759
5760 // No matrix involved; make both operands be the same number of components, if needed
John Kessenichec43d0a2015-07-04 17:17:31 -06005761 if (needMatchingVectors)
John Kessenichead86222018-03-28 18:01:20 -06005762 builder.promoteScalar(decorations.precision, left, right);
John Kessenich140f3df2015-06-26 16:58:36 -06005763
qining25262b32016-05-06 17:25:16 -04005764 spv::Id result = builder.createBinOp(binOp, typeId, left, right);
John Kessenichb9197c82019-08-11 07:41:45 -06005765 decorations.addNoContraction(builder, result);
5766 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005767 return builder.setPrecision(result, decorations.precision);
John Kessenich140f3df2015-06-26 16:58:36 -06005768 }
5769
5770 if (! comparison)
5771 return 0;
5772
John Kessenich7c1aa102015-10-15 13:29:11 -06005773 // Handle comparison instructions
John Kessenich140f3df2015-06-26 16:58:36 -06005774
John Kessenich4583b612016-08-07 19:14:22 -06005775 if (reduceComparison && (op == glslang::EOpEqual || op == glslang::EOpNotEqual)
John Kessenichead86222018-03-28 18:01:20 -06005776 && (builder.isVector(left) || builder.isMatrix(left) || builder.isAggregate(left))) {
5777 spv::Id result = builder.createCompositeCompare(decorations.precision, left, right, op == glslang::EOpEqual);
John Kessenichb9197c82019-08-11 07:41:45 -06005778 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005779 return result;
5780 }
John Kessenich140f3df2015-06-26 16:58:36 -06005781
5782 switch (op) {
5783 case glslang::EOpLessThan:
5784 if (isFloat)
5785 binOp = spv::OpFOrdLessThan;
5786 else if (isUnsigned)
5787 binOp = spv::OpULessThan;
5788 else
5789 binOp = spv::OpSLessThan;
5790 break;
5791 case glslang::EOpGreaterThan:
5792 if (isFloat)
5793 binOp = spv::OpFOrdGreaterThan;
5794 else if (isUnsigned)
5795 binOp = spv::OpUGreaterThan;
5796 else
5797 binOp = spv::OpSGreaterThan;
5798 break;
5799 case glslang::EOpLessThanEqual:
5800 if (isFloat)
5801 binOp = spv::OpFOrdLessThanEqual;
5802 else if (isUnsigned)
5803 binOp = spv::OpULessThanEqual;
5804 else
5805 binOp = spv::OpSLessThanEqual;
5806 break;
5807 case glslang::EOpGreaterThanEqual:
5808 if (isFloat)
5809 binOp = spv::OpFOrdGreaterThanEqual;
5810 else if (isUnsigned)
5811 binOp = spv::OpUGreaterThanEqual;
5812 else
5813 binOp = spv::OpSGreaterThanEqual;
5814 break;
5815 case glslang::EOpEqual:
5816 case glslang::EOpVectorEqual:
5817 if (isFloat)
5818 binOp = spv::OpFOrdEqual;
Rex Xuc7d36562016-04-27 08:15:37 +08005819 else if (isBool)
5820 binOp = spv::OpLogicalEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06005821 else
5822 binOp = spv::OpIEqual;
5823 break;
5824 case glslang::EOpNotEqual:
5825 case glslang::EOpVectorNotEqual:
5826 if (isFloat)
Graeme Leese65ce5662020-06-05 13:32:51 +01005827 binOp = spv::OpFUnordNotEqual;
Rex Xuc7d36562016-04-27 08:15:37 +08005828 else if (isBool)
5829 binOp = spv::OpLogicalNotEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06005830 else
5831 binOp = spv::OpINotEqual;
5832 break;
5833 default:
5834 break;
5835 }
5836
qining25262b32016-05-06 17:25:16 -04005837 if (binOp != spv::OpNop) {
5838 spv::Id result = builder.createBinOp(binOp, typeId, left, right);
John Kessenichb9197c82019-08-11 07:41:45 -06005839 decorations.addNoContraction(builder, result);
5840 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005841 return builder.setPrecision(result, decorations.precision);
qining25262b32016-05-06 17:25:16 -04005842 }
John Kessenich140f3df2015-06-26 16:58:36 -06005843
5844 return 0;
5845}
5846
John Kessenich04bb8a02015-12-12 12:28:14 -07005847//
5848// Translate AST matrix operation to SPV operation, already having SPV-based operands/types.
5849// These can be any of:
5850//
5851// matrix * scalar
5852// scalar * matrix
5853// matrix * matrix linear algebraic
5854// matrix * vector
5855// vector * matrix
5856// matrix * matrix componentwise
5857// matrix op matrix op in {+, -, /}
5858// matrix op scalar op in {+, -, /}
5859// scalar op matrix op in {+, -, /}
5860//
John Kessenichead86222018-03-28 18:01:20 -06005861spv::Id TGlslangToSpvTraverser::createBinaryMatrixOperation(spv::Op op, OpDecorations& decorations, spv::Id typeId,
5862 spv::Id left, spv::Id right)
John Kessenich04bb8a02015-12-12 12:28:14 -07005863{
5864 bool firstClass = true;
5865
5866 // First, handle first-class matrix operations (* and matrix/scalar)
5867 switch (op) {
5868 case spv::OpFDiv:
5869 if (builder.isMatrix(left) && builder.isScalar(right)) {
5870 // turn matrix / scalar into a multiply...
Neil Robertseddb1312018-03-13 10:57:59 +01005871 spv::Id resultType = builder.getTypeId(right);
5872 right = builder.createBinOp(spv::OpFDiv, resultType, builder.makeFpConstant(resultType, 1.0), right);
John Kessenich04bb8a02015-12-12 12:28:14 -07005873 op = spv::OpMatrixTimesScalar;
5874 } else
5875 firstClass = false;
5876 break;
5877 case spv::OpMatrixTimesScalar:
Jeff Bolz4605e2e2019-02-19 13:10:32 -06005878 if (builder.isMatrix(right) || builder.isCooperativeMatrix(right))
John Kessenich04bb8a02015-12-12 12:28:14 -07005879 std::swap(left, right);
5880 assert(builder.isScalar(right));
5881 break;
5882 case spv::OpVectorTimesMatrix:
5883 assert(builder.isVector(left));
5884 assert(builder.isMatrix(right));
5885 break;
5886 case spv::OpMatrixTimesVector:
5887 assert(builder.isMatrix(left));
5888 assert(builder.isVector(right));
5889 break;
5890 case spv::OpMatrixTimesMatrix:
5891 assert(builder.isMatrix(left));
5892 assert(builder.isMatrix(right));
5893 break;
5894 default:
5895 firstClass = false;
5896 break;
5897 }
5898
Jeff Bolz4605e2e2019-02-19 13:10:32 -06005899 if (builder.isCooperativeMatrix(left) || builder.isCooperativeMatrix(right))
5900 firstClass = true;
5901
qining25262b32016-05-06 17:25:16 -04005902 if (firstClass) {
5903 spv::Id result = builder.createBinOp(op, typeId, left, right);
John Kessenichb9197c82019-08-11 07:41:45 -06005904 decorations.addNoContraction(builder, result);
5905 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005906 return builder.setPrecision(result, decorations.precision);
qining25262b32016-05-06 17:25:16 -04005907 }
John Kessenich04bb8a02015-12-12 12:28:14 -07005908
LoopDawg592860c2016-06-09 08:57:35 -06005909 // Handle component-wise +, -, *, %, and / for all combinations of type.
John Kessenich04bb8a02015-12-12 12:28:14 -07005910 // The result type of all of them is the same type as the (a) matrix operand.
5911 // The algorithm is to:
5912 // - break the matrix(es) into vectors
5913 // - smear any scalar to a vector
5914 // - do vector operations
5915 // - make a matrix out the vector results
5916 switch (op) {
5917 case spv::OpFAdd:
5918 case spv::OpFSub:
5919 case spv::OpFDiv:
LoopDawg592860c2016-06-09 08:57:35 -06005920 case spv::OpFMod:
John Kessenich04bb8a02015-12-12 12:28:14 -07005921 case spv::OpFMul:
5922 {
5923 // one time set up...
5924 bool leftMat = builder.isMatrix(left);
5925 bool rightMat = builder.isMatrix(right);
5926 unsigned int numCols = leftMat ? builder.getNumColumns(left) : builder.getNumColumns(right);
5927 int numRows = leftMat ? builder.getNumRows(left) : builder.getNumRows(right);
5928 spv::Id scalarType = builder.getScalarTypeId(typeId);
5929 spv::Id vecType = builder.makeVectorType(scalarType, numRows);
5930 std::vector<spv::Id> results;
5931 spv::Id smearVec = spv::NoResult;
5932 if (builder.isScalar(left))
John Kessenichead86222018-03-28 18:01:20 -06005933 smearVec = builder.smearScalar(decorations.precision, left, vecType);
John Kessenich04bb8a02015-12-12 12:28:14 -07005934 else if (builder.isScalar(right))
John Kessenichead86222018-03-28 18:01:20 -06005935 smearVec = builder.smearScalar(decorations.precision, right, vecType);
John Kessenich04bb8a02015-12-12 12:28:14 -07005936
5937 // do each vector op
5938 for (unsigned int c = 0; c < numCols; ++c) {
5939 std::vector<unsigned int> indexes;
5940 indexes.push_back(c);
5941 spv::Id leftVec = leftMat ? builder.createCompositeExtract( left, vecType, indexes) : smearVec;
5942 spv::Id rightVec = rightMat ? builder.createCompositeExtract(right, vecType, indexes) : smearVec;
qining25262b32016-05-06 17:25:16 -04005943 spv::Id result = builder.createBinOp(op, vecType, leftVec, rightVec);
John Kessenichb9197c82019-08-11 07:41:45 -06005944 decorations.addNoContraction(builder, result);
5945 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005946 results.push_back(builder.setPrecision(result, decorations.precision));
John Kessenich04bb8a02015-12-12 12:28:14 -07005947 }
5948
5949 // put the pieces together
John Kessenichead86222018-03-28 18:01:20 -06005950 spv::Id result = builder.setPrecision(builder.createCompositeConstruct(typeId, results), decorations.precision);
John Kessenichb9197c82019-08-11 07:41:45 -06005951 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06005952 return result;
John Kessenich04bb8a02015-12-12 12:28:14 -07005953 }
5954 default:
5955 assert(0);
5956 return spv::NoResult;
5957 }
5958}
5959
John Kessenichead86222018-03-28 18:01:20 -06005960spv::Id TGlslangToSpvTraverser::createUnaryOperation(glslang::TOperator op, OpDecorations& decorations, spv::Id typeId,
John Kessenich8985fc92020-03-03 10:25:07 -07005961 spv::Id operand, glslang::TBasicType typeProxy, const spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags)
John Kessenich140f3df2015-06-26 16:58:36 -06005962{
5963 spv::Op unaryOp = spv::OpNop;
Rex Xu9d93a232016-05-05 12:30:44 +08005964 int extBuiltins = -1;
John Kessenich140f3df2015-06-26 16:58:36 -06005965 int libCall = -1;
John Kessenich66011cb2018-03-06 16:12:04 -07005966 bool isUnsigned = isTypeUnsignedInt(typeProxy);
5967 bool isFloat = isTypeFloat(typeProxy);
John Kessenich140f3df2015-06-26 16:58:36 -06005968
5969 switch (op) {
5970 case glslang::EOpNegative:
John Kessenich7a53f762016-01-20 11:19:27 -07005971 if (isFloat) {
John Kessenich140f3df2015-06-26 16:58:36 -06005972 unaryOp = spv::OpFNegate;
John Kessenich7a53f762016-01-20 11:19:27 -07005973 if (builder.isMatrixType(typeId))
John Kessenichead86222018-03-28 18:01:20 -06005974 return createUnaryMatrixOperation(unaryOp, decorations, typeId, operand, typeProxy);
John Kessenich7a53f762016-01-20 11:19:27 -07005975 } else
John Kessenich140f3df2015-06-26 16:58:36 -06005976 unaryOp = spv::OpSNegate;
5977 break;
5978
5979 case glslang::EOpLogicalNot:
5980 case glslang::EOpVectorLogicalNot:
John Kessenich5e4b1242015-08-06 22:53:06 -06005981 unaryOp = spv::OpLogicalNot;
5982 break;
John Kessenich140f3df2015-06-26 16:58:36 -06005983 case glslang::EOpBitwiseNot:
5984 unaryOp = spv::OpNot;
5985 break;
John Kessenich5e4b1242015-08-06 22:53:06 -06005986
John Kessenich140f3df2015-06-26 16:58:36 -06005987 case glslang::EOpDeterminant:
John Kessenich5e4b1242015-08-06 22:53:06 -06005988 libCall = spv::GLSLstd450Determinant;
John Kessenich140f3df2015-06-26 16:58:36 -06005989 break;
5990 case glslang::EOpMatrixInverse:
John Kessenich5e4b1242015-08-06 22:53:06 -06005991 libCall = spv::GLSLstd450MatrixInverse;
John Kessenich140f3df2015-06-26 16:58:36 -06005992 break;
5993 case glslang::EOpTranspose:
5994 unaryOp = spv::OpTranspose;
5995 break;
5996
5997 case glslang::EOpRadians:
John Kessenich5e4b1242015-08-06 22:53:06 -06005998 libCall = spv::GLSLstd450Radians;
John Kessenich140f3df2015-06-26 16:58:36 -06005999 break;
6000 case glslang::EOpDegrees:
John Kessenich5e4b1242015-08-06 22:53:06 -06006001 libCall = spv::GLSLstd450Degrees;
John Kessenich140f3df2015-06-26 16:58:36 -06006002 break;
6003 case glslang::EOpSin:
John Kessenich5e4b1242015-08-06 22:53:06 -06006004 libCall = spv::GLSLstd450Sin;
John Kessenich140f3df2015-06-26 16:58:36 -06006005 break;
6006 case glslang::EOpCos:
John Kessenich5e4b1242015-08-06 22:53:06 -06006007 libCall = spv::GLSLstd450Cos;
John Kessenich140f3df2015-06-26 16:58:36 -06006008 break;
6009 case glslang::EOpTan:
John Kessenich5e4b1242015-08-06 22:53:06 -06006010 libCall = spv::GLSLstd450Tan;
John Kessenich140f3df2015-06-26 16:58:36 -06006011 break;
6012 case glslang::EOpAcos:
John Kessenich5e4b1242015-08-06 22:53:06 -06006013 libCall = spv::GLSLstd450Acos;
John Kessenich140f3df2015-06-26 16:58:36 -06006014 break;
6015 case glslang::EOpAsin:
John Kessenich5e4b1242015-08-06 22:53:06 -06006016 libCall = spv::GLSLstd450Asin;
John Kessenich140f3df2015-06-26 16:58:36 -06006017 break;
6018 case glslang::EOpAtan:
John Kessenich5e4b1242015-08-06 22:53:06 -06006019 libCall = spv::GLSLstd450Atan;
John Kessenich140f3df2015-06-26 16:58:36 -06006020 break;
6021
6022 case glslang::EOpAcosh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006023 libCall = spv::GLSLstd450Acosh;
John Kessenich140f3df2015-06-26 16:58:36 -06006024 break;
6025 case glslang::EOpAsinh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006026 libCall = spv::GLSLstd450Asinh;
John Kessenich140f3df2015-06-26 16:58:36 -06006027 break;
6028 case glslang::EOpAtanh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006029 libCall = spv::GLSLstd450Atanh;
John Kessenich140f3df2015-06-26 16:58:36 -06006030 break;
6031 case glslang::EOpTanh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006032 libCall = spv::GLSLstd450Tanh;
John Kessenich140f3df2015-06-26 16:58:36 -06006033 break;
6034 case glslang::EOpCosh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006035 libCall = spv::GLSLstd450Cosh;
John Kessenich140f3df2015-06-26 16:58:36 -06006036 break;
6037 case glslang::EOpSinh:
John Kessenich5e4b1242015-08-06 22:53:06 -06006038 libCall = spv::GLSLstd450Sinh;
John Kessenich140f3df2015-06-26 16:58:36 -06006039 break;
6040
6041 case glslang::EOpLength:
John Kessenich5e4b1242015-08-06 22:53:06 -06006042 libCall = spv::GLSLstd450Length;
John Kessenich140f3df2015-06-26 16:58:36 -06006043 break;
6044 case glslang::EOpNormalize:
John Kessenich5e4b1242015-08-06 22:53:06 -06006045 libCall = spv::GLSLstd450Normalize;
John Kessenich140f3df2015-06-26 16:58:36 -06006046 break;
6047
6048 case glslang::EOpExp:
John Kessenich5e4b1242015-08-06 22:53:06 -06006049 libCall = spv::GLSLstd450Exp;
John Kessenich140f3df2015-06-26 16:58:36 -06006050 break;
6051 case glslang::EOpLog:
John Kessenich5e4b1242015-08-06 22:53:06 -06006052 libCall = spv::GLSLstd450Log;
John Kessenich140f3df2015-06-26 16:58:36 -06006053 break;
6054 case glslang::EOpExp2:
John Kessenich5e4b1242015-08-06 22:53:06 -06006055 libCall = spv::GLSLstd450Exp2;
John Kessenich140f3df2015-06-26 16:58:36 -06006056 break;
6057 case glslang::EOpLog2:
John Kessenich5e4b1242015-08-06 22:53:06 -06006058 libCall = spv::GLSLstd450Log2;
John Kessenich140f3df2015-06-26 16:58:36 -06006059 break;
6060 case glslang::EOpSqrt:
John Kessenich5e4b1242015-08-06 22:53:06 -06006061 libCall = spv::GLSLstd450Sqrt;
John Kessenich140f3df2015-06-26 16:58:36 -06006062 break;
6063 case glslang::EOpInverseSqrt:
John Kessenich5e4b1242015-08-06 22:53:06 -06006064 libCall = spv::GLSLstd450InverseSqrt;
John Kessenich140f3df2015-06-26 16:58:36 -06006065 break;
6066
6067 case glslang::EOpFloor:
John Kessenich5e4b1242015-08-06 22:53:06 -06006068 libCall = spv::GLSLstd450Floor;
John Kessenich140f3df2015-06-26 16:58:36 -06006069 break;
6070 case glslang::EOpTrunc:
John Kessenich5e4b1242015-08-06 22:53:06 -06006071 libCall = spv::GLSLstd450Trunc;
John Kessenich140f3df2015-06-26 16:58:36 -06006072 break;
6073 case glslang::EOpRound:
John Kessenich5e4b1242015-08-06 22:53:06 -06006074 libCall = spv::GLSLstd450Round;
John Kessenich140f3df2015-06-26 16:58:36 -06006075 break;
6076 case glslang::EOpRoundEven:
John Kessenich5e4b1242015-08-06 22:53:06 -06006077 libCall = spv::GLSLstd450RoundEven;
John Kessenich140f3df2015-06-26 16:58:36 -06006078 break;
6079 case glslang::EOpCeil:
John Kessenich5e4b1242015-08-06 22:53:06 -06006080 libCall = spv::GLSLstd450Ceil;
John Kessenich140f3df2015-06-26 16:58:36 -06006081 break;
6082 case glslang::EOpFract:
John Kessenich5e4b1242015-08-06 22:53:06 -06006083 libCall = spv::GLSLstd450Fract;
John Kessenich140f3df2015-06-26 16:58:36 -06006084 break;
6085
6086 case glslang::EOpIsNan:
6087 unaryOp = spv::OpIsNan;
6088 break;
6089 case glslang::EOpIsInf:
6090 unaryOp = spv::OpIsInf;
6091 break;
LoopDawg592860c2016-06-09 08:57:35 -06006092 case glslang::EOpIsFinite:
6093 unaryOp = spv::OpIsFinite;
6094 break;
John Kessenich140f3df2015-06-26 16:58:36 -06006095
Rex Xucbc426e2015-12-15 16:03:10 +08006096 case glslang::EOpFloatBitsToInt:
6097 case glslang::EOpFloatBitsToUint:
6098 case glslang::EOpIntBitsToFloat:
6099 case glslang::EOpUintBitsToFloat:
Rex Xu8ff43de2016-04-22 16:51:45 +08006100 case glslang::EOpDoubleBitsToInt64:
6101 case glslang::EOpDoubleBitsToUint64:
6102 case glslang::EOpInt64BitsToDouble:
6103 case glslang::EOpUint64BitsToDouble:
Rex Xucabbb782017-03-24 13:41:14 +08006104 case glslang::EOpFloat16BitsToInt16:
6105 case glslang::EOpFloat16BitsToUint16:
6106 case glslang::EOpInt16BitsToFloat16:
6107 case glslang::EOpUint16BitsToFloat16:
Rex Xucbc426e2015-12-15 16:03:10 +08006108 unaryOp = spv::OpBitcast;
6109 break;
6110
John Kessenich140f3df2015-06-26 16:58:36 -06006111 case glslang::EOpPackSnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006112 libCall = spv::GLSLstd450PackSnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006113 break;
6114 case glslang::EOpUnpackSnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006115 libCall = spv::GLSLstd450UnpackSnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006116 break;
6117 case glslang::EOpPackUnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006118 libCall = spv::GLSLstd450PackUnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006119 break;
6120 case glslang::EOpUnpackUnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006121 libCall = spv::GLSLstd450UnpackUnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006122 break;
6123 case glslang::EOpPackHalf2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006124 libCall = spv::GLSLstd450PackHalf2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006125 break;
6126 case glslang::EOpUnpackHalf2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06006127 libCall = spv::GLSLstd450UnpackHalf2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06006128 break;
John Kessenichb9197c82019-08-11 07:41:45 -06006129#ifndef GLSLANG_WEB
John Kessenichfc51d282015-08-19 13:34:18 -06006130 case glslang::EOpPackSnorm4x8:
6131 libCall = spv::GLSLstd450PackSnorm4x8;
6132 break;
6133 case glslang::EOpUnpackSnorm4x8:
6134 libCall = spv::GLSLstd450UnpackSnorm4x8;
6135 break;
6136 case glslang::EOpPackUnorm4x8:
6137 libCall = spv::GLSLstd450PackUnorm4x8;
6138 break;
6139 case glslang::EOpUnpackUnorm4x8:
6140 libCall = spv::GLSLstd450UnpackUnorm4x8;
6141 break;
6142 case glslang::EOpPackDouble2x32:
6143 libCall = spv::GLSLstd450PackDouble2x32;
6144 break;
6145 case glslang::EOpUnpackDouble2x32:
6146 libCall = spv::GLSLstd450UnpackDouble2x32;
6147 break;
John Kessenichb9197c82019-08-11 07:41:45 -06006148#endif
John Kessenich140f3df2015-06-26 16:58:36 -06006149
Rex Xu8ff43de2016-04-22 16:51:45 +08006150 case glslang::EOpPackInt2x32:
6151 case glslang::EOpUnpackInt2x32:
6152 case glslang::EOpPackUint2x32:
6153 case glslang::EOpUnpackUint2x32:
John Kessenich66011cb2018-03-06 16:12:04 -07006154 case glslang::EOpPack16:
6155 case glslang::EOpPack32:
6156 case glslang::EOpPack64:
6157 case glslang::EOpUnpack32:
6158 case glslang::EOpUnpack16:
6159 case glslang::EOpUnpack8:
Rex Xucabbb782017-03-24 13:41:14 +08006160 case glslang::EOpPackInt2x16:
6161 case glslang::EOpUnpackInt2x16:
6162 case glslang::EOpPackUint2x16:
6163 case glslang::EOpUnpackUint2x16:
6164 case glslang::EOpPackInt4x16:
6165 case glslang::EOpUnpackInt4x16:
6166 case glslang::EOpPackUint4x16:
6167 case glslang::EOpUnpackUint4x16:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006168 case glslang::EOpPackFloat2x16:
6169 case glslang::EOpUnpackFloat2x16:
6170 unaryOp = spv::OpBitcast;
6171 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006172
John Kessenich140f3df2015-06-26 16:58:36 -06006173 case glslang::EOpDPdx:
6174 unaryOp = spv::OpDPdx;
6175 break;
6176 case glslang::EOpDPdy:
6177 unaryOp = spv::OpDPdy;
6178 break;
6179 case glslang::EOpFwidth:
6180 unaryOp = spv::OpFwidth;
6181 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06006182
John Kessenich140f3df2015-06-26 16:58:36 -06006183 case glslang::EOpAny:
6184 unaryOp = spv::OpAny;
6185 break;
6186 case glslang::EOpAll:
6187 unaryOp = spv::OpAll;
6188 break;
6189
6190 case glslang::EOpAbs:
John Kessenich5e4b1242015-08-06 22:53:06 -06006191 if (isFloat)
6192 libCall = spv::GLSLstd450FAbs;
6193 else
6194 libCall = spv::GLSLstd450SAbs;
John Kessenich140f3df2015-06-26 16:58:36 -06006195 break;
6196 case glslang::EOpSign:
John Kessenich5e4b1242015-08-06 22:53:06 -06006197 if (isFloat)
6198 libCall = spv::GLSLstd450FSign;
6199 else
6200 libCall = spv::GLSLstd450SSign;
John Kessenich140f3df2015-06-26 16:58:36 -06006201 break;
6202
John Kessenicha28f7a72019-08-06 07:00:58 -06006203#ifndef GLSLANG_WEB
6204 case glslang::EOpDPdxFine:
6205 unaryOp = spv::OpDPdxFine;
6206 break;
6207 case glslang::EOpDPdyFine:
6208 unaryOp = spv::OpDPdyFine;
6209 break;
6210 case glslang::EOpFwidthFine:
6211 unaryOp = spv::OpFwidthFine;
6212 break;
6213 case glslang::EOpDPdxCoarse:
6214 unaryOp = spv::OpDPdxCoarse;
6215 break;
6216 case glslang::EOpDPdyCoarse:
6217 unaryOp = spv::OpDPdyCoarse;
6218 break;
6219 case glslang::EOpFwidthCoarse:
6220 unaryOp = spv::OpFwidthCoarse;
6221 break;
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04006222 case glslang::EOpRayQueryProceed:
6223 unaryOp = spv::OpRayQueryProceedKHR;
6224 break;
6225 case glslang::EOpRayQueryGetRayTMin:
6226 unaryOp = spv::OpRayQueryGetRayTMinKHR;
6227 break;
6228 case glslang::EOpRayQueryGetRayFlags:
6229 unaryOp = spv::OpRayQueryGetRayFlagsKHR;
6230 break;
6231 case glslang::EOpRayQueryGetWorldRayOrigin:
6232 unaryOp = spv::OpRayQueryGetWorldRayOriginKHR;
6233 break;
6234 case glslang::EOpRayQueryGetWorldRayDirection:
6235 unaryOp = spv::OpRayQueryGetWorldRayDirectionKHR;
6236 break;
6237 case glslang::EOpRayQueryGetIntersectionCandidateAABBOpaque:
6238 unaryOp = spv::OpRayQueryGetIntersectionCandidateAABBOpaqueKHR;
6239 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06006240 case glslang::EOpInterpolateAtCentroid:
6241 if (typeProxy == glslang::EbtFloat16)
6242 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
6243 libCall = spv::GLSLstd450InterpolateAtCentroid;
6244 break;
John Kessenichfc51d282015-08-19 13:34:18 -06006245 case glslang::EOpAtomicCounterIncrement:
6246 case glslang::EOpAtomicCounterDecrement:
6247 case glslang::EOpAtomicCounter:
6248 {
6249 // Handle all of the atomics in one place, in createAtomicOperation()
6250 std::vector<spv::Id> operands;
6251 operands.push_back(operand);
Jeff Bolz38a52fc2019-06-14 09:56:28 -05006252 return createAtomicOperation(op, decorations.precision, typeId, operands, typeProxy, lvalueCoherentFlags);
John Kessenichfc51d282015-08-19 13:34:18 -06006253 }
6254
John Kessenichfc51d282015-08-19 13:34:18 -06006255 case glslang::EOpBitFieldReverse:
6256 unaryOp = spv::OpBitReverse;
6257 break;
6258 case glslang::EOpBitCount:
6259 unaryOp = spv::OpBitCount;
6260 break;
6261 case glslang::EOpFindLSB:
John Kessenich55e7d112015-11-15 21:33:39 -07006262 libCall = spv::GLSLstd450FindILsb;
John Kessenichfc51d282015-08-19 13:34:18 -06006263 break;
6264 case glslang::EOpFindMSB:
John Kessenich55e7d112015-11-15 21:33:39 -07006265 if (isUnsigned)
6266 libCall = spv::GLSLstd450FindUMsb;
6267 else
6268 libCall = spv::GLSLstd450FindSMsb;
John Kessenichfc51d282015-08-19 13:34:18 -06006269 break;
6270
Ian Romanickb3bd4022019-01-21 08:57:25 -08006271 case glslang::EOpCountLeadingZeros:
6272 builder.addCapability(spv::CapabilityIntegerFunctions2INTEL);
6273 builder.addExtension("SPV_INTEL_shader_integer_functions2");
6274 unaryOp = spv::OpUCountLeadingZerosINTEL;
6275 break;
6276
6277 case glslang::EOpCountTrailingZeros:
6278 builder.addCapability(spv::CapabilityIntegerFunctions2INTEL);
6279 builder.addExtension("SPV_INTEL_shader_integer_functions2");
6280 unaryOp = spv::OpUCountTrailingZerosINTEL;
6281 break;
6282
Rex Xu574ab042016-04-14 16:53:07 +08006283 case glslang::EOpBallot:
6284 case glslang::EOpReadFirstInvocation:
Rex Xu338b1852016-05-05 20:38:33 +08006285 case glslang::EOpAnyInvocation:
Rex Xu338b1852016-05-05 20:38:33 +08006286 case glslang::EOpAllInvocations:
Rex Xu338b1852016-05-05 20:38:33 +08006287 case glslang::EOpAllInvocationsEqual:
Rex Xu9d93a232016-05-05 12:30:44 +08006288 case glslang::EOpMinInvocations:
6289 case glslang::EOpMaxInvocations:
6290 case glslang::EOpAddInvocations:
6291 case glslang::EOpMinInvocationsNonUniform:
6292 case glslang::EOpMaxInvocationsNonUniform:
6293 case glslang::EOpAddInvocationsNonUniform:
Rex Xu430ef402016-10-14 17:22:23 +08006294 case glslang::EOpMinInvocationsInclusiveScan:
6295 case glslang::EOpMaxInvocationsInclusiveScan:
6296 case glslang::EOpAddInvocationsInclusiveScan:
6297 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
6298 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
6299 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
6300 case glslang::EOpMinInvocationsExclusiveScan:
6301 case glslang::EOpMaxInvocationsExclusiveScan:
6302 case glslang::EOpAddInvocationsExclusiveScan:
6303 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
6304 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
6305 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
Rex Xu51596642016-09-21 18:56:12 +08006306 {
6307 std::vector<spv::Id> operands;
6308 operands.push_back(operand);
6309 return createInvocationsOperation(op, typeId, operands, typeProxy);
6310 }
John Kessenich66011cb2018-03-06 16:12:04 -07006311 case glslang::EOpSubgroupAll:
6312 case glslang::EOpSubgroupAny:
6313 case glslang::EOpSubgroupAllEqual:
6314 case glslang::EOpSubgroupBroadcastFirst:
6315 case glslang::EOpSubgroupBallot:
6316 case glslang::EOpSubgroupInverseBallot:
6317 case glslang::EOpSubgroupBallotBitCount:
6318 case glslang::EOpSubgroupBallotInclusiveBitCount:
6319 case glslang::EOpSubgroupBallotExclusiveBitCount:
6320 case glslang::EOpSubgroupBallotFindLSB:
6321 case glslang::EOpSubgroupBallotFindMSB:
6322 case glslang::EOpSubgroupAdd:
6323 case glslang::EOpSubgroupMul:
6324 case glslang::EOpSubgroupMin:
6325 case glslang::EOpSubgroupMax:
6326 case glslang::EOpSubgroupAnd:
6327 case glslang::EOpSubgroupOr:
6328 case glslang::EOpSubgroupXor:
6329 case glslang::EOpSubgroupInclusiveAdd:
6330 case glslang::EOpSubgroupInclusiveMul:
6331 case glslang::EOpSubgroupInclusiveMin:
6332 case glslang::EOpSubgroupInclusiveMax:
6333 case glslang::EOpSubgroupInclusiveAnd:
6334 case glslang::EOpSubgroupInclusiveOr:
6335 case glslang::EOpSubgroupInclusiveXor:
6336 case glslang::EOpSubgroupExclusiveAdd:
6337 case glslang::EOpSubgroupExclusiveMul:
6338 case glslang::EOpSubgroupExclusiveMin:
6339 case glslang::EOpSubgroupExclusiveMax:
6340 case glslang::EOpSubgroupExclusiveAnd:
6341 case glslang::EOpSubgroupExclusiveOr:
6342 case glslang::EOpSubgroupExclusiveXor:
6343 case glslang::EOpSubgroupQuadSwapHorizontal:
6344 case glslang::EOpSubgroupQuadSwapVertical:
6345 case glslang::EOpSubgroupQuadSwapDiagonal: {
6346 std::vector<spv::Id> operands;
6347 operands.push_back(operand);
6348 return createSubgroupOperation(op, typeId, operands, typeProxy);
6349 }
Rex Xu9d93a232016-05-05 12:30:44 +08006350 case glslang::EOpMbcnt:
6351 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
6352 libCall = spv::MbcntAMD;
6353 break;
6354
6355 case glslang::EOpCubeFaceIndex:
6356 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_gcn_shader);
6357 libCall = spv::CubeFaceIndexAMD;
6358 break;
6359
6360 case glslang::EOpCubeFaceCoord:
6361 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_gcn_shader);
6362 libCall = spv::CubeFaceCoordAMD;
6363 break;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006364 case glslang::EOpSubgroupPartition:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006365 unaryOp = spv::OpGroupNonUniformPartitionNV;
6366 break;
Jeff Bolz9f2aec42019-01-06 17:58:04 -06006367 case glslang::EOpConstructReference:
6368 unaryOp = spv::OpBitcast;
6369 break;
Daniel Kochffccefd2020-11-23 15:41:27 -05006370
6371 case glslang::EOpConvUint64ToAccStruct:
6372 case glslang::EOpConvUvec2ToAccStruct:
6373 unaryOp = spv::OpConvertUToAccelerationStructureKHR;
6374 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06006375#endif
Jeff Bolz88220d52019-05-08 10:24:46 -05006376
6377 case glslang::EOpCopyObject:
6378 unaryOp = spv::OpCopyObject;
6379 break;
6380
John Kessenich140f3df2015-06-26 16:58:36 -06006381 default:
6382 return 0;
6383 }
6384
6385 spv::Id id;
6386 if (libCall >= 0) {
6387 std::vector<spv::Id> args;
6388 args.push_back(operand);
Rex Xu9d93a232016-05-05 12:30:44 +08006389 id = builder.createBuiltinCall(typeId, extBuiltins >= 0 ? extBuiltins : stdBuiltins, libCall, args);
Rex Xu338b1852016-05-05 20:38:33 +08006390 } else {
John Kessenich91cef522016-05-05 16:45:40 -06006391 id = builder.createUnaryOp(unaryOp, typeId, operand);
Rex Xu338b1852016-05-05 20:38:33 +08006392 }
John Kessenich140f3df2015-06-26 16:58:36 -06006393
John Kessenichb9197c82019-08-11 07:41:45 -06006394 decorations.addNoContraction(builder, id);
6395 decorations.addNonUniform(builder, id);
John Kessenichead86222018-03-28 18:01:20 -06006396 return builder.setPrecision(id, decorations.precision);
John Kessenich140f3df2015-06-26 16:58:36 -06006397}
6398
John Kessenich7a53f762016-01-20 11:19:27 -07006399// Create a unary operation on a matrix
John Kessenichead86222018-03-28 18:01:20 -06006400spv::Id TGlslangToSpvTraverser::createUnaryMatrixOperation(spv::Op op, OpDecorations& decorations, spv::Id typeId,
6401 spv::Id operand, glslang::TBasicType /* typeProxy */)
John Kessenich7a53f762016-01-20 11:19:27 -07006402{
6403 // Handle unary operations vector by vector.
6404 // The result type is the same type as the original type.
6405 // The algorithm is to:
6406 // - break the matrix into vectors
6407 // - apply the operation to each vector
6408 // - make a matrix out the vector results
6409
6410 // get the types sorted out
6411 int numCols = builder.getNumColumns(operand);
6412 int numRows = builder.getNumRows(operand);
Rex Xuc1992e52016-05-17 18:57:18 +08006413 spv::Id srcVecType = builder.makeVectorType(builder.getScalarTypeId(builder.getTypeId(operand)), numRows);
6414 spv::Id destVecType = builder.makeVectorType(builder.getScalarTypeId(typeId), numRows);
John Kessenich7a53f762016-01-20 11:19:27 -07006415 std::vector<spv::Id> results;
6416
6417 // do each vector op
6418 for (int c = 0; c < numCols; ++c) {
6419 std::vector<unsigned int> indexes;
6420 indexes.push_back(c);
Rex Xuc1992e52016-05-17 18:57:18 +08006421 spv::Id srcVec = builder.createCompositeExtract(operand, srcVecType, indexes);
6422 spv::Id destVec = builder.createUnaryOp(op, destVecType, srcVec);
John Kessenichb9197c82019-08-11 07:41:45 -06006423 decorations.addNoContraction(builder, destVec);
6424 decorations.addNonUniform(builder, destVec);
John Kessenichead86222018-03-28 18:01:20 -06006425 results.push_back(builder.setPrecision(destVec, decorations.precision));
John Kessenich7a53f762016-01-20 11:19:27 -07006426 }
6427
6428 // put the pieces together
John Kessenichead86222018-03-28 18:01:20 -06006429 spv::Id result = builder.setPrecision(builder.createCompositeConstruct(typeId, results), decorations.precision);
John Kessenichb9197c82019-08-11 07:41:45 -06006430 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06006431 return result;
John Kessenich7a53f762016-01-20 11:19:27 -07006432}
6433
John Kessenichad7645f2018-06-04 19:11:25 -06006434// For converting integers where both the bitwidth and the signedness could
6435// change, but only do the width change here. The caller is still responsible
6436// for the signedness conversion.
6437spv::Id TGlslangToSpvTraverser::createIntWidthConversion(glslang::TOperator op, spv::Id operand, int vectorSize)
John Kessenich66011cb2018-03-06 16:12:04 -07006438{
John Kessenichad7645f2018-06-04 19:11:25 -06006439 // Get the result type width, based on the type to convert to.
6440 int width = 32;
John Kessenich66011cb2018-03-06 16:12:04 -07006441 switch(op) {
John Kessenichad7645f2018-06-04 19:11:25 -06006442 case glslang::EOpConvInt16ToUint8:
6443 case glslang::EOpConvIntToUint8:
6444 case glslang::EOpConvInt64ToUint8:
6445 case glslang::EOpConvUint16ToInt8:
6446 case glslang::EOpConvUintToInt8:
6447 case glslang::EOpConvUint64ToInt8:
6448 width = 8;
6449 break;
John Kessenich66011cb2018-03-06 16:12:04 -07006450 case glslang::EOpConvInt8ToUint16:
John Kessenichad7645f2018-06-04 19:11:25 -06006451 case glslang::EOpConvIntToUint16:
6452 case glslang::EOpConvInt64ToUint16:
6453 case glslang::EOpConvUint8ToInt16:
6454 case glslang::EOpConvUintToInt16:
6455 case glslang::EOpConvUint64ToInt16:
6456 width = 16;
John Kessenich66011cb2018-03-06 16:12:04 -07006457 break;
6458 case glslang::EOpConvInt8ToUint:
John Kessenichad7645f2018-06-04 19:11:25 -06006459 case glslang::EOpConvInt16ToUint:
6460 case glslang::EOpConvInt64ToUint:
6461 case glslang::EOpConvUint8ToInt:
6462 case glslang::EOpConvUint16ToInt:
6463 case glslang::EOpConvUint64ToInt:
6464 width = 32;
John Kessenich66011cb2018-03-06 16:12:04 -07006465 break;
6466 case glslang::EOpConvInt8ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006467 case glslang::EOpConvInt16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006468 case glslang::EOpConvIntToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006469 case glslang::EOpConvUint8ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07006470 case glslang::EOpConvUint16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07006471 case glslang::EOpConvUintToInt64:
John Kessenichad7645f2018-06-04 19:11:25 -06006472 width = 64;
John Kessenich66011cb2018-03-06 16:12:04 -07006473 break;
6474
6475 default:
6476 assert(false && "Default missing");
6477 break;
6478 }
6479
John Kessenichad7645f2018-06-04 19:11:25 -06006480 // Get the conversion operation and result type,
6481 // based on the target width, but the source type.
6482 spv::Id type = spv::NoType;
6483 spv::Op convOp = spv::OpNop;
6484 switch(op) {
6485 case glslang::EOpConvInt8ToUint16:
6486 case glslang::EOpConvInt8ToUint:
6487 case glslang::EOpConvInt8ToUint64:
6488 case glslang::EOpConvInt16ToUint8:
6489 case glslang::EOpConvInt16ToUint:
6490 case glslang::EOpConvInt16ToUint64:
6491 case glslang::EOpConvIntToUint8:
6492 case glslang::EOpConvIntToUint16:
6493 case glslang::EOpConvIntToUint64:
6494 case glslang::EOpConvInt64ToUint8:
6495 case glslang::EOpConvInt64ToUint16:
6496 case glslang::EOpConvInt64ToUint:
6497 convOp = spv::OpSConvert;
6498 type = builder.makeIntType(width);
6499 break;
6500 default:
6501 convOp = spv::OpUConvert;
6502 type = builder.makeUintType(width);
6503 break;
6504 }
6505
John Kessenich66011cb2018-03-06 16:12:04 -07006506 if (vectorSize > 0)
6507 type = builder.makeVectorType(type, vectorSize);
6508
John Kessenichad7645f2018-06-04 19:11:25 -06006509 return builder.createUnaryOp(convOp, type, operand);
John Kessenich66011cb2018-03-06 16:12:04 -07006510}
6511
John Kessenichead86222018-03-28 18:01:20 -06006512spv::Id TGlslangToSpvTraverser::createConversion(glslang::TOperator op, OpDecorations& decorations, spv::Id destType,
6513 spv::Id operand, glslang::TBasicType typeProxy)
John Kessenich140f3df2015-06-26 16:58:36 -06006514{
6515 spv::Op convOp = spv::OpNop;
6516 spv::Id zero = 0;
6517 spv::Id one = 0;
6518
6519 int vectorSize = builder.isVectorType(destType) ? builder.getNumTypeComponents(destType) : 0;
6520
6521 switch (op) {
John Kessenich66011cb2018-03-06 16:12:04 -07006522 case glslang::EOpConvIntToBool:
6523 case glslang::EOpConvUintToBool:
6524 zero = builder.makeUintConstant(0);
6525 zero = makeSmearedConstant(zero, vectorSize);
6526 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
John Kessenich140f3df2015-06-26 16:58:36 -06006527 case glslang::EOpConvFloatToBool:
6528 zero = builder.makeFloatConstant(0.0F);
6529 zero = makeSmearedConstant(zero, vectorSize);
Graeme Leese65ce5662020-06-05 13:32:51 +01006530 return builder.createBinOp(spv::OpFUnordNotEqual, destType, operand, zero);
John Kessenich140f3df2015-06-26 16:58:36 -06006531 case glslang::EOpConvBoolToFloat:
6532 convOp = spv::OpSelect;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006533 zero = builder.makeFloatConstant(0.0F);
6534 one = builder.makeFloatConstant(1.0F);
John Kessenich140f3df2015-06-26 16:58:36 -06006535 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006536
John Kessenich140f3df2015-06-26 16:58:36 -06006537 case glslang::EOpConvBoolToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08006538 case glslang::EOpConvBoolToInt64:
John Kessenichb9197c82019-08-11 07:41:45 -06006539#ifndef GLSLANG_WEB
6540 if (op == glslang::EOpConvBoolToInt64) {
Rex Xucabbb782017-03-24 13:41:14 +08006541 zero = builder.makeInt64Constant(0);
Rex Xucabbb782017-03-24 13:41:14 +08006542 one = builder.makeInt64Constant(1);
John Kessenichb9197c82019-08-11 07:41:45 -06006543 } else
6544#endif
6545 {
6546 zero = builder.makeIntConstant(0);
Rex Xucabbb782017-03-24 13:41:14 +08006547 one = builder.makeIntConstant(1);
John Kessenichb9197c82019-08-11 07:41:45 -06006548 }
Rex Xucabbb782017-03-24 13:41:14 +08006549
John Kessenich140f3df2015-06-26 16:58:36 -06006550 convOp = spv::OpSelect;
6551 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006552
John Kessenich140f3df2015-06-26 16:58:36 -06006553 case glslang::EOpConvBoolToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08006554 case glslang::EOpConvBoolToUint64:
John Kessenichb9197c82019-08-11 07:41:45 -06006555#ifndef GLSLANG_WEB
6556 if (op == glslang::EOpConvBoolToUint64) {
Rex Xucabbb782017-03-24 13:41:14 +08006557 zero = builder.makeUint64Constant(0);
Rex Xucabbb782017-03-24 13:41:14 +08006558 one = builder.makeUint64Constant(1);
John Kessenichb9197c82019-08-11 07:41:45 -06006559 } else
6560#endif
6561 {
6562 zero = builder.makeUintConstant(0);
Rex Xucabbb782017-03-24 13:41:14 +08006563 one = builder.makeUintConstant(1);
John Kessenichb9197c82019-08-11 07:41:45 -06006564 }
Rex Xucabbb782017-03-24 13:41:14 +08006565
John Kessenich140f3df2015-06-26 16:58:36 -06006566 convOp = spv::OpSelect;
6567 break;
6568
John Kessenich66011cb2018-03-06 16:12:04 -07006569 case glslang::EOpConvInt8ToFloat16:
6570 case glslang::EOpConvInt8ToFloat:
6571 case glslang::EOpConvInt8ToDouble:
6572 case glslang::EOpConvInt16ToFloat16:
6573 case glslang::EOpConvInt16ToFloat:
6574 case glslang::EOpConvInt16ToDouble:
6575 case glslang::EOpConvIntToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06006576 case glslang::EOpConvIntToFloat:
6577 case glslang::EOpConvIntToDouble:
Rex Xu8ff43de2016-04-22 16:51:45 +08006578 case glslang::EOpConvInt64ToFloat:
6579 case glslang::EOpConvInt64ToDouble:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006580 case glslang::EOpConvInt64ToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06006581 convOp = spv::OpConvertSToF;
6582 break;
6583
John Kessenich66011cb2018-03-06 16:12:04 -07006584 case glslang::EOpConvUint8ToFloat16:
6585 case glslang::EOpConvUint8ToFloat:
6586 case glslang::EOpConvUint8ToDouble:
6587 case glslang::EOpConvUint16ToFloat16:
6588 case glslang::EOpConvUint16ToFloat:
6589 case glslang::EOpConvUint16ToDouble:
6590 case glslang::EOpConvUintToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06006591 case glslang::EOpConvUintToFloat:
6592 case glslang::EOpConvUintToDouble:
Rex Xu8ff43de2016-04-22 16:51:45 +08006593 case glslang::EOpConvUint64ToFloat:
6594 case glslang::EOpConvUint64ToDouble:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006595 case glslang::EOpConvUint64ToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06006596 convOp = spv::OpConvertUToF;
6597 break;
6598
John Kessenich66011cb2018-03-06 16:12:04 -07006599 case glslang::EOpConvFloat16ToInt8:
6600 case glslang::EOpConvFloatToInt8:
6601 case glslang::EOpConvDoubleToInt8:
6602 case glslang::EOpConvFloat16ToInt16:
Rex Xucabbb782017-03-24 13:41:14 +08006603 case glslang::EOpConvFloatToInt16:
6604 case glslang::EOpConvDoubleToInt16:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006605 case glslang::EOpConvFloat16ToInt:
John Kessenich66011cb2018-03-06 16:12:04 -07006606 case glslang::EOpConvFloatToInt:
6607 case glslang::EOpConvDoubleToInt:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006608 case glslang::EOpConvFloat16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07006609 case glslang::EOpConvFloatToInt64:
6610 case glslang::EOpConvDoubleToInt64:
John Kessenich140f3df2015-06-26 16:58:36 -06006611 convOp = spv::OpConvertFToS;
6612 break;
6613
John Kessenich66011cb2018-03-06 16:12:04 -07006614 case glslang::EOpConvUint8ToInt8:
6615 case glslang::EOpConvInt8ToUint8:
6616 case glslang::EOpConvUint16ToInt16:
6617 case glslang::EOpConvInt16ToUint16:
John Kessenich140f3df2015-06-26 16:58:36 -06006618 case glslang::EOpConvUintToInt:
6619 case glslang::EOpConvIntToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08006620 case glslang::EOpConvUint64ToInt64:
6621 case glslang::EOpConvInt64ToUint64:
qininge24aa5e2016-04-07 15:40:27 -04006622 if (builder.isInSpecConstCodeGenMode()) {
6623 // Build zero scalar or vector for OpIAdd.
John Kessenich39697cd2019-08-08 10:35:51 -06006624#ifndef GLSLANG_WEB
John Kessenich66011cb2018-03-06 16:12:04 -07006625 if(op == glslang::EOpConvUint8ToInt8 || op == glslang::EOpConvInt8ToUint8) {
6626 zero = builder.makeUint8Constant(0);
6627 } else if (op == glslang::EOpConvUint16ToInt16 || op == glslang::EOpConvInt16ToUint16) {
Rex Xucabbb782017-03-24 13:41:14 +08006628 zero = builder.makeUint16Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006629 } else if (op == glslang::EOpConvUint64ToInt64 || op == glslang::EOpConvInt64ToUint64) {
6630 zero = builder.makeUint64Constant(0);
John Kessenich39697cd2019-08-08 10:35:51 -06006631 } else
6632#endif
6633 {
Rex Xucabbb782017-03-24 13:41:14 +08006634 zero = builder.makeUintConstant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006635 }
qining189b2032016-04-12 23:16:20 -04006636 zero = makeSmearedConstant(zero, vectorSize);
qininge24aa5e2016-04-07 15:40:27 -04006637 // Use OpIAdd, instead of OpBitcast to do the conversion when
6638 // generating for OpSpecConstantOp instruction.
6639 return builder.createBinOp(spv::OpIAdd, destType, operand, zero);
6640 }
6641 // For normal run-time conversion instruction, use OpBitcast.
John Kessenich140f3df2015-06-26 16:58:36 -06006642 convOp = spv::OpBitcast;
6643 break;
6644
John Kessenich66011cb2018-03-06 16:12:04 -07006645 case glslang::EOpConvFloat16ToUint8:
6646 case glslang::EOpConvFloatToUint8:
6647 case glslang::EOpConvDoubleToUint8:
6648 case glslang::EOpConvFloat16ToUint16:
6649 case glslang::EOpConvFloatToUint16:
6650 case glslang::EOpConvDoubleToUint16:
6651 case glslang::EOpConvFloat16ToUint:
John Kessenich140f3df2015-06-26 16:58:36 -06006652 case glslang::EOpConvFloatToUint:
6653 case glslang::EOpConvDoubleToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08006654 case glslang::EOpConvFloatToUint64:
6655 case glslang::EOpConvDoubleToUint64:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08006656 case glslang::EOpConvFloat16ToUint64:
John Kessenich140f3df2015-06-26 16:58:36 -06006657 convOp = spv::OpConvertFToU;
6658 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08006659
John Kessenich39697cd2019-08-08 10:35:51 -06006660#ifndef GLSLANG_WEB
6661 case glslang::EOpConvInt8ToBool:
6662 case glslang::EOpConvUint8ToBool:
6663 zero = builder.makeUint8Constant(0);
6664 zero = makeSmearedConstant(zero, vectorSize);
6665 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
6666 case glslang::EOpConvInt16ToBool:
6667 case glslang::EOpConvUint16ToBool:
6668 zero = builder.makeUint16Constant(0);
6669 zero = makeSmearedConstant(zero, vectorSize);
6670 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
6671 case glslang::EOpConvInt64ToBool:
6672 case glslang::EOpConvUint64ToBool:
6673 zero = builder.makeUint64Constant(0);
6674 zero = makeSmearedConstant(zero, vectorSize);
6675 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
6676 case glslang::EOpConvDoubleToBool:
6677 zero = builder.makeDoubleConstant(0.0);
6678 zero = makeSmearedConstant(zero, vectorSize);
Graeme Leese65ce5662020-06-05 13:32:51 +01006679 return builder.createBinOp(spv::OpFUnordNotEqual, destType, operand, zero);
John Kessenich39697cd2019-08-08 10:35:51 -06006680 case glslang::EOpConvFloat16ToBool:
6681 zero = builder.makeFloat16Constant(0.0F);
6682 zero = makeSmearedConstant(zero, vectorSize);
Graeme Leese65ce5662020-06-05 13:32:51 +01006683 return builder.createBinOp(spv::OpFUnordNotEqual, destType, operand, zero);
John Kessenich39697cd2019-08-08 10:35:51 -06006684 case glslang::EOpConvBoolToDouble:
6685 convOp = spv::OpSelect;
6686 zero = builder.makeDoubleConstant(0.0);
6687 one = builder.makeDoubleConstant(1.0);
6688 break;
6689 case glslang::EOpConvBoolToFloat16:
6690 convOp = spv::OpSelect;
6691 zero = builder.makeFloat16Constant(0.0F);
6692 one = builder.makeFloat16Constant(1.0F);
6693 break;
6694 case glslang::EOpConvBoolToInt8:
6695 zero = builder.makeInt8Constant(0);
6696 one = builder.makeInt8Constant(1);
6697 convOp = spv::OpSelect;
6698 break;
6699 case glslang::EOpConvBoolToUint8:
6700 zero = builder.makeUint8Constant(0);
6701 one = builder.makeUint8Constant(1);
6702 convOp = spv::OpSelect;
6703 break;
6704 case glslang::EOpConvBoolToInt16:
6705 zero = builder.makeInt16Constant(0);
6706 one = builder.makeInt16Constant(1);
6707 convOp = spv::OpSelect;
6708 break;
6709 case glslang::EOpConvBoolToUint16:
6710 zero = builder.makeUint16Constant(0);
6711 one = builder.makeUint16Constant(1);
6712 convOp = spv::OpSelect;
6713 break;
6714 case glslang::EOpConvDoubleToFloat:
6715 case glslang::EOpConvFloatToDouble:
6716 case glslang::EOpConvDoubleToFloat16:
6717 case glslang::EOpConvFloat16ToDouble:
6718 case glslang::EOpConvFloatToFloat16:
6719 case glslang::EOpConvFloat16ToFloat:
6720 convOp = spv::OpFConvert;
6721 if (builder.isMatrixType(destType))
6722 return createUnaryMatrixOperation(convOp, decorations, destType, operand, typeProxy);
6723 break;
6724
John Kessenich66011cb2018-03-06 16:12:04 -07006725 case glslang::EOpConvInt8ToInt16:
6726 case glslang::EOpConvInt8ToInt:
6727 case glslang::EOpConvInt8ToInt64:
6728 case glslang::EOpConvInt16ToInt8:
Rex Xucabbb782017-03-24 13:41:14 +08006729 case glslang::EOpConvInt16ToInt:
Rex Xucabbb782017-03-24 13:41:14 +08006730 case glslang::EOpConvInt16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07006731 case glslang::EOpConvIntToInt8:
6732 case glslang::EOpConvIntToInt16:
6733 case glslang::EOpConvIntToInt64:
6734 case glslang::EOpConvInt64ToInt8:
6735 case glslang::EOpConvInt64ToInt16:
6736 case glslang::EOpConvInt64ToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08006737 convOp = spv::OpSConvert;
6738 break;
6739
John Kessenich66011cb2018-03-06 16:12:04 -07006740 case glslang::EOpConvUint8ToUint16:
6741 case glslang::EOpConvUint8ToUint:
6742 case glslang::EOpConvUint8ToUint64:
6743 case glslang::EOpConvUint16ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08006744 case glslang::EOpConvUint16ToUint:
Rex Xucabbb782017-03-24 13:41:14 +08006745 case glslang::EOpConvUint16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006746 case glslang::EOpConvUintToUint8:
6747 case glslang::EOpConvUintToUint16:
6748 case glslang::EOpConvUintToUint64:
6749 case glslang::EOpConvUint64ToUint8:
6750 case glslang::EOpConvUint64ToUint16:
6751 case glslang::EOpConvUint64ToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08006752 convOp = spv::OpUConvert;
6753 break;
6754
John Kessenich66011cb2018-03-06 16:12:04 -07006755 case glslang::EOpConvInt8ToUint16:
6756 case glslang::EOpConvInt8ToUint:
6757 case glslang::EOpConvInt8ToUint64:
6758 case glslang::EOpConvInt16ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08006759 case glslang::EOpConvInt16ToUint:
Rex Xucabbb782017-03-24 13:41:14 +08006760 case glslang::EOpConvInt16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07006761 case glslang::EOpConvIntToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08006762 case glslang::EOpConvIntToUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07006763 case glslang::EOpConvIntToUint64:
6764 case glslang::EOpConvInt64ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08006765 case glslang::EOpConvInt64ToUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07006766 case glslang::EOpConvInt64ToUint:
6767 case glslang::EOpConvUint8ToInt16:
6768 case glslang::EOpConvUint8ToInt:
6769 case glslang::EOpConvUint8ToInt64:
6770 case glslang::EOpConvUint16ToInt8:
6771 case glslang::EOpConvUint16ToInt:
6772 case glslang::EOpConvUint16ToInt64:
6773 case glslang::EOpConvUintToInt8:
6774 case glslang::EOpConvUintToInt16:
6775 case glslang::EOpConvUintToInt64:
6776 case glslang::EOpConvUint64ToInt8:
6777 case glslang::EOpConvUint64ToInt16:
6778 case glslang::EOpConvUint64ToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08006779 // OpSConvert/OpUConvert + OpBitCast
John Kessenichad7645f2018-06-04 19:11:25 -06006780 operand = createIntWidthConversion(op, operand, vectorSize);
Rex Xu8ff43de2016-04-22 16:51:45 +08006781
6782 if (builder.isInSpecConstCodeGenMode()) {
6783 // Build zero scalar or vector for OpIAdd.
John Kessenich66011cb2018-03-06 16:12:04 -07006784 switch(op) {
6785 case glslang::EOpConvInt16ToUint8:
6786 case glslang::EOpConvIntToUint8:
6787 case glslang::EOpConvInt64ToUint8:
6788 case glslang::EOpConvUint16ToInt8:
6789 case glslang::EOpConvUintToInt8:
6790 case glslang::EOpConvUint64ToInt8:
6791 zero = builder.makeUint8Constant(0);
6792 break;
6793 case glslang::EOpConvInt8ToUint16:
6794 case glslang::EOpConvIntToUint16:
6795 case glslang::EOpConvInt64ToUint16:
6796 case glslang::EOpConvUint8ToInt16:
6797 case glslang::EOpConvUintToInt16:
6798 case glslang::EOpConvUint64ToInt16:
Rex Xucabbb782017-03-24 13:41:14 +08006799 zero = builder.makeUint16Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006800 break;
6801 case glslang::EOpConvInt8ToUint:
6802 case glslang::EOpConvInt16ToUint:
6803 case glslang::EOpConvInt64ToUint:
6804 case glslang::EOpConvUint8ToInt:
6805 case glslang::EOpConvUint16ToInt:
6806 case glslang::EOpConvUint64ToInt:
Rex Xucabbb782017-03-24 13:41:14 +08006807 zero = builder.makeUintConstant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006808 break;
6809 case glslang::EOpConvInt8ToUint64:
6810 case glslang::EOpConvInt16ToUint64:
6811 case glslang::EOpConvIntToUint64:
6812 case glslang::EOpConvUint8ToInt64:
6813 case glslang::EOpConvUint16ToInt64:
6814 case glslang::EOpConvUintToInt64:
Rex Xucabbb782017-03-24 13:41:14 +08006815 zero = builder.makeUint64Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07006816 break;
6817 default:
6818 assert(false && "Default missing");
6819 break;
6820 }
Rex Xu8ff43de2016-04-22 16:51:45 +08006821 zero = makeSmearedConstant(zero, vectorSize);
6822 // Use OpIAdd, instead of OpBitcast to do the conversion when
6823 // generating for OpSpecConstantOp instruction.
6824 return builder.createBinOp(spv::OpIAdd, destType, operand, zero);
6825 }
6826 // For normal run-time conversion instruction, use OpBitcast.
6827 convOp = spv::OpBitcast;
6828 break;
Jeff Bolz9f2aec42019-01-06 17:58:04 -06006829 case glslang::EOpConvUint64ToPtr:
6830 convOp = spv::OpConvertUToPtr;
6831 break;
6832 case glslang::EOpConvPtrToUint64:
6833 convOp = spv::OpConvertPtrToU;
6834 break;
John Kessenich90e402f2019-09-17 23:19:38 -06006835 case glslang::EOpConvPtrToUvec2:
6836 case glslang::EOpConvUvec2ToPtr:
John Kessenichee8e9c12019-10-10 20:54:21 -06006837 if (builder.isVector(operand))
6838 builder.promoteIncorporatedExtension(spv::E_SPV_EXT_physical_storage_buffer,
6839 spv::E_SPV_KHR_physical_storage_buffer, spv::Spv_1_5);
John Kessenich90e402f2019-09-17 23:19:38 -06006840 convOp = spv::OpBitcast;
6841 break;
John Kessenich39697cd2019-08-08 10:35:51 -06006842#endif
6843
John Kessenich140f3df2015-06-26 16:58:36 -06006844 default:
6845 break;
6846 }
6847
6848 spv::Id result = 0;
6849 if (convOp == spv::OpNop)
6850 return result;
6851
6852 if (convOp == spv::OpSelect) {
6853 zero = makeSmearedConstant(zero, vectorSize);
6854 one = makeSmearedConstant(one, vectorSize);
6855 result = builder.createTriOp(convOp, destType, operand, one, zero);
6856 } else
6857 result = builder.createUnaryOp(convOp, destType, operand);
6858
John Kessenichead86222018-03-28 18:01:20 -06006859 result = builder.setPrecision(result, decorations.precision);
John Kessenichb9197c82019-08-11 07:41:45 -06006860 decorations.addNonUniform(builder, result);
John Kessenichead86222018-03-28 18:01:20 -06006861 return result;
John Kessenich140f3df2015-06-26 16:58:36 -06006862}
6863
6864spv::Id TGlslangToSpvTraverser::makeSmearedConstant(spv::Id constant, int vectorSize)
6865{
6866 if (vectorSize == 0)
6867 return constant;
6868
6869 spv::Id vectorTypeId = builder.makeVectorType(builder.getTypeId(constant), vectorSize);
6870 std::vector<spv::Id> components;
6871 for (int c = 0; c < vectorSize; ++c)
6872 components.push_back(constant);
6873 return builder.makeCompositeConstant(vectorTypeId, components);
6874}
6875
John Kessenich426394d2015-07-23 10:22:48 -06006876// For glslang ops that map to SPV atomic opCodes
John Kessenich8985fc92020-03-03 10:25:07 -07006877spv::Id TGlslangToSpvTraverser::createAtomicOperation(glslang::TOperator op, spv::Decoration /*precision*/,
6878 spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy,
6879 const spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags)
John Kessenich426394d2015-07-23 10:22:48 -06006880{
6881 spv::Op opCode = spv::OpNop;
6882
6883 switch (op) {
6884 case glslang::EOpAtomicAdd:
Rex Xufc618912015-09-09 16:42:49 +08006885 case glslang::EOpImageAtomicAdd:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006886 case glslang::EOpAtomicCounterAdd:
John Kessenich426394d2015-07-23 10:22:48 -06006887 opCode = spv::OpAtomicIAdd;
Vikram Kushwaha79b93922020-07-19 15:45:01 -07006888 if (typeProxy == glslang::EbtFloat || typeProxy == glslang::EbtDouble) {
6889 opCode = spv::OpAtomicFAddEXT;
6890 builder.addExtension(spv::E_SPV_EXT_shader_atomic_float_add);
6891 if (typeProxy == glslang::EbtFloat)
6892 builder.addCapability(spv::CapabilityAtomicFloat32AddEXT);
6893 else
6894 builder.addCapability(spv::CapabilityAtomicFloat64AddEXT);
6895 }
John Kessenich426394d2015-07-23 10:22:48 -06006896 break;
John Kessenich0d0c6d32017-07-23 16:08:26 -06006897 case glslang::EOpAtomicCounterSubtract:
6898 opCode = spv::OpAtomicISub;
6899 break;
John Kessenich426394d2015-07-23 10:22:48 -06006900 case glslang::EOpAtomicMin:
Rex Xufc618912015-09-09 16:42:49 +08006901 case glslang::EOpImageAtomicMin:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006902 case glslang::EOpAtomicCounterMin:
John Kessenich8985fc92020-03-03 10:25:07 -07006903 opCode = (typeProxy == glslang::EbtUint || typeProxy == glslang::EbtUint64) ?
6904 spv::OpAtomicUMin : spv::OpAtomicSMin;
John Kessenich426394d2015-07-23 10:22:48 -06006905 break;
6906 case glslang::EOpAtomicMax:
Rex Xufc618912015-09-09 16:42:49 +08006907 case glslang::EOpImageAtomicMax:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006908 case glslang::EOpAtomicCounterMax:
John Kessenich8985fc92020-03-03 10:25:07 -07006909 opCode = (typeProxy == glslang::EbtUint || typeProxy == glslang::EbtUint64) ?
6910 spv::OpAtomicUMax : spv::OpAtomicSMax;
John Kessenich426394d2015-07-23 10:22:48 -06006911 break;
6912 case glslang::EOpAtomicAnd:
Rex Xufc618912015-09-09 16:42:49 +08006913 case glslang::EOpImageAtomicAnd:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006914 case glslang::EOpAtomicCounterAnd:
John Kessenich426394d2015-07-23 10:22:48 -06006915 opCode = spv::OpAtomicAnd;
6916 break;
6917 case glslang::EOpAtomicOr:
Rex Xufc618912015-09-09 16:42:49 +08006918 case glslang::EOpImageAtomicOr:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006919 case glslang::EOpAtomicCounterOr:
John Kessenich426394d2015-07-23 10:22:48 -06006920 opCode = spv::OpAtomicOr;
6921 break;
6922 case glslang::EOpAtomicXor:
Rex Xufc618912015-09-09 16:42:49 +08006923 case glslang::EOpImageAtomicXor:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006924 case glslang::EOpAtomicCounterXor:
John Kessenich426394d2015-07-23 10:22:48 -06006925 opCode = spv::OpAtomicXor;
6926 break;
6927 case glslang::EOpAtomicExchange:
Rex Xufc618912015-09-09 16:42:49 +08006928 case glslang::EOpImageAtomicExchange:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006929 case glslang::EOpAtomicCounterExchange:
John Kessenich426394d2015-07-23 10:22:48 -06006930 opCode = spv::OpAtomicExchange;
6931 break;
6932 case glslang::EOpAtomicCompSwap:
Rex Xufc618912015-09-09 16:42:49 +08006933 case glslang::EOpImageAtomicCompSwap:
John Kessenich0d0c6d32017-07-23 16:08:26 -06006934 case glslang::EOpAtomicCounterCompSwap:
John Kessenich426394d2015-07-23 10:22:48 -06006935 opCode = spv::OpAtomicCompareExchange;
6936 break;
6937 case glslang::EOpAtomicCounterIncrement:
6938 opCode = spv::OpAtomicIIncrement;
6939 break;
6940 case glslang::EOpAtomicCounterDecrement:
6941 opCode = spv::OpAtomicIDecrement;
6942 break;
6943 case glslang::EOpAtomicCounter:
Jeff Bolz36831c92018-09-05 10:11:41 -05006944 case glslang::EOpImageAtomicLoad:
6945 case glslang::EOpAtomicLoad:
John Kessenich426394d2015-07-23 10:22:48 -06006946 opCode = spv::OpAtomicLoad;
6947 break;
Jeff Bolz36831c92018-09-05 10:11:41 -05006948 case glslang::EOpAtomicStore:
6949 case glslang::EOpImageAtomicStore:
6950 opCode = spv::OpAtomicStore;
6951 break;
John Kessenich426394d2015-07-23 10:22:48 -06006952 default:
John Kessenich55e7d112015-11-15 21:33:39 -07006953 assert(0);
John Kessenich426394d2015-07-23 10:22:48 -06006954 break;
6955 }
6956
Rex Xue8fe8b02017-09-26 15:42:56 +08006957 if (typeProxy == glslang::EbtInt64 || typeProxy == glslang::EbtUint64)
6958 builder.addCapability(spv::CapabilityInt64Atomics);
6959
John Kessenich426394d2015-07-23 10:22:48 -06006960 // Sort out the operands
6961 // - mapping from glslang -> SPV
Jeff Bolz36831c92018-09-05 10:11:41 -05006962 // - there are extra SPV operands that are optional in glslang
John Kessenich3e60a6f2015-09-14 22:45:16 -06006963 // - compare-exchange swaps the value and comparator
6964 // - compare-exchange has an extra memory semantics
John Kessenich48d6e792017-10-06 21:21:48 -06006965 // - EOpAtomicCounterDecrement needs a post decrement
Jeff Bolz36831c92018-09-05 10:11:41 -05006966 spv::Id pointerId = 0, compareId = 0, valueId = 0;
6967 // scope defaults to Device in the old model, QueueFamilyKHR in the new model
6968 spv::Id scopeId;
6969 if (glslangIntermediate->usingVulkanMemoryModel()) {
6970 scopeId = builder.makeUintConstant(spv::ScopeQueueFamilyKHR);
6971 } else {
6972 scopeId = builder.makeUintConstant(spv::ScopeDevice);
6973 }
6974 // semantics default to relaxed
John Kessenich8985fc92020-03-03 10:25:07 -07006975 spv::Id semanticsId = builder.makeUintConstant(lvalueCoherentFlags.isVolatile() &&
6976 glslangIntermediate->usingVulkanMemoryModel() ?
John Kessenichb9197c82019-08-11 07:41:45 -06006977 spv::MemorySemanticsVolatileMask :
6978 spv::MemorySemanticsMaskNone);
Jeff Bolz36831c92018-09-05 10:11:41 -05006979 spv::Id semanticsId2 = semanticsId;
6980
6981 pointerId = operands[0];
6982 if (opCode == spv::OpAtomicIIncrement || opCode == spv::OpAtomicIDecrement) {
6983 // no additional operands
6984 } else if (opCode == spv::OpAtomicCompareExchange) {
6985 compareId = operands[1];
6986 valueId = operands[2];
6987 if (operands.size() > 3) {
6988 scopeId = operands[3];
John Kessenich8985fc92020-03-03 10:25:07 -07006989 semanticsId = builder.makeUintConstant(
6990 builder.getConstantScalar(operands[4]) | builder.getConstantScalar(operands[5]));
6991 semanticsId2 = builder.makeUintConstant(
6992 builder.getConstantScalar(operands[6]) | builder.getConstantScalar(operands[7]));
Jeff Bolz36831c92018-09-05 10:11:41 -05006993 }
6994 } else if (opCode == spv::OpAtomicLoad) {
6995 if (operands.size() > 1) {
6996 scopeId = operands[1];
John Kessenich8985fc92020-03-03 10:25:07 -07006997 semanticsId = builder.makeUintConstant(
6998 builder.getConstantScalar(operands[2]) | builder.getConstantScalar(operands[3]));
Jeff Bolz36831c92018-09-05 10:11:41 -05006999 }
7000 } else {
7001 // atomic store or RMW
7002 valueId = operands[1];
7003 if (operands.size() > 2) {
7004 scopeId = operands[2];
John Kessenich8985fc92020-03-03 10:25:07 -07007005 semanticsId = builder.makeUintConstant
7006 (builder.getConstantScalar(operands[3]) | builder.getConstantScalar(operands[4]));
Jeff Bolz36831c92018-09-05 10:11:41 -05007007 }
Rex Xu04db3f52015-09-16 11:44:02 +08007008 }
John Kessenich426394d2015-07-23 10:22:48 -06007009
Jeff Bolz36831c92018-09-05 10:11:41 -05007010 // Check for capabilities
7011 unsigned semanticsImmediate = builder.getConstantScalar(semanticsId) | builder.getConstantScalar(semanticsId2);
Jeff Bolz38a52fc2019-06-14 09:56:28 -05007012 if (semanticsImmediate & (spv::MemorySemanticsMakeAvailableKHRMask |
7013 spv::MemorySemanticsMakeVisibleKHRMask |
7014 spv::MemorySemanticsOutputMemoryKHRMask |
7015 spv::MemorySemanticsVolatileMask)) {
Jeff Bolz36831c92018-09-05 10:11:41 -05007016 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7017 }
John Kessenich426394d2015-07-23 10:22:48 -06007018
Jeff Bolzbfd84a32021-01-27 13:14:34 -06007019 if (builder.getConstantScalar(scopeId) == spv::ScopeQueueFamily) {
7020 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7021 }
7022
Jeff Bolz36831c92018-09-05 10:11:41 -05007023 if (glslangIntermediate->usingVulkanMemoryModel() && builder.getConstantScalar(scopeId) == spv::ScopeDevice) {
7024 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
7025 }
John Kessenich48d6e792017-10-06 21:21:48 -06007026
Jeff Bolz36831c92018-09-05 10:11:41 -05007027 std::vector<spv::Id> spvAtomicOperands; // hold the spv operands
7028 spvAtomicOperands.push_back(pointerId);
7029 spvAtomicOperands.push_back(scopeId);
7030 spvAtomicOperands.push_back(semanticsId);
7031 if (opCode == spv::OpAtomicCompareExchange) {
7032 spvAtomicOperands.push_back(semanticsId2);
7033 spvAtomicOperands.push_back(valueId);
7034 spvAtomicOperands.push_back(compareId);
7035 } else if (opCode != spv::OpAtomicLoad && opCode != spv::OpAtomicIIncrement && opCode != spv::OpAtomicIDecrement) {
7036 spvAtomicOperands.push_back(valueId);
7037 }
John Kessenich48d6e792017-10-06 21:21:48 -06007038
Jeff Bolz36831c92018-09-05 10:11:41 -05007039 if (opCode == spv::OpAtomicStore) {
7040 builder.createNoResultOp(opCode, spvAtomicOperands);
7041 return 0;
7042 } else {
7043 spv::Id resultId = builder.createOp(opCode, typeId, spvAtomicOperands);
7044
7045 // GLSL and HLSL atomic-counter decrement return post-decrement value,
7046 // while SPIR-V returns pre-decrement value. Translate between these semantics.
7047 if (op == glslang::EOpAtomicCounterDecrement)
7048 resultId = builder.createBinOp(spv::OpISub, typeId, resultId, builder.makeIntConstant(1));
7049
7050 return resultId;
7051 }
John Kessenich426394d2015-07-23 10:22:48 -06007052}
7053
John Kessenich91cef522016-05-05 16:45:40 -06007054// Create group invocation operations.
John Kessenich8985fc92020-03-03 10:25:07 -07007055spv::Id TGlslangToSpvTraverser::createInvocationsOperation(glslang::TOperator op, spv::Id typeId,
7056 std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich91cef522016-05-05 16:45:40 -06007057{
John Kessenich66011cb2018-03-06 16:12:04 -07007058 bool isUnsigned = isTypeUnsignedInt(typeProxy);
7059 bool isFloat = isTypeFloat(typeProxy);
Rex Xu9d93a232016-05-05 12:30:44 +08007060
Rex Xu51596642016-09-21 18:56:12 +08007061 spv::Op opCode = spv::OpNop;
John Kessenich149afc32018-08-14 13:31:43 -06007062 std::vector<spv::IdImmediate> spvGroupOperands;
Rex Xu430ef402016-10-14 17:22:23 +08007063 spv::GroupOperation groupOperation = spv::GroupOperationMax;
7064
chaocf200da82016-12-20 12:44:35 -08007065 if (op == glslang::EOpBallot || op == glslang::EOpReadFirstInvocation ||
7066 op == glslang::EOpReadInvocation) {
Rex Xu51596642016-09-21 18:56:12 +08007067 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
7068 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08007069 } else if (op == glslang::EOpAnyInvocation ||
7070 op == glslang::EOpAllInvocations ||
7071 op == glslang::EOpAllInvocationsEqual) {
7072 builder.addExtension(spv::E_SPV_KHR_subgroup_vote);
7073 builder.addCapability(spv::CapabilitySubgroupVoteKHR);
Rex Xu51596642016-09-21 18:56:12 +08007074 } else {
7075 builder.addCapability(spv::CapabilityGroups);
Rex Xu17ff3432016-10-14 17:41:45 +08007076 if (op == glslang::EOpMinInvocationsNonUniform ||
7077 op == glslang::EOpMaxInvocationsNonUniform ||
Rex Xu430ef402016-10-14 17:22:23 +08007078 op == glslang::EOpAddInvocationsNonUniform ||
7079 op == glslang::EOpMinInvocationsInclusiveScanNonUniform ||
7080 op == glslang::EOpMaxInvocationsInclusiveScanNonUniform ||
7081 op == glslang::EOpAddInvocationsInclusiveScanNonUniform ||
7082 op == glslang::EOpMinInvocationsExclusiveScanNonUniform ||
7083 op == glslang::EOpMaxInvocationsExclusiveScanNonUniform ||
7084 op == glslang::EOpAddInvocationsExclusiveScanNonUniform)
Rex Xu17ff3432016-10-14 17:41:45 +08007085 builder.addExtension(spv::E_SPV_AMD_shader_ballot);
Rex Xu51596642016-09-21 18:56:12 +08007086
Rex Xu430ef402016-10-14 17:22:23 +08007087 switch (op) {
7088 case glslang::EOpMinInvocations:
7089 case glslang::EOpMaxInvocations:
7090 case glslang::EOpAddInvocations:
7091 case glslang::EOpMinInvocationsNonUniform:
7092 case glslang::EOpMaxInvocationsNonUniform:
7093 case glslang::EOpAddInvocationsNonUniform:
7094 groupOperation = spv::GroupOperationReduce;
Rex Xu430ef402016-10-14 17:22:23 +08007095 break;
7096 case glslang::EOpMinInvocationsInclusiveScan:
7097 case glslang::EOpMaxInvocationsInclusiveScan:
7098 case glslang::EOpAddInvocationsInclusiveScan:
7099 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
7100 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
7101 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
7102 groupOperation = spv::GroupOperationInclusiveScan;
Rex Xu430ef402016-10-14 17:22:23 +08007103 break;
7104 case glslang::EOpMinInvocationsExclusiveScan:
7105 case glslang::EOpMaxInvocationsExclusiveScan:
7106 case glslang::EOpAddInvocationsExclusiveScan:
7107 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
7108 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
7109 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
7110 groupOperation = spv::GroupOperationExclusiveScan;
Rex Xu430ef402016-10-14 17:22:23 +08007111 break;
Mike Weiblen4e9e4002017-01-20 13:34:10 -07007112 default:
7113 break;
Rex Xu430ef402016-10-14 17:22:23 +08007114 }
John Kessenich149afc32018-08-14 13:31:43 -06007115 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
7116 spvGroupOperands.push_back(scope);
7117 if (groupOperation != spv::GroupOperationMax) {
John Kessenichd122a722018-09-18 03:43:30 -06007118 spv::IdImmediate groupOp = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06007119 spvGroupOperands.push_back(groupOp);
7120 }
Rex Xu51596642016-09-21 18:56:12 +08007121 }
7122
John Kessenich149afc32018-08-14 13:31:43 -06007123 for (auto opIt = operands.begin(); opIt != operands.end(); ++opIt) {
7124 spv::IdImmediate op = { true, *opIt };
7125 spvGroupOperands.push_back(op);
7126 }
John Kessenich91cef522016-05-05 16:45:40 -06007127
7128 switch (op) {
7129 case glslang::EOpAnyInvocation:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08007130 opCode = spv::OpSubgroupAnyKHR;
Rex Xu51596642016-09-21 18:56:12 +08007131 break;
John Kessenich91cef522016-05-05 16:45:40 -06007132 case glslang::EOpAllInvocations:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08007133 opCode = spv::OpSubgroupAllKHR;
Rex Xu51596642016-09-21 18:56:12 +08007134 break;
John Kessenich91cef522016-05-05 16:45:40 -06007135 case glslang::EOpAllInvocationsEqual:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08007136 opCode = spv::OpSubgroupAllEqualKHR;
7137 break;
Rex Xu51596642016-09-21 18:56:12 +08007138 case glslang::EOpReadInvocation:
chaocf200da82016-12-20 12:44:35 -08007139 opCode = spv::OpSubgroupReadInvocationKHR;
Rex Xub7072052016-09-26 15:53:40 +08007140 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08007141 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08007142 break;
7143 case glslang::EOpReadFirstInvocation:
7144 opCode = spv::OpSubgroupFirstInvocationKHR;
7145 break;
7146 case glslang::EOpBallot:
7147 {
7148 // NOTE: According to the spec, the result type of "OpSubgroupBallotKHR" must be a 4 component vector of 32
7149 // bit integer types. The GLSL built-in function "ballotARB()" assumes the maximum number of invocations in
7150 // a subgroup is 64. Thus, we have to convert uvec4.xy to uint64_t as follow:
7151 //
7152 // result = Bitcast(SubgroupBallotKHR(Predicate).xy)
7153 //
7154 spv::Id uintType = builder.makeUintType(32);
7155 spv::Id uvec4Type = builder.makeVectorType(uintType, 4);
7156 spv::Id result = builder.createOp(spv::OpSubgroupBallotKHR, uvec4Type, spvGroupOperands);
7157
7158 std::vector<spv::Id> components;
7159 components.push_back(builder.createCompositeExtract(result, uintType, 0));
7160 components.push_back(builder.createCompositeExtract(result, uintType, 1));
7161
7162 spv::Id uvec2Type = builder.makeVectorType(uintType, 2);
7163 return builder.createUnaryOp(spv::OpBitcast, typeId,
7164 builder.createCompositeConstruct(uvec2Type, components));
7165 }
7166
Rex Xu9d93a232016-05-05 12:30:44 +08007167 case glslang::EOpMinInvocations:
7168 case glslang::EOpMaxInvocations:
7169 case glslang::EOpAddInvocations:
Rex Xu430ef402016-10-14 17:22:23 +08007170 case glslang::EOpMinInvocationsInclusiveScan:
7171 case glslang::EOpMaxInvocationsInclusiveScan:
7172 case glslang::EOpAddInvocationsInclusiveScan:
7173 case glslang::EOpMinInvocationsExclusiveScan:
7174 case glslang::EOpMaxInvocationsExclusiveScan:
7175 case glslang::EOpAddInvocationsExclusiveScan:
7176 if (op == glslang::EOpMinInvocations ||
7177 op == glslang::EOpMinInvocationsInclusiveScan ||
7178 op == glslang::EOpMinInvocationsExclusiveScan) {
Rex Xu9d93a232016-05-05 12:30:44 +08007179 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007180 opCode = spv::OpGroupFMin;
Rex Xu9d93a232016-05-05 12:30:44 +08007181 else {
7182 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08007183 opCode = spv::OpGroupUMin;
Rex Xu9d93a232016-05-05 12:30:44 +08007184 else
Rex Xu51596642016-09-21 18:56:12 +08007185 opCode = spv::OpGroupSMin;
Rex Xu9d93a232016-05-05 12:30:44 +08007186 }
Rex Xu430ef402016-10-14 17:22:23 +08007187 } else if (op == glslang::EOpMaxInvocations ||
7188 op == glslang::EOpMaxInvocationsInclusiveScan ||
7189 op == glslang::EOpMaxInvocationsExclusiveScan) {
Rex Xu9d93a232016-05-05 12:30:44 +08007190 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007191 opCode = spv::OpGroupFMax;
Rex Xu9d93a232016-05-05 12:30:44 +08007192 else {
7193 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08007194 opCode = spv::OpGroupUMax;
Rex Xu9d93a232016-05-05 12:30:44 +08007195 else
Rex Xu51596642016-09-21 18:56:12 +08007196 opCode = spv::OpGroupSMax;
Rex Xu9d93a232016-05-05 12:30:44 +08007197 }
7198 } else {
7199 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007200 opCode = spv::OpGroupFAdd;
Rex Xu9d93a232016-05-05 12:30:44 +08007201 else
Rex Xu51596642016-09-21 18:56:12 +08007202 opCode = spv::OpGroupIAdd;
Rex Xu9d93a232016-05-05 12:30:44 +08007203 }
7204
Rex Xu2bbbe062016-08-23 15:41:05 +08007205 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08007206 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08007207
7208 break;
Rex Xu9d93a232016-05-05 12:30:44 +08007209 case glslang::EOpMinInvocationsNonUniform:
7210 case glslang::EOpMaxInvocationsNonUniform:
7211 case glslang::EOpAddInvocationsNonUniform:
Rex Xu430ef402016-10-14 17:22:23 +08007212 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
7213 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
7214 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
7215 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
7216 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
7217 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
7218 if (op == glslang::EOpMinInvocationsNonUniform ||
7219 op == glslang::EOpMinInvocationsInclusiveScanNonUniform ||
7220 op == glslang::EOpMinInvocationsExclusiveScanNonUniform) {
Rex Xu9d93a232016-05-05 12:30:44 +08007221 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007222 opCode = spv::OpGroupFMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007223 else {
7224 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08007225 opCode = spv::OpGroupUMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007226 else
Rex Xu51596642016-09-21 18:56:12 +08007227 opCode = spv::OpGroupSMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007228 }
7229 }
Rex Xu430ef402016-10-14 17:22:23 +08007230 else if (op == glslang::EOpMaxInvocationsNonUniform ||
7231 op == glslang::EOpMaxInvocationsInclusiveScanNonUniform ||
7232 op == glslang::EOpMaxInvocationsExclusiveScanNonUniform) {
Rex Xu9d93a232016-05-05 12:30:44 +08007233 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007234 opCode = spv::OpGroupFMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007235 else {
7236 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08007237 opCode = spv::OpGroupUMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007238 else
Rex Xu51596642016-09-21 18:56:12 +08007239 opCode = spv::OpGroupSMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007240 }
7241 }
7242 else {
7243 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08007244 opCode = spv::OpGroupFAddNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007245 else
Rex Xu51596642016-09-21 18:56:12 +08007246 opCode = spv::OpGroupIAddNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08007247 }
7248
Rex Xu2bbbe062016-08-23 15:41:05 +08007249 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08007250 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08007251
7252 break;
John Kessenich91cef522016-05-05 16:45:40 -06007253 default:
7254 logger->missingFunctionality("invocation operation");
7255 return spv::NoResult;
7256 }
Rex Xu51596642016-09-21 18:56:12 +08007257
7258 assert(opCode != spv::OpNop);
7259 return builder.createOp(opCode, typeId, spvGroupOperands);
John Kessenich91cef522016-05-05 16:45:40 -06007260}
7261
Rex Xu2bbbe062016-08-23 15:41:05 +08007262// Create group invocation operations on a vector
John Kessenich149afc32018-08-14 13:31:43 -06007263spv::Id TGlslangToSpvTraverser::CreateInvocationsVectorOperation(spv::Op op, spv::GroupOperation groupOperation,
7264 spv::Id typeId, std::vector<spv::Id>& operands)
Rex Xu2bbbe062016-08-23 15:41:05 +08007265{
7266 assert(op == spv::OpGroupFMin || op == spv::OpGroupUMin || op == spv::OpGroupSMin ||
7267 op == spv::OpGroupFMax || op == spv::OpGroupUMax || op == spv::OpGroupSMax ||
Rex Xub7072052016-09-26 15:53:40 +08007268 op == spv::OpGroupFAdd || op == spv::OpGroupIAdd || op == spv::OpGroupBroadcast ||
chaocf200da82016-12-20 12:44:35 -08007269 op == spv::OpSubgroupReadInvocationKHR ||
John Kessenich8985fc92020-03-03 10:25:07 -07007270 op == spv::OpGroupFMinNonUniformAMD || op == spv::OpGroupUMinNonUniformAMD ||
7271 op == spv::OpGroupSMinNonUniformAMD ||
7272 op == spv::OpGroupFMaxNonUniformAMD || op == spv::OpGroupUMaxNonUniformAMD ||
7273 op == spv::OpGroupSMaxNonUniformAMD ||
Rex Xu2bbbe062016-08-23 15:41:05 +08007274 op == spv::OpGroupFAddNonUniformAMD || op == spv::OpGroupIAddNonUniformAMD);
7275
7276 // Handle group invocation operations scalar by scalar.
7277 // The result type is the same type as the original type.
7278 // The algorithm is to:
7279 // - break the vector into scalars
7280 // - apply the operation to each scalar
7281 // - make a vector out the scalar results
7282
7283 // get the types sorted out
Rex Xub7072052016-09-26 15:53:40 +08007284 int numComponents = builder.getNumComponents(operands[0]);
7285 spv::Id scalarType = builder.getScalarTypeId(builder.getTypeId(operands[0]));
Rex Xu2bbbe062016-08-23 15:41:05 +08007286 std::vector<spv::Id> results;
7287
7288 // do each scalar op
7289 for (int comp = 0; comp < numComponents; ++comp) {
7290 std::vector<unsigned int> indexes;
7291 indexes.push_back(comp);
John Kessenich149afc32018-08-14 13:31:43 -06007292 spv::IdImmediate scalar = { true, builder.createCompositeExtract(operands[0], scalarType, indexes) };
7293 std::vector<spv::IdImmediate> spvGroupOperands;
chaocf200da82016-12-20 12:44:35 -08007294 if (op == spv::OpSubgroupReadInvocationKHR) {
7295 spvGroupOperands.push_back(scalar);
John Kessenich149afc32018-08-14 13:31:43 -06007296 spv::IdImmediate operand = { true, operands[1] };
7297 spvGroupOperands.push_back(operand);
chaocf200da82016-12-20 12:44:35 -08007298 } else if (op == spv::OpGroupBroadcast) {
John Kessenich149afc32018-08-14 13:31:43 -06007299 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
7300 spvGroupOperands.push_back(scope);
Rex Xub7072052016-09-26 15:53:40 +08007301 spvGroupOperands.push_back(scalar);
John Kessenich149afc32018-08-14 13:31:43 -06007302 spv::IdImmediate operand = { true, operands[1] };
7303 spvGroupOperands.push_back(operand);
Rex Xub7072052016-09-26 15:53:40 +08007304 } else {
John Kessenich149afc32018-08-14 13:31:43 -06007305 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
7306 spvGroupOperands.push_back(scope);
John Kessenichd122a722018-09-18 03:43:30 -06007307 spv::IdImmediate groupOp = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06007308 spvGroupOperands.push_back(groupOp);
Rex Xub7072052016-09-26 15:53:40 +08007309 spvGroupOperands.push_back(scalar);
7310 }
Rex Xu2bbbe062016-08-23 15:41:05 +08007311
Rex Xub7072052016-09-26 15:53:40 +08007312 results.push_back(builder.createOp(op, scalarType, spvGroupOperands));
Rex Xu2bbbe062016-08-23 15:41:05 +08007313 }
7314
7315 // put the pieces together
7316 return builder.createCompositeConstruct(typeId, results);
7317}
Rex Xu2bbbe062016-08-23 15:41:05 +08007318
John Kessenich66011cb2018-03-06 16:12:04 -07007319// Create subgroup invocation operations.
John Kessenich149afc32018-08-14 13:31:43 -06007320spv::Id TGlslangToSpvTraverser::createSubgroupOperation(glslang::TOperator op, spv::Id typeId,
7321 std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich66011cb2018-03-06 16:12:04 -07007322{
7323 // Add the required capabilities.
7324 switch (op) {
7325 case glslang::EOpSubgroupElect:
7326 builder.addCapability(spv::CapabilityGroupNonUniform);
7327 break;
7328 case glslang::EOpSubgroupAll:
7329 case glslang::EOpSubgroupAny:
7330 case glslang::EOpSubgroupAllEqual:
7331 builder.addCapability(spv::CapabilityGroupNonUniform);
7332 builder.addCapability(spv::CapabilityGroupNonUniformVote);
7333 break;
7334 case glslang::EOpSubgroupBroadcast:
7335 case glslang::EOpSubgroupBroadcastFirst:
7336 case glslang::EOpSubgroupBallot:
7337 case glslang::EOpSubgroupInverseBallot:
7338 case glslang::EOpSubgroupBallotBitExtract:
7339 case glslang::EOpSubgroupBallotBitCount:
7340 case glslang::EOpSubgroupBallotInclusiveBitCount:
7341 case glslang::EOpSubgroupBallotExclusiveBitCount:
7342 case glslang::EOpSubgroupBallotFindLSB:
7343 case glslang::EOpSubgroupBallotFindMSB:
7344 builder.addCapability(spv::CapabilityGroupNonUniform);
7345 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
7346 break;
7347 case glslang::EOpSubgroupShuffle:
7348 case glslang::EOpSubgroupShuffleXor:
7349 builder.addCapability(spv::CapabilityGroupNonUniform);
7350 builder.addCapability(spv::CapabilityGroupNonUniformShuffle);
7351 break;
7352 case glslang::EOpSubgroupShuffleUp:
7353 case glslang::EOpSubgroupShuffleDown:
7354 builder.addCapability(spv::CapabilityGroupNonUniform);
7355 builder.addCapability(spv::CapabilityGroupNonUniformShuffleRelative);
7356 break;
7357 case glslang::EOpSubgroupAdd:
7358 case glslang::EOpSubgroupMul:
7359 case glslang::EOpSubgroupMin:
7360 case glslang::EOpSubgroupMax:
7361 case glslang::EOpSubgroupAnd:
7362 case glslang::EOpSubgroupOr:
7363 case glslang::EOpSubgroupXor:
7364 case glslang::EOpSubgroupInclusiveAdd:
7365 case glslang::EOpSubgroupInclusiveMul:
7366 case glslang::EOpSubgroupInclusiveMin:
7367 case glslang::EOpSubgroupInclusiveMax:
7368 case glslang::EOpSubgroupInclusiveAnd:
7369 case glslang::EOpSubgroupInclusiveOr:
7370 case glslang::EOpSubgroupInclusiveXor:
7371 case glslang::EOpSubgroupExclusiveAdd:
7372 case glslang::EOpSubgroupExclusiveMul:
7373 case glslang::EOpSubgroupExclusiveMin:
7374 case glslang::EOpSubgroupExclusiveMax:
7375 case glslang::EOpSubgroupExclusiveAnd:
7376 case glslang::EOpSubgroupExclusiveOr:
7377 case glslang::EOpSubgroupExclusiveXor:
7378 builder.addCapability(spv::CapabilityGroupNonUniform);
7379 builder.addCapability(spv::CapabilityGroupNonUniformArithmetic);
7380 break;
7381 case glslang::EOpSubgroupClusteredAdd:
7382 case glslang::EOpSubgroupClusteredMul:
7383 case glslang::EOpSubgroupClusteredMin:
7384 case glslang::EOpSubgroupClusteredMax:
7385 case glslang::EOpSubgroupClusteredAnd:
7386 case glslang::EOpSubgroupClusteredOr:
7387 case glslang::EOpSubgroupClusteredXor:
7388 builder.addCapability(spv::CapabilityGroupNonUniform);
7389 builder.addCapability(spv::CapabilityGroupNonUniformClustered);
7390 break;
7391 case glslang::EOpSubgroupQuadBroadcast:
7392 case glslang::EOpSubgroupQuadSwapHorizontal:
7393 case glslang::EOpSubgroupQuadSwapVertical:
7394 case glslang::EOpSubgroupQuadSwapDiagonal:
7395 builder.addCapability(spv::CapabilityGroupNonUniform);
7396 builder.addCapability(spv::CapabilityGroupNonUniformQuad);
7397 break;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007398 case glslang::EOpSubgroupPartitionedAdd:
7399 case glslang::EOpSubgroupPartitionedMul:
7400 case glslang::EOpSubgroupPartitionedMin:
7401 case glslang::EOpSubgroupPartitionedMax:
7402 case glslang::EOpSubgroupPartitionedAnd:
7403 case glslang::EOpSubgroupPartitionedOr:
7404 case glslang::EOpSubgroupPartitionedXor:
7405 case glslang::EOpSubgroupPartitionedInclusiveAdd:
7406 case glslang::EOpSubgroupPartitionedInclusiveMul:
7407 case glslang::EOpSubgroupPartitionedInclusiveMin:
7408 case glslang::EOpSubgroupPartitionedInclusiveMax:
7409 case glslang::EOpSubgroupPartitionedInclusiveAnd:
7410 case glslang::EOpSubgroupPartitionedInclusiveOr:
7411 case glslang::EOpSubgroupPartitionedInclusiveXor:
7412 case glslang::EOpSubgroupPartitionedExclusiveAdd:
7413 case glslang::EOpSubgroupPartitionedExclusiveMul:
7414 case glslang::EOpSubgroupPartitionedExclusiveMin:
7415 case glslang::EOpSubgroupPartitionedExclusiveMax:
7416 case glslang::EOpSubgroupPartitionedExclusiveAnd:
7417 case glslang::EOpSubgroupPartitionedExclusiveOr:
7418 case glslang::EOpSubgroupPartitionedExclusiveXor:
7419 builder.addExtension(spv::E_SPV_NV_shader_subgroup_partitioned);
7420 builder.addCapability(spv::CapabilityGroupNonUniformPartitionedNV);
7421 break;
John Kessenich66011cb2018-03-06 16:12:04 -07007422 default: assert(0 && "Unhandled subgroup operation!");
7423 }
7424
Jeff Bolzc5b669e2019-09-08 08:49:18 -05007425
7426 const bool isUnsigned = isTypeUnsignedInt(typeProxy);
7427 const bool isFloat = isTypeFloat(typeProxy);
John Kessenich66011cb2018-03-06 16:12:04 -07007428 const bool isBool = typeProxy == glslang::EbtBool;
7429
7430 spv::Op opCode = spv::OpNop;
7431
7432 // Figure out which opcode to use.
7433 switch (op) {
7434 case glslang::EOpSubgroupElect: opCode = spv::OpGroupNonUniformElect; break;
7435 case glslang::EOpSubgroupAll: opCode = spv::OpGroupNonUniformAll; break;
7436 case glslang::EOpSubgroupAny: opCode = spv::OpGroupNonUniformAny; break;
7437 case glslang::EOpSubgroupAllEqual: opCode = spv::OpGroupNonUniformAllEqual; break;
7438 case glslang::EOpSubgroupBroadcast: opCode = spv::OpGroupNonUniformBroadcast; break;
7439 case glslang::EOpSubgroupBroadcastFirst: opCode = spv::OpGroupNonUniformBroadcastFirst; break;
7440 case glslang::EOpSubgroupBallot: opCode = spv::OpGroupNonUniformBallot; break;
7441 case glslang::EOpSubgroupInverseBallot: opCode = spv::OpGroupNonUniformInverseBallot; break;
7442 case glslang::EOpSubgroupBallotBitExtract: opCode = spv::OpGroupNonUniformBallotBitExtract; break;
7443 case glslang::EOpSubgroupBallotBitCount:
7444 case glslang::EOpSubgroupBallotInclusiveBitCount:
7445 case glslang::EOpSubgroupBallotExclusiveBitCount: opCode = spv::OpGroupNonUniformBallotBitCount; break;
7446 case glslang::EOpSubgroupBallotFindLSB: opCode = spv::OpGroupNonUniformBallotFindLSB; break;
7447 case glslang::EOpSubgroupBallotFindMSB: opCode = spv::OpGroupNonUniformBallotFindMSB; break;
7448 case glslang::EOpSubgroupShuffle: opCode = spv::OpGroupNonUniformShuffle; break;
7449 case glslang::EOpSubgroupShuffleXor: opCode = spv::OpGroupNonUniformShuffleXor; break;
7450 case glslang::EOpSubgroupShuffleUp: opCode = spv::OpGroupNonUniformShuffleUp; break;
7451 case glslang::EOpSubgroupShuffleDown: opCode = spv::OpGroupNonUniformShuffleDown; break;
7452 case glslang::EOpSubgroupAdd:
7453 case glslang::EOpSubgroupInclusiveAdd:
7454 case glslang::EOpSubgroupExclusiveAdd:
7455 case glslang::EOpSubgroupClusteredAdd:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007456 case glslang::EOpSubgroupPartitionedAdd:
7457 case glslang::EOpSubgroupPartitionedInclusiveAdd:
7458 case glslang::EOpSubgroupPartitionedExclusiveAdd:
John Kessenich66011cb2018-03-06 16:12:04 -07007459 if (isFloat) {
7460 opCode = spv::OpGroupNonUniformFAdd;
7461 } else {
7462 opCode = spv::OpGroupNonUniformIAdd;
7463 }
7464 break;
7465 case glslang::EOpSubgroupMul:
7466 case glslang::EOpSubgroupInclusiveMul:
7467 case glslang::EOpSubgroupExclusiveMul:
7468 case glslang::EOpSubgroupClusteredMul:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007469 case glslang::EOpSubgroupPartitionedMul:
7470 case glslang::EOpSubgroupPartitionedInclusiveMul:
7471 case glslang::EOpSubgroupPartitionedExclusiveMul:
John Kessenich66011cb2018-03-06 16:12:04 -07007472 if (isFloat) {
7473 opCode = spv::OpGroupNonUniformFMul;
7474 } else {
7475 opCode = spv::OpGroupNonUniformIMul;
7476 }
7477 break;
7478 case glslang::EOpSubgroupMin:
7479 case glslang::EOpSubgroupInclusiveMin:
7480 case glslang::EOpSubgroupExclusiveMin:
7481 case glslang::EOpSubgroupClusteredMin:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007482 case glslang::EOpSubgroupPartitionedMin:
7483 case glslang::EOpSubgroupPartitionedInclusiveMin:
7484 case glslang::EOpSubgroupPartitionedExclusiveMin:
John Kessenich66011cb2018-03-06 16:12:04 -07007485 if (isFloat) {
7486 opCode = spv::OpGroupNonUniformFMin;
7487 } else if (isUnsigned) {
7488 opCode = spv::OpGroupNonUniformUMin;
7489 } else {
7490 opCode = spv::OpGroupNonUniformSMin;
7491 }
7492 break;
7493 case glslang::EOpSubgroupMax:
7494 case glslang::EOpSubgroupInclusiveMax:
7495 case glslang::EOpSubgroupExclusiveMax:
7496 case glslang::EOpSubgroupClusteredMax:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007497 case glslang::EOpSubgroupPartitionedMax:
7498 case glslang::EOpSubgroupPartitionedInclusiveMax:
7499 case glslang::EOpSubgroupPartitionedExclusiveMax:
John Kessenich66011cb2018-03-06 16:12:04 -07007500 if (isFloat) {
7501 opCode = spv::OpGroupNonUniformFMax;
7502 } else if (isUnsigned) {
7503 opCode = spv::OpGroupNonUniformUMax;
7504 } else {
7505 opCode = spv::OpGroupNonUniformSMax;
7506 }
7507 break;
7508 case glslang::EOpSubgroupAnd:
7509 case glslang::EOpSubgroupInclusiveAnd:
7510 case glslang::EOpSubgroupExclusiveAnd:
7511 case glslang::EOpSubgroupClusteredAnd:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007512 case glslang::EOpSubgroupPartitionedAnd:
7513 case glslang::EOpSubgroupPartitionedInclusiveAnd:
7514 case glslang::EOpSubgroupPartitionedExclusiveAnd:
John Kessenich66011cb2018-03-06 16:12:04 -07007515 if (isBool) {
7516 opCode = spv::OpGroupNonUniformLogicalAnd;
7517 } else {
7518 opCode = spv::OpGroupNonUniformBitwiseAnd;
7519 }
7520 break;
7521 case glslang::EOpSubgroupOr:
7522 case glslang::EOpSubgroupInclusiveOr:
7523 case glslang::EOpSubgroupExclusiveOr:
7524 case glslang::EOpSubgroupClusteredOr:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007525 case glslang::EOpSubgroupPartitionedOr:
7526 case glslang::EOpSubgroupPartitionedInclusiveOr:
7527 case glslang::EOpSubgroupPartitionedExclusiveOr:
John Kessenich66011cb2018-03-06 16:12:04 -07007528 if (isBool) {
7529 opCode = spv::OpGroupNonUniformLogicalOr;
7530 } else {
7531 opCode = spv::OpGroupNonUniformBitwiseOr;
7532 }
7533 break;
7534 case glslang::EOpSubgroupXor:
7535 case glslang::EOpSubgroupInclusiveXor:
7536 case glslang::EOpSubgroupExclusiveXor:
7537 case glslang::EOpSubgroupClusteredXor:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007538 case glslang::EOpSubgroupPartitionedXor:
7539 case glslang::EOpSubgroupPartitionedInclusiveXor:
7540 case glslang::EOpSubgroupPartitionedExclusiveXor:
John Kessenich66011cb2018-03-06 16:12:04 -07007541 if (isBool) {
7542 opCode = spv::OpGroupNonUniformLogicalXor;
7543 } else {
7544 opCode = spv::OpGroupNonUniformBitwiseXor;
7545 }
7546 break;
7547 case glslang::EOpSubgroupQuadBroadcast: opCode = spv::OpGroupNonUniformQuadBroadcast; break;
7548 case glslang::EOpSubgroupQuadSwapHorizontal:
7549 case glslang::EOpSubgroupQuadSwapVertical:
7550 case glslang::EOpSubgroupQuadSwapDiagonal: opCode = spv::OpGroupNonUniformQuadSwap; break;
7551 default: assert(0 && "Unhandled subgroup operation!");
7552 }
7553
John Kessenich149afc32018-08-14 13:31:43 -06007554 // get the right Group Operation
7555 spv::GroupOperation groupOperation = spv::GroupOperationMax;
John Kessenich66011cb2018-03-06 16:12:04 -07007556 switch (op) {
John Kessenich149afc32018-08-14 13:31:43 -06007557 default:
7558 break;
John Kessenich66011cb2018-03-06 16:12:04 -07007559 case glslang::EOpSubgroupBallotBitCount:
7560 case glslang::EOpSubgroupAdd:
7561 case glslang::EOpSubgroupMul:
7562 case glslang::EOpSubgroupMin:
7563 case glslang::EOpSubgroupMax:
7564 case glslang::EOpSubgroupAnd:
7565 case glslang::EOpSubgroupOr:
7566 case glslang::EOpSubgroupXor:
John Kessenich149afc32018-08-14 13:31:43 -06007567 groupOperation = spv::GroupOperationReduce;
John Kessenich66011cb2018-03-06 16:12:04 -07007568 break;
7569 case glslang::EOpSubgroupBallotInclusiveBitCount:
7570 case glslang::EOpSubgroupInclusiveAdd:
7571 case glslang::EOpSubgroupInclusiveMul:
7572 case glslang::EOpSubgroupInclusiveMin:
7573 case glslang::EOpSubgroupInclusiveMax:
7574 case glslang::EOpSubgroupInclusiveAnd:
7575 case glslang::EOpSubgroupInclusiveOr:
7576 case glslang::EOpSubgroupInclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06007577 groupOperation = spv::GroupOperationInclusiveScan;
John Kessenich66011cb2018-03-06 16:12:04 -07007578 break;
7579 case glslang::EOpSubgroupBallotExclusiveBitCount:
7580 case glslang::EOpSubgroupExclusiveAdd:
7581 case glslang::EOpSubgroupExclusiveMul:
7582 case glslang::EOpSubgroupExclusiveMin:
7583 case glslang::EOpSubgroupExclusiveMax:
7584 case glslang::EOpSubgroupExclusiveAnd:
7585 case glslang::EOpSubgroupExclusiveOr:
7586 case glslang::EOpSubgroupExclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06007587 groupOperation = spv::GroupOperationExclusiveScan;
John Kessenich66011cb2018-03-06 16:12:04 -07007588 break;
7589 case glslang::EOpSubgroupClusteredAdd:
7590 case glslang::EOpSubgroupClusteredMul:
7591 case glslang::EOpSubgroupClusteredMin:
7592 case glslang::EOpSubgroupClusteredMax:
7593 case glslang::EOpSubgroupClusteredAnd:
7594 case glslang::EOpSubgroupClusteredOr:
7595 case glslang::EOpSubgroupClusteredXor:
John Kessenich149afc32018-08-14 13:31:43 -06007596 groupOperation = spv::GroupOperationClusteredReduce;
John Kessenich66011cb2018-03-06 16:12:04 -07007597 break;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007598 case glslang::EOpSubgroupPartitionedAdd:
7599 case glslang::EOpSubgroupPartitionedMul:
7600 case glslang::EOpSubgroupPartitionedMin:
7601 case glslang::EOpSubgroupPartitionedMax:
7602 case glslang::EOpSubgroupPartitionedAnd:
7603 case glslang::EOpSubgroupPartitionedOr:
7604 case glslang::EOpSubgroupPartitionedXor:
John Kessenich149afc32018-08-14 13:31:43 -06007605 groupOperation = spv::GroupOperationPartitionedReduceNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007606 break;
7607 case glslang::EOpSubgroupPartitionedInclusiveAdd:
7608 case glslang::EOpSubgroupPartitionedInclusiveMul:
7609 case glslang::EOpSubgroupPartitionedInclusiveMin:
7610 case glslang::EOpSubgroupPartitionedInclusiveMax:
7611 case glslang::EOpSubgroupPartitionedInclusiveAnd:
7612 case glslang::EOpSubgroupPartitionedInclusiveOr:
7613 case glslang::EOpSubgroupPartitionedInclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06007614 groupOperation = spv::GroupOperationPartitionedInclusiveScanNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007615 break;
7616 case glslang::EOpSubgroupPartitionedExclusiveAdd:
7617 case glslang::EOpSubgroupPartitionedExclusiveMul:
7618 case glslang::EOpSubgroupPartitionedExclusiveMin:
7619 case glslang::EOpSubgroupPartitionedExclusiveMax:
7620 case glslang::EOpSubgroupPartitionedExclusiveAnd:
7621 case glslang::EOpSubgroupPartitionedExclusiveOr:
7622 case glslang::EOpSubgroupPartitionedExclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06007623 groupOperation = spv::GroupOperationPartitionedExclusiveScanNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007624 break;
John Kessenich66011cb2018-03-06 16:12:04 -07007625 }
7626
John Kessenich149afc32018-08-14 13:31:43 -06007627 // build the instruction
7628 std::vector<spv::IdImmediate> spvGroupOperands;
7629
7630 // Every operation begins with the Execution Scope operand.
7631 spv::IdImmediate executionScope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
7632 spvGroupOperands.push_back(executionScope);
7633
7634 // Next, for all operations that use a Group Operation, push that as an operand.
7635 if (groupOperation != spv::GroupOperationMax) {
John Kessenichd122a722018-09-18 03:43:30 -06007636 spv::IdImmediate groupOperand = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06007637 spvGroupOperands.push_back(groupOperand);
7638 }
7639
John Kessenich66011cb2018-03-06 16:12:04 -07007640 // Push back the operands next.
John Kessenich149afc32018-08-14 13:31:43 -06007641 for (auto opIt = operands.cbegin(); opIt != operands.cend(); ++opIt) {
7642 spv::IdImmediate operand = { true, *opIt };
7643 spvGroupOperands.push_back(operand);
John Kessenich66011cb2018-03-06 16:12:04 -07007644 }
7645
7646 // Some opcodes have additional operands.
John Kessenich149afc32018-08-14 13:31:43 -06007647 spv::Id directionId = spv::NoResult;
John Kessenich66011cb2018-03-06 16:12:04 -07007648 switch (op) {
7649 default: break;
John Kessenich149afc32018-08-14 13:31:43 -06007650 case glslang::EOpSubgroupQuadSwapHorizontal: directionId = builder.makeUintConstant(0); break;
7651 case glslang::EOpSubgroupQuadSwapVertical: directionId = builder.makeUintConstant(1); break;
7652 case glslang::EOpSubgroupQuadSwapDiagonal: directionId = builder.makeUintConstant(2); break;
7653 }
7654 if (directionId != spv::NoResult) {
7655 spv::IdImmediate direction = { true, directionId };
7656 spvGroupOperands.push_back(direction);
John Kessenich66011cb2018-03-06 16:12:04 -07007657 }
7658
7659 return builder.createOp(opCode, typeId, spvGroupOperands);
7660}
7661
John Kessenich8985fc92020-03-03 10:25:07 -07007662spv::Id TGlslangToSpvTraverser::createMiscOperation(glslang::TOperator op, spv::Decoration precision,
7663 spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich140f3df2015-06-26 16:58:36 -06007664{
John Kessenich66011cb2018-03-06 16:12:04 -07007665 bool isUnsigned = isTypeUnsignedInt(typeProxy);
7666 bool isFloat = isTypeFloat(typeProxy);
John Kessenich5e4b1242015-08-06 22:53:06 -06007667
John Kessenich140f3df2015-06-26 16:58:36 -06007668 spv::Op opCode = spv::OpNop;
Rex Xu9d93a232016-05-05 12:30:44 +08007669 int extBuiltins = -1;
John Kessenich140f3df2015-06-26 16:58:36 -06007670 int libCall = -1;
Mark Adams364c21c2016-01-06 13:41:02 -05007671 size_t consumedOperands = operands.size();
John Kessenich55e7d112015-11-15 21:33:39 -07007672 spv::Id typeId0 = 0;
7673 if (consumedOperands > 0)
7674 typeId0 = builder.getTypeId(operands[0]);
Rex Xu470026f2017-03-29 17:12:40 +08007675 spv::Id typeId1 = 0;
7676 if (consumedOperands > 1)
7677 typeId1 = builder.getTypeId(operands[1]);
John Kessenich55e7d112015-11-15 21:33:39 -07007678 spv::Id frexpIntType = 0;
John Kessenich140f3df2015-06-26 16:58:36 -06007679
7680 switch (op) {
7681 case glslang::EOpMin:
John Kessenich5e4b1242015-08-06 22:53:06 -06007682 if (isFloat)
John Kessenich605afc72019-06-17 23:33:09 -06007683 libCall = nanMinMaxClamp ? spv::GLSLstd450NMin : spv::GLSLstd450FMin;
John Kessenich5e4b1242015-08-06 22:53:06 -06007684 else if (isUnsigned)
7685 libCall = spv::GLSLstd450UMin;
7686 else
7687 libCall = spv::GLSLstd450SMin;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007688 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06007689 break;
7690 case glslang::EOpModf:
John Kessenich5e4b1242015-08-06 22:53:06 -06007691 libCall = spv::GLSLstd450Modf;
John Kessenich140f3df2015-06-26 16:58:36 -06007692 break;
7693 case glslang::EOpMax:
John Kessenich5e4b1242015-08-06 22:53:06 -06007694 if (isFloat)
John Kessenich605afc72019-06-17 23:33:09 -06007695 libCall = nanMinMaxClamp ? spv::GLSLstd450NMax : spv::GLSLstd450FMax;
John Kessenich5e4b1242015-08-06 22:53:06 -06007696 else if (isUnsigned)
7697 libCall = spv::GLSLstd450UMax;
7698 else
7699 libCall = spv::GLSLstd450SMax;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007700 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06007701 break;
7702 case glslang::EOpPow:
John Kessenich5e4b1242015-08-06 22:53:06 -06007703 libCall = spv::GLSLstd450Pow;
John Kessenich140f3df2015-06-26 16:58:36 -06007704 break;
7705 case glslang::EOpDot:
7706 opCode = spv::OpDot;
7707 break;
7708 case glslang::EOpAtan:
John Kessenich5e4b1242015-08-06 22:53:06 -06007709 libCall = spv::GLSLstd450Atan2;
John Kessenich140f3df2015-06-26 16:58:36 -06007710 break;
7711
7712 case glslang::EOpClamp:
John Kessenich5e4b1242015-08-06 22:53:06 -06007713 if (isFloat)
John Kessenich605afc72019-06-17 23:33:09 -06007714 libCall = nanMinMaxClamp ? spv::GLSLstd450NClamp : spv::GLSLstd450FClamp;
John Kessenich5e4b1242015-08-06 22:53:06 -06007715 else if (isUnsigned)
7716 libCall = spv::GLSLstd450UClamp;
7717 else
7718 libCall = spv::GLSLstd450SClamp;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007719 builder.promoteScalar(precision, operands.front(), operands[1]);
7720 builder.promoteScalar(precision, operands.front(), operands[2]);
John Kessenich140f3df2015-06-26 16:58:36 -06007721 break;
7722 case glslang::EOpMix:
Rex Xud715adc2016-03-15 12:08:31 +08007723 if (! builder.isBoolType(builder.getScalarTypeId(builder.getTypeId(operands.back())))) {
7724 assert(isFloat);
John Kessenich55e7d112015-11-15 21:33:39 -07007725 libCall = spv::GLSLstd450FMix;
Rex Xud715adc2016-03-15 12:08:31 +08007726 } else {
John Kessenich6c292d32016-02-15 20:58:50 -07007727 opCode = spv::OpSelect;
Rex Xud715adc2016-03-15 12:08:31 +08007728 std::swap(operands.front(), operands.back());
John Kessenich6c292d32016-02-15 20:58:50 -07007729 }
John Kesseniche7c83cf2015-12-13 13:34:37 -07007730 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06007731 break;
7732 case glslang::EOpStep:
John Kessenich5e4b1242015-08-06 22:53:06 -06007733 libCall = spv::GLSLstd450Step;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007734 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06007735 break;
7736 case glslang::EOpSmoothStep:
John Kessenich5e4b1242015-08-06 22:53:06 -06007737 libCall = spv::GLSLstd450SmoothStep;
John Kesseniche7c83cf2015-12-13 13:34:37 -07007738 builder.promoteScalar(precision, operands[0], operands[2]);
7739 builder.promoteScalar(precision, operands[1], operands[2]);
John Kessenich140f3df2015-06-26 16:58:36 -06007740 break;
7741
7742 case glslang::EOpDistance:
John Kessenich5e4b1242015-08-06 22:53:06 -06007743 libCall = spv::GLSLstd450Distance;
John Kessenich140f3df2015-06-26 16:58:36 -06007744 break;
7745 case glslang::EOpCross:
John Kessenich5e4b1242015-08-06 22:53:06 -06007746 libCall = spv::GLSLstd450Cross;
John Kessenich140f3df2015-06-26 16:58:36 -06007747 break;
7748 case glslang::EOpFaceForward:
John Kessenich5e4b1242015-08-06 22:53:06 -06007749 libCall = spv::GLSLstd450FaceForward;
John Kessenich140f3df2015-06-26 16:58:36 -06007750 break;
7751 case glslang::EOpReflect:
John Kessenich5e4b1242015-08-06 22:53:06 -06007752 libCall = spv::GLSLstd450Reflect;
John Kessenich140f3df2015-06-26 16:58:36 -06007753 break;
7754 case glslang::EOpRefract:
John Kessenich5e4b1242015-08-06 22:53:06 -06007755 libCall = spv::GLSLstd450Refract;
John Kessenich140f3df2015-06-26 16:58:36 -06007756 break;
John Kessenich3dd1ce52019-10-17 07:08:40 -06007757 case glslang::EOpBarrier:
7758 {
7759 // This is for the extended controlBarrier function, with four operands.
7760 // The unextended barrier() goes through createNoArgOperation.
7761 assert(operands.size() == 4);
7762 unsigned int executionScope = builder.getConstantScalar(operands[0]);
7763 unsigned int memoryScope = builder.getConstantScalar(operands[1]);
7764 unsigned int semantics = builder.getConstantScalar(operands[2]) | builder.getConstantScalar(operands[3]);
John Kessenich8985fc92020-03-03 10:25:07 -07007765 builder.createControlBarrier((spv::Scope)executionScope, (spv::Scope)memoryScope,
7766 (spv::MemorySemanticsMask)semantics);
John Kessenich3dd1ce52019-10-17 07:08:40 -06007767 if (semantics & (spv::MemorySemanticsMakeAvailableKHRMask |
7768 spv::MemorySemanticsMakeVisibleKHRMask |
7769 spv::MemorySemanticsOutputMemoryKHRMask |
7770 spv::MemorySemanticsVolatileMask)) {
7771 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7772 }
John Kessenich8985fc92020-03-03 10:25:07 -07007773 if (glslangIntermediate->usingVulkanMemoryModel() && (executionScope == spv::ScopeDevice ||
7774 memoryScope == spv::ScopeDevice)) {
John Kessenich3dd1ce52019-10-17 07:08:40 -06007775 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
7776 }
7777 return 0;
7778 }
7779 break;
7780 case glslang::EOpMemoryBarrier:
7781 {
7782 // This is for the extended memoryBarrier function, with three operands.
7783 // The unextended memoryBarrier() goes through createNoArgOperation.
7784 assert(operands.size() == 3);
7785 unsigned int memoryScope = builder.getConstantScalar(operands[0]);
7786 unsigned int semantics = builder.getConstantScalar(operands[1]) | builder.getConstantScalar(operands[2]);
7787 builder.createMemoryBarrier((spv::Scope)memoryScope, (spv::MemorySemanticsMask)semantics);
7788 if (semantics & (spv::MemorySemanticsMakeAvailableKHRMask |
7789 spv::MemorySemanticsMakeVisibleKHRMask |
7790 spv::MemorySemanticsOutputMemoryKHRMask |
7791 spv::MemorySemanticsVolatileMask)) {
7792 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7793 }
7794 if (glslangIntermediate->usingVulkanMemoryModel() && memoryScope == spv::ScopeDevice) {
7795 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
7796 }
7797 return 0;
7798 }
7799 break;
7800
John Kessenicha28f7a72019-08-06 07:00:58 -06007801#ifndef GLSLANG_WEB
Rex Xu7a26c172015-12-08 17:12:09 +08007802 case glslang::EOpInterpolateAtSample:
Rex Xub4a2a6c2018-05-17 13:51:28 +08007803 if (typeProxy == glslang::EbtFloat16)
7804 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
Rex Xu7a26c172015-12-08 17:12:09 +08007805 libCall = spv::GLSLstd450InterpolateAtSample;
7806 break;
7807 case glslang::EOpInterpolateAtOffset:
Rex Xub4a2a6c2018-05-17 13:51:28 +08007808 if (typeProxy == glslang::EbtFloat16)
7809 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
Rex Xu7a26c172015-12-08 17:12:09 +08007810 libCall = spv::GLSLstd450InterpolateAtOffset;
7811 break;
John Kessenich55e7d112015-11-15 21:33:39 -07007812 case glslang::EOpAddCarry:
7813 opCode = spv::OpIAddCarry;
7814 typeId = builder.makeStructResultType(typeId0, typeId0);
7815 consumedOperands = 2;
7816 break;
7817 case glslang::EOpSubBorrow:
7818 opCode = spv::OpISubBorrow;
7819 typeId = builder.makeStructResultType(typeId0, typeId0);
7820 consumedOperands = 2;
7821 break;
7822 case glslang::EOpUMulExtended:
7823 opCode = spv::OpUMulExtended;
7824 typeId = builder.makeStructResultType(typeId0, typeId0);
7825 consumedOperands = 2;
7826 break;
7827 case glslang::EOpIMulExtended:
7828 opCode = spv::OpSMulExtended;
7829 typeId = builder.makeStructResultType(typeId0, typeId0);
7830 consumedOperands = 2;
7831 break;
7832 case glslang::EOpBitfieldExtract:
7833 if (isUnsigned)
7834 opCode = spv::OpBitFieldUExtract;
7835 else
7836 opCode = spv::OpBitFieldSExtract;
7837 break;
7838 case glslang::EOpBitfieldInsert:
7839 opCode = spv::OpBitFieldInsert;
7840 break;
7841
7842 case glslang::EOpFma:
7843 libCall = spv::GLSLstd450Fma;
7844 break;
7845 case glslang::EOpFrexp:
Rex Xu470026f2017-03-29 17:12:40 +08007846 {
7847 libCall = spv::GLSLstd450FrexpStruct;
7848 assert(builder.isPointerType(typeId1));
7849 typeId1 = builder.getContainedTypeId(typeId1);
Rex Xu470026f2017-03-29 17:12:40 +08007850 int width = builder.getScalarTypeWidth(typeId1);
Rex Xu7c88aff2018-04-11 16:56:50 +08007851 if (width == 16)
7852 // Using 16-bit exp operand, enable extension SPV_AMD_gpu_shader_int16
7853 builder.addExtension(spv::E_SPV_AMD_gpu_shader_int16);
Rex Xu470026f2017-03-29 17:12:40 +08007854 if (builder.getNumComponents(operands[0]) == 1)
7855 frexpIntType = builder.makeIntegerType(width, true);
7856 else
John Kessenich8985fc92020-03-03 10:25:07 -07007857 frexpIntType = builder.makeVectorType(builder.makeIntegerType(width, true),
7858 builder.getNumComponents(operands[0]));
Rex Xu470026f2017-03-29 17:12:40 +08007859 typeId = builder.makeStructResultType(typeId0, frexpIntType);
7860 consumedOperands = 1;
7861 }
John Kessenich55e7d112015-11-15 21:33:39 -07007862 break;
7863 case glslang::EOpLdexp:
7864 libCall = spv::GLSLstd450Ldexp;
7865 break;
7866
Rex Xu574ab042016-04-14 16:53:07 +08007867 case glslang::EOpReadInvocation:
Rex Xu51596642016-09-21 18:56:12 +08007868 return createInvocationsOperation(op, typeId, operands, typeProxy);
Rex Xu574ab042016-04-14 16:53:07 +08007869
John Kessenich66011cb2018-03-06 16:12:04 -07007870 case glslang::EOpSubgroupBroadcast:
7871 case glslang::EOpSubgroupBallotBitExtract:
7872 case glslang::EOpSubgroupShuffle:
7873 case glslang::EOpSubgroupShuffleXor:
7874 case glslang::EOpSubgroupShuffleUp:
7875 case glslang::EOpSubgroupShuffleDown:
7876 case glslang::EOpSubgroupClusteredAdd:
7877 case glslang::EOpSubgroupClusteredMul:
7878 case glslang::EOpSubgroupClusteredMin:
7879 case glslang::EOpSubgroupClusteredMax:
7880 case glslang::EOpSubgroupClusteredAnd:
7881 case glslang::EOpSubgroupClusteredOr:
7882 case glslang::EOpSubgroupClusteredXor:
7883 case glslang::EOpSubgroupQuadBroadcast:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05007884 case glslang::EOpSubgroupPartitionedAdd:
7885 case glslang::EOpSubgroupPartitionedMul:
7886 case glslang::EOpSubgroupPartitionedMin:
7887 case glslang::EOpSubgroupPartitionedMax:
7888 case glslang::EOpSubgroupPartitionedAnd:
7889 case glslang::EOpSubgroupPartitionedOr:
7890 case glslang::EOpSubgroupPartitionedXor:
7891 case glslang::EOpSubgroupPartitionedInclusiveAdd:
7892 case glslang::EOpSubgroupPartitionedInclusiveMul:
7893 case glslang::EOpSubgroupPartitionedInclusiveMin:
7894 case glslang::EOpSubgroupPartitionedInclusiveMax:
7895 case glslang::EOpSubgroupPartitionedInclusiveAnd:
7896 case glslang::EOpSubgroupPartitionedInclusiveOr:
7897 case glslang::EOpSubgroupPartitionedInclusiveXor:
7898 case glslang::EOpSubgroupPartitionedExclusiveAdd:
7899 case glslang::EOpSubgroupPartitionedExclusiveMul:
7900 case glslang::EOpSubgroupPartitionedExclusiveMin:
7901 case glslang::EOpSubgroupPartitionedExclusiveMax:
7902 case glslang::EOpSubgroupPartitionedExclusiveAnd:
7903 case glslang::EOpSubgroupPartitionedExclusiveOr:
7904 case glslang::EOpSubgroupPartitionedExclusiveXor:
John Kessenich66011cb2018-03-06 16:12:04 -07007905 return createSubgroupOperation(op, typeId, operands, typeProxy);
7906
Rex Xu9d93a232016-05-05 12:30:44 +08007907 case glslang::EOpSwizzleInvocations:
7908 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
7909 libCall = spv::SwizzleInvocationsAMD;
7910 break;
7911 case glslang::EOpSwizzleInvocationsMasked:
7912 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
7913 libCall = spv::SwizzleInvocationsMaskedAMD;
7914 break;
7915 case glslang::EOpWriteInvocation:
7916 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
7917 libCall = spv::WriteInvocationAMD;
7918 break;
7919
7920 case glslang::EOpMin3:
7921 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
7922 if (isFloat)
7923 libCall = spv::FMin3AMD;
7924 else {
7925 if (isUnsigned)
7926 libCall = spv::UMin3AMD;
7927 else
7928 libCall = spv::SMin3AMD;
7929 }
7930 break;
7931 case glslang::EOpMax3:
7932 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
7933 if (isFloat)
7934 libCall = spv::FMax3AMD;
7935 else {
7936 if (isUnsigned)
7937 libCall = spv::UMax3AMD;
7938 else
7939 libCall = spv::SMax3AMD;
7940 }
7941 break;
7942 case glslang::EOpMid3:
7943 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
7944 if (isFloat)
7945 libCall = spv::FMid3AMD;
7946 else {
7947 if (isUnsigned)
7948 libCall = spv::UMid3AMD;
7949 else
7950 libCall = spv::SMid3AMD;
7951 }
7952 break;
7953
7954 case glslang::EOpInterpolateAtVertex:
Rex Xub4a2a6c2018-05-17 13:51:28 +08007955 if (typeProxy == glslang::EbtFloat16)
7956 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
Rex Xu9d93a232016-05-05 12:30:44 +08007957 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
7958 libCall = spv::InterpolateAtVertexAMD;
7959 break;
Chao Chen3c366992018-09-19 11:41:59 -07007960
Daniel Kochdb32b242020-03-17 20:42:47 -04007961 case glslang::EOpReportIntersection:
Chao Chenb50c02e2018-09-19 11:42:24 -07007962 typeId = builder.makeBoolType();
Daniel Kochdb32b242020-03-17 20:42:47 -04007963 opCode = spv::OpReportIntersectionKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007964 break;
Daniel Kochffccefd2020-11-23 15:41:27 -05007965 case glslang::EOpTraceNV:
7966 builder.createNoResultOp(spv::OpTraceNV, operands);
7967 return 0;
7968 case glslang::EOpTraceKHR:
Daniel Kochdb32b242020-03-17 20:42:47 -04007969 builder.createNoResultOp(spv::OpTraceRayKHR, operands);
Ashwin Leleff1783d2018-10-22 16:41:44 -07007970 return 0;
Daniel Kochffccefd2020-11-23 15:41:27 -05007971 case glslang::EOpExecuteCallableNV:
7972 builder.createNoResultOp(spv::OpExecuteCallableNV, operands);
7973 return 0;
7974 case glslang::EOpExecuteCallableKHR:
Daniel Kochdb32b242020-03-17 20:42:47 -04007975 builder.createNoResultOp(spv::OpExecuteCallableKHR, operands);
Chao Chenb50c02e2018-09-19 11:42:24 -07007976 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007977
7978 case glslang::EOpRayQueryInitialize:
Torosdagli06c2eee2020-03-19 11:09:57 -04007979 builder.createNoResultOp(spv::OpRayQueryInitializeKHR, operands);
7980 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007981 case glslang::EOpRayQueryTerminate:
Torosdagli06c2eee2020-03-19 11:09:57 -04007982 builder.createNoResultOp(spv::OpRayQueryTerminateKHR, operands);
7983 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007984 case glslang::EOpRayQueryGenerateIntersection:
Torosdagli06c2eee2020-03-19 11:09:57 -04007985 builder.createNoResultOp(spv::OpRayQueryGenerateIntersectionKHR, operands);
7986 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007987 case glslang::EOpRayQueryConfirmIntersection:
Torosdagli06c2eee2020-03-19 11:09:57 -04007988 builder.createNoResultOp(spv::OpRayQueryConfirmIntersectionKHR, operands);
7989 return 0;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007990 case glslang::EOpRayQueryProceed:
Torosdagli06c2eee2020-03-19 11:09:57 -04007991 typeId = builder.makeBoolType();
7992 opCode = spv::OpRayQueryProceedKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007993 break;
7994 case glslang::EOpRayQueryGetIntersectionType:
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04007995 typeId = builder.makeUintType(32);
Torosdagli06c2eee2020-03-19 11:09:57 -04007996 opCode = spv::OpRayQueryGetIntersectionTypeKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04007997 break;
7998 case glslang::EOpRayQueryGetRayTMin:
Torosdagli06c2eee2020-03-19 11:09:57 -04007999 typeId = builder.makeFloatType(32);
8000 opCode = spv::OpRayQueryGetRayTMinKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008001 break;
8002 case glslang::EOpRayQueryGetRayFlags:
Torosdagli06c2eee2020-03-19 11:09:57 -04008003 typeId = builder.makeIntType(32);
8004 opCode = spv::OpRayQueryGetRayFlagsKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008005 break;
8006 case glslang::EOpRayQueryGetIntersectionT:
Neslisah Torosdagli50a72282020-03-20 18:23:27 -04008007 typeId = builder.makeFloatType(32);
Torosdagli06c2eee2020-03-19 11:09:57 -04008008 opCode = spv::OpRayQueryGetIntersectionTKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008009 break;
8010 case glslang::EOpRayQueryGetIntersectionInstanceCustomIndex:
Torosdagli06c2eee2020-03-19 11:09:57 -04008011 typeId = builder.makeIntType(32);
8012 opCode = spv::OpRayQueryGetIntersectionInstanceCustomIndexKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008013 break;
8014 case glslang::EOpRayQueryGetIntersectionInstanceId:
Torosdagli06c2eee2020-03-19 11:09:57 -04008015 typeId = builder.makeIntType(32);
8016 opCode = spv::OpRayQueryGetIntersectionInstanceIdKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008017 break;
8018 case glslang::EOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffset:
Daniel Kochc0bcfaf2020-12-12 12:34:24 -05008019 typeId = builder.makeUintType(32);
Torosdagli06c2eee2020-03-19 11:09:57 -04008020 opCode = spv::OpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffsetKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008021 break;
8022 case glslang::EOpRayQueryGetIntersectionGeometryIndex:
Torosdagli06c2eee2020-03-19 11:09:57 -04008023 typeId = builder.makeIntType(32);
8024 opCode = spv::OpRayQueryGetIntersectionGeometryIndexKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008025 break;
8026 case glslang::EOpRayQueryGetIntersectionPrimitiveIndex:
Torosdagli06c2eee2020-03-19 11:09:57 -04008027 typeId = builder.makeIntType(32);
8028 opCode = spv::OpRayQueryGetIntersectionPrimitiveIndexKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008029 break;
8030 case glslang::EOpRayQueryGetIntersectionBarycentrics:
Torosdagli06c2eee2020-03-19 11:09:57 -04008031 typeId = builder.makeVectorType(builder.makeFloatType(32), 2);
8032 opCode = spv::OpRayQueryGetIntersectionBarycentricsKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008033 break;
8034 case glslang::EOpRayQueryGetIntersectionFrontFace:
Torosdagli06c2eee2020-03-19 11:09:57 -04008035 typeId = builder.makeBoolType();
8036 opCode = spv::OpRayQueryGetIntersectionFrontFaceKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008037 break;
8038 case glslang::EOpRayQueryGetIntersectionCandidateAABBOpaque:
Torosdagli06c2eee2020-03-19 11:09:57 -04008039 typeId = builder.makeBoolType();
8040 opCode = spv::OpRayQueryGetIntersectionCandidateAABBOpaqueKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008041 break;
8042 case glslang::EOpRayQueryGetIntersectionObjectRayDirection:
Torosdagli06c2eee2020-03-19 11:09:57 -04008043 typeId = builder.makeVectorType(builder.makeFloatType(32), 3);
8044 opCode = spv::OpRayQueryGetIntersectionObjectRayDirectionKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008045 break;
8046 case glslang::EOpRayQueryGetIntersectionObjectRayOrigin:
Torosdagli06c2eee2020-03-19 11:09:57 -04008047 typeId = builder.makeVectorType(builder.makeFloatType(32), 3);
8048 opCode = spv::OpRayQueryGetIntersectionObjectRayOriginKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008049 break;
8050 case glslang::EOpRayQueryGetWorldRayDirection:
Torosdagli06c2eee2020-03-19 11:09:57 -04008051 typeId = builder.makeVectorType(builder.makeFloatType(32), 3);
8052 opCode = spv::OpRayQueryGetWorldRayDirectionKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008053 break;
8054 case glslang::EOpRayQueryGetWorldRayOrigin:
Torosdagli06c2eee2020-03-19 11:09:57 -04008055 typeId = builder.makeVectorType(builder.makeFloatType(32), 3);
8056 opCode = spv::OpRayQueryGetWorldRayOriginKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008057 break;
8058 case glslang::EOpRayQueryGetIntersectionObjectToWorld:
Torosdagli06c2eee2020-03-19 11:09:57 -04008059 typeId = builder.makeMatrixType(builder.makeFloatType(32), 4, 3);
Torosdagli06c2eee2020-03-19 11:09:57 -04008060 opCode = spv::OpRayQueryGetIntersectionObjectToWorldKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008061 break;
8062 case glslang::EOpRayQueryGetIntersectionWorldToObject:
Torosdagli06c2eee2020-03-19 11:09:57 -04008063 typeId = builder.makeMatrixType(builder.makeFloatType(32), 4, 3);
Torosdagli06c2eee2020-03-19 11:09:57 -04008064 opCode = spv::OpRayQueryGetIntersectionWorldToObjectKHR;
Neslisah Torosdaglicea93842020-03-25 08:13:32 -04008065 break;
Chao Chen3c366992018-09-19 11:41:59 -07008066 case glslang::EOpWritePackedPrimitiveIndices4x8NV:
8067 builder.createNoResultOp(spv::OpWritePackedPrimitiveIndices4x8NV, operands);
8068 return 0;
Jeff Bolz4605e2e2019-02-19 13:10:32 -06008069 case glslang::EOpCooperativeMatrixMulAdd:
8070 opCode = spv::OpCooperativeMatrixMulAddNV;
8071 break;
John Kessenicha28f7a72019-08-06 07:00:58 -06008072#endif // GLSLANG_WEB
John Kessenich140f3df2015-06-26 16:58:36 -06008073 default:
8074 return 0;
8075 }
8076
8077 spv::Id id = 0;
John Kessenich2359bd02015-12-06 19:29:11 -07008078 if (libCall >= 0) {
David Neto8d63a3d2015-12-07 16:17:06 -05008079 // Use an extended instruction from the standard library.
8080 // Construct the call arguments, without modifying the original operands vector.
8081 // We might need the remaining arguments, e.g. in the EOpFrexp case.
8082 std::vector<spv::Id> callArguments(operands.begin(), operands.begin() + consumedOperands);
Rex Xu9d93a232016-05-05 12:30:44 +08008083 id = builder.createBuiltinCall(typeId, extBuiltins >= 0 ? extBuiltins : stdBuiltins, libCall, callArguments);
t.jungb16bea82018-11-15 10:21:36 +01008084 } else if (opCode == spv::OpDot && !isFloat) {
8085 // int dot(int, int)
8086 // NOTE: never called for scalar/vector1, this is turned into simple mul before this can be reached
8087 const int componentCount = builder.getNumComponents(operands[0]);
8088 spv::Id mulOp = builder.createBinOp(spv::OpIMul, builder.getTypeId(operands[0]), operands[0], operands[1]);
8089 builder.setPrecision(mulOp, precision);
8090 id = builder.createCompositeExtract(mulOp, typeId, 0);
8091 for (int i = 1; i < componentCount; ++i) {
8092 builder.setPrecision(id, precision);
John Kessenich5de15a22019-12-26 10:56:54 -07008093 id = builder.createBinOp(spv::OpIAdd, typeId, id, builder.createCompositeExtract(mulOp, typeId, i));
t.jungb16bea82018-11-15 10:21:36 +01008094 }
John Kessenich2359bd02015-12-06 19:29:11 -07008095 } else {
John Kessenich55e7d112015-11-15 21:33:39 -07008096 switch (consumedOperands) {
John Kessenich140f3df2015-06-26 16:58:36 -06008097 case 0:
8098 // should all be handled by visitAggregate and createNoArgOperation
8099 assert(0);
8100 return 0;
8101 case 1:
8102 // should all be handled by createUnaryOperation
8103 assert(0);
8104 return 0;
8105 case 2:
8106 id = builder.createBinOp(opCode, typeId, operands[0], operands[1]);
8107 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008108 default:
John Kessenich55e7d112015-11-15 21:33:39 -07008109 // anything 3 or over doesn't have l-value operands, so all should be consumed
8110 assert(consumedOperands == operands.size());
8111 id = builder.createOp(opCode, typeId, operands);
John Kessenich140f3df2015-06-26 16:58:36 -06008112 break;
8113 }
8114 }
8115
John Kessenichb9197c82019-08-11 07:41:45 -06008116#ifndef GLSLANG_WEB
John Kessenich55e7d112015-11-15 21:33:39 -07008117 // Decode the return types that were structures
8118 switch (op) {
8119 case glslang::EOpAddCarry:
8120 case glslang::EOpSubBorrow:
8121 builder.createStore(builder.createCompositeExtract(id, typeId0, 1), operands[2]);
8122 id = builder.createCompositeExtract(id, typeId0, 0);
8123 break;
8124 case glslang::EOpUMulExtended:
8125 case glslang::EOpIMulExtended:
8126 builder.createStore(builder.createCompositeExtract(id, typeId0, 0), operands[3]);
8127 builder.createStore(builder.createCompositeExtract(id, typeId0, 1), operands[2]);
8128 break;
8129 case glslang::EOpFrexp:
Rex Xu470026f2017-03-29 17:12:40 +08008130 {
8131 assert(operands.size() == 2);
8132 if (builder.isFloatType(builder.getScalarTypeId(typeId1))) {
8133 // "exp" is floating-point type (from HLSL intrinsic)
8134 spv::Id member1 = builder.createCompositeExtract(id, frexpIntType, 1);
8135 member1 = builder.createUnaryOp(spv::OpConvertSToF, typeId1, member1);
8136 builder.createStore(member1, operands[1]);
8137 } else
8138 // "exp" is integer type (from GLSL built-in function)
8139 builder.createStore(builder.createCompositeExtract(id, frexpIntType, 1), operands[1]);
8140 id = builder.createCompositeExtract(id, typeId0, 0);
8141 }
John Kessenich55e7d112015-11-15 21:33:39 -07008142 break;
8143 default:
8144 break;
8145 }
John Kessenichb9197c82019-08-11 07:41:45 -06008146#endif
John Kessenich55e7d112015-11-15 21:33:39 -07008147
John Kessenich32cfd492016-02-02 12:37:46 -07008148 return builder.setPrecision(id, precision);
John Kessenich140f3df2015-06-26 16:58:36 -06008149}
8150
Rex Xu9d93a232016-05-05 12:30:44 +08008151// Intrinsics with no arguments (or no return value, and no precision).
8152spv::Id TGlslangToSpvTraverser::createNoArgOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId)
John Kessenich140f3df2015-06-26 16:58:36 -06008153{
Jeff Bolz36831c92018-09-05 10:11:41 -05008154 // GLSL memory barriers use queuefamily scope in new model, device scope in old model
John Kessenich8985fc92020-03-03 10:25:07 -07008155 spv::Scope memoryBarrierScope = glslangIntermediate->usingVulkanMemoryModel() ?
8156 spv::ScopeQueueFamilyKHR : spv::ScopeDevice;
John Kessenich140f3df2015-06-26 16:58:36 -06008157
8158 switch (op) {
John Kessenich140f3df2015-06-26 16:58:36 -06008159 case glslang::EOpBarrier:
John Kessenich82979362017-12-11 04:02:24 -07008160 if (glslangIntermediate->getStage() == EShLangTessControl) {
Jeff Bolz36831c92018-09-05 10:11:41 -05008161 if (glslangIntermediate->usingVulkanMemoryModel()) {
8162 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
8163 spv::MemorySemanticsOutputMemoryKHRMask |
8164 spv::MemorySemanticsAcquireReleaseMask);
8165 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
8166 } else {
8167 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeInvocation, spv::MemorySemanticsMaskNone);
8168 }
John Kessenich82979362017-12-11 04:02:24 -07008169 } else {
8170 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
8171 spv::MemorySemanticsWorkgroupMemoryMask |
8172 spv::MemorySemanticsAcquireReleaseMask);
8173 }
John Kessenich140f3df2015-06-26 16:58:36 -06008174 return 0;
8175 case glslang::EOpMemoryBarrier:
Jeff Bolz36831c92018-09-05 10:11:41 -05008176 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsAllMemory |
8177 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06008178 return 0;
John Kessenich140f3df2015-06-26 16:58:36 -06008179 case glslang::EOpMemoryBarrierBuffer:
Jeff Bolz36831c92018-09-05 10:11:41 -05008180 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsUniformMemoryMask |
8181 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06008182 return 0;
John Kessenich140f3df2015-06-26 16:58:36 -06008183 case glslang::EOpMemoryBarrierShared:
Jeff Bolz36831c92018-09-05 10:11:41 -05008184 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsWorkgroupMemoryMask |
8185 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06008186 return 0;
8187 case glslang::EOpGroupMemoryBarrier:
John Kessenich82979362017-12-11 04:02:24 -07008188 builder.createMemoryBarrier(spv::ScopeWorkgroup, spv::MemorySemanticsAllMemory |
8189 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06008190 return 0;
John Kessenich3dd1ce52019-10-17 07:08:40 -06008191#ifndef GLSLANG_WEB
8192 case glslang::EOpMemoryBarrierAtomicCounter:
8193 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsAtomicCounterMemoryMask |
8194 spv::MemorySemanticsAcquireReleaseMask);
8195 return 0;
8196 case glslang::EOpMemoryBarrierImage:
8197 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsImageMemoryMask |
8198 spv::MemorySemanticsAcquireReleaseMask);
8199 return 0;
LoopDawg6e72fdd2016-06-15 09:50:24 -06008200 case glslang::EOpAllMemoryBarrierWithGroupSync:
John Kessenich838d7af2017-12-12 22:50:53 -07008201 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeDevice,
John Kessenich82979362017-12-11 04:02:24 -07008202 spv::MemorySemanticsAllMemory |
John Kessenich838d7af2017-12-12 22:50:53 -07008203 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06008204 return 0;
John Kessenich838d7af2017-12-12 22:50:53 -07008205 case glslang::EOpDeviceMemoryBarrier:
8206 builder.createMemoryBarrier(spv::ScopeDevice, spv::MemorySemanticsUniformMemoryMask |
8207 spv::MemorySemanticsImageMemoryMask |
8208 spv::MemorySemanticsAcquireReleaseMask);
8209 return 0;
8210 case glslang::EOpDeviceMemoryBarrierWithGroupSync:
8211 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeDevice, spv::MemorySemanticsUniformMemoryMask |
8212 spv::MemorySemanticsImageMemoryMask |
8213 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06008214 return 0;
8215 case glslang::EOpWorkgroupMemoryBarrier:
John Kessenich838d7af2017-12-12 22:50:53 -07008216 builder.createMemoryBarrier(spv::ScopeWorkgroup, spv::MemorySemanticsWorkgroupMemoryMask |
8217 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06008218 return 0;
8219 case glslang::EOpWorkgroupMemoryBarrierWithGroupSync:
John Kessenich838d7af2017-12-12 22:50:53 -07008220 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
8221 spv::MemorySemanticsWorkgroupMemoryMask |
8222 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06008223 return 0;
John Kessenich66011cb2018-03-06 16:12:04 -07008224 case glslang::EOpSubgroupBarrier:
8225 builder.createControlBarrier(spv::ScopeSubgroup, spv::ScopeSubgroup, spv::MemorySemanticsAllMemory |
8226 spv::MemorySemanticsAcquireReleaseMask);
8227 return spv::NoResult;
8228 case glslang::EOpSubgroupMemoryBarrier:
8229 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsAllMemory |
8230 spv::MemorySemanticsAcquireReleaseMask);
8231 return spv::NoResult;
8232 case glslang::EOpSubgroupMemoryBarrierBuffer:
8233 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsUniformMemoryMask |
8234 spv::MemorySemanticsAcquireReleaseMask);
8235 return spv::NoResult;
8236 case glslang::EOpSubgroupMemoryBarrierImage:
8237 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsImageMemoryMask |
8238 spv::MemorySemanticsAcquireReleaseMask);
8239 return spv::NoResult;
8240 case glslang::EOpSubgroupMemoryBarrierShared:
8241 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsWorkgroupMemoryMask |
8242 spv::MemorySemanticsAcquireReleaseMask);
8243 return spv::NoResult;
John Kessenichf8d1d742019-10-21 06:55:11 -06008244
8245 case glslang::EOpEmitVertex:
8246 builder.createNoResultOp(spv::OpEmitVertex);
8247 return 0;
8248 case glslang::EOpEndPrimitive:
8249 builder.createNoResultOp(spv::OpEndPrimitive);
8250 return 0;
8251
John Kessenich66011cb2018-03-06 16:12:04 -07008252 case glslang::EOpSubgroupElect: {
8253 std::vector<spv::Id> operands;
8254 return createSubgroupOperation(op, typeId, operands, glslang::EbtVoid);
8255 }
Rex Xu9d93a232016-05-05 12:30:44 +08008256 case glslang::EOpTime:
8257 {
8258 std::vector<spv::Id> args; // Dummy arguments
8259 spv::Id id = builder.createBuiltinCall(typeId, getExtBuiltins(spv::E_SPV_AMD_gcn_shader), spv::TimeAMD, args);
8260 return builder.setPrecision(id, precision);
8261 }
Daniel Kochffccefd2020-11-23 15:41:27 -05008262 case glslang::EOpIgnoreIntersectionNV:
8263 builder.createNoResultOp(spv::OpIgnoreIntersectionNV);
Chao Chenb50c02e2018-09-19 11:42:24 -07008264 return 0;
Daniel Kochffccefd2020-11-23 15:41:27 -05008265 case glslang::EOpTerminateRayNV:
8266 builder.createNoResultOp(spv::OpTerminateRayNV);
Chao Chenb50c02e2018-09-19 11:42:24 -07008267 return 0;
Torosdagli06c2eee2020-03-19 11:09:57 -04008268 case glslang::EOpRayQueryInitialize:
8269 builder.createNoResultOp(spv::OpRayQueryInitializeKHR);
8270 return 0;
8271 case glslang::EOpRayQueryTerminate:
8272 builder.createNoResultOp(spv::OpRayQueryTerminateKHR);
8273 return 0;
8274 case glslang::EOpRayQueryGenerateIntersection:
8275 builder.createNoResultOp(spv::OpRayQueryGenerateIntersectionKHR);
8276 return 0;
8277 case glslang::EOpRayQueryConfirmIntersection:
8278 builder.createNoResultOp(spv::OpRayQueryConfirmIntersectionKHR);
8279 return 0;
Jeff Bolzc6f0ce82019-06-03 11:33:50 -05008280 case glslang::EOpBeginInvocationInterlock:
8281 builder.createNoResultOp(spv::OpBeginInvocationInterlockEXT);
8282 return 0;
8283 case glslang::EOpEndInvocationInterlock:
8284 builder.createNoResultOp(spv::OpEndInvocationInterlockEXT);
8285 return 0;
8286
Jeff Bolzba6170b2019-07-01 09:23:23 -05008287 case glslang::EOpIsHelperInvocation:
8288 {
8289 std::vector<spv::Id> args; // Dummy arguments
Rex Xubb7307b2019-07-15 14:57:20 +08008290 builder.addExtension(spv::E_SPV_EXT_demote_to_helper_invocation);
8291 builder.addCapability(spv::CapabilityDemoteToHelperInvocationEXT);
8292 return builder.createOp(spv::OpIsHelperInvocationEXT, typeId, args);
Jeff Bolzba6170b2019-07-01 09:23:23 -05008293 }
8294
amhagan91fb0092019-07-10 21:14:38 -04008295 case glslang::EOpReadClockSubgroupKHR: {
8296 std::vector<spv::Id> args;
8297 args.push_back(builder.makeUintConstant(spv::ScopeSubgroup));
8298 builder.addExtension(spv::E_SPV_KHR_shader_clock);
8299 builder.addCapability(spv::CapabilityShaderClockKHR);
8300 return builder.createOp(spv::OpReadClockKHR, typeId, args);
8301 }
8302
8303 case glslang::EOpReadClockDeviceKHR: {
8304 std::vector<spv::Id> args;
8305 args.push_back(builder.makeUintConstant(spv::ScopeDevice));
8306 builder.addExtension(spv::E_SPV_KHR_shader_clock);
8307 builder.addCapability(spv::CapabilityShaderClockKHR);
8308 return builder.createOp(spv::OpReadClockKHR, typeId, args);
8309 }
John Kessenich3dd1ce52019-10-17 07:08:40 -06008310#endif
John Kessenich140f3df2015-06-26 16:58:36 -06008311 default:
John Kessenich155d3512019-08-08 23:29:20 -06008312 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008313 }
John Kessenich155d3512019-08-08 23:29:20 -06008314
8315 logger->missingFunctionality("unknown operation with no arguments");
8316
8317 return 0;
John Kessenich140f3df2015-06-26 16:58:36 -06008318}
8319
8320spv::Id TGlslangToSpvTraverser::getSymbolId(const glslang::TIntermSymbol* symbol)
8321{
John Kessenich2f273362015-07-18 22:34:27 -06008322 auto iter = symbolValues.find(symbol->getId());
John Kessenich140f3df2015-06-26 16:58:36 -06008323 spv::Id id;
8324 if (symbolValues.end() != iter) {
8325 id = iter->second;
8326 return id;
8327 }
8328
8329 // it was not found, create it
John Kessenich9c14f772019-06-17 08:38:35 -06008330 spv::BuiltIn builtIn = TranslateBuiltInDecoration(symbol->getQualifier().builtIn, false);
Daniel Kochdb32b242020-03-17 20:42:47 -04008331 auto forcedType = getForcedType(symbol->getQualifier().builtIn, symbol->getType());
John Kessenich9c14f772019-06-17 08:38:35 -06008332 id = createSpvVariable(symbol, forcedType.first);
John Kessenich140f3df2015-06-26 16:58:36 -06008333 symbolValues[symbol->getId()] = id;
John Kessenich9c14f772019-06-17 08:38:35 -06008334 if (forcedType.second != spv::NoType)
8335 forceType[id] = forcedType.second;
John Kessenich140f3df2015-06-26 16:58:36 -06008336
Rex Xuc884b4a2016-06-29 15:03:44 +08008337 if (symbol->getBasicType() != glslang::EbtBlock) {
John Kessenich5d610ee2018-03-07 18:05:55 -07008338 builder.addDecoration(id, TranslatePrecisionDecoration(symbol->getType()));
8339 builder.addDecoration(id, TranslateInterpolationDecoration(symbol->getType().getQualifier()));
8340 builder.addDecoration(id, TranslateAuxiliaryStorageDecoration(symbol->getType().getQualifier()));
John Kessenicha28f7a72019-08-06 07:00:58 -06008341#ifndef GLSLANG_WEB
Chao Chen3c366992018-09-19 11:41:59 -07008342 addMeshNVDecoration(id, /*member*/ -1, symbol->getType().getQualifier());
John Kessenichb9197c82019-08-11 07:41:45 -06008343 if (symbol->getQualifier().hasComponent())
8344 builder.addDecoration(id, spv::DecorationComponent, symbol->getQualifier().layoutComponent);
8345 if (symbol->getQualifier().hasIndex())
8346 builder.addDecoration(id, spv::DecorationIndex, symbol->getQualifier().layoutIndex);
Chao Chen3c366992018-09-19 11:41:59 -07008347#endif
John Kessenich6c292d32016-02-15 20:58:50 -07008348 if (symbol->getType().getQualifier().hasSpecConstantId())
John Kessenich5d610ee2018-03-07 18:05:55 -07008349 builder.addDecoration(id, spv::DecorationSpecId, symbol->getType().getQualifier().layoutSpecConstantId);
John Kessenich91e4aa52016-07-07 17:46:42 -06008350 // atomic counters use this:
8351 if (symbol->getQualifier().hasOffset())
8352 builder.addDecoration(id, spv::DecorationOffset, symbol->getQualifier().layoutOffset);
John Kessenich140f3df2015-06-26 16:58:36 -06008353 }
8354
scygan2c864272016-05-18 18:09:17 +02008355 if (symbol->getQualifier().hasLocation())
8356 builder.addDecoration(id, spv::DecorationLocation, symbol->getQualifier().layoutLocation);
John Kessenich5d610ee2018-03-07 18:05:55 -07008357 builder.addDecoration(id, TranslateInvariantDecoration(symbol->getType().getQualifier()));
John Kessenichf2d8a5c2016-03-03 22:29:11 -07008358 if (symbol->getQualifier().hasStream() && glslangIntermediate->isMultiStream()) {
John Kessenich92187592016-02-01 13:45:25 -07008359 builder.addCapability(spv::CapabilityGeometryStreams);
John Kessenich140f3df2015-06-26 16:58:36 -06008360 builder.addDecoration(id, spv::DecorationStream, symbol->getQualifier().layoutStream);
John Kessenich92187592016-02-01 13:45:25 -07008361 }
John Kessenich140f3df2015-06-26 16:58:36 -06008362 if (symbol->getQualifier().hasSet())
8363 builder.addDecoration(id, spv::DecorationDescriptorSet, symbol->getQualifier().layoutSet);
John Kessenich6c292d32016-02-15 20:58:50 -07008364 else if (IsDescriptorResource(symbol->getType())) {
8365 // default to 0
8366 builder.addDecoration(id, spv::DecorationDescriptorSet, 0);
8367 }
John Kessenich140f3df2015-06-26 16:58:36 -06008368 if (symbol->getQualifier().hasBinding())
8369 builder.addDecoration(id, spv::DecorationBinding, symbol->getQualifier().layoutBinding);
Jeff Bolz0a93cfb2018-12-11 20:53:59 -06008370 else if (IsDescriptorResource(symbol->getType())) {
8371 // default to 0
8372 builder.addDecoration(id, spv::DecorationBinding, 0);
8373 }
John Kessenich6c292d32016-02-15 20:58:50 -07008374 if (symbol->getQualifier().hasAttachment())
8375 builder.addDecoration(id, spv::DecorationInputAttachmentIndex, symbol->getQualifier().layoutAttachment);
John Kessenich140f3df2015-06-26 16:58:36 -06008376 if (glslangIntermediate->getXfbMode()) {
John Kessenich92187592016-02-01 13:45:25 -07008377 builder.addCapability(spv::CapabilityTransformFeedback);
John Kessenichedaf5562017-12-15 06:21:46 -07008378 if (symbol->getQualifier().hasXfbBuffer()) {
John Kessenich140f3df2015-06-26 16:58:36 -06008379 builder.addDecoration(id, spv::DecorationXfbBuffer, symbol->getQualifier().layoutXfbBuffer);
John Kessenichedaf5562017-12-15 06:21:46 -07008380 unsigned stride = glslangIntermediate->getXfbStride(symbol->getQualifier().layoutXfbBuffer);
8381 if (stride != glslang::TQualifier::layoutXfbStrideEnd)
8382 builder.addDecoration(id, spv::DecorationXfbStride, stride);
8383 }
8384 if (symbol->getQualifier().hasXfbOffset())
8385 builder.addDecoration(id, spv::DecorationOffset, symbol->getQualifier().layoutXfbOffset);
John Kessenich140f3df2015-06-26 16:58:36 -06008386 }
8387
John Kessenichb9197c82019-08-11 07:41:45 -06008388 // add built-in variable decoration
8389 if (builtIn != spv::BuiltInMax) {
8390 builder.addDecoration(id, spv::DecorationBuiltIn, (int)builtIn);
8391 }
8392
8393#ifndef GLSLANG_WEB
Daniel Kochffccefd2020-11-23 15:41:27 -05008394 // Subgroup builtins which have input storage class are volatile for ray tracing stages.
8395 if (symbol->getType().isImage() || symbol->getQualifier().isPipeInput()) {
Rex Xu1da878f2016-02-21 20:59:01 +08008396 std::vector<spv::Decoration> memory;
John Kessenich8985fc92020-03-03 10:25:07 -07008397 TranslateMemoryDecoration(symbol->getType().getQualifier(), memory,
8398 glslangIntermediate->usingVulkanMemoryModel());
Rex Xu1da878f2016-02-21 20:59:01 +08008399 for (unsigned int i = 0; i < memory.size(); ++i)
John Kessenich5d610ee2018-03-07 18:05:55 -07008400 builder.addDecoration(id, memory[i]);
Rex Xu1da878f2016-02-21 20:59:01 +08008401 }
8402
chaoc0ad6a4e2016-12-19 16:29:34 -08008403 if (builtIn == spv::BuiltInSampleMask) {
8404 spv::Decoration decoration;
8405 // GL_NV_sample_mask_override_coverage extension
8406 if (glslangIntermediate->getLayoutOverrideCoverage())
chaoc771d89f2017-01-13 01:10:53 -08008407 decoration = (spv::Decoration)spv::DecorationOverrideCoverageNV;
chaoc0ad6a4e2016-12-19 16:29:34 -08008408 else
8409 decoration = (spv::Decoration)spv::DecorationMax;
John Kessenich5d610ee2018-03-07 18:05:55 -07008410 builder.addDecoration(id, decoration);
chaoc0ad6a4e2016-12-19 16:29:34 -08008411 if (decoration != spv::DecorationMax) {
Jason Macnakdbd4c3c2019-07-12 14:33:02 -07008412 builder.addCapability(spv::CapabilitySampleMaskOverrideCoverageNV);
chaoc0ad6a4e2016-12-19 16:29:34 -08008413 builder.addExtension(spv::E_SPV_NV_sample_mask_override_coverage);
8414 }
8415 }
chaoc771d89f2017-01-13 01:10:53 -08008416 else if (builtIn == spv::BuiltInLayer) {
8417 // SPV_NV_viewport_array2 extension
John Kessenichb41bff62017-08-11 13:07:17 -06008418 if (symbol->getQualifier().layoutViewportRelative) {
John Kessenich5d610ee2018-03-07 18:05:55 -07008419 builder.addDecoration(id, (spv::Decoration)spv::DecorationViewportRelativeNV);
chaoc771d89f2017-01-13 01:10:53 -08008420 builder.addCapability(spv::CapabilityShaderViewportMaskNV);
8421 builder.addExtension(spv::E_SPV_NV_viewport_array2);
8422 }
John Kessenichb41bff62017-08-11 13:07:17 -06008423 if (symbol->getQualifier().layoutSecondaryViewportRelativeOffset != -2048) {
John Kessenich5d610ee2018-03-07 18:05:55 -07008424 builder.addDecoration(id, (spv::Decoration)spv::DecorationSecondaryViewportRelativeNV,
8425 symbol->getQualifier().layoutSecondaryViewportRelativeOffset);
chaoc771d89f2017-01-13 01:10:53 -08008426 builder.addCapability(spv::CapabilityShaderStereoViewNV);
8427 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
8428 }
8429 }
8430
chaoc6e5acae2016-12-20 13:28:52 -08008431 if (symbol->getQualifier().layoutPassthrough) {
John Kessenich5d610ee2018-03-07 18:05:55 -07008432 builder.addDecoration(id, spv::DecorationPassthroughNV);
chaoc771d89f2017-01-13 01:10:53 -08008433 builder.addCapability(spv::CapabilityGeometryShaderPassthroughNV);
chaoc6e5acae2016-12-20 13:28:52 -08008434 builder.addExtension(spv::E_SPV_NV_geometry_shader_passthrough);
8435 }
Chao Chen9eada4b2018-09-19 11:39:56 -07008436 if (symbol->getQualifier().pervertexNV) {
8437 builder.addDecoration(id, spv::DecorationPerVertexNV);
8438 builder.addCapability(spv::CapabilityFragmentBarycentricNV);
8439 builder.addExtension(spv::E_SPV_NV_fragment_shader_barycentric);
8440 }
chaoc0ad6a4e2016-12-19 16:29:34 -08008441
John Kessenich5d610ee2018-03-07 18:05:55 -07008442 if (glslangIntermediate->getHlslFunctionality1() && symbol->getType().getQualifier().semanticName != nullptr) {
8443 builder.addExtension("SPV_GOOGLE_hlsl_functionality1");
8444 builder.addDecoration(id, (spv::Decoration)spv::DecorationHlslSemanticGOOGLE,
8445 symbol->getType().getQualifier().semanticName);
8446 }
8447
John Kessenich7015bd62019-08-01 03:28:08 -06008448 if (symbol->isReference()) {
John Kessenich8985fc92020-03-03 10:25:07 -07008449 builder.addDecoration(id, symbol->getType().getQualifier().restrict ?
8450 spv::DecorationRestrictPointerEXT : spv::DecorationAliasedPointerEXT);
Jeff Bolz9f2aec42019-01-06 17:58:04 -06008451 }
John Kessenichb9197c82019-08-11 07:41:45 -06008452#endif
Jeff Bolz9f2aec42019-01-06 17:58:04 -06008453
John Kessenich140f3df2015-06-26 16:58:36 -06008454 return id;
8455}
8456
John Kessenicha28f7a72019-08-06 07:00:58 -06008457#ifndef GLSLANG_WEB
Chao Chen3c366992018-09-19 11:41:59 -07008458// add per-primitive, per-view. per-task decorations to a struct member (member >= 0) or an object
8459void TGlslangToSpvTraverser::addMeshNVDecoration(spv::Id id, int member, const glslang::TQualifier& qualifier)
8460{
8461 if (member >= 0) {
Sahil Parmar38772c02018-10-25 23:50:59 -07008462 if (qualifier.perPrimitiveNV) {
8463 // Need to add capability/extension for fragment shader.
8464 // Mesh shader already adds this by default.
8465 if (glslangIntermediate->getStage() == EShLangFragment) {
8466 builder.addCapability(spv::CapabilityMeshShadingNV);
8467 builder.addExtension(spv::E_SPV_NV_mesh_shader);
8468 }
Chao Chen3c366992018-09-19 11:41:59 -07008469 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerPrimitiveNV);
Sahil Parmar38772c02018-10-25 23:50:59 -07008470 }
Chao Chen3c366992018-09-19 11:41:59 -07008471 if (qualifier.perViewNV)
8472 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerViewNV);
8473 if (qualifier.perTaskNV)
8474 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerTaskNV);
8475 } else {
Sahil Parmar38772c02018-10-25 23:50:59 -07008476 if (qualifier.perPrimitiveNV) {
8477 // Need to add capability/extension for fragment shader.
8478 // Mesh shader already adds this by default.
8479 if (glslangIntermediate->getStage() == EShLangFragment) {
8480 builder.addCapability(spv::CapabilityMeshShadingNV);
8481 builder.addExtension(spv::E_SPV_NV_mesh_shader);
8482 }
Chao Chen3c366992018-09-19 11:41:59 -07008483 builder.addDecoration(id, spv::DecorationPerPrimitiveNV);
Sahil Parmar38772c02018-10-25 23:50:59 -07008484 }
Chao Chen3c366992018-09-19 11:41:59 -07008485 if (qualifier.perViewNV)
8486 builder.addDecoration(id, spv::DecorationPerViewNV);
8487 if (qualifier.perTaskNV)
8488 builder.addDecoration(id, spv::DecorationPerTaskNV);
8489 }
8490}
8491#endif
8492
John Kessenich55e7d112015-11-15 21:33:39 -07008493// Make a full tree of instructions to build a SPIR-V specialization constant,
John Kessenich6c292d32016-02-15 20:58:50 -07008494// or regular constant if possible.
John Kessenich55e7d112015-11-15 21:33:39 -07008495//
8496// TBD: this is not yet done, nor verified to be the best design, it does do the leaf symbols though
8497//
8498// Recursively walk the nodes. The nodes form a tree whose leaves are
8499// regular constants, which themselves are trees that createSpvConstant()
8500// recursively walks. So, this function walks the "top" of the tree:
8501// - emit specialization constant-building instructions for specConstant
8502// - when running into a non-spec-constant, switch to createSpvConstant()
qining08408382016-03-21 09:51:37 -04008503spv::Id TGlslangToSpvTraverser::createSpvConstant(const glslang::TIntermTyped& node)
John Kessenich55e7d112015-11-15 21:33:39 -07008504{
John Kessenich7cc0e282016-03-20 00:46:02 -06008505 assert(node.getQualifier().isConstant());
John Kessenich55e7d112015-11-15 21:33:39 -07008506
qining4f4bb812016-04-03 23:55:17 -04008507 // Handle front-end constants first (non-specialization constants).
John Kessenich6c292d32016-02-15 20:58:50 -07008508 if (! node.getQualifier().specConstant) {
8509 // hand off to the non-spec-constant path
8510 assert(node.getAsConstantUnion() != nullptr || node.getAsSymbolNode() != nullptr);
8511 int nextConst = 0;
John Kessenich8985fc92020-03-03 10:25:07 -07008512 return createSpvConstantFromConstUnionArray(node.getType(), node.getAsConstantUnion() ?
8513 node.getAsConstantUnion()->getConstArray() : node.getAsSymbolNode()->getConstArray(),
8514 nextConst, false);
John Kessenich6c292d32016-02-15 20:58:50 -07008515 }
8516
8517 // We now know we have a specialization constant to build
8518
Ricardo Garcia232ba0d2020-06-03 15:52:55 +02008519 // Extra capabilities may be needed.
8520 if (node.getType().contains8BitInt())
8521 builder.addCapability(spv::CapabilityInt8);
8522 if (node.getType().contains16BitFloat())
8523 builder.addCapability(spv::CapabilityFloat16);
8524 if (node.getType().contains16BitInt())
8525 builder.addCapability(spv::CapabilityInt16);
8526 if (node.getType().contains64BitInt())
8527 builder.addCapability(spv::CapabilityInt64);
8528 if (node.getType().containsDouble())
8529 builder.addCapability(spv::CapabilityFloat64);
8530
John Kessenichd94c0032016-05-30 19:29:40 -06008531 // gl_WorkGroupSize is a special case until the front-end handles hierarchical specialization constants,
qining4f4bb812016-04-03 23:55:17 -04008532 // even then, it's specialization ids are handled by special case syntax in GLSL: layout(local_size_x = ...
8533 if (node.getType().getQualifier().builtIn == glslang::EbvWorkGroupSize) {
8534 std::vector<spv::Id> dimConstId;
8535 for (int dim = 0; dim < 3; ++dim) {
8536 bool specConst = (glslangIntermediate->getLocalSizeSpecId(dim) != glslang::TQualifier::layoutNotSet);
8537 dimConstId.push_back(builder.makeUintConstant(glslangIntermediate->getLocalSize(dim), specConst));
John Kessenich5d610ee2018-03-07 18:05:55 -07008538 if (specConst) {
8539 builder.addDecoration(dimConstId.back(), spv::DecorationSpecId,
8540 glslangIntermediate->getLocalSizeSpecId(dim));
8541 }
qining4f4bb812016-04-03 23:55:17 -04008542 }
8543 return builder.makeCompositeConstant(builder.makeVectorType(builder.makeUintType(32), 3), dimConstId, true);
8544 }
8545
8546 // An AST node labelled as specialization constant should be a symbol node.
8547 // Its initializer should either be a sub tree with constant nodes, or a constant union array.
8548 if (auto* sn = node.getAsSymbolNode()) {
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07008549 spv::Id result;
qining4f4bb812016-04-03 23:55:17 -04008550 if (auto* sub_tree = sn->getConstSubtree()) {
qining27e04a02016-04-14 16:40:20 -04008551 // Traverse the constant constructor sub tree like generating normal run-time instructions.
8552 // During the AST traversal, if the node is marked as 'specConstant', SpecConstantOpModeGuard
8553 // will set the builder into spec constant op instruction generating mode.
8554 sub_tree->traverse(this);
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07008555 result = accessChainLoad(sub_tree->getType());
8556 } else if (auto* const_union_array = &sn->getConstArray()) {
qining4f4bb812016-04-03 23:55:17 -04008557 int nextConst = 0;
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07008558 result = createSpvConstantFromConstUnionArray(sn->getType(), *const_union_array, nextConst, true);
Dan Sinclair70661b92018-11-12 13:56:52 -05008559 } else {
8560 logger->missingFunctionality("Invalid initializer for spec onstant.");
Dan Sinclair70661b92018-11-12 13:56:52 -05008561 return spv::NoResult;
John Kessenich6c292d32016-02-15 20:58:50 -07008562 }
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07008563 builder.addName(result, sn->getName().c_str());
8564 return result;
John Kessenich6c292d32016-02-15 20:58:50 -07008565 }
qining4f4bb812016-04-03 23:55:17 -04008566
8567 // Neither a front-end constant node, nor a specialization constant node with constant union array or
8568 // constant sub tree as initializer.
Lei Zhang17535f72016-05-04 15:55:59 -04008569 logger->missingFunctionality("Neither a front-end constant nor a spec constant.");
qining4f4bb812016-04-03 23:55:17 -04008570 return spv::NoResult;
John Kessenich55e7d112015-11-15 21:33:39 -07008571}
8572
John Kessenich140f3df2015-06-26 16:58:36 -06008573// Use 'consts' as the flattened glslang source of scalar constants to recursively
8574// build the aggregate SPIR-V constant.
8575//
8576// If there are not enough elements present in 'consts', 0 will be substituted;
8577// an empty 'consts' can be used to create a fully zeroed SPIR-V constant.
8578//
John Kessenich8985fc92020-03-03 10:25:07 -07008579spv::Id TGlslangToSpvTraverser::createSpvConstantFromConstUnionArray(const glslang::TType& glslangType,
8580 const glslang::TConstUnionArray& consts, int& nextConst, bool specConstant)
John Kessenich140f3df2015-06-26 16:58:36 -06008581{
8582 // vector of constants for SPIR-V
8583 std::vector<spv::Id> spvConsts;
8584
8585 // Type is used for struct and array constants
8586 spv::Id typeId = convertGlslangToSpvType(glslangType);
8587
8588 if (glslangType.isArray()) {
John Kessenich65c78a02015-08-10 17:08:55 -06008589 glslang::TType elementType(glslangType, 0);
8590 for (int i = 0; i < glslangType.getOuterArraySize(); ++i)
qining08408382016-03-21 09:51:37 -04008591 spvConsts.push_back(createSpvConstantFromConstUnionArray(elementType, consts, nextConst, false));
John Kessenich140f3df2015-06-26 16:58:36 -06008592 } else if (glslangType.isMatrix()) {
John Kessenich65c78a02015-08-10 17:08:55 -06008593 glslang::TType vectorType(glslangType, 0);
John Kessenich140f3df2015-06-26 16:58:36 -06008594 for (int col = 0; col < glslangType.getMatrixCols(); ++col)
qining08408382016-03-21 09:51:37 -04008595 spvConsts.push_back(createSpvConstantFromConstUnionArray(vectorType, consts, nextConst, false));
Jeff Bolz4605e2e2019-02-19 13:10:32 -06008596 } else if (glslangType.isCoopMat()) {
8597 glslang::TType componentType(glslangType.getBasicType());
8598 spvConsts.push_back(createSpvConstantFromConstUnionArray(componentType, consts, nextConst, false));
Jeff Bolz9f2aec42019-01-06 17:58:04 -06008599 } else if (glslangType.isStruct()) {
John Kessenich140f3df2015-06-26 16:58:36 -06008600 glslang::TVector<glslang::TTypeLoc>::const_iterator iter;
8601 for (iter = glslangType.getStruct()->begin(); iter != glslangType.getStruct()->end(); ++iter)
qining08408382016-03-21 09:51:37 -04008602 spvConsts.push_back(createSpvConstantFromConstUnionArray(*iter->type, consts, nextConst, false));
John Kessenich8d72f1a2016-05-20 12:06:03 -06008603 } else if (glslangType.getVectorSize() > 1) {
John Kessenich140f3df2015-06-26 16:58:36 -06008604 for (unsigned int i = 0; i < (unsigned int)glslangType.getVectorSize(); ++i) {
8605 bool zero = nextConst >= consts.size();
8606 switch (glslangType.getBasicType()) {
John Kessenich39697cd2019-08-08 10:35:51 -06008607 case glslang::EbtInt:
8608 spvConsts.push_back(builder.makeIntConstant(zero ? 0 : consts[nextConst].getIConst()));
8609 break;
8610 case glslang::EbtUint:
8611 spvConsts.push_back(builder.makeUintConstant(zero ? 0 : consts[nextConst].getUConst()));
8612 break;
8613 case glslang::EbtFloat:
8614 spvConsts.push_back(builder.makeFloatConstant(zero ? 0.0F : (float)consts[nextConst].getDConst()));
8615 break;
8616 case glslang::EbtBool:
8617 spvConsts.push_back(builder.makeBoolConstant(zero ? false : consts[nextConst].getBConst()));
8618 break;
8619#ifndef GLSLANG_WEB
John Kessenich66011cb2018-03-06 16:12:04 -07008620 case glslang::EbtInt8:
8621 spvConsts.push_back(builder.makeInt8Constant(zero ? 0 : consts[nextConst].getI8Const()));
8622 break;
8623 case glslang::EbtUint8:
8624 spvConsts.push_back(builder.makeUint8Constant(zero ? 0 : consts[nextConst].getU8Const()));
8625 break;
8626 case glslang::EbtInt16:
8627 spvConsts.push_back(builder.makeInt16Constant(zero ? 0 : consts[nextConst].getI16Const()));
8628 break;
8629 case glslang::EbtUint16:
8630 spvConsts.push_back(builder.makeUint16Constant(zero ? 0 : consts[nextConst].getU16Const()));
8631 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08008632 case glslang::EbtInt64:
8633 spvConsts.push_back(builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const()));
8634 break;
8635 case glslang::EbtUint64:
8636 spvConsts.push_back(builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const()));
8637 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008638 case glslang::EbtDouble:
8639 spvConsts.push_back(builder.makeDoubleConstant(zero ? 0.0 : consts[nextConst].getDConst()));
8640 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08008641 case glslang::EbtFloat16:
8642 spvConsts.push_back(builder.makeFloat16Constant(zero ? 0.0F : (float)consts[nextConst].getDConst()));
8643 break;
John Kessenich39697cd2019-08-08 10:35:51 -06008644#endif
John Kessenich140f3df2015-06-26 16:58:36 -06008645 default:
John Kessenich55e7d112015-11-15 21:33:39 -07008646 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06008647 break;
8648 }
8649 ++nextConst;
8650 }
8651 } else {
8652 // we have a non-aggregate (scalar) constant
8653 bool zero = nextConst >= consts.size();
8654 spv::Id scalar = 0;
8655 switch (glslangType.getBasicType()) {
John Kessenich39697cd2019-08-08 10:35:51 -06008656 case glslang::EbtInt:
8657 scalar = builder.makeIntConstant(zero ? 0 : consts[nextConst].getIConst(), specConstant);
8658 break;
8659 case glslang::EbtUint:
8660 scalar = builder.makeUintConstant(zero ? 0 : consts[nextConst].getUConst(), specConstant);
8661 break;
8662 case glslang::EbtFloat:
8663 scalar = builder.makeFloatConstant(zero ? 0.0F : (float)consts[nextConst].getDConst(), specConstant);
8664 break;
8665 case glslang::EbtBool:
8666 scalar = builder.makeBoolConstant(zero ? false : consts[nextConst].getBConst(), specConstant);
8667 break;
8668#ifndef GLSLANG_WEB
John Kessenich66011cb2018-03-06 16:12:04 -07008669 case glslang::EbtInt8:
8670 scalar = builder.makeInt8Constant(zero ? 0 : consts[nextConst].getI8Const(), specConstant);
8671 break;
8672 case glslang::EbtUint8:
8673 scalar = builder.makeUint8Constant(zero ? 0 : consts[nextConst].getU8Const(), specConstant);
8674 break;
8675 case glslang::EbtInt16:
8676 scalar = builder.makeInt16Constant(zero ? 0 : consts[nextConst].getI16Const(), specConstant);
8677 break;
8678 case glslang::EbtUint16:
8679 scalar = builder.makeUint16Constant(zero ? 0 : consts[nextConst].getU16Const(), specConstant);
8680 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08008681 case glslang::EbtInt64:
8682 scalar = builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const(), specConstant);
8683 break;
8684 case glslang::EbtUint64:
8685 scalar = builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const(), specConstant);
8686 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008687 case glslang::EbtDouble:
John Kessenich55e7d112015-11-15 21:33:39 -07008688 scalar = builder.makeDoubleConstant(zero ? 0.0 : consts[nextConst].getDConst(), specConstant);
John Kessenich140f3df2015-06-26 16:58:36 -06008689 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08008690 case glslang::EbtFloat16:
8691 scalar = builder.makeFloat16Constant(zero ? 0.0F : (float)consts[nextConst].getDConst(), specConstant);
8692 break;
Jeff Bolz3fd12322019-03-05 23:27:09 -06008693 case glslang::EbtReference:
8694 scalar = builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const(), specConstant);
8695 scalar = builder.createUnaryOp(spv::OpBitcast, typeId, scalar);
8696 break;
John Kessenich39697cd2019-08-08 10:35:51 -06008697#endif
Jeff Bolz04d73732019-05-31 13:06:01 -05008698 case glslang::EbtString:
8699 scalar = builder.getStringId(consts[nextConst].getSConst()->c_str());
8700 break;
John Kessenich140f3df2015-06-26 16:58:36 -06008701 default:
John Kessenich55e7d112015-11-15 21:33:39 -07008702 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06008703 break;
8704 }
8705 ++nextConst;
8706 return scalar;
8707 }
8708
8709 return builder.makeCompositeConstant(typeId, spvConsts);
8710}
8711
John Kessenich7c1aa102015-10-15 13:29:11 -06008712// Return true if the node is a constant or symbol whose reading has no
8713// non-trivial observable cost or effect.
8714bool TGlslangToSpvTraverser::isTrivialLeaf(const glslang::TIntermTyped* node)
8715{
8716 // don't know what this is
8717 if (node == nullptr)
8718 return false;
8719
8720 // a constant is safe
8721 if (node->getAsConstantUnion() != nullptr)
8722 return true;
8723
8724 // not a symbol means non-trivial
8725 if (node->getAsSymbolNode() == nullptr)
8726 return false;
8727
8728 // a symbol, depends on what's being read
8729 switch (node->getType().getQualifier().storage) {
8730 case glslang::EvqTemporary:
8731 case glslang::EvqGlobal:
8732 case glslang::EvqIn:
8733 case glslang::EvqInOut:
8734 case glslang::EvqConst:
8735 case glslang::EvqConstReadOnly:
8736 case glslang::EvqUniform:
8737 return true;
8738 default:
8739 return false;
8740 }
qining25262b32016-05-06 17:25:16 -04008741}
John Kessenich7c1aa102015-10-15 13:29:11 -06008742
8743// A node is trivial if it is a single operation with no side effects.
John Kessenich84cc15f2017-05-24 16:44:47 -06008744// HLSL (and/or vectors) are always trivial, as it does not short circuit.
John Kessenich0d2b4712017-05-19 20:19:00 -06008745// Otherwise, error on the side of saying non-trivial.
John Kessenich7c1aa102015-10-15 13:29:11 -06008746// Return true if trivial.
8747bool TGlslangToSpvTraverser::isTrivial(const glslang::TIntermTyped* node)
8748{
8749 if (node == nullptr)
8750 return false;
8751
John Kessenich84cc15f2017-05-24 16:44:47 -06008752 // count non scalars as trivial, as well as anything coming from HLSL
8753 if (! node->getType().isScalarOrVec1() || glslangIntermediate->getSource() == glslang::EShSourceHlsl)
John Kessenich0d2b4712017-05-19 20:19:00 -06008754 return true;
8755
John Kessenich7c1aa102015-10-15 13:29:11 -06008756 // symbols and constants are trivial
8757 if (isTrivialLeaf(node))
8758 return true;
8759
8760 // otherwise, it needs to be a simple operation or one or two leaf nodes
8761
8762 // not a simple operation
8763 const glslang::TIntermBinary* binaryNode = node->getAsBinaryNode();
8764 const glslang::TIntermUnary* unaryNode = node->getAsUnaryNode();
8765 if (binaryNode == nullptr && unaryNode == nullptr)
8766 return false;
8767
8768 // not on leaf nodes
8769 if (binaryNode && (! isTrivialLeaf(binaryNode->getLeft()) || ! isTrivialLeaf(binaryNode->getRight())))
8770 return false;
8771
8772 if (unaryNode && ! isTrivialLeaf(unaryNode->getOperand())) {
8773 return false;
8774 }
8775
8776 switch (node->getAsOperator()->getOp()) {
8777 case glslang::EOpLogicalNot:
8778 case glslang::EOpConvIntToBool:
8779 case glslang::EOpConvUintToBool:
8780 case glslang::EOpConvFloatToBool:
8781 case glslang::EOpConvDoubleToBool:
8782 case glslang::EOpEqual:
8783 case glslang::EOpNotEqual:
8784 case glslang::EOpLessThan:
8785 case glslang::EOpGreaterThan:
8786 case glslang::EOpLessThanEqual:
8787 case glslang::EOpGreaterThanEqual:
8788 case glslang::EOpIndexDirect:
8789 case glslang::EOpIndexDirectStruct:
8790 case glslang::EOpLogicalXor:
8791 case glslang::EOpAny:
8792 case glslang::EOpAll:
8793 return true;
8794 default:
8795 return false;
8796 }
8797}
8798
8799// Emit short-circuiting code, where 'right' is never evaluated unless
8800// the left side is true (for &&) or false (for ||).
John Kessenich8985fc92020-03-03 10:25:07 -07008801spv::Id TGlslangToSpvTraverser::createShortCircuit(glslang::TOperator op, glslang::TIntermTyped& left,
8802 glslang::TIntermTyped& right)
John Kessenich7c1aa102015-10-15 13:29:11 -06008803{
8804 spv::Id boolTypeId = builder.makeBoolType();
8805
8806 // emit left operand
8807 builder.clearAccessChain();
8808 left.traverse(this);
Rex Xub4fd8d12016-03-03 14:38:51 +08008809 spv::Id leftId = accessChainLoad(left.getType());
John Kessenich7c1aa102015-10-15 13:29:11 -06008810
8811 // Operands to accumulate OpPhi operands
8812 std::vector<spv::Id> phiOperands;
8813 // accumulate left operand's phi information
8814 phiOperands.push_back(leftId);
8815 phiOperands.push_back(builder.getBuildPoint()->getId());
8816
8817 // Make the two kinds of operation symmetric with a "!"
8818 // || => emit "if (! left) result = right"
8819 // && => emit "if ( left) result = right"
8820 //
8821 // TODO: this runtime "not" for || could be avoided by adding functionality
8822 // to 'builder' to have an "else" without an "then"
8823 if (op == glslang::EOpLogicalOr)
8824 leftId = builder.createUnaryOp(spv::OpLogicalNot, boolTypeId, leftId);
8825
8826 // make an "if" based on the left value
Rex Xu57e65922017-07-04 23:23:40 +08008827 spv::Builder::If ifBuilder(leftId, spv::SelectionControlMaskNone, builder);
John Kessenich7c1aa102015-10-15 13:29:11 -06008828
8829 // emit right operand as the "then" part of the "if"
8830 builder.clearAccessChain();
8831 right.traverse(this);
Rex Xub4fd8d12016-03-03 14:38:51 +08008832 spv::Id rightId = accessChainLoad(right.getType());
John Kessenich7c1aa102015-10-15 13:29:11 -06008833
8834 // accumulate left operand's phi information
8835 phiOperands.push_back(rightId);
8836 phiOperands.push_back(builder.getBuildPoint()->getId());
8837
8838 // finish the "if"
8839 ifBuilder.makeEndIf();
8840
8841 // phi together the two results
8842 return builder.createOp(spv::OpPhi, boolTypeId, phiOperands);
8843}
8844
John Kessenicha28f7a72019-08-06 07:00:58 -06008845#ifndef GLSLANG_WEB
Rex Xu9d93a232016-05-05 12:30:44 +08008846// Return type Id of the imported set of extended instructions corresponds to the name.
8847// Import this set if it has not been imported yet.
8848spv::Id TGlslangToSpvTraverser::getExtBuiltins(const char* name)
8849{
8850 if (extBuiltinMap.find(name) != extBuiltinMap.end())
8851 return extBuiltinMap[name];
8852 else {
Rex Xu51596642016-09-21 18:56:12 +08008853 builder.addExtension(name);
Rex Xu9d93a232016-05-05 12:30:44 +08008854 spv::Id extBuiltins = builder.import(name);
8855 extBuiltinMap[name] = extBuiltins;
8856 return extBuiltins;
8857 }
8858}
Frank Henigman541f7bb2018-01-16 00:18:26 -05008859#endif
Rex Xu9d93a232016-05-05 12:30:44 +08008860
John Kessenich140f3df2015-06-26 16:58:36 -06008861}; // end anonymous namespace
8862
8863namespace glslang {
8864
John Kessenich68d78fd2015-07-12 19:28:10 -06008865void GetSpirvVersion(std::string& version)
8866{
John Kessenich9e55f632015-07-15 10:03:39 -06008867 const int bufSize = 100;
John Kessenichf98ee232015-07-12 19:39:51 -06008868 char buf[bufSize];
John Kessenich55e7d112015-11-15 21:33:39 -07008869 snprintf(buf, bufSize, "0x%08x, Revision %d", spv::Version, spv::Revision);
John Kessenich68d78fd2015-07-12 19:28:10 -06008870 version = buf;
8871}
8872
John Kessenicha372a3e2017-11-02 22:32:14 -06008873// For low-order part of the generator's magic number. Bump up
8874// when there is a change in the style (e.g., if SSA form changes,
8875// or a different instruction sequence to do something gets used).
8876int GetSpirvGeneratorVersion()
8877{
John Kessenich3f0d4bc2017-12-16 23:46:37 -07008878 // return 1; // start
8879 // return 2; // EOpAtomicCounterDecrement gets a post decrement, to map between GLSL -> SPIR-V
John Kessenich71b5da62018-02-06 08:06:36 -07008880 // return 3; // change/correct barrier-instruction operands, to match memory model group decisions
John Kessenich0216f242018-03-03 11:47:07 -07008881 // return 4; // some deeper access chains: for dynamic vector component, and local Boolean component
John Kessenichac370792018-03-07 11:24:50 -07008882 // return 5; // make OpArrayLength result type be an int with signedness of 0
John Kessenichd6c97552018-06-04 15:33:31 -06008883 // return 6; // revert version 5 change, which makes a different (new) kind of incorrect code,
8884 // versions 4 and 6 each generate OpArrayLength as it has long been done
John Kessenich31c33702019-11-02 21:26:40 -06008885 // return 7; // GLSL volatile keyword maps to both SPIR-V decorations Volatile and Coherent
John Kessenich3641ff72020-06-10 07:38:31 -06008886 // return 8; // switch to new dead block eliminator; use OpUnreachable
Graeme Leese060882f2020-06-22 11:03:46 +01008887 // return 9; // don't include opaque function parameters in OpEntryPoint global's operand list
8888 return 10; // Generate OpFUnordNotEqual for != comparisons
John Kessenicha372a3e2017-11-02 22:32:14 -06008889}
8890
John Kessenich140f3df2015-06-26 16:58:36 -06008891// Write SPIR-V out to a binary file
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008892void OutputSpvBin(const std::vector<unsigned int>& spirv, const char* baseName)
John Kessenich140f3df2015-06-26 16:58:36 -06008893{
8894 std::ofstream out;
John Kessenich68d78fd2015-07-12 19:28:10 -06008895 out.open(baseName, std::ios::binary | std::ios::out);
John Kessenich8f674e82017-02-18 09:45:40 -07008896 if (out.fail())
8897 printf("ERROR: Failed to open file: %s\n", baseName);
John Kessenich140f3df2015-06-26 16:58:36 -06008898 for (int i = 0; i < (int)spirv.size(); ++i) {
8899 unsigned int word = spirv[i];
8900 out.write((const char*)&word, 4);
8901 }
8902 out.close();
8903}
8904
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008905// Write SPIR-V out to a text file with 32-bit hexadecimal words
Flavioaea3c892017-02-06 11:46:35 -08008906void OutputSpvHex(const std::vector<unsigned int>& spirv, const char* baseName, const char* varName)
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008907{
Shahbaz Youssefi1ef2e252020-07-03 15:42:53 -04008908#if !defined(GLSLANG_WEB) && !defined(GLSLANG_ANGLE)
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008909 std::ofstream out;
8910 out.open(baseName, std::ios::binary | std::ios::out);
John Kessenich8f674e82017-02-18 09:45:40 -07008911 if (out.fail())
8912 printf("ERROR: Failed to open file: %s\n", baseName);
Ben Claytonfbe9a232020-06-17 11:17:19 +01008913 out << "\t// " <<
8914 GetSpirvGeneratorVersion() <<
8915 GLSLANG_VERSION_MAJOR << "." << GLSLANG_VERSION_MINOR << "." << GLSLANG_VERSION_PATCH <<
8916 GLSLANG_VERSION_FLAVOR << std::endl;
Flavio15017db2017-02-15 14:29:33 -08008917 if (varName != nullptr) {
8918 out << "\t #pragma once" << std::endl;
8919 out << "const uint32_t " << varName << "[] = {" << std::endl;
8920 }
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008921 const int WORDS_PER_LINE = 8;
8922 for (int i = 0; i < (int)spirv.size(); i += WORDS_PER_LINE) {
8923 out << "\t";
8924 for (int j = 0; j < WORDS_PER_LINE && i + j < (int)spirv.size(); ++j) {
8925 const unsigned int word = spirv[i + j];
8926 out << "0x" << std::hex << std::setw(8) << std::setfill('0') << word;
8927 if (i + j + 1 < (int)spirv.size()) {
8928 out << ",";
8929 }
8930 }
8931 out << std::endl;
8932 }
Flavio15017db2017-02-15 14:29:33 -08008933 if (varName != nullptr) {
8934 out << "};";
johnkslangf881f082020-08-04 02:13:50 -06008935 out << std::endl;
Flavio15017db2017-02-15 14:29:33 -08008936 }
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008937 out.close();
John Kessenich155d3512019-08-08 23:29:20 -06008938#endif
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05008939}
8940
John Kessenich140f3df2015-06-26 16:58:36 -06008941//
8942// Set up the glslang traversal
8943//
John Kessenich4e11b612018-08-30 16:56:59 -06008944void GlslangToSpv(const TIntermediate& intermediate, std::vector<unsigned int>& spirv, SpvOptions* options)
John Kessenich140f3df2015-06-26 16:58:36 -06008945{
Lei Zhang17535f72016-05-04 15:55:59 -04008946 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -06008947 GlslangToSpv(intermediate, spirv, &logger, options);
Lei Zhang09caf122016-05-02 18:11:54 -04008948}
8949
John Kessenich4e11b612018-08-30 16:56:59 -06008950void GlslangToSpv(const TIntermediate& intermediate, std::vector<unsigned int>& spirv,
John Kessenich121853f2017-05-31 17:11:16 -06008951 spv::SpvBuildLogger* logger, SpvOptions* options)
Lei Zhang09caf122016-05-02 18:11:54 -04008952{
John Kessenich140f3df2015-06-26 16:58:36 -06008953 TIntermNode* root = intermediate.getTreeRoot();
8954
8955 if (root == 0)
8956 return;
8957
John Kessenich4e11b612018-08-30 16:56:59 -06008958 SpvOptions defaultOptions;
John Kessenich121853f2017-05-31 17:11:16 -06008959 if (options == nullptr)
8960 options = &defaultOptions;
8961
John Kessenich4e11b612018-08-30 16:56:59 -06008962 GetThreadPoolAllocator().push();
John Kessenich140f3df2015-06-26 16:58:36 -06008963
John Kessenich2b5ea9f2018-01-31 18:35:56 -07008964 TGlslangToSpvTraverser it(intermediate.getSpv().spv, &intermediate, logger, *options);
John Kessenich140f3df2015-06-26 16:58:36 -06008965 root->traverse(&it);
John Kessenichfca82622016-11-26 13:23:20 -07008966 it.finishSpv();
John Kessenich140f3df2015-06-26 16:58:36 -06008967 it.dumpSpv(spirv);
8968
GregFfb03a552018-03-29 11:49:14 -06008969#if ENABLE_OPT
GregFcd1f1692017-09-21 18:40:22 -06008970 // If from HLSL, run spirv-opt to "legalize" the SPIR-V for Vulkan
8971 // eg. forward and remove memory writes of opaque types.
Jeff Bolzfd556e32019-06-07 14:42:08 -05008972 bool prelegalization = intermediate.getSource() == EShSourceHlsl;
Shahbaz Youssefid52dce52020-06-17 12:47:44 -04008973 if ((prelegalization || options->optimizeSize) && !options->disableOptimizer) {
8974 SpirvToolsTransform(intermediate, spirv, logger, options);
Jeff Bolzfd556e32019-06-07 14:42:08 -05008975 prelegalization = false;
8976 }
Shahbaz Youssefid52dce52020-06-17 12:47:44 -04008977 else if (options->stripDebugInfo) {
8978 // Strip debug info even if optimization is disabled.
8979 SpirvToolsStripDebugInfo(intermediate, spirv, logger);
8980 }
John Kessenich717c80a2018-08-23 15:17:10 -06008981
John Kessenich4e11b612018-08-30 16:56:59 -06008982 if (options->validate)
Jeff Bolzfd556e32019-06-07 14:42:08 -05008983 SpirvToolsValidate(intermediate, spirv, logger, prelegalization);
John Kessenich4e11b612018-08-30 16:56:59 -06008984
John Kessenich717c80a2018-08-23 15:17:10 -06008985 if (options->disassemble)
John Kessenich4e11b612018-08-30 16:56:59 -06008986 SpirvToolsDisassemble(std::cout, spirv);
John Kessenich717c80a2018-08-23 15:17:10 -06008987
GregFcd1f1692017-09-21 18:40:22 -06008988#endif
8989
John Kessenich4e11b612018-08-30 16:56:59 -06008990 GetThreadPoolAllocator().pop();
John Kessenich140f3df2015-06-26 16:58:36 -06008991}
8992
8993}; // end namespace glslang