blob: b72f7aebb59998afe6f6ab38f0f5ff48a2da8225 [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.
3// Copyright (C) 2015-2016 Google, Inc.
John Kessenich66011cb2018-03-06 16:12:04 -07004// Copyright (C) 2017 ARM Limited.
John Kessenich140f3df2015-06-26 16:58:36 -06005//
John Kessenich927608b2017-01-06 12:34:14 -07006// All rights reserved.
John Kessenich140f3df2015-06-26 16:58:36 -06007//
John Kessenich927608b2017-01-06 12:34:14 -07008// Redistribution and use in source and binary forms, with or without
9// modification, are permitted provided that the following conditions
10// are met:
John Kessenich140f3df2015-06-26 16:58:36 -060011//
12// Redistributions of source code must retain the above copyright
13// notice, this list of conditions and the following disclaimer.
14//
15// Redistributions in binary form must reproduce the above
16// copyright notice, this list of conditions and the following
17// disclaimer in the documentation and/or other materials provided
18// with the distribution.
19//
20// Neither the name of 3Dlabs Inc. Ltd. nor the names of its
21// contributors may be used to endorse or promote products derived
22// from this software without specific prior written permission.
23//
John Kessenich927608b2017-01-06 12:34:14 -070024// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35// POSSIBILITY OF SUCH DAMAGE.
John Kessenich140f3df2015-06-26 16:58:36 -060036
37//
John Kessenich140f3df2015-06-26 16:58:36 -060038// Visit the nodes in the glslang intermediate tree representation to
39// translate them to SPIR-V.
40//
41
John Kessenich5e4b1242015-08-06 22:53:06 -060042#include "spirv.hpp"
John Kessenich140f3df2015-06-26 16:58:36 -060043#include "GlslangToSpv.h"
44#include "SpvBuilder.h"
John Kessenich5e4b1242015-08-06 22:53:06 -060045namespace spv {
Rex Xu51596642016-09-21 18:56:12 +080046 #include "GLSL.std.450.h"
47 #include "GLSL.ext.KHR.h"
Piers Daniell1c5443c2017-12-13 13:07:22 -070048 #include "GLSL.ext.EXT.h"
Rex Xu9d93a232016-05-05 12:30:44 +080049#ifdef AMD_EXTENSIONS
Rex Xu51596642016-09-21 18:56:12 +080050 #include "GLSL.ext.AMD.h"
Rex Xu9d93a232016-05-05 12:30:44 +080051#endif
chaoc0ad6a4e2016-12-19 16:29:34 -080052#ifdef NV_EXTENSIONS
53 #include "GLSL.ext.NV.h"
54#endif
John Kessenich5e4b1242015-08-06 22:53:06 -060055}
John Kessenich140f3df2015-06-26 16:58:36 -060056
57// Glslang includes
baldurk42169c52015-07-08 15:11:59 +020058#include "../glslang/MachineIndependent/localintermediate.h"
59#include "../glslang/MachineIndependent/SymbolTable.h"
John Kessenich5e4b1242015-08-06 22:53:06 -060060#include "../glslang/Include/Common.h"
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -050061#include "../glslang/Include/revision.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 {
94 spv::Decoration precision;
95 spv::Decoration noContraction;
John Kessenich5611c6d2018-04-05 11:25:02 -060096 spv::Decoration nonUniform;
John Kessenichead86222018-03-28 18:01:20 -060097};
98
99} // namespace
qining4c912612016-04-01 10:35:16 -0400100
John Kessenich140f3df2015-06-26 16:58:36 -0600101//
102// The main holder of information for translating glslang to SPIR-V.
103//
104// Derives from the AST walking base class.
105//
106class TGlslangToSpvTraverser : public glslang::TIntermTraverser {
107public:
John Kessenich2b5ea9f2018-01-31 18:35:56 -0700108 TGlslangToSpvTraverser(unsigned int spvVersion, const glslang::TIntermediate*, spv::SpvBuildLogger* logger,
109 glslang::SpvOptions& options);
John Kessenichfca82622016-11-26 13:23:20 -0700110 virtual ~TGlslangToSpvTraverser() { }
John Kessenich140f3df2015-06-26 16:58:36 -0600111
112 bool visitAggregate(glslang::TVisit, glslang::TIntermAggregate*);
113 bool visitBinary(glslang::TVisit, glslang::TIntermBinary*);
114 void visitConstantUnion(glslang::TIntermConstantUnion*);
115 bool visitSelection(glslang::TVisit, glslang::TIntermSelection*);
116 bool visitSwitch(glslang::TVisit, glslang::TIntermSwitch*);
117 void visitSymbol(glslang::TIntermSymbol* symbol);
118 bool visitUnary(glslang::TVisit, glslang::TIntermUnary*);
119 bool visitLoop(glslang::TVisit, glslang::TIntermLoop*);
120 bool visitBranch(glslang::TVisit visit, glslang::TIntermBranch*);
121
John Kessenichfca82622016-11-26 13:23:20 -0700122 void finishSpv();
John Kessenich7ba63412015-12-20 17:37:07 -0700123 void dumpSpv(std::vector<unsigned int>& out);
John Kessenich140f3df2015-06-26 16:58:36 -0600124
125protected:
John Kessenich5d610ee2018-03-07 18:05:55 -0700126 TGlslangToSpvTraverser(TGlslangToSpvTraverser&);
127 TGlslangToSpvTraverser& operator=(TGlslangToSpvTraverser&);
128
Rex Xu17ff3432016-10-14 17:41:45 +0800129 spv::Decoration TranslateInterpolationDecoration(const glslang::TQualifier& qualifier);
Rex Xubbceed72016-05-21 09:40:44 +0800130 spv::Decoration TranslateAuxiliaryStorageDecoration(const glslang::TQualifier& qualifier);
John Kessenich5611c6d2018-04-05 11:25:02 -0600131 spv::Decoration TranslateNonUniformDecoration(const glslang::TQualifier& qualifier);
Jeff Bolz36831c92018-09-05 10:11:41 -0500132 spv::Builder::AccessChain::CoherentFlags TranslateCoherent(const glslang::TType& type);
133 spv::MemoryAccessMask TranslateMemoryAccess(const spv::Builder::AccessChain::CoherentFlags &coherentFlags);
134 spv::ImageOperandsMask TranslateImageOperands(const spv::Builder::AccessChain::CoherentFlags &coherentFlags);
135 spv::Scope TranslateMemoryScope(const spv::Builder::AccessChain::CoherentFlags &coherentFlags);
David Netoa901ffe2016-06-08 14:11:40 +0100136 spv::BuiltIn TranslateBuiltInDecoration(glslang::TBuiltInVariable, bool memberDeclaration);
John Kessenich5d0fa972016-02-15 11:57:00 -0700137 spv::ImageFormat TranslateImageFormat(const glslang::TType& type);
John Kesseniche18fd202018-01-30 11:01:39 -0700138 spv::SelectionControlMask TranslateSelectionControl(const glslang::TIntermSelection&) const;
139 spv::SelectionControlMask TranslateSwitchControl(const glslang::TIntermSwitch&) const;
John Kessenicha2858d92018-01-31 08:11:18 -0700140 spv::LoopControlMask TranslateLoopControl(const glslang::TIntermLoop&, unsigned int& dependencyLength) const;
John Kessenicha5c5fb62017-05-05 05:09:58 -0600141 spv::StorageClass TranslateStorageClass(const glslang::TType&);
John Kessenich5611c6d2018-04-05 11:25:02 -0600142 void addIndirectionIndexCapabilities(const glslang::TType& baseType, const glslang::TType& indexType);
John Kessenich140f3df2015-06-26 16:58:36 -0600143 spv::Id createSpvVariable(const glslang::TIntermSymbol*);
144 spv::Id getSampledType(const glslang::TSampler&);
John Kessenich8c8505c2016-07-26 12:50:38 -0600145 spv::Id getInvertedSwizzleType(const glslang::TIntermTyped&);
146 spv::Id createInvertedSwizzle(spv::Decoration precision, const glslang::TIntermTyped&, spv::Id parentResult);
147 void convertSwizzle(const glslang::TIntermAggregate&, std::vector<unsigned>& swizzle);
John Kessenich140f3df2015-06-26 16:58:36 -0600148 spv::Id convertGlslangToSpvType(const glslang::TType& type);
John Kessenichead86222018-03-28 18:01:20 -0600149 spv::Id convertGlslangToSpvType(const glslang::TType& type, glslang::TLayoutPacking, const glslang::TQualifier&,
150 bool lastBufferBlockMember);
John Kessenich0e737842017-03-24 18:38:16 -0600151 bool filterMember(const glslang::TType& member);
John Kessenich6090df02016-06-30 21:18:02 -0600152 spv::Id convertGlslangStructToSpvType(const glslang::TType&, const glslang::TTypeList* glslangStruct,
153 glslang::TLayoutPacking, const glslang::TQualifier&);
154 void decorateStructType(const glslang::TType&, const glslang::TTypeList* glslangStruct, glslang::TLayoutPacking,
155 const glslang::TQualifier&, spv::Id);
John Kessenich6c292d32016-02-15 20:58:50 -0700156 spv::Id makeArraySizeId(const glslang::TArraySizes&, int dim);
John Kessenich32cfd492016-02-02 12:37:46 -0700157 spv::Id accessChainLoad(const glslang::TType& type);
Rex Xu27253232016-02-23 17:51:09 +0800158 void accessChainStore(const glslang::TType& type, spv::Id rvalue);
John Kessenich4bf71552016-09-02 11:20:21 -0600159 void multiTypeStore(const glslang::TType&, spv::Id rValue);
John Kessenichf85e8062015-12-19 13:57:10 -0700160 glslang::TLayoutPacking getExplicitLayout(const glslang::TType& type) const;
John Kessenich3ac051e2015-12-20 11:29:16 -0700161 int getArrayStride(const glslang::TType& arrayType, glslang::TLayoutPacking, glslang::TLayoutMatrix);
162 int getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacking, glslang::TLayoutMatrix);
John Kessenich5d610ee2018-03-07 18:05:55 -0700163 void updateMemberOffset(const glslang::TType& structType, const glslang::TType& memberType, int& currentOffset,
164 int& nextOffset, glslang::TLayoutPacking, glslang::TLayoutMatrix);
David Netoa901ffe2016-06-08 14:11:40 +0100165 void declareUseOfStructMember(const glslang::TTypeList& members, int glslangMember);
John Kessenich140f3df2015-06-26 16:58:36 -0600166
John Kessenich6fccb3c2016-09-19 16:01:41 -0600167 bool isShaderEntryPoint(const glslang::TIntermAggregate* node);
John Kessenichd3ed90b2018-05-04 11:43:03 -0600168 bool writableParam(glslang::TStorageQualifier) const;
John Kessenichd41993d2017-09-10 15:21:05 -0600169 bool originalParam(glslang::TStorageQualifier, const glslang::TType&, bool implicitThisParam);
John Kessenich140f3df2015-06-26 16:58:36 -0600170 void makeFunctions(const glslang::TIntermSequence&);
171 void makeGlobalInitializers(const glslang::TIntermSequence&);
172 void visitFunctions(const glslang::TIntermSequence&);
173 void handleFunctionEntry(const glslang::TIntermAggregate* node);
Rex Xu04db3f52015-09-16 11:44:02 +0800174 void translateArguments(const glslang::TIntermAggregate& node, std::vector<spv::Id>& arguments);
John Kessenichfc51d282015-08-19 13:34:18 -0600175 void translateArguments(glslang::TIntermUnary& node, std::vector<spv::Id>& arguments);
176 spv::Id createImageTextureFunctionCall(glslang::TIntermOperator* node);
John Kessenich140f3df2015-06-26 16:58:36 -0600177 spv::Id handleUserFunctionCall(const glslang::TIntermAggregate*);
178
John Kessenichead86222018-03-28 18:01:20 -0600179 spv::Id createBinaryOperation(glslang::TOperator op, OpDecorations&, spv::Id typeId, spv::Id left, spv::Id right,
180 glslang::TBasicType typeProxy, bool reduceComparison = true);
181 spv::Id createBinaryMatrixOperation(spv::Op, OpDecorations&, spv::Id typeId, spv::Id left, spv::Id right);
182 spv::Id createUnaryOperation(glslang::TOperator op, OpDecorations&, spv::Id typeId, spv::Id operand,
183 glslang::TBasicType typeProxy);
184 spv::Id createUnaryMatrixOperation(spv::Op op, OpDecorations&, spv::Id typeId, spv::Id operand,
185 glslang::TBasicType typeProxy);
186 spv::Id createConversion(glslang::TOperator op, OpDecorations&, spv::Id destTypeId, spv::Id operand,
187 glslang::TBasicType typeProxy);
John Kessenichad7645f2018-06-04 19:11:25 -0600188 spv::Id createIntWidthConversion(glslang::TOperator op, spv::Id operand, int vectorSize);
John Kessenich140f3df2015-06-26 16:58:36 -0600189 spv::Id makeSmearedConstant(spv::Id constant, int vectorSize);
Rex Xu04db3f52015-09-16 11:44:02 +0800190 spv::Id createAtomicOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy);
Rex Xu51596642016-09-21 18:56:12 +0800191 spv::Id createInvocationsOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy);
Rex Xu430ef402016-10-14 17:22:23 +0800192 spv::Id CreateInvocationsVectorOperation(spv::Op op, spv::GroupOperation groupOperation, spv::Id typeId, std::vector<spv::Id>& operands);
John Kessenich66011cb2018-03-06 16:12:04 -0700193 spv::Id createSubgroupOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy);
John Kessenich5e4b1242015-08-06 22:53:06 -0600194 spv::Id createMiscOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy);
Rex Xu9d93a232016-05-05 12:30:44 +0800195 spv::Id createNoArgOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId);
John Kessenich140f3df2015-06-26 16:58:36 -0600196 spv::Id getSymbolId(const glslang::TIntermSymbol* node);
Chao Chen3c366992018-09-19 11:41:59 -0700197#ifdef NV_EXTENSIONS
198 void addMeshNVDecoration(spv::Id id, int member, const glslang::TQualifier & qualifier);
199#endif
qining08408382016-03-21 09:51:37 -0400200 spv::Id createSpvConstant(const glslang::TIntermTyped&);
201 spv::Id createSpvConstantFromConstUnionArray(const glslang::TType& type, const glslang::TConstUnionArray&, int& nextConst, bool specConstant);
John Kessenich7c1aa102015-10-15 13:29:11 -0600202 bool isTrivialLeaf(const glslang::TIntermTyped* node);
203 bool isTrivial(const glslang::TIntermTyped* node);
204 spv::Id createShortCircuit(glslang::TOperator, glslang::TIntermTyped& left, glslang::TIntermTyped& right);
Frank Henigman541f7bb2018-01-16 00:18:26 -0500205#ifdef AMD_EXTENSIONS
Rex Xu9d93a232016-05-05 12:30:44 +0800206 spv::Id getExtBuiltins(const char* name);
Frank Henigman541f7bb2018-01-16 00:18:26 -0500207#endif
John Kessenich66011cb2018-03-06 16:12:04 -0700208 void addPre13Extension(const char* ext)
209 {
210 if (builder.getSpvVersion() < glslang::EShTargetSpv_1_3)
211 builder.addExtension(ext);
212 }
John Kessenich140f3df2015-06-26 16:58:36 -0600213
John Kessenich121853f2017-05-31 17:11:16 -0600214 glslang::SpvOptions& options;
John Kessenich140f3df2015-06-26 16:58:36 -0600215 spv::Function* shaderEntry;
John Kesseniched33e052016-10-06 12:59:51 -0600216 spv::Function* currentFunction;
John Kessenich55e7d112015-11-15 21:33:39 -0700217 spv::Instruction* entryPoint;
John Kessenich140f3df2015-06-26 16:58:36 -0600218 int sequenceDepth;
219
Lei Zhang17535f72016-05-04 15:55:59 -0400220 spv::SpvBuildLogger* logger;
Lei Zhang09caf122016-05-02 18:11:54 -0400221
John Kessenich140f3df2015-06-26 16:58:36 -0600222 // There is a 1:1 mapping between a spv builder and a module; this is thread safe
223 spv::Builder builder;
John Kessenich517fe7a2016-11-26 13:31:47 -0700224 bool inEntryPoint;
225 bool entryPointTerminated;
John Kessenich7ba63412015-12-20 17:37:07 -0700226 bool linkageOnly; // true when visiting the set of objects in the AST present only for establishing interface, whether or not they were statically used
John Kessenich59420fd2015-12-21 11:45:34 -0700227 std::set<spv::Id> iOSet; // all input/output variables from either static use or declaration of interface
John Kessenich140f3df2015-06-26 16:58:36 -0600228 const glslang::TIntermediate* glslangIntermediate;
229 spv::Id stdBuiltins;
Rex Xu9d93a232016-05-05 12:30:44 +0800230 std::unordered_map<const char*, spv::Id> extBuiltinMap;
John Kessenich140f3df2015-06-26 16:58:36 -0600231
John Kessenich2f273362015-07-18 22:34:27 -0600232 std::unordered_map<int, spv::Id> symbolValues;
John Kessenich4bf71552016-09-02 11:20:21 -0600233 std::unordered_set<int> rValueParameters; // set of formal function parameters passed as rValues, rather than a pointer
John Kessenich2f273362015-07-18 22:34:27 -0600234 std::unordered_map<std::string, spv::Function*> functionMap;
John Kessenich3ac051e2015-12-20 11:29:16 -0700235 std::unordered_map<const glslang::TTypeList*, spv::Id> structMap[glslang::ElpCount][glslang::ElmCount];
John Kessenich5d610ee2018-03-07 18:05:55 -0700236 // for mapping glslang block indices to spv indices (e.g., due to hidden members):
237 std::unordered_map<const glslang::TTypeList*, std::vector<int> > memberRemapper;
John Kessenich140f3df2015-06-26 16:58:36 -0600238 std::stack<bool> breakForLoop; // false means break for switch
John Kessenich5d610ee2018-03-07 18:05:55 -0700239 std::unordered_map<std::string, const glslang::TIntermSymbol*> counterOriginator;
John Kessenich140f3df2015-06-26 16:58:36 -0600240};
241
242//
243// Helper functions for translating glslang representations to SPIR-V enumerants.
244//
245
246// Translate glslang profile to SPIR-V source language.
John Kessenich66e2faf2016-03-12 18:34:36 -0700247spv::SourceLanguage TranslateSourceLanguage(glslang::EShSource source, EProfile profile)
John Kessenich140f3df2015-06-26 16:58:36 -0600248{
John Kessenich66e2faf2016-03-12 18:34:36 -0700249 switch (source) {
250 case glslang::EShSourceGlsl:
251 switch (profile) {
252 case ENoProfile:
253 case ECoreProfile:
254 case ECompatibilityProfile:
255 return spv::SourceLanguageGLSL;
256 case EEsProfile:
257 return spv::SourceLanguageESSL;
258 default:
259 return spv::SourceLanguageUnknown;
260 }
261 case glslang::EShSourceHlsl:
John Kessenich6fa17642017-04-07 15:33:08 -0600262 return spv::SourceLanguageHLSL;
John Kessenich140f3df2015-06-26 16:58:36 -0600263 default:
264 return spv::SourceLanguageUnknown;
265 }
266}
267
268// Translate glslang language (stage) to SPIR-V execution model.
269spv::ExecutionModel TranslateExecutionModel(EShLanguage stage)
270{
271 switch (stage) {
272 case EShLangVertex: return spv::ExecutionModelVertex;
273 case EShLangTessControl: return spv::ExecutionModelTessellationControl;
274 case EShLangTessEvaluation: return spv::ExecutionModelTessellationEvaluation;
275 case EShLangGeometry: return spv::ExecutionModelGeometry;
276 case EShLangFragment: return spv::ExecutionModelFragment;
277 case EShLangCompute: return spv::ExecutionModelGLCompute;
Chao Chen3c366992018-09-19 11:41:59 -0700278#ifdef NV_EXTENSIONS
Ashwin Leleff1783d2018-10-22 16:41:44 -0700279 case EShLangRayGenNV: return spv::ExecutionModelRayGenerationNV;
280 case EShLangIntersectNV: return spv::ExecutionModelIntersectionNV;
281 case EShLangAnyHitNV: return spv::ExecutionModelAnyHitNV;
282 case EShLangClosestHitNV: return spv::ExecutionModelClosestHitNV;
283 case EShLangMissNV: return spv::ExecutionModelMissNV;
284 case EShLangCallableNV: return spv::ExecutionModelCallableNV;
Chao Chen3c366992018-09-19 11:41:59 -0700285 case EShLangTaskNV: return spv::ExecutionModelTaskNV;
286 case EShLangMeshNV: return spv::ExecutionModelMeshNV;
287#endif
John Kessenich140f3df2015-06-26 16:58:36 -0600288 default:
John Kessenich55e7d112015-11-15 21:33:39 -0700289 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -0600290 return spv::ExecutionModelFragment;
291 }
292}
293
John Kessenich140f3df2015-06-26 16:58:36 -0600294// Translate glslang sampler type to SPIR-V dimensionality.
295spv::Dim TranslateDimensionality(const glslang::TSampler& sampler)
296{
297 switch (sampler.dim) {
John Kessenich55e7d112015-11-15 21:33:39 -0700298 case glslang::Esd1D: return spv::Dim1D;
299 case glslang::Esd2D: return spv::Dim2D;
300 case glslang::Esd3D: return spv::Dim3D;
301 case glslang::EsdCube: return spv::DimCube;
302 case glslang::EsdRect: return spv::DimRect;
303 case glslang::EsdBuffer: return spv::DimBuffer;
John Kessenich6c292d32016-02-15 20:58:50 -0700304 case glslang::EsdSubpass: return spv::DimSubpassData;
John Kessenich140f3df2015-06-26 16:58:36 -0600305 default:
John Kessenich55e7d112015-11-15 21:33:39 -0700306 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -0600307 return spv::Dim2D;
308 }
309}
310
John Kessenichf6640762016-08-01 19:44:00 -0600311// Translate glslang precision to SPIR-V precision decorations.
312spv::Decoration TranslatePrecisionDecoration(glslang::TPrecisionQualifier glslangPrecision)
John Kessenich140f3df2015-06-26 16:58:36 -0600313{
John Kessenichf6640762016-08-01 19:44:00 -0600314 switch (glslangPrecision) {
John Kessenich61c47a92015-12-14 18:21:19 -0700315 case glslang::EpqLow: return spv::DecorationRelaxedPrecision;
John Kessenich5e4b1242015-08-06 22:53:06 -0600316 case glslang::EpqMedium: return spv::DecorationRelaxedPrecision;
John Kessenich140f3df2015-06-26 16:58:36 -0600317 default:
318 return spv::NoPrecision;
319 }
320}
321
John Kessenichf6640762016-08-01 19:44:00 -0600322// Translate glslang type to SPIR-V precision decorations.
323spv::Decoration TranslatePrecisionDecoration(const glslang::TType& type)
324{
325 return TranslatePrecisionDecoration(type.getQualifier().precision);
326}
327
John Kessenich140f3df2015-06-26 16:58:36 -0600328// Translate glslang type to SPIR-V block decorations.
John Kessenich67027182017-04-19 18:34:49 -0600329spv::Decoration TranslateBlockDecoration(const glslang::TType& type, bool useStorageBuffer)
John Kessenich140f3df2015-06-26 16:58:36 -0600330{
331 if (type.getBasicType() == glslang::EbtBlock) {
332 switch (type.getQualifier().storage) {
333 case glslang::EvqUniform: return spv::DecorationBlock;
John Kessenich67027182017-04-19 18:34:49 -0600334 case glslang::EvqBuffer: return useStorageBuffer ? spv::DecorationBlock : spv::DecorationBufferBlock;
John Kessenich140f3df2015-06-26 16:58:36 -0600335 case glslang::EvqVaryingIn: return spv::DecorationBlock;
336 case glslang::EvqVaryingOut: return spv::DecorationBlock;
Chao Chenb50c02e2018-09-19 11:42:24 -0700337#ifdef NV_EXTENSIONS
338 case glslang::EvqPayloadNV: return spv::DecorationBlock;
339 case glslang::EvqPayloadInNV: return spv::DecorationBlock;
340 case glslang::EvqHitAttrNV: return spv::DecorationBlock;
Ashwin Leleff1783d2018-10-22 16:41:44 -0700341 case glslang::EvqCallableDataNV: return spv::DecorationBlock;
342 case glslang::EvqCallableDataInNV: return spv::DecorationBlock;
Chao Chenb50c02e2018-09-19 11:42:24 -0700343#endif
John Kessenich140f3df2015-06-26 16:58:36 -0600344 default:
John Kessenich55e7d112015-11-15 21:33:39 -0700345 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -0600346 break;
347 }
348 }
349
John Kessenich4016e382016-07-15 11:53:56 -0600350 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600351}
352
Rex Xu1da878f2016-02-21 20:59:01 +0800353// Translate glslang type to SPIR-V memory decorations.
Jeff Bolz36831c92018-09-05 10:11:41 -0500354void TranslateMemoryDecoration(const glslang::TQualifier& qualifier, std::vector<spv::Decoration>& memory, bool useVulkanMemoryModel)
Rex Xu1da878f2016-02-21 20:59:01 +0800355{
Jeff Bolz36831c92018-09-05 10:11:41 -0500356 if (!useVulkanMemoryModel) {
357 if (qualifier.coherent)
358 memory.push_back(spv::DecorationCoherent);
359 if (qualifier.volatil) {
360 memory.push_back(spv::DecorationVolatile);
361 memory.push_back(spv::DecorationCoherent);
362 }
John Kessenich14b85d32018-06-04 15:36:03 -0600363 }
Rex Xu1da878f2016-02-21 20:59:01 +0800364 if (qualifier.restrict)
365 memory.push_back(spv::DecorationRestrict);
366 if (qualifier.readonly)
367 memory.push_back(spv::DecorationNonWritable);
368 if (qualifier.writeonly)
369 memory.push_back(spv::DecorationNonReadable);
370}
371
John Kessenich140f3df2015-06-26 16:58:36 -0600372// Translate glslang type to SPIR-V layout decorations.
John Kessenich3ac051e2015-12-20 11:29:16 -0700373spv::Decoration TranslateLayoutDecoration(const glslang::TType& type, glslang::TLayoutMatrix matrixLayout)
John Kessenich140f3df2015-06-26 16:58:36 -0600374{
375 if (type.isMatrix()) {
John Kessenich3ac051e2015-12-20 11:29:16 -0700376 switch (matrixLayout) {
John Kessenich140f3df2015-06-26 16:58:36 -0600377 case glslang::ElmRowMajor:
378 return spv::DecorationRowMajor;
John Kessenich3ac051e2015-12-20 11:29:16 -0700379 case glslang::ElmColumnMajor:
John Kessenich140f3df2015-06-26 16:58:36 -0600380 return spv::DecorationColMajor;
John Kessenich3ac051e2015-12-20 11:29:16 -0700381 default:
382 // opaque layouts don't need a majorness
John Kessenich4016e382016-07-15 11:53:56 -0600383 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600384 }
385 } else {
386 switch (type.getBasicType()) {
387 default:
John Kessenich4016e382016-07-15 11:53:56 -0600388 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600389 break;
390 case glslang::EbtBlock:
391 switch (type.getQualifier().storage) {
392 case glslang::EvqUniform:
393 case glslang::EvqBuffer:
394 switch (type.getQualifier().layoutPacking) {
395 case glslang::ElpShared: return spv::DecorationGLSLShared;
John Kessenich140f3df2015-06-26 16:58:36 -0600396 case glslang::ElpPacked: return spv::DecorationGLSLPacked;
397 default:
John Kessenich4016e382016-07-15 11:53:56 -0600398 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600399 }
400 case glslang::EvqVaryingIn:
401 case glslang::EvqVaryingOut:
Chao Chen3c366992018-09-19 11:41:59 -0700402 if (type.getQualifier().isTaskMemory()) {
403 switch (type.getQualifier().layoutPacking) {
404 case glslang::ElpShared: return spv::DecorationGLSLShared;
405 case glslang::ElpPacked: return spv::DecorationGLSLPacked;
406 default: break;
407 }
408 } else {
409 assert(type.getQualifier().layoutPacking == glslang::ElpNone);
410 }
John Kessenich4016e382016-07-15 11:53:56 -0600411 return spv::DecorationMax;
Chao Chenb50c02e2018-09-19 11:42:24 -0700412#ifdef NV_EXTENSIONS
413 case glslang::EvqPayloadNV:
414 case glslang::EvqPayloadInNV:
415 case glslang::EvqHitAttrNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700416 case glslang::EvqCallableDataNV:
417 case glslang::EvqCallableDataInNV:
Chao Chenb50c02e2018-09-19 11:42:24 -0700418 return spv::DecorationMax;
419#endif
John Kessenich140f3df2015-06-26 16:58:36 -0600420 default:
John Kessenich55e7d112015-11-15 21:33:39 -0700421 assert(0);
John Kessenich4016e382016-07-15 11:53:56 -0600422 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600423 }
424 }
425 }
426}
427
428// Translate glslang type to SPIR-V interpolation decorations.
John Kessenich4016e382016-07-15 11:53:56 -0600429// Returns spv::DecorationMax when no decoration
John Kessenich55e7d112015-11-15 21:33:39 -0700430// should be applied.
Rex Xu17ff3432016-10-14 17:41:45 +0800431spv::Decoration TGlslangToSpvTraverser::TranslateInterpolationDecoration(const glslang::TQualifier& qualifier)
John Kessenich140f3df2015-06-26 16:58:36 -0600432{
Rex Xubbceed72016-05-21 09:40:44 +0800433 if (qualifier.smooth)
John Kessenich55e7d112015-11-15 21:33:39 -0700434 // Smooth decoration doesn't exist in SPIR-V 1.0
John Kessenich4016e382016-07-15 11:53:56 -0600435 return spv::DecorationMax;
Rex Xubbceed72016-05-21 09:40:44 +0800436 else if (qualifier.nopersp)
John Kessenich55e7d112015-11-15 21:33:39 -0700437 return spv::DecorationNoPerspective;
John Kesseniche0b6cad2015-12-24 10:30:13 -0700438 else if (qualifier.flat)
John Kessenich140f3df2015-06-26 16:58:36 -0600439 return spv::DecorationFlat;
Rex Xu9d93a232016-05-05 12:30:44 +0800440#ifdef AMD_EXTENSIONS
Rex Xu17ff3432016-10-14 17:41:45 +0800441 else if (qualifier.explicitInterp) {
442 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
Rex Xu9d93a232016-05-05 12:30:44 +0800443 return spv::DecorationExplicitInterpAMD;
Rex Xu17ff3432016-10-14 17:41:45 +0800444 }
Rex Xu9d93a232016-05-05 12:30:44 +0800445#endif
Rex Xubbceed72016-05-21 09:40:44 +0800446 else
John Kessenich4016e382016-07-15 11:53:56 -0600447 return spv::DecorationMax;
Rex Xubbceed72016-05-21 09:40:44 +0800448}
449
450// Translate glslang type to SPIR-V auxiliary storage decorations.
John Kessenich4016e382016-07-15 11:53:56 -0600451// Returns spv::DecorationMax when no decoration
Rex Xubbceed72016-05-21 09:40:44 +0800452// should be applied.
453spv::Decoration TGlslangToSpvTraverser::TranslateAuxiliaryStorageDecoration(const glslang::TQualifier& qualifier)
454{
455 if (qualifier.patch)
456 return spv::DecorationPatch;
John Kesseniche0b6cad2015-12-24 10:30:13 -0700457 else if (qualifier.centroid)
John Kessenich140f3df2015-06-26 16:58:36 -0600458 return spv::DecorationCentroid;
John Kessenich5e801132016-02-15 11:09:46 -0700459 else if (qualifier.sample) {
460 builder.addCapability(spv::CapabilitySampleRateShading);
John Kessenich140f3df2015-06-26 16:58:36 -0600461 return spv::DecorationSample;
John Kessenich5e801132016-02-15 11:09:46 -0700462 } else
John Kessenich4016e382016-07-15 11:53:56 -0600463 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600464}
465
John Kessenich92187592016-02-01 13:45:25 -0700466// If glslang type is invariant, return SPIR-V invariant decoration.
John Kesseniche0b6cad2015-12-24 10:30:13 -0700467spv::Decoration TranslateInvariantDecoration(const glslang::TQualifier& qualifier)
John Kessenich140f3df2015-06-26 16:58:36 -0600468{
John Kesseniche0b6cad2015-12-24 10:30:13 -0700469 if (qualifier.invariant)
John Kessenich140f3df2015-06-26 16:58:36 -0600470 return spv::DecorationInvariant;
471 else
John Kessenich4016e382016-07-15 11:53:56 -0600472 return spv::DecorationMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600473}
474
qining9220dbb2016-05-04 17:34:38 -0400475// If glslang type is noContraction, return SPIR-V NoContraction decoration.
476spv::Decoration TranslateNoContractionDecoration(const glslang::TQualifier& qualifier)
477{
478 if (qualifier.noContraction)
479 return spv::DecorationNoContraction;
480 else
John Kessenich4016e382016-07-15 11:53:56 -0600481 return spv::DecorationMax;
qining9220dbb2016-05-04 17:34:38 -0400482}
483
John Kessenich5611c6d2018-04-05 11:25:02 -0600484// If glslang type is nonUniform, return SPIR-V NonUniform decoration.
485spv::Decoration TGlslangToSpvTraverser::TranslateNonUniformDecoration(const glslang::TQualifier& qualifier)
486{
487 if (qualifier.isNonUniform()) {
488 builder.addExtension("SPV_EXT_descriptor_indexing");
489 builder.addCapability(spv::CapabilityShaderNonUniformEXT);
490 return spv::DecorationNonUniformEXT;
491 } else
492 return spv::DecorationMax;
493}
494
Jeff Bolz36831c92018-09-05 10:11:41 -0500495spv::MemoryAccessMask TGlslangToSpvTraverser::TranslateMemoryAccess(const spv::Builder::AccessChain::CoherentFlags &coherentFlags)
496{
497 if (!glslangIntermediate->usingVulkanMemoryModel() || coherentFlags.isImage) {
498 return spv::MemoryAccessMaskNone;
499 }
500 spv::MemoryAccessMask mask = spv::MemoryAccessMaskNone;
501 if (coherentFlags.volatil ||
502 coherentFlags.coherent ||
503 coherentFlags.devicecoherent ||
504 coherentFlags.queuefamilycoherent ||
505 coherentFlags.workgroupcoherent ||
506 coherentFlags.subgroupcoherent) {
507 mask = mask | spv::MemoryAccessMakePointerAvailableKHRMask |
508 spv::MemoryAccessMakePointerVisibleKHRMask;
509 }
510 if (coherentFlags.nonprivate) {
511 mask = mask | spv::MemoryAccessNonPrivatePointerKHRMask;
512 }
513 if (coherentFlags.volatil) {
514 mask = mask | spv::MemoryAccessVolatileMask;
515 }
516 if (mask != spv::MemoryAccessMaskNone) {
517 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
518 }
519 return mask;
520}
521
522spv::ImageOperandsMask TGlslangToSpvTraverser::TranslateImageOperands(const spv::Builder::AccessChain::CoherentFlags &coherentFlags)
523{
524 if (!glslangIntermediate->usingVulkanMemoryModel()) {
525 return spv::ImageOperandsMaskNone;
526 }
527 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
528 if (coherentFlags.volatil ||
529 coherentFlags.coherent ||
530 coherentFlags.devicecoherent ||
531 coherentFlags.queuefamilycoherent ||
532 coherentFlags.workgroupcoherent ||
533 coherentFlags.subgroupcoherent) {
534 mask = mask | spv::ImageOperandsMakeTexelAvailableKHRMask |
535 spv::ImageOperandsMakeTexelVisibleKHRMask;
536 }
537 if (coherentFlags.nonprivate) {
538 mask = mask | spv::ImageOperandsNonPrivateTexelKHRMask;
539 }
540 if (coherentFlags.volatil) {
541 mask = mask | spv::ImageOperandsVolatileTexelKHRMask;
542 }
543 if (mask != spv::ImageOperandsMaskNone) {
544 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
545 }
546 return mask;
547}
548
549spv::Builder::AccessChain::CoherentFlags TGlslangToSpvTraverser::TranslateCoherent(const glslang::TType& type)
550{
551 spv::Builder::AccessChain::CoherentFlags flags;
552 flags.coherent = type.getQualifier().coherent;
553 flags.devicecoherent = type.getQualifier().devicecoherent;
554 flags.queuefamilycoherent = type.getQualifier().queuefamilycoherent;
555 // shared variables are implicitly workgroupcoherent in GLSL.
556 flags.workgroupcoherent = type.getQualifier().workgroupcoherent ||
557 type.getQualifier().storage == glslang::EvqShared;
558 flags.subgroupcoherent = type.getQualifier().subgroupcoherent;
559 // *coherent variables are implicitly nonprivate in GLSL
560 flags.nonprivate = type.getQualifier().nonprivate ||
Jeff Bolzab3c9652018-10-15 22:46:48 -0500561 flags.subgroupcoherent ||
562 flags.workgroupcoherent ||
563 flags.queuefamilycoherent ||
564 flags.devicecoherent ||
565 flags.coherent;
Jeff Bolz36831c92018-09-05 10:11:41 -0500566 flags.volatil = type.getQualifier().volatil;
567 flags.isImage = type.getBasicType() == glslang::EbtSampler;
568 return flags;
569}
570
571spv::Scope TGlslangToSpvTraverser::TranslateMemoryScope(const spv::Builder::AccessChain::CoherentFlags &coherentFlags)
572{
573 spv::Scope scope;
574 if (coherentFlags.coherent) {
575 // coherent defaults to Device scope in the old model, QueueFamilyKHR scope in the new model
576 scope = glslangIntermediate->usingVulkanMemoryModel() ? spv::ScopeQueueFamilyKHR : spv::ScopeDevice;
577 } else if (coherentFlags.devicecoherent) {
578 scope = spv::ScopeDevice;
579 } else if (coherentFlags.queuefamilycoherent) {
580 scope = spv::ScopeQueueFamilyKHR;
581 } else if (coherentFlags.workgroupcoherent) {
582 scope = spv::ScopeWorkgroup;
583 } else if (coherentFlags.subgroupcoherent) {
584 scope = spv::ScopeSubgroup;
585 } else {
586 scope = spv::ScopeMax;
587 }
588 if (glslangIntermediate->usingVulkanMemoryModel() && scope == spv::ScopeDevice) {
589 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
590 }
591 return scope;
592}
593
David Netoa901ffe2016-06-08 14:11:40 +0100594// Translate a glslang built-in variable to a SPIR-V built in decoration. Also generate
595// associated capabilities when required. For some built-in variables, a capability
596// is generated only when using the variable in an executable instruction, but not when
597// just declaring a struct member variable with it. This is true for PointSize,
598// ClipDistance, and CullDistance.
599spv::BuiltIn TGlslangToSpvTraverser::TranslateBuiltInDecoration(glslang::TBuiltInVariable builtIn, bool memberDeclaration)
John Kessenich140f3df2015-06-26 16:58:36 -0600600{
601 switch (builtIn) {
John Kessenich92187592016-02-01 13:45:25 -0700602 case glslang::EbvPointSize:
John Kessenich78a45572016-07-08 14:05:15 -0600603 // Defer adding the capability until the built-in is actually used.
604 if (! memberDeclaration) {
605 switch (glslangIntermediate->getStage()) {
606 case EShLangGeometry:
607 builder.addCapability(spv::CapabilityGeometryPointSize);
608 break;
609 case EShLangTessControl:
610 case EShLangTessEvaluation:
611 builder.addCapability(spv::CapabilityTessellationPointSize);
612 break;
613 default:
614 break;
615 }
John Kessenich92187592016-02-01 13:45:25 -0700616 }
617 return spv::BuiltInPointSize;
618
John Kessenichebb50532016-05-16 19:22:05 -0600619 // These *Distance capabilities logically belong here, but if the member is declared and
620 // then never used, consumers of SPIR-V prefer the capability not be declared.
621 // They are now generated when used, rather than here when declared.
622 // Potentially, the specification should be more clear what the minimum
623 // use needed is to trigger the capability.
624 //
John Kessenich92187592016-02-01 13:45:25 -0700625 case glslang::EbvClipDistance:
David Netoa901ffe2016-06-08 14:11:40 +0100626 if (!memberDeclaration)
Rex Xu3e783f92017-02-22 16:44:48 +0800627 builder.addCapability(spv::CapabilityClipDistance);
John Kessenich92187592016-02-01 13:45:25 -0700628 return spv::BuiltInClipDistance;
629
630 case glslang::EbvCullDistance:
David Netoa901ffe2016-06-08 14:11:40 +0100631 if (!memberDeclaration)
Rex Xu3e783f92017-02-22 16:44:48 +0800632 builder.addCapability(spv::CapabilityCullDistance);
John Kessenich92187592016-02-01 13:45:25 -0700633 return spv::BuiltInCullDistance;
634
635 case glslang::EbvViewportIndex:
John Kessenichba6a3c22017-09-13 13:22:50 -0600636 builder.addCapability(spv::CapabilityMultiViewport);
637 if (glslangIntermediate->getStage() == EShLangVertex ||
638 glslangIntermediate->getStage() == EShLangTessControl ||
639 glslangIntermediate->getStage() == EShLangTessEvaluation) {
Rex Xu5e317ff2017-03-16 23:02:39 +0800640
John Kessenichba6a3c22017-09-13 13:22:50 -0600641 builder.addExtension(spv::E_SPV_EXT_shader_viewport_index_layer);
642 builder.addCapability(spv::CapabilityShaderViewportIndexLayerEXT);
Rex Xu5e317ff2017-03-16 23:02:39 +0800643 }
John Kessenich92187592016-02-01 13:45:25 -0700644 return spv::BuiltInViewportIndex;
645
John Kessenich5e801132016-02-15 11:09:46 -0700646 case glslang::EbvSampleId:
647 builder.addCapability(spv::CapabilitySampleRateShading);
648 return spv::BuiltInSampleId;
649
650 case glslang::EbvSamplePosition:
651 builder.addCapability(spv::CapabilitySampleRateShading);
652 return spv::BuiltInSamplePosition;
653
654 case glslang::EbvSampleMask:
John Kessenich5e801132016-02-15 11:09:46 -0700655 return spv::BuiltInSampleMask;
656
John Kessenich78a45572016-07-08 14:05:15 -0600657 case glslang::EbvLayer:
Chao Chen3c366992018-09-19 11:41:59 -0700658#ifdef NV_EXTENSIONS
659 if (glslangIntermediate->getStage() == EShLangMeshNV) {
660 return spv::BuiltInLayer;
661 }
662#endif
John Kessenichba6a3c22017-09-13 13:22:50 -0600663 builder.addCapability(spv::CapabilityGeometry);
664 if (glslangIntermediate->getStage() == EShLangVertex ||
665 glslangIntermediate->getStage() == EShLangTessControl ||
666 glslangIntermediate->getStage() == EShLangTessEvaluation) {
Rex Xu5e317ff2017-03-16 23:02:39 +0800667
John Kessenichba6a3c22017-09-13 13:22:50 -0600668 builder.addExtension(spv::E_SPV_EXT_shader_viewport_index_layer);
669 builder.addCapability(spv::CapabilityShaderViewportIndexLayerEXT);
Rex Xu5e317ff2017-03-16 23:02:39 +0800670 }
John Kessenich78a45572016-07-08 14:05:15 -0600671 return spv::BuiltInLayer;
672
John Kessenich140f3df2015-06-26 16:58:36 -0600673 case glslang::EbvPosition: return spv::BuiltInPosition;
John Kessenich140f3df2015-06-26 16:58:36 -0600674 case glslang::EbvVertexId: return spv::BuiltInVertexId;
675 case glslang::EbvInstanceId: return spv::BuiltInInstanceId;
John Kessenich6c292d32016-02-15 20:58:50 -0700676 case glslang::EbvVertexIndex: return spv::BuiltInVertexIndex;
677 case glslang::EbvInstanceIndex: return spv::BuiltInInstanceIndex;
Rex Xuf3b27472016-07-22 18:15:31 +0800678
John Kessenichda581a22015-10-14 14:10:30 -0600679 case glslang::EbvBaseVertex:
John Kessenich66011cb2018-03-06 16:12:04 -0700680 addPre13Extension(spv::E_SPV_KHR_shader_draw_parameters);
Rex Xuf3b27472016-07-22 18:15:31 +0800681 builder.addCapability(spv::CapabilityDrawParameters);
682 return spv::BuiltInBaseVertex;
683
John Kessenichda581a22015-10-14 14:10:30 -0600684 case glslang::EbvBaseInstance:
John Kessenich66011cb2018-03-06 16:12:04 -0700685 addPre13Extension(spv::E_SPV_KHR_shader_draw_parameters);
Rex Xuf3b27472016-07-22 18:15:31 +0800686 builder.addCapability(spv::CapabilityDrawParameters);
687 return spv::BuiltInBaseInstance;
Maciej Jesionowski04b3e872016-09-26 16:49:09 +0200688
John Kessenichda581a22015-10-14 14:10:30 -0600689 case glslang::EbvDrawId:
John Kessenich66011cb2018-03-06 16:12:04 -0700690 addPre13Extension(spv::E_SPV_KHR_shader_draw_parameters);
Rex Xuf3b27472016-07-22 18:15:31 +0800691 builder.addCapability(spv::CapabilityDrawParameters);
692 return spv::BuiltInDrawIndex;
Maciej Jesionowski04b3e872016-09-26 16:49:09 +0200693
694 case glslang::EbvPrimitiveId:
695 if (glslangIntermediate->getStage() == EShLangFragment)
696 builder.addCapability(spv::CapabilityGeometry);
697 return spv::BuiltInPrimitiveId;
698
Rex Xu37cdcee2017-06-29 17:46:34 +0800699 case glslang::EbvFragStencilRef:
Rex Xue8fdd792017-08-23 23:24:42 +0800700 builder.addExtension(spv::E_SPV_EXT_shader_stencil_export);
701 builder.addCapability(spv::CapabilityStencilExportEXT);
702 return spv::BuiltInFragStencilRefEXT;
Rex Xu37cdcee2017-06-29 17:46:34 +0800703
John Kessenich140f3df2015-06-26 16:58:36 -0600704 case glslang::EbvInvocationId: return spv::BuiltInInvocationId;
John Kessenich140f3df2015-06-26 16:58:36 -0600705 case glslang::EbvTessLevelInner: return spv::BuiltInTessLevelInner;
706 case glslang::EbvTessLevelOuter: return spv::BuiltInTessLevelOuter;
707 case glslang::EbvTessCoord: return spv::BuiltInTessCoord;
708 case glslang::EbvPatchVertices: return spv::BuiltInPatchVertices;
709 case glslang::EbvFragCoord: return spv::BuiltInFragCoord;
710 case glslang::EbvPointCoord: return spv::BuiltInPointCoord;
711 case glslang::EbvFace: return spv::BuiltInFrontFacing;
John Kessenich140f3df2015-06-26 16:58:36 -0600712 case glslang::EbvFragDepth: return spv::BuiltInFragDepth;
713 case glslang::EbvHelperInvocation: return spv::BuiltInHelperInvocation;
714 case glslang::EbvNumWorkGroups: return spv::BuiltInNumWorkgroups;
715 case glslang::EbvWorkGroupSize: return spv::BuiltInWorkgroupSize;
716 case glslang::EbvWorkGroupId: return spv::BuiltInWorkgroupId;
717 case glslang::EbvLocalInvocationId: return spv::BuiltInLocalInvocationId;
718 case glslang::EbvLocalInvocationIndex: return spv::BuiltInLocalInvocationIndex;
719 case glslang::EbvGlobalInvocationId: return spv::BuiltInGlobalInvocationId;
Rex Xu51596642016-09-21 18:56:12 +0800720
Rex Xu574ab042016-04-14 16:53:07 +0800721 case glslang::EbvSubGroupSize:
Rex Xu36876e62016-09-23 22:13:43 +0800722 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
Rex Xu51596642016-09-21 18:56:12 +0800723 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
724 return spv::BuiltInSubgroupSize;
725
Rex Xu574ab042016-04-14 16:53:07 +0800726 case glslang::EbvSubGroupInvocation:
Rex Xu36876e62016-09-23 22:13:43 +0800727 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
Rex Xu51596642016-09-21 18:56:12 +0800728 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
729 return spv::BuiltInSubgroupLocalInvocationId;
730
Rex Xu574ab042016-04-14 16:53:07 +0800731 case glslang::EbvSubGroupEqMask:
Rex Xu51596642016-09-21 18:56:12 +0800732 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
733 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
734 return spv::BuiltInSubgroupEqMaskKHR;
735
Rex Xu574ab042016-04-14 16:53:07 +0800736 case glslang::EbvSubGroupGeMask:
Rex Xu51596642016-09-21 18:56:12 +0800737 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
738 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
739 return spv::BuiltInSubgroupGeMaskKHR;
740
Rex Xu574ab042016-04-14 16:53:07 +0800741 case glslang::EbvSubGroupGtMask:
Rex Xu51596642016-09-21 18:56:12 +0800742 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
743 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
744 return spv::BuiltInSubgroupGtMaskKHR;
745
Rex Xu574ab042016-04-14 16:53:07 +0800746 case glslang::EbvSubGroupLeMask:
Rex Xu51596642016-09-21 18:56:12 +0800747 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
748 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
749 return spv::BuiltInSubgroupLeMaskKHR;
750
Rex Xu574ab042016-04-14 16:53:07 +0800751 case glslang::EbvSubGroupLtMask:
Rex Xu51596642016-09-21 18:56:12 +0800752 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
753 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
754 return spv::BuiltInSubgroupLtMaskKHR;
755
John Kessenich66011cb2018-03-06 16:12:04 -0700756 case glslang::EbvNumSubgroups:
757 builder.addCapability(spv::CapabilityGroupNonUniform);
758 return spv::BuiltInNumSubgroups;
759
760 case glslang::EbvSubgroupID:
761 builder.addCapability(spv::CapabilityGroupNonUniform);
762 return spv::BuiltInSubgroupId;
763
764 case glslang::EbvSubgroupSize2:
765 builder.addCapability(spv::CapabilityGroupNonUniform);
766 return spv::BuiltInSubgroupSize;
767
768 case glslang::EbvSubgroupInvocation2:
769 builder.addCapability(spv::CapabilityGroupNonUniform);
770 return spv::BuiltInSubgroupLocalInvocationId;
771
772 case glslang::EbvSubgroupEqMask2:
773 builder.addCapability(spv::CapabilityGroupNonUniform);
774 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
775 return spv::BuiltInSubgroupEqMask;
776
777 case glslang::EbvSubgroupGeMask2:
778 builder.addCapability(spv::CapabilityGroupNonUniform);
779 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
780 return spv::BuiltInSubgroupGeMask;
781
782 case glslang::EbvSubgroupGtMask2:
783 builder.addCapability(spv::CapabilityGroupNonUniform);
784 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
785 return spv::BuiltInSubgroupGtMask;
786
787 case glslang::EbvSubgroupLeMask2:
788 builder.addCapability(spv::CapabilityGroupNonUniform);
789 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
790 return spv::BuiltInSubgroupLeMask;
791
792 case glslang::EbvSubgroupLtMask2:
793 builder.addCapability(spv::CapabilityGroupNonUniform);
794 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
795 return spv::BuiltInSubgroupLtMask;
Rex Xu9d93a232016-05-05 12:30:44 +0800796#ifdef AMD_EXTENSIONS
Rex Xu17ff3432016-10-14 17:41:45 +0800797 case glslang::EbvBaryCoordNoPersp:
798 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
799 return spv::BuiltInBaryCoordNoPerspAMD;
800
801 case glslang::EbvBaryCoordNoPerspCentroid:
802 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
803 return spv::BuiltInBaryCoordNoPerspCentroidAMD;
804
805 case glslang::EbvBaryCoordNoPerspSample:
806 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
807 return spv::BuiltInBaryCoordNoPerspSampleAMD;
808
809 case glslang::EbvBaryCoordSmooth:
810 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
811 return spv::BuiltInBaryCoordSmoothAMD;
812
813 case glslang::EbvBaryCoordSmoothCentroid:
814 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
815 return spv::BuiltInBaryCoordSmoothCentroidAMD;
816
817 case glslang::EbvBaryCoordSmoothSample:
818 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
819 return spv::BuiltInBaryCoordSmoothSampleAMD;
820
821 case glslang::EbvBaryCoordPullModel:
822 builder.addExtension(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
823 return spv::BuiltInBaryCoordPullModelAMD;
Rex Xu9d93a232016-05-05 12:30:44 +0800824#endif
chaoc771d89f2017-01-13 01:10:53 -0800825
John Kessenich6c8aaac2017-02-27 01:20:51 -0700826 case glslang::EbvDeviceIndex:
John Kessenich66011cb2018-03-06 16:12:04 -0700827 addPre13Extension(spv::E_SPV_KHR_device_group);
John Kessenich6c8aaac2017-02-27 01:20:51 -0700828 builder.addCapability(spv::CapabilityDeviceGroup);
John Kessenich42e33c92017-02-27 01:50:28 -0700829 return spv::BuiltInDeviceIndex;
John Kessenich6c8aaac2017-02-27 01:20:51 -0700830
831 case glslang::EbvViewIndex:
John Kessenich66011cb2018-03-06 16:12:04 -0700832 addPre13Extension(spv::E_SPV_KHR_multiview);
John Kessenich6c8aaac2017-02-27 01:20:51 -0700833 builder.addCapability(spv::CapabilityMultiView);
John Kessenich42e33c92017-02-27 01:50:28 -0700834 return spv::BuiltInViewIndex;
John Kessenich6c8aaac2017-02-27 01:20:51 -0700835
Daniel Koch5154db52018-11-26 10:01:58 -0500836 case glslang::EbvFragSizeEXT:
837 builder.addExtension(spv::E_SPV_EXT_fragment_invocation_density);
838 builder.addCapability(spv::CapabilityFragmentDensityEXT);
839 return spv::BuiltInFragSizeEXT;
840
841 case glslang::EbvFragInvocationCountEXT:
842 builder.addExtension(spv::E_SPV_EXT_fragment_invocation_density);
843 builder.addCapability(spv::CapabilityFragmentDensityEXT);
844 return spv::BuiltInFragInvocationCountEXT;
845
chaoc771d89f2017-01-13 01:10:53 -0800846#ifdef NV_EXTENSIONS
847 case glslang::EbvViewportMaskNV:
Rex Xu5e317ff2017-03-16 23:02:39 +0800848 if (!memberDeclaration) {
849 builder.addExtension(spv::E_SPV_NV_viewport_array2);
850 builder.addCapability(spv::CapabilityShaderViewportMaskNV);
851 }
chaoc771d89f2017-01-13 01:10:53 -0800852 return spv::BuiltInViewportMaskNV;
853 case glslang::EbvSecondaryPositionNV:
Rex Xu3e783f92017-02-22 16:44:48 +0800854 if (!memberDeclaration) {
855 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
856 builder.addCapability(spv::CapabilityShaderStereoViewNV);
857 }
chaoc771d89f2017-01-13 01:10:53 -0800858 return spv::BuiltInSecondaryPositionNV;
859 case glslang::EbvSecondaryViewportMaskNV:
Rex Xu3e783f92017-02-22 16:44:48 +0800860 if (!memberDeclaration) {
861 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
862 builder.addCapability(spv::CapabilityShaderStereoViewNV);
863 }
chaoc771d89f2017-01-13 01:10:53 -0800864 return spv::BuiltInSecondaryViewportMaskNV;
chaocdf3956c2017-02-14 14:52:34 -0800865 case glslang::EbvPositionPerViewNV:
Rex Xu3e783f92017-02-22 16:44:48 +0800866 if (!memberDeclaration) {
867 builder.addExtension(spv::E_SPV_NVX_multiview_per_view_attributes);
868 builder.addCapability(spv::CapabilityPerViewAttributesNV);
869 }
chaocdf3956c2017-02-14 14:52:34 -0800870 return spv::BuiltInPositionPerViewNV;
871 case glslang::EbvViewportMaskPerViewNV:
Rex Xu3e783f92017-02-22 16:44:48 +0800872 if (!memberDeclaration) {
873 builder.addExtension(spv::E_SPV_NVX_multiview_per_view_attributes);
874 builder.addCapability(spv::CapabilityPerViewAttributesNV);
875 }
chaocdf3956c2017-02-14 14:52:34 -0800876 return spv::BuiltInViewportMaskPerViewNV;
Piers Daniell1c5443c2017-12-13 13:07:22 -0700877 case glslang::EbvFragFullyCoveredNV:
878 builder.addExtension(spv::E_SPV_EXT_fragment_fully_covered);
879 builder.addCapability(spv::CapabilityFragmentFullyCoveredEXT);
880 return spv::BuiltInFullyCoveredEXT;
Chao Chen5b2203d2018-09-19 11:43:21 -0700881 case glslang::EbvFragmentSizeNV:
882 builder.addExtension(spv::E_SPV_NV_shading_rate);
883 builder.addCapability(spv::CapabilityShadingRateNV);
884 return spv::BuiltInFragmentSizeNV;
885 case glslang::EbvInvocationsPerPixelNV:
886 builder.addExtension(spv::E_SPV_NV_shading_rate);
887 builder.addCapability(spv::CapabilityShadingRateNV);
888 return spv::BuiltInInvocationsPerPixelNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700889
890 // raytracing
891 case glslang::EbvLaunchIdNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700892 return spv::BuiltInLaunchIdNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700893 case glslang::EbvLaunchSizeNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700894 return spv::BuiltInLaunchSizeNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700895 case glslang::EbvWorldRayOriginNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700896 return spv::BuiltInWorldRayOriginNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700897 case glslang::EbvWorldRayDirectionNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700898 return spv::BuiltInWorldRayDirectionNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700899 case glslang::EbvObjectRayOriginNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700900 return spv::BuiltInObjectRayOriginNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700901 case glslang::EbvObjectRayDirectionNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700902 return spv::BuiltInObjectRayDirectionNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700903 case glslang::EbvRayTminNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700904 return spv::BuiltInRayTminNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700905 case glslang::EbvRayTmaxNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700906 return spv::BuiltInRayTmaxNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700907 case glslang::EbvInstanceCustomIndexNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700908 return spv::BuiltInInstanceCustomIndexNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700909 case glslang::EbvHitTNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700910 return spv::BuiltInHitTNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700911 case glslang::EbvHitKindNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700912 return spv::BuiltInHitKindNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700913 case glslang::EbvObjectToWorldNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700914 return spv::BuiltInObjectToWorldNV;
Chao Chenb50c02e2018-09-19 11:42:24 -0700915 case glslang::EbvWorldToObjectNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -0700916 return spv::BuiltInWorldToObjectNV;
917 case glslang::EbvIncomingRayFlagsNV:
918 return spv::BuiltInIncomingRayFlagsNV;
Chao Chen9eada4b2018-09-19 11:39:56 -0700919 case glslang::EbvBaryCoordNV:
920 builder.addExtension(spv::E_SPV_NV_fragment_shader_barycentric);
921 builder.addCapability(spv::CapabilityFragmentBarycentricNV);
922 return spv::BuiltInBaryCoordNV;
923 case glslang::EbvBaryCoordNoPerspNV:
924 builder.addExtension(spv::E_SPV_NV_fragment_shader_barycentric);
925 builder.addCapability(spv::CapabilityFragmentBarycentricNV);
926 return spv::BuiltInBaryCoordNoPerspNV;
Chao Chen3c366992018-09-19 11:41:59 -0700927 case glslang::EbvTaskCountNV:
928 return spv::BuiltInTaskCountNV;
929 case glslang::EbvPrimitiveCountNV:
930 return spv::BuiltInPrimitiveCountNV;
931 case glslang::EbvPrimitiveIndicesNV:
932 return spv::BuiltInPrimitiveIndicesNV;
933 case glslang::EbvClipDistancePerViewNV:
934 return spv::BuiltInClipDistancePerViewNV;
935 case glslang::EbvCullDistancePerViewNV:
936 return spv::BuiltInCullDistancePerViewNV;
937 case glslang::EbvLayerPerViewNV:
938 return spv::BuiltInLayerPerViewNV;
939 case glslang::EbvMeshViewCountNV:
940 return spv::BuiltInMeshViewCountNV;
941 case glslang::EbvMeshViewIndicesNV:
942 return spv::BuiltInMeshViewIndicesNV;
chaoc771d89f2017-01-13 01:10:53 -0800943#endif
Rex Xu3e783f92017-02-22 16:44:48 +0800944 default:
945 return spv::BuiltInMax;
John Kessenich140f3df2015-06-26 16:58:36 -0600946 }
947}
948
Rex Xufc618912015-09-09 16:42:49 +0800949// Translate glslang image layout format to SPIR-V image format.
John Kessenich5d0fa972016-02-15 11:57:00 -0700950spv::ImageFormat TGlslangToSpvTraverser::TranslateImageFormat(const glslang::TType& type)
Rex Xufc618912015-09-09 16:42:49 +0800951{
952 assert(type.getBasicType() == glslang::EbtSampler);
953
John Kessenich5d0fa972016-02-15 11:57:00 -0700954 // Check for capabilities
955 switch (type.getQualifier().layoutFormat) {
956 case glslang::ElfRg32f:
957 case glslang::ElfRg16f:
958 case glslang::ElfR11fG11fB10f:
959 case glslang::ElfR16f:
960 case glslang::ElfRgba16:
961 case glslang::ElfRgb10A2:
962 case glslang::ElfRg16:
963 case glslang::ElfRg8:
964 case glslang::ElfR16:
965 case glslang::ElfR8:
966 case glslang::ElfRgba16Snorm:
967 case glslang::ElfRg16Snorm:
968 case glslang::ElfRg8Snorm:
969 case glslang::ElfR16Snorm:
970 case glslang::ElfR8Snorm:
971
972 case glslang::ElfRg32i:
973 case glslang::ElfRg16i:
974 case glslang::ElfRg8i:
975 case glslang::ElfR16i:
976 case glslang::ElfR8i:
977
978 case glslang::ElfRgb10a2ui:
979 case glslang::ElfRg32ui:
980 case glslang::ElfRg16ui:
981 case glslang::ElfRg8ui:
982 case glslang::ElfR16ui:
983 case glslang::ElfR8ui:
984 builder.addCapability(spv::CapabilityStorageImageExtendedFormats);
985 break;
986
987 default:
988 break;
989 }
990
991 // do the translation
Rex Xufc618912015-09-09 16:42:49 +0800992 switch (type.getQualifier().layoutFormat) {
993 case glslang::ElfNone: return spv::ImageFormatUnknown;
994 case glslang::ElfRgba32f: return spv::ImageFormatRgba32f;
995 case glslang::ElfRgba16f: return spv::ImageFormatRgba16f;
996 case glslang::ElfR32f: return spv::ImageFormatR32f;
997 case glslang::ElfRgba8: return spv::ImageFormatRgba8;
998 case glslang::ElfRgba8Snorm: return spv::ImageFormatRgba8Snorm;
999 case glslang::ElfRg32f: return spv::ImageFormatRg32f;
1000 case glslang::ElfRg16f: return spv::ImageFormatRg16f;
1001 case glslang::ElfR11fG11fB10f: return spv::ImageFormatR11fG11fB10f;
1002 case glslang::ElfR16f: return spv::ImageFormatR16f;
1003 case glslang::ElfRgba16: return spv::ImageFormatRgba16;
1004 case glslang::ElfRgb10A2: return spv::ImageFormatRgb10A2;
1005 case glslang::ElfRg16: return spv::ImageFormatRg16;
1006 case glslang::ElfRg8: return spv::ImageFormatRg8;
1007 case glslang::ElfR16: return spv::ImageFormatR16;
1008 case glslang::ElfR8: return spv::ImageFormatR8;
1009 case glslang::ElfRgba16Snorm: return spv::ImageFormatRgba16Snorm;
1010 case glslang::ElfRg16Snorm: return spv::ImageFormatRg16Snorm;
1011 case glslang::ElfRg8Snorm: return spv::ImageFormatRg8Snorm;
1012 case glslang::ElfR16Snorm: return spv::ImageFormatR16Snorm;
1013 case glslang::ElfR8Snorm: return spv::ImageFormatR8Snorm;
1014 case glslang::ElfRgba32i: return spv::ImageFormatRgba32i;
1015 case glslang::ElfRgba16i: return spv::ImageFormatRgba16i;
1016 case glslang::ElfRgba8i: return spv::ImageFormatRgba8i;
1017 case glslang::ElfR32i: return spv::ImageFormatR32i;
1018 case glslang::ElfRg32i: return spv::ImageFormatRg32i;
1019 case glslang::ElfRg16i: return spv::ImageFormatRg16i;
1020 case glslang::ElfRg8i: return spv::ImageFormatRg8i;
1021 case glslang::ElfR16i: return spv::ImageFormatR16i;
1022 case glslang::ElfR8i: return spv::ImageFormatR8i;
1023 case glslang::ElfRgba32ui: return spv::ImageFormatRgba32ui;
1024 case glslang::ElfRgba16ui: return spv::ImageFormatRgba16ui;
1025 case glslang::ElfRgba8ui: return spv::ImageFormatRgba8ui;
1026 case glslang::ElfR32ui: return spv::ImageFormatR32ui;
1027 case glslang::ElfRg32ui: return spv::ImageFormatRg32ui;
1028 case glslang::ElfRg16ui: return spv::ImageFormatRg16ui;
1029 case glslang::ElfRgb10a2ui: return spv::ImageFormatRgb10a2ui;
1030 case glslang::ElfRg8ui: return spv::ImageFormatRg8ui;
1031 case glslang::ElfR16ui: return spv::ImageFormatR16ui;
1032 case glslang::ElfR8ui: return spv::ImageFormatR8ui;
John Kessenich4016e382016-07-15 11:53:56 -06001033 default: return spv::ImageFormatMax;
Rex Xufc618912015-09-09 16:42:49 +08001034 }
1035}
1036
John Kesseniche18fd202018-01-30 11:01:39 -07001037spv::SelectionControlMask TGlslangToSpvTraverser::TranslateSelectionControl(const glslang::TIntermSelection& selectionNode) const
Rex Xu57e65922017-07-04 23:23:40 +08001038{
John Kesseniche18fd202018-01-30 11:01:39 -07001039 if (selectionNode.getFlatten())
1040 return spv::SelectionControlFlattenMask;
1041 if (selectionNode.getDontFlatten())
1042 return spv::SelectionControlDontFlattenMask;
1043 return spv::SelectionControlMaskNone;
Rex Xu57e65922017-07-04 23:23:40 +08001044}
1045
John Kesseniche18fd202018-01-30 11:01:39 -07001046spv::SelectionControlMask TGlslangToSpvTraverser::TranslateSwitchControl(const glslang::TIntermSwitch& switchNode) const
steve-lunargf1709e72017-05-02 20:14:50 -06001047{
John Kesseniche18fd202018-01-30 11:01:39 -07001048 if (switchNode.getFlatten())
1049 return spv::SelectionControlFlattenMask;
1050 if (switchNode.getDontFlatten())
1051 return spv::SelectionControlDontFlattenMask;
1052 return spv::SelectionControlMaskNone;
1053}
1054
John Kessenicha2858d92018-01-31 08:11:18 -07001055// return a non-0 dependency if the dependency argument must be set
1056spv::LoopControlMask TGlslangToSpvTraverser::TranslateLoopControl(const glslang::TIntermLoop& loopNode,
1057 unsigned int& dependencyLength) const
John Kesseniche18fd202018-01-30 11:01:39 -07001058{
1059 spv::LoopControlMask control = spv::LoopControlMaskNone;
1060
1061 if (loopNode.getDontUnroll())
1062 control = control | spv::LoopControlDontUnrollMask;
1063 if (loopNode.getUnroll())
1064 control = control | spv::LoopControlUnrollMask;
LoopDawg4425f242018-02-18 11:40:01 -07001065 if (unsigned(loopNode.getLoopDependency()) == glslang::TIntermLoop::dependencyInfinite)
John Kessenicha2858d92018-01-31 08:11:18 -07001066 control = control | spv::LoopControlDependencyInfiniteMask;
1067 else if (loopNode.getLoopDependency() > 0) {
1068 control = control | spv::LoopControlDependencyLengthMask;
1069 dependencyLength = loopNode.getLoopDependency();
1070 }
John Kesseniche18fd202018-01-30 11:01:39 -07001071
1072 return control;
steve-lunargf1709e72017-05-02 20:14:50 -06001073}
1074
John Kessenicha5c5fb62017-05-05 05:09:58 -06001075// Translate glslang type to SPIR-V storage class.
1076spv::StorageClass TGlslangToSpvTraverser::TranslateStorageClass(const glslang::TType& type)
1077{
1078 if (type.getQualifier().isPipeInput())
1079 return spv::StorageClassInput;
John Kessenichbed4e4f2017-09-08 02:38:07 -06001080 if (type.getQualifier().isPipeOutput())
John Kessenicha5c5fb62017-05-05 05:09:58 -06001081 return spv::StorageClassOutput;
John Kessenichbed4e4f2017-09-08 02:38:07 -06001082
1083 if (glslangIntermediate->getSource() != glslang::EShSourceHlsl ||
1084 type.getQualifier().storage == glslang::EvqUniform) {
1085 if (type.getBasicType() == glslang::EbtAtomicUint)
1086 return spv::StorageClassAtomicCounter;
1087 if (type.containsOpaque())
1088 return spv::StorageClassUniformConstant;
1089 }
1090
1091 if (glslangIntermediate->usingStorageBuffer() && type.getQualifier().storage == glslang::EvqBuffer) {
John Kessenich66011cb2018-03-06 16:12:04 -07001092 addPre13Extension(spv::E_SPV_KHR_storage_buffer_storage_class);
John Kessenicha5c5fb62017-05-05 05:09:58 -06001093 return spv::StorageClassStorageBuffer;
John Kessenichbed4e4f2017-09-08 02:38:07 -06001094 }
1095
1096 if (type.getQualifier().isUniformOrBuffer()) {
John Kessenicha5c5fb62017-05-05 05:09:58 -06001097 if (type.getQualifier().layoutPushConstant)
1098 return spv::StorageClassPushConstant;
Chao Chenb50c02e2018-09-19 11:42:24 -07001099#ifdef NV_EXTENSIONS
1100 if (type.getQualifier().layoutShaderRecordNV)
Ashwin Leleff1783d2018-10-22 16:41:44 -07001101 return spv::StorageClassShaderRecordBufferNV;
Chao Chenb50c02e2018-09-19 11:42:24 -07001102#endif
John Kessenicha5c5fb62017-05-05 05:09:58 -06001103 if (type.getBasicType() == glslang::EbtBlock)
1104 return spv::StorageClassUniform;
John Kessenichbed4e4f2017-09-08 02:38:07 -06001105 return spv::StorageClassUniformConstant;
John Kessenicha5c5fb62017-05-05 05:09:58 -06001106 }
John Kessenichbed4e4f2017-09-08 02:38:07 -06001107
1108 switch (type.getQualifier().storage) {
1109 case glslang::EvqShared: return spv::StorageClassWorkgroup;
1110 case glslang::EvqGlobal: return spv::StorageClassPrivate;
1111 case glslang::EvqConstReadOnly: return spv::StorageClassFunction;
1112 case glslang::EvqTemporary: return spv::StorageClassFunction;
Chao Chenb50c02e2018-09-19 11:42:24 -07001113#ifdef NV_EXTENSIONS
Ashwin Leleff1783d2018-10-22 16:41:44 -07001114 case glslang::EvqPayloadNV: return spv::StorageClassRayPayloadNV;
1115 case glslang::EvqPayloadInNV: return spv::StorageClassIncomingRayPayloadNV;
1116 case glslang::EvqHitAttrNV: return spv::StorageClassHitAttributeNV;
1117 case glslang::EvqCallableDataNV: return spv::StorageClassCallableDataNV;
1118 case glslang::EvqCallableDataInNV: return spv::StorageClassIncomingCallableDataNV;
Chao Chenb50c02e2018-09-19 11:42:24 -07001119#endif
John Kessenichbed4e4f2017-09-08 02:38:07 -06001120 default:
1121 assert(0);
1122 break;
1123 }
1124
1125 return spv::StorageClassFunction;
John Kessenicha5c5fb62017-05-05 05:09:58 -06001126}
1127
John Kessenich5611c6d2018-04-05 11:25:02 -06001128// Add capabilities pertaining to how an array is indexed.
1129void TGlslangToSpvTraverser::addIndirectionIndexCapabilities(const glslang::TType& baseType,
1130 const glslang::TType& indexType)
1131{
1132 if (indexType.getQualifier().isNonUniform()) {
1133 // deal with an asserted non-uniform index
Jeff Bolzc140b962018-07-12 16:51:18 -05001134 // SPV_EXT_descriptor_indexing already added in TranslateNonUniformDecoration
John Kessenich5611c6d2018-04-05 11:25:02 -06001135 if (baseType.getBasicType() == glslang::EbtSampler) {
1136 if (baseType.getQualifier().hasAttachment())
1137 builder.addCapability(spv::CapabilityInputAttachmentArrayNonUniformIndexingEXT);
1138 else if (baseType.isImage() && baseType.getSampler().dim == glslang::EsdBuffer)
1139 builder.addCapability(spv::CapabilityStorageTexelBufferArrayNonUniformIndexingEXT);
1140 else if (baseType.isTexture() && baseType.getSampler().dim == glslang::EsdBuffer)
1141 builder.addCapability(spv::CapabilityUniformTexelBufferArrayNonUniformIndexingEXT);
1142 else if (baseType.isImage())
1143 builder.addCapability(spv::CapabilityStorageImageArrayNonUniformIndexingEXT);
1144 else if (baseType.isTexture())
1145 builder.addCapability(spv::CapabilitySampledImageArrayNonUniformIndexingEXT);
1146 } else if (baseType.getBasicType() == glslang::EbtBlock) {
1147 if (baseType.getQualifier().storage == glslang::EvqBuffer)
1148 builder.addCapability(spv::CapabilityStorageBufferArrayNonUniformIndexingEXT);
1149 else if (baseType.getQualifier().storage == glslang::EvqUniform)
1150 builder.addCapability(spv::CapabilityUniformBufferArrayNonUniformIndexingEXT);
1151 }
1152 } else {
1153 // assume a dynamically uniform index
1154 if (baseType.getBasicType() == glslang::EbtSampler) {
Jeff Bolzc140b962018-07-12 16:51:18 -05001155 if (baseType.getQualifier().hasAttachment()) {
1156 builder.addExtension("SPV_EXT_descriptor_indexing");
John Kessenich5611c6d2018-04-05 11:25:02 -06001157 builder.addCapability(spv::CapabilityInputAttachmentArrayDynamicIndexingEXT);
Jeff Bolzc140b962018-07-12 16:51:18 -05001158 } else if (baseType.isImage() && baseType.getSampler().dim == glslang::EsdBuffer) {
1159 builder.addExtension("SPV_EXT_descriptor_indexing");
John Kessenich5611c6d2018-04-05 11:25:02 -06001160 builder.addCapability(spv::CapabilityStorageTexelBufferArrayDynamicIndexingEXT);
Jeff Bolzc140b962018-07-12 16:51:18 -05001161 } else if (baseType.isTexture() && baseType.getSampler().dim == glslang::EsdBuffer) {
1162 builder.addExtension("SPV_EXT_descriptor_indexing");
John Kessenich5611c6d2018-04-05 11:25:02 -06001163 builder.addCapability(spv::CapabilityUniformTexelBufferArrayDynamicIndexingEXT);
Jeff Bolzc140b962018-07-12 16:51:18 -05001164 }
John Kessenich5611c6d2018-04-05 11:25:02 -06001165 }
1166 }
1167}
1168
qining25262b32016-05-06 17:25:16 -04001169// Return whether or not the given type is something that should be tied to a
John Kessenich6c292d32016-02-15 20:58:50 -07001170// descriptor set.
1171bool IsDescriptorResource(const glslang::TType& type)
1172{
John Kessenichf7497e22016-03-08 21:36:22 -07001173 // uniform and buffer blocks are included, unless it is a push_constant
John Kessenich6c292d32016-02-15 20:58:50 -07001174 if (type.getBasicType() == glslang::EbtBlock)
Chao Chenb50c02e2018-09-19 11:42:24 -07001175 return type.getQualifier().isUniformOrBuffer() &&
1176#ifdef NV_EXTENSIONS
1177 ! type.getQualifier().layoutShaderRecordNV &&
1178#endif
1179 ! type.getQualifier().layoutPushConstant;
John Kessenich6c292d32016-02-15 20:58:50 -07001180
1181 // non block...
1182 // basically samplerXXX/subpass/sampler/texture are all included
1183 // if they are the global-scope-class, not the function parameter
1184 // (or local, if they ever exist) class.
1185 if (type.getBasicType() == glslang::EbtSampler)
1186 return type.getQualifier().isUniformOrBuffer();
1187
1188 // None of the above.
1189 return false;
1190}
1191
John Kesseniche0b6cad2015-12-24 10:30:13 -07001192void InheritQualifiers(glslang::TQualifier& child, const glslang::TQualifier& parent)
1193{
1194 if (child.layoutMatrix == glslang::ElmNone)
1195 child.layoutMatrix = parent.layoutMatrix;
1196
1197 if (parent.invariant)
1198 child.invariant = true;
1199 if (parent.nopersp)
1200 child.nopersp = true;
Rex Xu9d93a232016-05-05 12:30:44 +08001201#ifdef AMD_EXTENSIONS
1202 if (parent.explicitInterp)
1203 child.explicitInterp = true;
1204#endif
John Kesseniche0b6cad2015-12-24 10:30:13 -07001205 if (parent.flat)
1206 child.flat = true;
1207 if (parent.centroid)
1208 child.centroid = true;
1209 if (parent.patch)
1210 child.patch = true;
1211 if (parent.sample)
1212 child.sample = true;
Rex Xu1da878f2016-02-21 20:59:01 +08001213 if (parent.coherent)
1214 child.coherent = true;
Jeff Bolz36831c92018-09-05 10:11:41 -05001215 if (parent.devicecoherent)
1216 child.devicecoherent = true;
1217 if (parent.queuefamilycoherent)
1218 child.queuefamilycoherent = true;
1219 if (parent.workgroupcoherent)
1220 child.workgroupcoherent = true;
1221 if (parent.subgroupcoherent)
1222 child.subgroupcoherent = true;
1223 if (parent.nonprivate)
1224 child.nonprivate = true;
Rex Xu1da878f2016-02-21 20:59:01 +08001225 if (parent.volatil)
1226 child.volatil = true;
1227 if (parent.restrict)
1228 child.restrict = true;
1229 if (parent.readonly)
1230 child.readonly = true;
1231 if (parent.writeonly)
1232 child.writeonly = true;
Chao Chen3c366992018-09-19 11:41:59 -07001233#ifdef NV_EXTENSIONS
1234 if (parent.perPrimitiveNV)
1235 child.perPrimitiveNV = true;
1236 if (parent.perViewNV)
1237 child.perViewNV = true;
1238 if (parent.perTaskNV)
1239 child.perTaskNV = true;
1240#endif
John Kesseniche0b6cad2015-12-24 10:30:13 -07001241}
1242
John Kessenichf2b7f332016-09-01 17:05:23 -06001243bool HasNonLayoutQualifiers(const glslang::TType& type, const glslang::TQualifier& qualifier)
John Kesseniche0b6cad2015-12-24 10:30:13 -07001244{
John Kessenich7b9fa252016-01-21 18:56:57 -07001245 // This should list qualifiers that simultaneous satisfy:
John Kessenichf2b7f332016-09-01 17:05:23 -06001246 // - struct members might inherit from a struct declaration
1247 // (note that non-block structs don't explicitly inherit,
1248 // only implicitly, meaning no decoration involved)
1249 // - affect decorations on the struct members
1250 // (note smooth does not, and expecting something like volatile
1251 // to effect the whole object)
John Kesseniche0b6cad2015-12-24 10:30:13 -07001252 // - are not part of the offset/st430/etc or row/column-major layout
John Kessenichf2b7f332016-09-01 17:05:23 -06001253 return qualifier.invariant || (qualifier.hasLocation() && type.getBasicType() == glslang::EbtBlock);
John Kesseniche0b6cad2015-12-24 10:30:13 -07001254}
1255
John Kessenich140f3df2015-06-26 16:58:36 -06001256//
1257// Implement the TGlslangToSpvTraverser class.
1258//
1259
John Kessenich2b5ea9f2018-01-31 18:35:56 -07001260TGlslangToSpvTraverser::TGlslangToSpvTraverser(unsigned int spvVersion, const glslang::TIntermediate* glslangIntermediate,
John Kessenich121853f2017-05-31 17:11:16 -06001261 spv::SpvBuildLogger* buildLogger, glslang::SpvOptions& options)
1262 : TIntermTraverser(true, false, true),
1263 options(options),
1264 shaderEntry(nullptr), currentFunction(nullptr),
John Kesseniched33e052016-10-06 12:59:51 -06001265 sequenceDepth(0), logger(buildLogger),
John Kessenich2b5ea9f2018-01-31 18:35:56 -07001266 builder(spvVersion, (glslang::GetKhronosToolId() << 16) | glslang::GetSpirvGeneratorVersion(), logger),
John Kessenich517fe7a2016-11-26 13:31:47 -07001267 inEntryPoint(false), entryPointTerminated(false), linkageOnly(false),
John Kessenich140f3df2015-06-26 16:58:36 -06001268 glslangIntermediate(glslangIntermediate)
1269{
1270 spv::ExecutionModel executionModel = TranslateExecutionModel(glslangIntermediate->getStage());
1271
1272 builder.clearAccessChain();
John Kessenich2a271162017-07-20 20:00:36 -06001273 builder.setSource(TranslateSourceLanguage(glslangIntermediate->getSource(), glslangIntermediate->getProfile()),
1274 glslangIntermediate->getVersion());
1275
John Kessenich121853f2017-05-31 17:11:16 -06001276 if (options.generateDebugInfo) {
John Kesseniche485c7a2017-05-31 18:50:53 -06001277 builder.setEmitOpLines();
John Kessenich2a271162017-07-20 20:00:36 -06001278 builder.setSourceFile(glslangIntermediate->getSourceFile());
1279
1280 // Set the source shader's text. If for SPV version 1.0, include
1281 // a preamble in comments stating the OpModuleProcessed instructions.
1282 // Otherwise, emit those as actual instructions.
1283 std::string text;
1284 const std::vector<std::string>& processes = glslangIntermediate->getProcesses();
1285 for (int p = 0; p < (int)processes.size(); ++p) {
John Kessenich8717a5d2018-10-26 10:12:32 -06001286 if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_1) {
John Kessenich2a271162017-07-20 20:00:36 -06001287 text.append("// OpModuleProcessed ");
1288 text.append(processes[p]);
1289 text.append("\n");
1290 } else
1291 builder.addModuleProcessed(processes[p]);
1292 }
John Kessenich8717a5d2018-10-26 10:12:32 -06001293 if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_1 && (int)processes.size() > 0)
John Kessenich2a271162017-07-20 20:00:36 -06001294 text.append("#line 1\n");
1295 text.append(glslangIntermediate->getSourceText());
1296 builder.setSourceText(text);
John Kessenich121853f2017-05-31 17:11:16 -06001297 }
John Kessenich140f3df2015-06-26 16:58:36 -06001298 stdBuiltins = builder.import("GLSL.std.450");
Jeff Bolz36831c92018-09-05 10:11:41 -05001299 if (glslangIntermediate->usingVulkanMemoryModel()) {
1300 builder.setMemoryModel(spv::AddressingModelLogical, spv::MemoryModelVulkanKHR);
1301 builder.addExtension(spv::E_SPV_KHR_vulkan_memory_model);
1302 } else {
1303 builder.setMemoryModel(spv::AddressingModelLogical, spv::MemoryModelGLSL450);
1304 }
John Kessenicheee9d532016-09-19 18:09:30 -06001305 shaderEntry = builder.makeEntryPoint(glslangIntermediate->getEntryPointName().c_str());
1306 entryPoint = builder.addEntryPoint(executionModel, shaderEntry, glslangIntermediate->getEntryPointName().c_str());
John Kessenich140f3df2015-06-26 16:58:36 -06001307
1308 // Add the source extensions
John Kessenich2f273362015-07-18 22:34:27 -06001309 const auto& sourceExtensions = glslangIntermediate->getRequestedExtensions();
1310 for (auto it = sourceExtensions.begin(); it != sourceExtensions.end(); ++it)
John Kessenich140f3df2015-06-26 16:58:36 -06001311 builder.addSourceExtension(it->c_str());
1312
1313 // Add the top-level modes for this shader.
1314
John Kessenich92187592016-02-01 13:45:25 -07001315 if (glslangIntermediate->getXfbMode()) {
1316 builder.addCapability(spv::CapabilityTransformFeedback);
John Kessenich140f3df2015-06-26 16:58:36 -06001317 builder.addExecutionMode(shaderEntry, spv::ExecutionModeXfb);
John Kessenich92187592016-02-01 13:45:25 -07001318 }
John Kessenich140f3df2015-06-26 16:58:36 -06001319
1320 unsigned int mode;
1321 switch (glslangIntermediate->getStage()) {
1322 case EShLangVertex:
John Kessenich5e4b1242015-08-06 22:53:06 -06001323 builder.addCapability(spv::CapabilityShader);
John Kessenich140f3df2015-06-26 16:58:36 -06001324 break;
1325
steve-lunarge7412492017-03-23 11:56:07 -06001326 case EShLangTessEvaluation:
John Kessenich140f3df2015-06-26 16:58:36 -06001327 case EShLangTessControl:
John Kessenich5e4b1242015-08-06 22:53:06 -06001328 builder.addCapability(spv::CapabilityTessellation);
John Kessenich140f3df2015-06-26 16:58:36 -06001329
steve-lunarge7412492017-03-23 11:56:07 -06001330 glslang::TLayoutGeometry primitive;
1331
1332 if (glslangIntermediate->getStage() == EShLangTessControl) {
1333 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOutputVertices, glslangIntermediate->getVertices());
1334 primitive = glslangIntermediate->getOutputPrimitive();
1335 } else {
1336 primitive = glslangIntermediate->getInputPrimitive();
1337 }
1338
1339 switch (primitive) {
John Kessenich55e7d112015-11-15 21:33:39 -07001340 case glslang::ElgTriangles: mode = spv::ExecutionModeTriangles; break;
1341 case glslang::ElgQuads: mode = spv::ExecutionModeQuads; break;
1342 case glslang::ElgIsolines: mode = spv::ExecutionModeIsolines; break;
John Kessenich4016e382016-07-15 11:53:56 -06001343 default: mode = spv::ExecutionModeMax; break;
John Kessenich140f3df2015-06-26 16:58:36 -06001344 }
John Kessenich4016e382016-07-15 11:53:56 -06001345 if (mode != spv::ExecutionModeMax)
John Kessenich140f3df2015-06-26 16:58:36 -06001346 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1347
John Kesseniche6903322015-10-13 16:29:02 -06001348 switch (glslangIntermediate->getVertexSpacing()) {
1349 case glslang::EvsEqual: mode = spv::ExecutionModeSpacingEqual; break;
1350 case glslang::EvsFractionalEven: mode = spv::ExecutionModeSpacingFractionalEven; break;
1351 case glslang::EvsFractionalOdd: mode = spv::ExecutionModeSpacingFractionalOdd; break;
John Kessenich4016e382016-07-15 11:53:56 -06001352 default: mode = spv::ExecutionModeMax; break;
John Kesseniche6903322015-10-13 16:29:02 -06001353 }
John Kessenich4016e382016-07-15 11:53:56 -06001354 if (mode != spv::ExecutionModeMax)
John Kesseniche6903322015-10-13 16:29:02 -06001355 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1356
1357 switch (glslangIntermediate->getVertexOrder()) {
1358 case glslang::EvoCw: mode = spv::ExecutionModeVertexOrderCw; break;
1359 case glslang::EvoCcw: mode = spv::ExecutionModeVertexOrderCcw; break;
John Kessenich4016e382016-07-15 11:53:56 -06001360 default: mode = spv::ExecutionModeMax; break;
John Kesseniche6903322015-10-13 16:29:02 -06001361 }
John Kessenich4016e382016-07-15 11:53:56 -06001362 if (mode != spv::ExecutionModeMax)
John Kesseniche6903322015-10-13 16:29:02 -06001363 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1364
1365 if (glslangIntermediate->getPointMode())
1366 builder.addExecutionMode(shaderEntry, spv::ExecutionModePointMode);
John Kessenich140f3df2015-06-26 16:58:36 -06001367 break;
1368
1369 case EShLangGeometry:
John Kessenich5e4b1242015-08-06 22:53:06 -06001370 builder.addCapability(spv::CapabilityGeometry);
John Kessenich140f3df2015-06-26 16:58:36 -06001371 switch (glslangIntermediate->getInputPrimitive()) {
1372 case glslang::ElgPoints: mode = spv::ExecutionModeInputPoints; break;
1373 case glslang::ElgLines: mode = spv::ExecutionModeInputLines; break;
1374 case glslang::ElgLinesAdjacency: mode = spv::ExecutionModeInputLinesAdjacency; break;
John Kessenich55e7d112015-11-15 21:33:39 -07001375 case glslang::ElgTriangles: mode = spv::ExecutionModeTriangles; break;
John Kessenich140f3df2015-06-26 16:58:36 -06001376 case glslang::ElgTrianglesAdjacency: mode = spv::ExecutionModeInputTrianglesAdjacency; break;
John Kessenich4016e382016-07-15 11:53:56 -06001377 default: mode = spv::ExecutionModeMax; break;
John Kessenich140f3df2015-06-26 16:58:36 -06001378 }
John Kessenich4016e382016-07-15 11:53:56 -06001379 if (mode != spv::ExecutionModeMax)
John Kessenich140f3df2015-06-26 16:58:36 -06001380 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
John Kesseniche6903322015-10-13 16:29:02 -06001381
John Kessenich140f3df2015-06-26 16:58:36 -06001382 builder.addExecutionMode(shaderEntry, spv::ExecutionModeInvocations, glslangIntermediate->getInvocations());
1383
1384 switch (glslangIntermediate->getOutputPrimitive()) {
1385 case glslang::ElgPoints: mode = spv::ExecutionModeOutputPoints; break;
1386 case glslang::ElgLineStrip: mode = spv::ExecutionModeOutputLineStrip; break;
1387 case glslang::ElgTriangleStrip: mode = spv::ExecutionModeOutputTriangleStrip; break;
John Kessenich4016e382016-07-15 11:53:56 -06001388 default: mode = spv::ExecutionModeMax; break;
John Kessenich140f3df2015-06-26 16:58:36 -06001389 }
John Kessenich4016e382016-07-15 11:53:56 -06001390 if (mode != spv::ExecutionModeMax)
John Kessenich140f3df2015-06-26 16:58:36 -06001391 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1392 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOutputVertices, glslangIntermediate->getVertices());
1393 break;
1394
1395 case EShLangFragment:
John Kessenich5e4b1242015-08-06 22:53:06 -06001396 builder.addCapability(spv::CapabilityShader);
John Kessenich140f3df2015-06-26 16:58:36 -06001397 if (glslangIntermediate->getPixelCenterInteger())
1398 builder.addExecutionMode(shaderEntry, spv::ExecutionModePixelCenterInteger);
John Kesseniche6903322015-10-13 16:29:02 -06001399
John Kessenich140f3df2015-06-26 16:58:36 -06001400 if (glslangIntermediate->getOriginUpperLeft())
1401 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOriginUpperLeft);
John Kessenich5e4b1242015-08-06 22:53:06 -06001402 else
1403 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOriginLowerLeft);
John Kesseniche6903322015-10-13 16:29:02 -06001404
1405 if (glslangIntermediate->getEarlyFragmentTests())
1406 builder.addExecutionMode(shaderEntry, spv::ExecutionModeEarlyFragmentTests);
1407
chaocc1204522017-06-30 17:14:30 -07001408 if (glslangIntermediate->getPostDepthCoverage()) {
1409 builder.addCapability(spv::CapabilitySampleMaskPostDepthCoverage);
1410 builder.addExecutionMode(shaderEntry, spv::ExecutionModePostDepthCoverage);
1411 builder.addExtension(spv::E_SPV_KHR_post_depth_coverage);
1412 }
1413
John Kesseniche6903322015-10-13 16:29:02 -06001414 switch(glslangIntermediate->getDepth()) {
John Kesseniche6903322015-10-13 16:29:02 -06001415 case glslang::EldGreater: mode = spv::ExecutionModeDepthGreater; break;
1416 case glslang::EldLess: mode = spv::ExecutionModeDepthLess; break;
John Kessenich4016e382016-07-15 11:53:56 -06001417 default: mode = spv::ExecutionModeMax; break;
John Kesseniche6903322015-10-13 16:29:02 -06001418 }
John Kessenich4016e382016-07-15 11:53:56 -06001419 if (mode != spv::ExecutionModeMax)
John Kesseniche6903322015-10-13 16:29:02 -06001420 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1421
1422 if (glslangIntermediate->getDepth() != glslang::EldUnchanged && glslangIntermediate->isDepthReplacing())
1423 builder.addExecutionMode(shaderEntry, spv::ExecutionModeDepthReplacing);
John Kessenich140f3df2015-06-26 16:58:36 -06001424 break;
1425
1426 case EShLangCompute:
John Kessenich5e4b1242015-08-06 22:53:06 -06001427 builder.addCapability(spv::CapabilityShader);
John Kessenichb56a26a2015-09-16 16:04:05 -06001428 builder.addExecutionMode(shaderEntry, spv::ExecutionModeLocalSize, glslangIntermediate->getLocalSize(0),
1429 glslangIntermediate->getLocalSize(1),
1430 glslangIntermediate->getLocalSize(2));
Chao Chenbeae2252018-09-19 11:40:45 -07001431#ifdef NV_EXTENSIONS
1432 if (glslangIntermediate->getLayoutDerivativeModeNone() == glslang::LayoutDerivativeGroupQuads) {
1433 builder.addCapability(spv::CapabilityComputeDerivativeGroupQuadsNV);
1434 builder.addExecutionMode(shaderEntry, spv::ExecutionModeDerivativeGroupQuadsNV);
1435 builder.addExtension(spv::E_SPV_NV_compute_shader_derivatives);
1436 } else if (glslangIntermediate->getLayoutDerivativeModeNone() == glslang::LayoutDerivativeGroupLinear) {
1437 builder.addCapability(spv::CapabilityComputeDerivativeGroupLinearNV);
1438 builder.addExecutionMode(shaderEntry, spv::ExecutionModeDerivativeGroupLinearNV);
1439 builder.addExtension(spv::E_SPV_NV_compute_shader_derivatives);
1440 }
1441#endif
John Kessenich140f3df2015-06-26 16:58:36 -06001442 break;
1443
Chao Chen3c366992018-09-19 11:41:59 -07001444#ifdef NV_EXTENSIONS
Chao Chenb50c02e2018-09-19 11:42:24 -07001445 case EShLangRayGenNV:
1446 case EShLangIntersectNV:
1447 case EShLangAnyHitNV:
1448 case EShLangClosestHitNV:
1449 case EShLangMissNV:
1450 case EShLangCallableNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -07001451 builder.addCapability(spv::CapabilityRayTracingNV);
1452 builder.addExtension("SPV_NV_ray_tracing");
Chao Chenb50c02e2018-09-19 11:42:24 -07001453 break;
Chao Chen3c366992018-09-19 11:41:59 -07001454 case EShLangTaskNV:
1455 case EShLangMeshNV:
1456 builder.addCapability(spv::CapabilityMeshShadingNV);
1457 builder.addExtension(spv::E_SPV_NV_mesh_shader);
1458 builder.addExecutionMode(shaderEntry, spv::ExecutionModeLocalSize, glslangIntermediate->getLocalSize(0),
1459 glslangIntermediate->getLocalSize(1),
1460 glslangIntermediate->getLocalSize(2));
1461 if (glslangIntermediate->getStage() == EShLangMeshNV) {
1462 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOutputVertices, glslangIntermediate->getVertices());
1463 builder.addExecutionMode(shaderEntry, spv::ExecutionModeOutputPrimitivesNV, glslangIntermediate->getPrimitives());
1464
1465 switch (glslangIntermediate->getOutputPrimitive()) {
1466 case glslang::ElgPoints: mode = spv::ExecutionModeOutputPoints; break;
1467 case glslang::ElgLines: mode = spv::ExecutionModeOutputLinesNV; break;
1468 case glslang::ElgTriangles: mode = spv::ExecutionModeOutputTrianglesNV; break;
1469 default: mode = spv::ExecutionModeMax; break;
1470 }
1471 if (mode != spv::ExecutionModeMax)
1472 builder.addExecutionMode(shaderEntry, (spv::ExecutionMode)mode);
1473 }
1474 break;
1475#endif
1476
John Kessenich140f3df2015-06-26 16:58:36 -06001477 default:
1478 break;
1479 }
John Kessenich140f3df2015-06-26 16:58:36 -06001480}
1481
John Kessenichfca82622016-11-26 13:23:20 -07001482// Finish creating SPV, after the traversal is complete.
1483void TGlslangToSpvTraverser::finishSpv()
John Kessenich7ba63412015-12-20 17:37:07 -07001484{
John Kessenichf04c51b2018-08-03 15:56:12 -06001485 // Finish the entry point function
John Kessenich517fe7a2016-11-26 13:31:47 -07001486 if (! entryPointTerminated) {
John Kessenichfca82622016-11-26 13:23:20 -07001487 builder.setBuildPoint(shaderEntry->getLastBlock());
1488 builder.leaveFunction();
1489 }
1490
John Kessenich7ba63412015-12-20 17:37:07 -07001491 // finish off the entry-point SPV instruction by adding the Input/Output <id>
rdb32084e82016-02-23 22:17:38 +01001492 for (auto it = iOSet.cbegin(); it != iOSet.cend(); ++it)
1493 entryPoint->addIdOperand(*it);
John Kessenich7ba63412015-12-20 17:37:07 -07001494
John Kessenichf04c51b2018-08-03 15:56:12 -06001495 // Add capabilities, extensions, remove unneeded decorations, etc.,
1496 // based on the resulting SPIR-V.
1497 builder.postProcess();
John Kessenich7ba63412015-12-20 17:37:07 -07001498}
1499
John Kessenichfca82622016-11-26 13:23:20 -07001500// Write the SPV into 'out'.
1501void TGlslangToSpvTraverser::dumpSpv(std::vector<unsigned int>& out)
John Kessenich140f3df2015-06-26 16:58:36 -06001502{
John Kessenichfca82622016-11-26 13:23:20 -07001503 builder.dump(out);
John Kessenich140f3df2015-06-26 16:58:36 -06001504}
1505
1506//
1507// Implement the traversal functions.
1508//
1509// Return true from interior nodes to have the external traversal
1510// continue on to children. Return false if children were
1511// already processed.
1512//
1513
1514//
qining25262b32016-05-06 17:25:16 -04001515// Symbols can turn into
John Kessenich140f3df2015-06-26 16:58:36 -06001516// - uniform/input reads
1517// - output writes
1518// - complex lvalue base setups: foo.bar[3].... , where we see foo and start up an access chain
1519// - something simple that degenerates into the last bullet
1520//
1521void TGlslangToSpvTraverser::visitSymbol(glslang::TIntermSymbol* symbol)
1522{
qining75d1d802016-04-06 14:42:01 -04001523 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
1524 if (symbol->getType().getQualifier().isSpecConstant())
1525 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
1526
John Kessenich140f3df2015-06-26 16:58:36 -06001527 // getSymbolId() will set up all the IO decorations on the first call.
1528 // Formal function parameters were mapped during makeFunctions().
1529 spv::Id id = getSymbolId(symbol);
John Kessenich7ba63412015-12-20 17:37:07 -07001530
1531 // Include all "static use" and "linkage only" interface variables on the OpEntryPoint instruction
1532 if (builder.isPointer(id)) {
1533 spv::StorageClass sc = builder.getStorageClass(id);
John Kessenich5f77d862017-09-19 11:09:59 -06001534 if (sc == spv::StorageClassInput || sc == spv::StorageClassOutput) {
1535 if (!symbol->getType().isStruct() || symbol->getType().getStruct()->size() > 0)
1536 iOSet.insert(id);
1537 }
John Kessenich7ba63412015-12-20 17:37:07 -07001538 }
1539
1540 // Only process non-linkage-only nodes for generating actual static uses
John Kessenich6c292d32016-02-15 20:58:50 -07001541 if (! linkageOnly || symbol->getQualifier().isSpecConstant()) {
John Kessenich140f3df2015-06-26 16:58:36 -06001542 // Prepare to generate code for the access
1543
1544 // L-value chains will be computed left to right. We're on the symbol now,
1545 // which is the left-most part of the access chain, so now is "clear" time,
1546 // followed by setting the base.
1547 builder.clearAccessChain();
1548
1549 // For now, we consider all user variables as being in memory, so they are pointers,
John Kessenich6c292d32016-02-15 20:58:50 -07001550 // except for
John Kessenich4bf71552016-09-02 11:20:21 -06001551 // A) R-Value arguments to a function, which are an intermediate object.
John Kessenich6c292d32016-02-15 20:58:50 -07001552 // See comments in handleUserFunctionCall().
John Kessenich4bf71552016-09-02 11:20:21 -06001553 // B) Specialization constants (normal constants don't even come in as a variable),
John Kessenich6c292d32016-02-15 20:58:50 -07001554 // These are also pure R-values.
1555 glslang::TQualifier qualifier = symbol->getQualifier();
John Kessenich4bf71552016-09-02 11:20:21 -06001556 if (qualifier.isSpecConstant() || rValueParameters.find(symbol->getId()) != rValueParameters.end())
John Kessenich140f3df2015-06-26 16:58:36 -06001557 builder.setAccessChainRValue(id);
1558 else
1559 builder.setAccessChainLValue(id);
1560 }
John Kessenich5d610ee2018-03-07 18:05:55 -07001561
1562 // Process linkage-only nodes for any special additional interface work.
1563 if (linkageOnly) {
1564 if (glslangIntermediate->getHlslFunctionality1()) {
1565 // Map implicit counter buffers to their originating buffers, which should have been
1566 // seen by now, given earlier pruning of unused counters, and preservation of order
1567 // of declaration.
1568 if (symbol->getType().getQualifier().isUniformOrBuffer()) {
1569 if (!glslangIntermediate->hasCounterBufferName(symbol->getName())) {
1570 // Save possible originating buffers for counter buffers, keyed by
1571 // making the potential counter-buffer name.
1572 std::string keyName = symbol->getName().c_str();
1573 keyName = glslangIntermediate->addCounterBufferName(keyName);
1574 counterOriginator[keyName] = symbol;
1575 } else {
1576 // Handle a counter buffer, by finding the saved originating buffer.
1577 std::string keyName = symbol->getName().c_str();
1578 auto it = counterOriginator.find(keyName);
1579 if (it != counterOriginator.end()) {
1580 id = getSymbolId(it->second);
1581 if (id != spv::NoResult) {
1582 spv::Id counterId = getSymbolId(symbol);
John Kessenichf52b6382018-04-05 19:35:38 -06001583 if (counterId != spv::NoResult) {
1584 builder.addExtension("SPV_GOOGLE_hlsl_functionality1");
John Kessenich5d610ee2018-03-07 18:05:55 -07001585 builder.addDecorationId(id, spv::DecorationHlslCounterBufferGOOGLE, counterId);
John Kessenichf52b6382018-04-05 19:35:38 -06001586 }
John Kessenich5d610ee2018-03-07 18:05:55 -07001587 }
1588 }
1589 }
1590 }
1591 }
1592 }
John Kessenich140f3df2015-06-26 16:58:36 -06001593}
1594
1595bool TGlslangToSpvTraverser::visitBinary(glslang::TVisit /* visit */, glslang::TIntermBinary* node)
1596{
greg-lunarg5d43c4a2018-12-07 17:36:33 -07001597 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06001598
qining40887662016-04-03 22:20:42 -04001599 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
1600 if (node->getType().getQualifier().isSpecConstant())
1601 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
1602
John Kessenich140f3df2015-06-26 16:58:36 -06001603 // First, handle special cases
1604 switch (node->getOp()) {
1605 case glslang::EOpAssign:
1606 case glslang::EOpAddAssign:
1607 case glslang::EOpSubAssign:
1608 case glslang::EOpMulAssign:
1609 case glslang::EOpVectorTimesMatrixAssign:
1610 case glslang::EOpVectorTimesScalarAssign:
1611 case glslang::EOpMatrixTimesScalarAssign:
1612 case glslang::EOpMatrixTimesMatrixAssign:
1613 case glslang::EOpDivAssign:
1614 case glslang::EOpModAssign:
1615 case glslang::EOpAndAssign:
1616 case glslang::EOpInclusiveOrAssign:
1617 case glslang::EOpExclusiveOrAssign:
1618 case glslang::EOpLeftShiftAssign:
1619 case glslang::EOpRightShiftAssign:
1620 // A bin-op assign "a += b" means the same thing as "a = a + b"
1621 // where a is evaluated before b. For a simple assignment, GLSL
1622 // says to evaluate the left before the right. So, always, left
1623 // node then right node.
1624 {
1625 // get the left l-value, save it away
1626 builder.clearAccessChain();
1627 node->getLeft()->traverse(this);
1628 spv::Builder::AccessChain lValue = builder.getAccessChain();
1629
1630 // evaluate the right
1631 builder.clearAccessChain();
1632 node->getRight()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07001633 spv::Id rValue = accessChainLoad(node->getRight()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06001634
1635 if (node->getOp() != glslang::EOpAssign) {
1636 // the left is also an r-value
1637 builder.setAccessChain(lValue);
John Kessenich32cfd492016-02-02 12:37:46 -07001638 spv::Id leftRValue = accessChainLoad(node->getLeft()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06001639
1640 // do the operation
John Kessenichead86222018-03-28 18:01:20 -06001641 OpDecorations decorations = { TranslatePrecisionDecoration(node->getOperationPrecision()),
John Kessenich5611c6d2018-04-05 11:25:02 -06001642 TranslateNoContractionDecoration(node->getType().getQualifier()),
1643 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06001644 rValue = createBinaryOperation(node->getOp(), decorations,
John Kessenich140f3df2015-06-26 16:58:36 -06001645 convertGlslangToSpvType(node->getType()), leftRValue, rValue,
1646 node->getType().getBasicType());
1647
1648 // these all need their counterparts in createBinaryOperation()
John Kessenich55e7d112015-11-15 21:33:39 -07001649 assert(rValue != spv::NoResult);
John Kessenich140f3df2015-06-26 16:58:36 -06001650 }
1651
1652 // store the result
1653 builder.setAccessChain(lValue);
Jeff Bolz36831c92018-09-05 10:11:41 -05001654 multiTypeStore(node->getLeft()->getType(), rValue);
John Kessenich140f3df2015-06-26 16:58:36 -06001655
1656 // assignments are expressions having an rValue after they are evaluated...
1657 builder.clearAccessChain();
1658 builder.setAccessChainRValue(rValue);
1659 }
1660 return false;
1661 case glslang::EOpIndexDirect:
1662 case glslang::EOpIndexDirectStruct:
1663 {
1664 // Get the left part of the access chain.
1665 node->getLeft()->traverse(this);
1666
1667 // Add the next element in the chain
1668
David Netoa901ffe2016-06-08 14:11:40 +01001669 const int glslangIndex = node->getRight()->getAsConstantUnion()->getConstArray()[0].getIConst();
John Kessenich140f3df2015-06-26 16:58:36 -06001670 if (! node->getLeft()->getType().isArray() &&
1671 node->getLeft()->getType().isVector() &&
1672 node->getOp() == glslang::EOpIndexDirect) {
1673 // This is essentially a hard-coded vector swizzle of size 1,
1674 // so short circuit the access-chain stuff with a swizzle.
1675 std::vector<unsigned> swizzle;
David Netoa901ffe2016-06-08 14:11:40 +01001676 swizzle.push_back(glslangIndex);
John Kessenichfa668da2015-09-13 14:46:30 -06001677 builder.accessChainPushSwizzle(swizzle, convertGlslangToSpvType(node->getLeft()->getType()));
John Kessenich140f3df2015-06-26 16:58:36 -06001678 } else {
David Netoa901ffe2016-06-08 14:11:40 +01001679 int spvIndex = glslangIndex;
1680 if (node->getLeft()->getBasicType() == glslang::EbtBlock &&
1681 node->getOp() == glslang::EOpIndexDirectStruct)
1682 {
1683 // This may be, e.g., an anonymous block-member selection, which generally need
1684 // index remapping due to hidden members in anonymous blocks.
1685 std::vector<int>& remapper = memberRemapper[node->getLeft()->getType().getStruct()];
1686 assert(remapper.size() > 0);
1687 spvIndex = remapper[glslangIndex];
1688 }
John Kessenichebb50532016-05-16 19:22:05 -06001689
David Netoa901ffe2016-06-08 14:11:40 +01001690 // normal case for indexing array or structure or block
Jeff Bolz36831c92018-09-05 10:11:41 -05001691 builder.accessChainPush(builder.makeIntConstant(spvIndex), TranslateCoherent(node->getLeft()->getType()));
David Netoa901ffe2016-06-08 14:11:40 +01001692
1693 // Add capabilities here for accessing PointSize and clip/cull distance.
1694 // We have deferred generation of associated capabilities until now.
John Kessenichebb50532016-05-16 19:22:05 -06001695 if (node->getLeft()->getType().isStruct() && ! node->getLeft()->getType().isArray())
David Netoa901ffe2016-06-08 14:11:40 +01001696 declareUseOfStructMember(*(node->getLeft()->getType().getStruct()), glslangIndex);
John Kessenich140f3df2015-06-26 16:58:36 -06001697 }
1698 }
1699 return false;
1700 case glslang::EOpIndexIndirect:
1701 {
1702 // Structure or array or vector indirection.
1703 // Will use native SPIR-V access-chain for struct and array indirection;
1704 // matrices are arrays of vectors, so will also work for a matrix.
1705 // Will use the access chain's 'component' for variable index into a vector.
1706
1707 // This adapter is building access chains left to right.
1708 // Set up the access chain to the left.
1709 node->getLeft()->traverse(this);
1710
1711 // save it so that computing the right side doesn't trash it
1712 spv::Builder::AccessChain partial = builder.getAccessChain();
1713
1714 // compute the next index in the chain
1715 builder.clearAccessChain();
1716 node->getRight()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07001717 spv::Id index = accessChainLoad(node->getRight()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06001718
John Kessenich5611c6d2018-04-05 11:25:02 -06001719 addIndirectionIndexCapabilities(node->getLeft()->getType(), node->getRight()->getType());
1720
John Kessenich140f3df2015-06-26 16:58:36 -06001721 // restore the saved access chain
1722 builder.setAccessChain(partial);
1723
1724 if (! node->getLeft()->getType().isArray() && node->getLeft()->getType().isVector())
John Kessenichfa668da2015-09-13 14:46:30 -06001725 builder.accessChainPushComponent(index, convertGlslangToSpvType(node->getLeft()->getType()));
John Kessenich140f3df2015-06-26 16:58:36 -06001726 else
Jeff Bolz36831c92018-09-05 10:11:41 -05001727 builder.accessChainPush(index, TranslateCoherent(node->getLeft()->getType()));
John Kessenich140f3df2015-06-26 16:58:36 -06001728 }
1729 return false;
1730 case glslang::EOpVectorSwizzle:
1731 {
1732 node->getLeft()->traverse(this);
John Kessenich140f3df2015-06-26 16:58:36 -06001733 std::vector<unsigned> swizzle;
John Kessenich8c8505c2016-07-26 12:50:38 -06001734 convertSwizzle(*node->getRight()->getAsAggregate(), swizzle);
John Kessenichfa668da2015-09-13 14:46:30 -06001735 builder.accessChainPushSwizzle(swizzle, convertGlslangToSpvType(node->getLeft()->getType()));
John Kessenich140f3df2015-06-26 16:58:36 -06001736 }
1737 return false;
John Kessenichfdf63472017-01-13 12:27:52 -07001738 case glslang::EOpMatrixSwizzle:
1739 logger->missingFunctionality("matrix swizzle");
1740 return true;
John Kessenich7c1aa102015-10-15 13:29:11 -06001741 case glslang::EOpLogicalOr:
1742 case glslang::EOpLogicalAnd:
1743 {
1744
1745 // These may require short circuiting, but can sometimes be done as straight
1746 // binary operations. The right operand must be short circuited if it has
1747 // side effects, and should probably be if it is complex.
1748 if (isTrivial(node->getRight()->getAsTyped()))
1749 break; // handle below as a normal binary operation
1750 // otherwise, we need to do dynamic short circuiting on the right operand
1751 spv::Id result = createShortCircuit(node->getOp(), *node->getLeft()->getAsTyped(), *node->getRight()->getAsTyped());
1752 builder.clearAccessChain();
1753 builder.setAccessChainRValue(result);
1754 }
1755 return false;
John Kessenich140f3df2015-06-26 16:58:36 -06001756 default:
1757 break;
1758 }
1759
1760 // Assume generic binary op...
1761
John Kessenich32cfd492016-02-02 12:37:46 -07001762 // get right operand
John Kessenich140f3df2015-06-26 16:58:36 -06001763 builder.clearAccessChain();
1764 node->getLeft()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07001765 spv::Id left = accessChainLoad(node->getLeft()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06001766
John Kessenich32cfd492016-02-02 12:37:46 -07001767 // get left operand
John Kessenich140f3df2015-06-26 16:58:36 -06001768 builder.clearAccessChain();
1769 node->getRight()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07001770 spv::Id right = accessChainLoad(node->getRight()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06001771
John Kessenich32cfd492016-02-02 12:37:46 -07001772 // get result
John Kessenichead86222018-03-28 18:01:20 -06001773 OpDecorations decorations = { TranslatePrecisionDecoration(node->getOperationPrecision()),
John Kessenich5611c6d2018-04-05 11:25:02 -06001774 TranslateNoContractionDecoration(node->getType().getQualifier()),
1775 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06001776 spv::Id result = createBinaryOperation(node->getOp(), decorations,
John Kessenich32cfd492016-02-02 12:37:46 -07001777 convertGlslangToSpvType(node->getType()), left, right,
1778 node->getLeft()->getType().getBasicType());
John Kessenich140f3df2015-06-26 16:58:36 -06001779
John Kessenich50e57562015-12-21 21:21:11 -07001780 builder.clearAccessChain();
John Kessenich140f3df2015-06-26 16:58:36 -06001781 if (! result) {
Lei Zhang17535f72016-05-04 15:55:59 -04001782 logger->missingFunctionality("unknown glslang binary operation");
John Kessenich50e57562015-12-21 21:21:11 -07001783 return true; // pick up a child as the place-holder result
John Kessenich140f3df2015-06-26 16:58:36 -06001784 } else {
John Kessenich140f3df2015-06-26 16:58:36 -06001785 builder.setAccessChainRValue(result);
John Kessenich140f3df2015-06-26 16:58:36 -06001786 return false;
1787 }
John Kessenich140f3df2015-06-26 16:58:36 -06001788}
1789
1790bool TGlslangToSpvTraverser::visitUnary(glslang::TVisit /* visit */, glslang::TIntermUnary* node)
1791{
greg-lunarg5d43c4a2018-12-07 17:36:33 -07001792 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06001793
qining40887662016-04-03 22:20:42 -04001794 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
1795 if (node->getType().getQualifier().isSpecConstant())
1796 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
1797
John Kessenichfc51d282015-08-19 13:34:18 -06001798 spv::Id result = spv::NoResult;
1799
1800 // try texturing first
1801 result = createImageTextureFunctionCall(node);
1802 if (result != spv::NoResult) {
1803 builder.clearAccessChain();
1804 builder.setAccessChainRValue(result);
1805
1806 return false; // done with this node
1807 }
1808
1809 // Non-texturing.
John Kessenichc9a80832015-09-12 12:17:44 -06001810
1811 if (node->getOp() == glslang::EOpArrayLength) {
1812 // Quite special; won't want to evaluate the operand.
1813
John Kessenich5611c6d2018-04-05 11:25:02 -06001814 // Currently, the front-end does not allow .length() on an array until it is sized,
1815 // except for the last block membeor of an SSBO.
1816 // TODO: If this changes, link-time sized arrays might show up here, and need their
1817 // size extracted.
1818
John Kessenichc9a80832015-09-12 12:17:44 -06001819 // Normal .length() would have been constant folded by the front-end.
1820 // So, this has to be block.lastMember.length().
John Kessenichee21fc92015-09-21 21:50:29 -06001821 // SPV wants "block" and member number as the operands, go get them.
John Kessenichead86222018-03-28 18:01:20 -06001822
John Kessenichc9a80832015-09-12 12:17:44 -06001823 glslang::TIntermTyped* block = node->getOperand()->getAsBinaryNode()->getLeft();
1824 block->traverse(this);
John Kessenichee21fc92015-09-21 21:50:29 -06001825 unsigned int member = node->getOperand()->getAsBinaryNode()->getRight()->getAsConstantUnion()->getConstArray()[0].getUConst();
1826 spv::Id length = builder.createArrayLength(builder.accessChainGetLValue(), member);
John Kessenichc9a80832015-09-12 12:17:44 -06001827
John Kessenich8c869672018-11-28 07:01:37 -07001828 // GLSL semantics say the result of .length() is an int, while SPIR-V says
1829 // signedness must be 0. So, convert from SPIR-V unsigned back to GLSL's
1830 // AST expectation of a signed result.
1831 if (glslangIntermediate->getSource() == glslang::EShSourceGlsl)
1832 length = builder.createUnaryOp(spv::OpBitcast, builder.makeIntType(32), length);
1833
John Kessenichc9a80832015-09-12 12:17:44 -06001834 builder.clearAccessChain();
1835 builder.setAccessChainRValue(length);
1836
1837 return false;
1838 }
1839
John Kessenichfc51d282015-08-19 13:34:18 -06001840 // Start by evaluating the operand
1841
John Kessenich8c8505c2016-07-26 12:50:38 -06001842 // Does it need a swizzle inversion? If so, evaluation is inverted;
1843 // operate first on the swizzle base, then apply the swizzle.
1844 spv::Id invertedType = spv::NoType;
1845 auto resultType = [&invertedType, &node, this](){ return invertedType != spv::NoType ? invertedType : convertGlslangToSpvType(node->getType()); };
1846 if (node->getOp() == glslang::EOpInterpolateAtCentroid)
1847 invertedType = getInvertedSwizzleType(*node->getOperand());
1848
John Kessenich140f3df2015-06-26 16:58:36 -06001849 builder.clearAccessChain();
John Kessenich8c8505c2016-07-26 12:50:38 -06001850 if (invertedType != spv::NoType)
1851 node->getOperand()->getAsBinaryNode()->getLeft()->traverse(this);
1852 else
1853 node->getOperand()->traverse(this);
Rex Xu30f92582015-09-14 10:38:56 +08001854
Rex Xufc618912015-09-09 16:42:49 +08001855 spv::Id operand = spv::NoResult;
1856
1857 if (node->getOp() == glslang::EOpAtomicCounterIncrement ||
1858 node->getOp() == glslang::EOpAtomicCounterDecrement ||
Rex Xu7a26c172015-12-08 17:12:09 +08001859 node->getOp() == glslang::EOpAtomicCounter ||
1860 node->getOp() == glslang::EOpInterpolateAtCentroid)
Rex Xufc618912015-09-09 16:42:49 +08001861 operand = builder.accessChainGetLValue(); // Special case l-value operands
1862 else
John Kessenich32cfd492016-02-02 12:37:46 -07001863 operand = accessChainLoad(node->getOperand()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06001864
John Kessenichead86222018-03-28 18:01:20 -06001865 OpDecorations decorations = { TranslatePrecisionDecoration(node->getOperationPrecision()),
John Kessenich5611c6d2018-04-05 11:25:02 -06001866 TranslateNoContractionDecoration(node->getType().getQualifier()),
1867 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenich140f3df2015-06-26 16:58:36 -06001868
1869 // it could be a conversion
John Kessenichfc51d282015-08-19 13:34:18 -06001870 if (! result)
John Kessenichead86222018-03-28 18:01:20 -06001871 result = createConversion(node->getOp(), decorations, resultType(), operand, node->getOperand()->getBasicType());
John Kessenich140f3df2015-06-26 16:58:36 -06001872
1873 // if not, then possibly an operation
1874 if (! result)
John Kessenichead86222018-03-28 18:01:20 -06001875 result = createUnaryOperation(node->getOp(), decorations, resultType(), operand, node->getOperand()->getBasicType());
John Kessenich140f3df2015-06-26 16:58:36 -06001876
1877 if (result) {
John Kessenich5611c6d2018-04-05 11:25:02 -06001878 if (invertedType) {
John Kessenichead86222018-03-28 18:01:20 -06001879 result = createInvertedSwizzle(decorations.precision, *node->getOperand(), result);
John Kessenich5611c6d2018-04-05 11:25:02 -06001880 builder.addDecoration(result, decorations.nonUniform);
1881 }
John Kessenich8c8505c2016-07-26 12:50:38 -06001882
John Kessenich140f3df2015-06-26 16:58:36 -06001883 builder.clearAccessChain();
1884 builder.setAccessChainRValue(result);
1885
1886 return false; // done with this node
1887 }
1888
1889 // it must be a special case, check...
1890 switch (node->getOp()) {
1891 case glslang::EOpPostIncrement:
1892 case glslang::EOpPostDecrement:
1893 case glslang::EOpPreIncrement:
1894 case glslang::EOpPreDecrement:
1895 {
1896 // we need the integer value "1" or the floating point "1.0" to add/subtract
Rex Xu8ff43de2016-04-22 16:51:45 +08001897 spv::Id one = 0;
1898 if (node->getBasicType() == glslang::EbtFloat)
1899 one = builder.makeFloatConstant(1.0F);
Rex Xuce31aea2016-07-29 16:13:04 +08001900 else if (node->getBasicType() == glslang::EbtDouble)
1901 one = builder.makeDoubleConstant(1.0);
Rex Xuc9e3c3c2016-07-29 16:00:05 +08001902 else if (node->getBasicType() == glslang::EbtFloat16)
1903 one = builder.makeFloat16Constant(1.0F);
John Kessenich66011cb2018-03-06 16:12:04 -07001904 else if (node->getBasicType() == glslang::EbtInt8 || node->getBasicType() == glslang::EbtUint8)
1905 one = builder.makeInt8Constant(1);
Rex Xucabbb782017-03-24 13:41:14 +08001906 else if (node->getBasicType() == glslang::EbtInt16 || node->getBasicType() == glslang::EbtUint16)
1907 one = builder.makeInt16Constant(1);
John Kessenich66011cb2018-03-06 16:12:04 -07001908 else if (node->getBasicType() == glslang::EbtInt64 || node->getBasicType() == glslang::EbtUint64)
1909 one = builder.makeInt64Constant(1);
Rex Xu8ff43de2016-04-22 16:51:45 +08001910 else
1911 one = builder.makeIntConstant(1);
John Kessenich140f3df2015-06-26 16:58:36 -06001912 glslang::TOperator op;
1913 if (node->getOp() == glslang::EOpPreIncrement ||
1914 node->getOp() == glslang::EOpPostIncrement)
1915 op = glslang::EOpAdd;
1916 else
1917 op = glslang::EOpSub;
1918
John Kessenichead86222018-03-28 18:01:20 -06001919 spv::Id result = createBinaryOperation(op, decorations,
Rex Xu8ff43de2016-04-22 16:51:45 +08001920 convertGlslangToSpvType(node->getType()), operand, one,
1921 node->getType().getBasicType());
John Kessenich55e7d112015-11-15 21:33:39 -07001922 assert(result != spv::NoResult);
John Kessenich140f3df2015-06-26 16:58:36 -06001923
1924 // The result of operation is always stored, but conditionally the
1925 // consumed result. The consumed result is always an r-value.
1926 builder.accessChainStore(result);
1927 builder.clearAccessChain();
1928 if (node->getOp() == glslang::EOpPreIncrement ||
1929 node->getOp() == glslang::EOpPreDecrement)
1930 builder.setAccessChainRValue(result);
1931 else
1932 builder.setAccessChainRValue(operand);
1933 }
1934
1935 return false;
1936
1937 case glslang::EOpEmitStreamVertex:
1938 builder.createNoResultOp(spv::OpEmitStreamVertex, operand);
1939 return false;
1940 case glslang::EOpEndStreamPrimitive:
1941 builder.createNoResultOp(spv::OpEndStreamPrimitive, operand);
1942 return false;
1943
1944 default:
Lei Zhang17535f72016-05-04 15:55:59 -04001945 logger->missingFunctionality("unknown glslang unary");
John Kessenich50e57562015-12-21 21:21:11 -07001946 return true; // pick up operand as placeholder result
John Kessenich140f3df2015-06-26 16:58:36 -06001947 }
John Kessenich140f3df2015-06-26 16:58:36 -06001948}
1949
1950bool TGlslangToSpvTraverser::visitAggregate(glslang::TVisit visit, glslang::TIntermAggregate* node)
1951{
qining27e04a02016-04-14 16:40:20 -04001952 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
1953 if (node->getType().getQualifier().isSpecConstant())
1954 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
1955
John Kessenichfc51d282015-08-19 13:34:18 -06001956 spv::Id result = spv::NoResult;
John Kessenich8c8505c2016-07-26 12:50:38 -06001957 spv::Id invertedType = spv::NoType; // to use to override the natural type of the node
1958 auto resultType = [&invertedType, &node, this](){ return invertedType != spv::NoType ? invertedType : convertGlslangToSpvType(node->getType()); };
John Kessenichfc51d282015-08-19 13:34:18 -06001959
1960 // try texturing
1961 result = createImageTextureFunctionCall(node);
1962 if (result != spv::NoResult) {
1963 builder.clearAccessChain();
1964 builder.setAccessChainRValue(result);
1965
1966 return false;
Jeff Bolz36831c92018-09-05 10:11:41 -05001967 } else if (node->getOp() == glslang::EOpImageStore ||
Rex Xu129799a2017-07-05 17:23:28 +08001968#ifdef AMD_EXTENSIONS
Jeff Bolz36831c92018-09-05 10:11:41 -05001969 node->getOp() == glslang::EOpImageStoreLod ||
Rex Xu129799a2017-07-05 17:23:28 +08001970#endif
Jeff Bolz36831c92018-09-05 10:11:41 -05001971 node->getOp() == glslang::EOpImageAtomicStore) {
Rex Xufc618912015-09-09 16:42:49 +08001972 // "imageStore" is a special case, which has no result
1973 return false;
1974 }
John Kessenichfc51d282015-08-19 13:34:18 -06001975
John Kessenich140f3df2015-06-26 16:58:36 -06001976 glslang::TOperator binOp = glslang::EOpNull;
1977 bool reduceComparison = true;
1978 bool isMatrix = false;
1979 bool noReturnValue = false;
John Kessenich426394d2015-07-23 10:22:48 -06001980 bool atomic = false;
John Kessenich140f3df2015-06-26 16:58:36 -06001981
1982 assert(node->getOp());
1983
John Kessenichf6640762016-08-01 19:44:00 -06001984 spv::Decoration precision = TranslatePrecisionDecoration(node->getOperationPrecision());
John Kessenich140f3df2015-06-26 16:58:36 -06001985
1986 switch (node->getOp()) {
1987 case glslang::EOpSequence:
1988 {
1989 if (preVisit)
1990 ++sequenceDepth;
1991 else
1992 --sequenceDepth;
1993
1994 if (sequenceDepth == 1) {
1995 // If this is the parent node of all the functions, we want to see them
1996 // early, so all call points have actual SPIR-V functions to reference.
1997 // In all cases, still let the traverser visit the children for us.
1998 makeFunctions(node->getAsAggregate()->getSequence());
1999
John Kessenich6fccb3c2016-09-19 16:01:41 -06002000 // Also, we want all globals initializers to go into the beginning of the entry point, before
John Kessenich140f3df2015-06-26 16:58:36 -06002001 // anything else gets there, so visit out of order, doing them all now.
2002 makeGlobalInitializers(node->getAsAggregate()->getSequence());
2003
John Kessenich6a60c2f2016-12-08 21:01:59 -07002004 // 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 -06002005 // so do them manually.
2006 visitFunctions(node->getAsAggregate()->getSequence());
2007
2008 return false;
2009 }
2010
2011 return true;
2012 }
2013 case glslang::EOpLinkerObjects:
2014 {
2015 if (visit == glslang::EvPreVisit)
2016 linkageOnly = true;
2017 else
2018 linkageOnly = false;
2019
2020 return true;
2021 }
2022 case glslang::EOpComma:
2023 {
2024 // processing from left to right naturally leaves the right-most
2025 // lying around in the access chain
2026 glslang::TIntermSequence& glslangOperands = node->getSequence();
2027 for (int i = 0; i < (int)glslangOperands.size(); ++i)
2028 glslangOperands[i]->traverse(this);
2029
2030 return false;
2031 }
2032 case glslang::EOpFunction:
2033 if (visit == glslang::EvPreVisit) {
John Kessenich6fccb3c2016-09-19 16:01:41 -06002034 if (isShaderEntryPoint(node)) {
John Kessenich517fe7a2016-11-26 13:31:47 -07002035 inEntryPoint = true;
John Kessenich140f3df2015-06-26 16:58:36 -06002036 builder.setBuildPoint(shaderEntry->getLastBlock());
John Kesseniched33e052016-10-06 12:59:51 -06002037 currentFunction = shaderEntry;
John Kessenich140f3df2015-06-26 16:58:36 -06002038 } else {
2039 handleFunctionEntry(node);
2040 }
2041 } else {
John Kessenich517fe7a2016-11-26 13:31:47 -07002042 if (inEntryPoint)
2043 entryPointTerminated = true;
John Kesseniche770b3e2015-09-14 20:58:02 -06002044 builder.leaveFunction();
John Kessenich517fe7a2016-11-26 13:31:47 -07002045 inEntryPoint = false;
John Kessenich140f3df2015-06-26 16:58:36 -06002046 }
2047
2048 return true;
2049 case glslang::EOpParameters:
2050 // Parameters will have been consumed by EOpFunction processing, but not
2051 // the body, so we still visited the function node's children, making this
2052 // child redundant.
2053 return false;
2054 case glslang::EOpFunctionCall:
2055 {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002056 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenich140f3df2015-06-26 16:58:36 -06002057 if (node->isUserDefined())
2058 result = handleUserFunctionCall(node);
John Kessenich927608b2017-01-06 12:34:14 -07002059 // assert(result); // this can happen for bad shaders because the call graph completeness checking is not yet done
John Kessenich6c292d32016-02-15 20:58:50 -07002060 if (result) {
2061 builder.clearAccessChain();
2062 builder.setAccessChainRValue(result);
2063 } else
Lei Zhang17535f72016-05-04 15:55:59 -04002064 logger->missingFunctionality("missing user function; linker needs to catch that");
John Kessenich140f3df2015-06-26 16:58:36 -06002065
2066 return false;
2067 }
2068 case glslang::EOpConstructMat2x2:
2069 case glslang::EOpConstructMat2x3:
2070 case glslang::EOpConstructMat2x4:
2071 case glslang::EOpConstructMat3x2:
2072 case glslang::EOpConstructMat3x3:
2073 case glslang::EOpConstructMat3x4:
2074 case glslang::EOpConstructMat4x2:
2075 case glslang::EOpConstructMat4x3:
2076 case glslang::EOpConstructMat4x4:
2077 case glslang::EOpConstructDMat2x2:
2078 case glslang::EOpConstructDMat2x3:
2079 case glslang::EOpConstructDMat2x4:
2080 case glslang::EOpConstructDMat3x2:
2081 case glslang::EOpConstructDMat3x3:
2082 case glslang::EOpConstructDMat3x4:
2083 case glslang::EOpConstructDMat4x2:
2084 case glslang::EOpConstructDMat4x3:
2085 case glslang::EOpConstructDMat4x4:
LoopDawg174ccb82017-05-20 21:40:27 -06002086 case glslang::EOpConstructIMat2x2:
2087 case glslang::EOpConstructIMat2x3:
2088 case glslang::EOpConstructIMat2x4:
2089 case glslang::EOpConstructIMat3x2:
2090 case glslang::EOpConstructIMat3x3:
2091 case glslang::EOpConstructIMat3x4:
2092 case glslang::EOpConstructIMat4x2:
2093 case glslang::EOpConstructIMat4x3:
2094 case glslang::EOpConstructIMat4x4:
2095 case glslang::EOpConstructUMat2x2:
2096 case glslang::EOpConstructUMat2x3:
2097 case glslang::EOpConstructUMat2x4:
2098 case glslang::EOpConstructUMat3x2:
2099 case glslang::EOpConstructUMat3x3:
2100 case glslang::EOpConstructUMat3x4:
2101 case glslang::EOpConstructUMat4x2:
2102 case glslang::EOpConstructUMat4x3:
2103 case glslang::EOpConstructUMat4x4:
2104 case glslang::EOpConstructBMat2x2:
2105 case glslang::EOpConstructBMat2x3:
2106 case glslang::EOpConstructBMat2x4:
2107 case glslang::EOpConstructBMat3x2:
2108 case glslang::EOpConstructBMat3x3:
2109 case glslang::EOpConstructBMat3x4:
2110 case glslang::EOpConstructBMat4x2:
2111 case glslang::EOpConstructBMat4x3:
2112 case glslang::EOpConstructBMat4x4:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08002113 case glslang::EOpConstructF16Mat2x2:
2114 case glslang::EOpConstructF16Mat2x3:
2115 case glslang::EOpConstructF16Mat2x4:
2116 case glslang::EOpConstructF16Mat3x2:
2117 case glslang::EOpConstructF16Mat3x3:
2118 case glslang::EOpConstructF16Mat3x4:
2119 case glslang::EOpConstructF16Mat4x2:
2120 case glslang::EOpConstructF16Mat4x3:
2121 case glslang::EOpConstructF16Mat4x4:
John Kessenich140f3df2015-06-26 16:58:36 -06002122 isMatrix = true;
2123 // fall through
2124 case glslang::EOpConstructFloat:
2125 case glslang::EOpConstructVec2:
2126 case glslang::EOpConstructVec3:
2127 case glslang::EOpConstructVec4:
2128 case glslang::EOpConstructDouble:
2129 case glslang::EOpConstructDVec2:
2130 case glslang::EOpConstructDVec3:
2131 case glslang::EOpConstructDVec4:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08002132 case glslang::EOpConstructFloat16:
2133 case glslang::EOpConstructF16Vec2:
2134 case glslang::EOpConstructF16Vec3:
2135 case glslang::EOpConstructF16Vec4:
John Kessenich140f3df2015-06-26 16:58:36 -06002136 case glslang::EOpConstructBool:
2137 case glslang::EOpConstructBVec2:
2138 case glslang::EOpConstructBVec3:
2139 case glslang::EOpConstructBVec4:
John Kessenich66011cb2018-03-06 16:12:04 -07002140 case glslang::EOpConstructInt8:
2141 case glslang::EOpConstructI8Vec2:
2142 case glslang::EOpConstructI8Vec3:
2143 case glslang::EOpConstructI8Vec4:
2144 case glslang::EOpConstructUint8:
2145 case glslang::EOpConstructU8Vec2:
2146 case glslang::EOpConstructU8Vec3:
2147 case glslang::EOpConstructU8Vec4:
2148 case glslang::EOpConstructInt16:
2149 case glslang::EOpConstructI16Vec2:
2150 case glslang::EOpConstructI16Vec3:
2151 case glslang::EOpConstructI16Vec4:
2152 case glslang::EOpConstructUint16:
2153 case glslang::EOpConstructU16Vec2:
2154 case glslang::EOpConstructU16Vec3:
2155 case glslang::EOpConstructU16Vec4:
John Kessenich140f3df2015-06-26 16:58:36 -06002156 case glslang::EOpConstructInt:
2157 case glslang::EOpConstructIVec2:
2158 case glslang::EOpConstructIVec3:
2159 case glslang::EOpConstructIVec4:
2160 case glslang::EOpConstructUint:
2161 case glslang::EOpConstructUVec2:
2162 case glslang::EOpConstructUVec3:
2163 case glslang::EOpConstructUVec4:
Rex Xu8ff43de2016-04-22 16:51:45 +08002164 case glslang::EOpConstructInt64:
2165 case glslang::EOpConstructI64Vec2:
2166 case glslang::EOpConstructI64Vec3:
2167 case glslang::EOpConstructI64Vec4:
2168 case glslang::EOpConstructUint64:
2169 case glslang::EOpConstructU64Vec2:
2170 case glslang::EOpConstructU64Vec3:
2171 case glslang::EOpConstructU64Vec4:
John Kessenich140f3df2015-06-26 16:58:36 -06002172 case glslang::EOpConstructStruct:
John Kessenich6c292d32016-02-15 20:58:50 -07002173 case glslang::EOpConstructTextureSampler:
John Kessenich140f3df2015-06-26 16:58:36 -06002174 {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002175 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenich140f3df2015-06-26 16:58:36 -06002176 std::vector<spv::Id> arguments;
Rex Xufc618912015-09-09 16:42:49 +08002177 translateArguments(*node, arguments);
John Kessenich140f3df2015-06-26 16:58:36 -06002178 spv::Id constructed;
John Kessenich6c292d32016-02-15 20:58:50 -07002179 if (node->getOp() == glslang::EOpConstructTextureSampler)
John Kessenich8c8505c2016-07-26 12:50:38 -06002180 constructed = builder.createOp(spv::OpSampledImage, resultType(), arguments);
John Kessenich6c292d32016-02-15 20:58:50 -07002181 else if (node->getOp() == glslang::EOpConstructStruct || node->getType().isArray()) {
John Kessenich140f3df2015-06-26 16:58:36 -06002182 std::vector<spv::Id> constituents;
2183 for (int c = 0; c < (int)arguments.size(); ++c)
2184 constituents.push_back(arguments[c]);
John Kessenich8c8505c2016-07-26 12:50:38 -06002185 constructed = builder.createCompositeConstruct(resultType(), constituents);
John Kessenich55e7d112015-11-15 21:33:39 -07002186 } else if (isMatrix)
John Kessenich8c8505c2016-07-26 12:50:38 -06002187 constructed = builder.createMatrixConstructor(precision, arguments, resultType());
John Kessenich55e7d112015-11-15 21:33:39 -07002188 else
John Kessenich8c8505c2016-07-26 12:50:38 -06002189 constructed = builder.createConstructor(precision, arguments, resultType());
John Kessenich140f3df2015-06-26 16:58:36 -06002190
2191 builder.clearAccessChain();
2192 builder.setAccessChainRValue(constructed);
2193
2194 return false;
2195 }
2196
2197 // These six are component-wise compares with component-wise results.
2198 // Forward on to createBinaryOperation(), requesting a vector result.
2199 case glslang::EOpLessThan:
2200 case glslang::EOpGreaterThan:
2201 case glslang::EOpLessThanEqual:
2202 case glslang::EOpGreaterThanEqual:
2203 case glslang::EOpVectorEqual:
2204 case glslang::EOpVectorNotEqual:
2205 {
2206 // Map the operation to a binary
2207 binOp = node->getOp();
2208 reduceComparison = false;
2209 switch (node->getOp()) {
2210 case glslang::EOpVectorEqual: binOp = glslang::EOpVectorEqual; break;
2211 case glslang::EOpVectorNotEqual: binOp = glslang::EOpVectorNotEqual; break;
2212 default: binOp = node->getOp(); break;
2213 }
2214
2215 break;
2216 }
2217 case glslang::EOpMul:
John Kessenich8c8505c2016-07-26 12:50:38 -06002218 // component-wise matrix multiply
John Kessenich140f3df2015-06-26 16:58:36 -06002219 binOp = glslang::EOpMul;
2220 break;
2221 case glslang::EOpOuterProduct:
2222 // two vectors multiplied to make a matrix
2223 binOp = glslang::EOpOuterProduct;
2224 break;
2225 case glslang::EOpDot:
2226 {
qining25262b32016-05-06 17:25:16 -04002227 // for scalar dot product, use multiply
John Kessenich140f3df2015-06-26 16:58:36 -06002228 glslang::TIntermSequence& glslangOperands = node->getSequence();
John Kessenich8d72f1a2016-05-20 12:06:03 -06002229 if (glslangOperands[0]->getAsTyped()->getVectorSize() == 1)
John Kessenich140f3df2015-06-26 16:58:36 -06002230 binOp = glslang::EOpMul;
2231 break;
2232 }
2233 case glslang::EOpMod:
2234 // when an aggregate, this is the floating-point mod built-in function,
2235 // which can be emitted by the one in createBinaryOperation()
2236 binOp = glslang::EOpMod;
2237 break;
John Kessenich140f3df2015-06-26 16:58:36 -06002238 case glslang::EOpEmitVertex:
2239 case glslang::EOpEndPrimitive:
2240 case glslang::EOpBarrier:
2241 case glslang::EOpMemoryBarrier:
2242 case glslang::EOpMemoryBarrierAtomicCounter:
2243 case glslang::EOpMemoryBarrierBuffer:
2244 case glslang::EOpMemoryBarrierImage:
2245 case glslang::EOpMemoryBarrierShared:
2246 case glslang::EOpGroupMemoryBarrier:
John Kessenich838d7af2017-12-12 22:50:53 -07002247 case glslang::EOpDeviceMemoryBarrier:
LoopDawg6e72fdd2016-06-15 09:50:24 -06002248 case glslang::EOpAllMemoryBarrierWithGroupSync:
John Kessenich838d7af2017-12-12 22:50:53 -07002249 case glslang::EOpDeviceMemoryBarrierWithGroupSync:
LoopDawg6e72fdd2016-06-15 09:50:24 -06002250 case glslang::EOpWorkgroupMemoryBarrier:
2251 case glslang::EOpWorkgroupMemoryBarrierWithGroupSync:
John Kessenich66011cb2018-03-06 16:12:04 -07002252 case glslang::EOpSubgroupBarrier:
2253 case glslang::EOpSubgroupMemoryBarrier:
2254 case glslang::EOpSubgroupMemoryBarrierBuffer:
2255 case glslang::EOpSubgroupMemoryBarrierImage:
2256 case glslang::EOpSubgroupMemoryBarrierShared:
John Kessenich140f3df2015-06-26 16:58:36 -06002257 noReturnValue = true;
2258 // These all have 0 operands and will naturally finish up in the code below for 0 operands
2259 break;
2260
Jeff Bolz36831c92018-09-05 10:11:41 -05002261 case glslang::EOpAtomicStore:
2262 noReturnValue = true;
2263 // fallthrough
2264 case glslang::EOpAtomicLoad:
John Kessenich426394d2015-07-23 10:22:48 -06002265 case glslang::EOpAtomicAdd:
2266 case glslang::EOpAtomicMin:
2267 case glslang::EOpAtomicMax:
2268 case glslang::EOpAtomicAnd:
2269 case glslang::EOpAtomicOr:
2270 case glslang::EOpAtomicXor:
2271 case glslang::EOpAtomicExchange:
2272 case glslang::EOpAtomicCompSwap:
2273 atomic = true;
2274 break;
2275
John Kessenich0d0c6d32017-07-23 16:08:26 -06002276 case glslang::EOpAtomicCounterAdd:
2277 case glslang::EOpAtomicCounterSubtract:
2278 case glslang::EOpAtomicCounterMin:
2279 case glslang::EOpAtomicCounterMax:
2280 case glslang::EOpAtomicCounterAnd:
2281 case glslang::EOpAtomicCounterOr:
2282 case glslang::EOpAtomicCounterXor:
2283 case glslang::EOpAtomicCounterExchange:
2284 case glslang::EOpAtomicCounterCompSwap:
2285 builder.addExtension("SPV_KHR_shader_atomic_counter_ops");
2286 builder.addCapability(spv::CapabilityAtomicStorageOps);
2287 atomic = true;
2288 break;
2289
Chao Chen3c366992018-09-19 11:41:59 -07002290#ifdef NV_EXTENSIONS
Chao Chenb50c02e2018-09-19 11:42:24 -07002291 case glslang::EOpIgnoreIntersectionNV:
2292 case glslang::EOpTerminateRayNV:
2293 case glslang::EOpTraceNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -07002294 case glslang::EOpExecuteCallableNV:
Chao Chen3c366992018-09-19 11:41:59 -07002295 case glslang::EOpWritePackedPrimitiveIndices4x8NV:
2296 noReturnValue = true;
2297 break;
2298#endif
2299
John Kessenich140f3df2015-06-26 16:58:36 -06002300 default:
2301 break;
2302 }
2303
2304 //
2305 // See if it maps to a regular operation.
2306 //
John Kessenich140f3df2015-06-26 16:58:36 -06002307 if (binOp != glslang::EOpNull) {
2308 glslang::TIntermTyped* left = node->getSequence()[0]->getAsTyped();
2309 glslang::TIntermTyped* right = node->getSequence()[1]->getAsTyped();
2310 assert(left && right);
2311
2312 builder.clearAccessChain();
2313 left->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002314 spv::Id leftId = accessChainLoad(left->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002315
2316 builder.clearAccessChain();
2317 right->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002318 spv::Id rightId = accessChainLoad(right->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002319
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002320 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenichead86222018-03-28 18:01:20 -06002321 OpDecorations decorations = { precision,
John Kessenich5611c6d2018-04-05 11:25:02 -06002322 TranslateNoContractionDecoration(node->getType().getQualifier()),
2323 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06002324 result = createBinaryOperation(binOp, decorations,
John Kessenich8c8505c2016-07-26 12:50:38 -06002325 resultType(), leftId, rightId,
John Kessenich140f3df2015-06-26 16:58:36 -06002326 left->getType().getBasicType(), reduceComparison);
2327
2328 // code above should only make binOp that exists in createBinaryOperation
John Kessenich55e7d112015-11-15 21:33:39 -07002329 assert(result != spv::NoResult);
John Kessenich140f3df2015-06-26 16:58:36 -06002330 builder.clearAccessChain();
2331 builder.setAccessChainRValue(result);
2332
2333 return false;
2334 }
2335
John Kessenich426394d2015-07-23 10:22:48 -06002336 //
2337 // Create the list of operands.
2338 //
John Kessenich140f3df2015-06-26 16:58:36 -06002339 glslang::TIntermSequence& glslangOperands = node->getSequence();
2340 std::vector<spv::Id> operands;
2341 for (int arg = 0; arg < (int)glslangOperands.size(); ++arg) {
John Kessenich140f3df2015-06-26 16:58:36 -06002342 // special case l-value operands; there are just a few
2343 bool lvalue = false;
2344 switch (node->getOp()) {
John Kessenich55e7d112015-11-15 21:33:39 -07002345 case glslang::EOpFrexp:
John Kessenich140f3df2015-06-26 16:58:36 -06002346 case glslang::EOpModf:
2347 if (arg == 1)
2348 lvalue = true;
2349 break;
Rex Xu7a26c172015-12-08 17:12:09 +08002350 case glslang::EOpInterpolateAtSample:
2351 case glslang::EOpInterpolateAtOffset:
Rex Xu9d93a232016-05-05 12:30:44 +08002352#ifdef AMD_EXTENSIONS
2353 case glslang::EOpInterpolateAtVertex:
2354#endif
John Kessenich8c8505c2016-07-26 12:50:38 -06002355 if (arg == 0) {
Rex Xu7a26c172015-12-08 17:12:09 +08002356 lvalue = true;
John Kessenich8c8505c2016-07-26 12:50:38 -06002357
2358 // Does it need a swizzle inversion? If so, evaluation is inverted;
2359 // operate first on the swizzle base, then apply the swizzle.
John Kessenichecba76f2017-01-06 00:34:48 -07002360 if (glslangOperands[0]->getAsOperator() &&
John Kessenich8c8505c2016-07-26 12:50:38 -06002361 glslangOperands[0]->getAsOperator()->getOp() == glslang::EOpVectorSwizzle)
2362 invertedType = convertGlslangToSpvType(glslangOperands[0]->getAsBinaryNode()->getLeft()->getType());
2363 }
Rex Xu7a26c172015-12-08 17:12:09 +08002364 break;
Rex Xud4782c12015-09-06 16:30:11 +08002365 case glslang::EOpAtomicAdd:
2366 case glslang::EOpAtomicMin:
2367 case glslang::EOpAtomicMax:
2368 case glslang::EOpAtomicAnd:
2369 case glslang::EOpAtomicOr:
2370 case glslang::EOpAtomicXor:
2371 case glslang::EOpAtomicExchange:
2372 case glslang::EOpAtomicCompSwap:
Jeff Bolz36831c92018-09-05 10:11:41 -05002373 case glslang::EOpAtomicLoad:
2374 case glslang::EOpAtomicStore:
John Kessenich0d0c6d32017-07-23 16:08:26 -06002375 case glslang::EOpAtomicCounterAdd:
2376 case glslang::EOpAtomicCounterSubtract:
2377 case glslang::EOpAtomicCounterMin:
2378 case glslang::EOpAtomicCounterMax:
2379 case glslang::EOpAtomicCounterAnd:
2380 case glslang::EOpAtomicCounterOr:
2381 case glslang::EOpAtomicCounterXor:
2382 case glslang::EOpAtomicCounterExchange:
2383 case glslang::EOpAtomicCounterCompSwap:
Rex Xud4782c12015-09-06 16:30:11 +08002384 if (arg == 0)
2385 lvalue = true;
2386 break;
John Kessenich55e7d112015-11-15 21:33:39 -07002387 case glslang::EOpAddCarry:
2388 case glslang::EOpSubBorrow:
2389 if (arg == 2)
2390 lvalue = true;
2391 break;
2392 case glslang::EOpUMulExtended:
2393 case glslang::EOpIMulExtended:
2394 if (arg >= 2)
2395 lvalue = true;
2396 break;
John Kessenich140f3df2015-06-26 16:58:36 -06002397 default:
2398 break;
2399 }
John Kessenich8c8505c2016-07-26 12:50:38 -06002400 builder.clearAccessChain();
2401 if (invertedType != spv::NoType && arg == 0)
2402 glslangOperands[0]->getAsBinaryNode()->getLeft()->traverse(this);
2403 else
2404 glslangOperands[arg]->traverse(this);
John Kessenich140f3df2015-06-26 16:58:36 -06002405 if (lvalue)
2406 operands.push_back(builder.accessChainGetLValue());
John Kesseniche485c7a2017-05-31 18:50:53 -06002407 else {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002408 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenich32cfd492016-02-02 12:37:46 -07002409 operands.push_back(accessChainLoad(glslangOperands[arg]->getAsTyped()->getType()));
John Kesseniche485c7a2017-05-31 18:50:53 -06002410 }
John Kessenich140f3df2015-06-26 16:58:36 -06002411 }
John Kessenich426394d2015-07-23 10:22:48 -06002412
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002413 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kessenich426394d2015-07-23 10:22:48 -06002414 if (atomic) {
2415 // Handle all atomics
John Kessenich8c8505c2016-07-26 12:50:38 -06002416 result = createAtomicOperation(node->getOp(), precision, resultType(), operands, node->getBasicType());
John Kessenich426394d2015-07-23 10:22:48 -06002417 } else {
2418 // Pass through to generic operations.
2419 switch (glslangOperands.size()) {
2420 case 0:
John Kessenich8c8505c2016-07-26 12:50:38 -06002421 result = createNoArgOperation(node->getOp(), precision, resultType());
John Kessenich426394d2015-07-23 10:22:48 -06002422 break;
2423 case 1:
John Kessenichead86222018-03-28 18:01:20 -06002424 {
2425 OpDecorations decorations = { precision,
John Kessenich5611c6d2018-04-05 11:25:02 -06002426 TranslateNoContractionDecoration(node->getType().getQualifier()),
2427 TranslateNonUniformDecoration(node->getType().getQualifier()) };
John Kessenichead86222018-03-28 18:01:20 -06002428 result = createUnaryOperation(
2429 node->getOp(), decorations,
2430 resultType(), operands.front(),
2431 glslangOperands[0]->getAsTyped()->getBasicType());
2432 }
John Kessenich426394d2015-07-23 10:22:48 -06002433 break;
2434 default:
John Kessenich8c8505c2016-07-26 12:50:38 -06002435 result = createMiscOperation(node->getOp(), precision, resultType(), operands, node->getBasicType());
John Kessenich426394d2015-07-23 10:22:48 -06002436 break;
2437 }
John Kessenich8c8505c2016-07-26 12:50:38 -06002438 if (invertedType)
2439 result = createInvertedSwizzle(precision, *glslangOperands[0]->getAsBinaryNode(), result);
John Kessenich140f3df2015-06-26 16:58:36 -06002440 }
2441
2442 if (noReturnValue)
2443 return false;
2444
2445 if (! result) {
Lei Zhang17535f72016-05-04 15:55:59 -04002446 logger->missingFunctionality("unknown glslang aggregate");
John Kessenich50e57562015-12-21 21:21:11 -07002447 return true; // pick up a child as a placeholder operand
John Kessenich140f3df2015-06-26 16:58:36 -06002448 } else {
2449 builder.clearAccessChain();
2450 builder.setAccessChainRValue(result);
2451 return false;
2452 }
2453}
2454
John Kessenich433e9ff2017-01-26 20:31:11 -07002455// This path handles both if-then-else and ?:
2456// The if-then-else has a node type of void, while
2457// ?: has either a void or a non-void node type
2458//
2459// Leaving the result, when not void:
2460// GLSL only has r-values as the result of a :?, but
2461// if we have an l-value, that can be more efficient if it will
2462// become the base of a complex r-value expression, because the
2463// next layer copies r-values into memory to use the access-chain mechanism
John Kessenich140f3df2015-06-26 16:58:36 -06002464bool TGlslangToSpvTraverser::visitSelection(glslang::TVisit /* visit */, glslang::TIntermSelection* node)
2465{
John Kessenich4bee5312018-02-20 21:29:05 -07002466 // See if it simple and safe, or required, to execute both sides.
2467 // Crucially, side effects must be either semantically required or avoided,
2468 // and there are performance trade-offs.
2469 // Return true if required or a good idea (and safe) to execute both sides,
2470 // false otherwise.
2471 const auto bothSidesPolicy = [&]() -> bool {
2472 // do we have both sides?
John Kessenich433e9ff2017-01-26 20:31:11 -07002473 if (node->getTrueBlock() == nullptr ||
2474 node->getFalseBlock() == nullptr)
2475 return false;
2476
John Kessenich4bee5312018-02-20 21:29:05 -07002477 // required? (unless we write additional code to look for side effects
2478 // and make performance trade-offs if none are present)
2479 if (!node->getShortCircuit())
2480 return true;
2481
2482 // if not required to execute both, decide based on performance/practicality...
2483
2484 // see if OpSelect can handle it
2485 if ((!node->getType().isScalar() && !node->getType().isVector()) ||
2486 node->getBasicType() == glslang::EbtVoid)
2487 return false;
2488
John Kessenich433e9ff2017-01-26 20:31:11 -07002489 assert(node->getType() == node->getTrueBlock() ->getAsTyped()->getType() &&
2490 node->getType() == node->getFalseBlock()->getAsTyped()->getType());
2491
2492 // return true if a single operand to ? : is okay for OpSelect
2493 const auto operandOkay = [](glslang::TIntermTyped* node) {
John Kessenich8e6c6ce2017-01-28 19:29:42 -07002494 return node->getAsSymbolNode() || node->getType().getQualifier().isConstant();
John Kessenich433e9ff2017-01-26 20:31:11 -07002495 };
2496
2497 return operandOkay(node->getTrueBlock() ->getAsTyped()) &&
2498 operandOkay(node->getFalseBlock()->getAsTyped());
2499 };
2500
John Kessenich4bee5312018-02-20 21:29:05 -07002501 spv::Id result = spv::NoResult; // upcoming result selecting between trueValue and falseValue
2502 // emit the condition before doing anything with selection
2503 node->getCondition()->traverse(this);
2504 spv::Id condition = accessChainLoad(node->getCondition()->getType());
2505
2506 // Find a way of executing both sides and selecting the right result.
2507 const auto executeBothSides = [&]() -> void {
2508 // execute both sides
John Kessenich433e9ff2017-01-26 20:31:11 -07002509 node->getTrueBlock()->traverse(this);
2510 spv::Id trueValue = accessChainLoad(node->getTrueBlock()->getAsTyped()->getType());
2511 node->getFalseBlock()->traverse(this);
2512 spv::Id falseValue = accessChainLoad(node->getTrueBlock()->getAsTyped()->getType());
2513
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002514 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06002515
John Kessenich4bee5312018-02-20 21:29:05 -07002516 // done if void
2517 if (node->getBasicType() == glslang::EbtVoid)
2518 return;
John Kesseniche434ad92017-03-30 10:09:28 -06002519
John Kessenich4bee5312018-02-20 21:29:05 -07002520 // emit code to select between trueValue and falseValue
2521
2522 // see if OpSelect can handle it
2523 if (node->getType().isScalar() || node->getType().isVector()) {
2524 // Emit OpSelect for this selection.
2525
2526 // smear condition to vector, if necessary (AST is always scalar)
2527 if (builder.isVector(trueValue))
2528 condition = builder.smearScalar(spv::NoPrecision, condition,
2529 builder.makeVectorType(builder.makeBoolType(),
2530 builder.getNumComponents(trueValue)));
2531
2532 // OpSelect
2533 result = builder.createTriOp(spv::OpSelect,
2534 convertGlslangToSpvType(node->getType()), condition,
2535 trueValue, falseValue);
2536
2537 builder.clearAccessChain();
2538 builder.setAccessChainRValue(result);
2539 } else {
2540 // We need control flow to select the result.
2541 // TODO: Once SPIR-V OpSelect allows arbitrary types, eliminate this path.
2542 result = builder.createVariable(spv::StorageClassFunction, convertGlslangToSpvType(node->getType()));
2543
2544 // Selection control:
2545 const spv::SelectionControlMask control = TranslateSelectionControl(*node);
2546
2547 // make an "if" based on the value created by the condition
2548 spv::Builder::If ifBuilder(condition, control, builder);
2549
2550 // emit the "then" statement
2551 builder.createStore(trueValue, result);
2552 ifBuilder.makeBeginElse();
2553 // emit the "else" statement
2554 builder.createStore(falseValue, result);
2555
2556 // finish off the control flow
2557 ifBuilder.makeEndIf();
2558
2559 builder.clearAccessChain();
2560 builder.setAccessChainLValue(result);
2561 }
John Kessenich433e9ff2017-01-26 20:31:11 -07002562 };
2563
John Kessenich4bee5312018-02-20 21:29:05 -07002564 // Execute the one side needed, as per the condition
2565 const auto executeOneSide = [&]() {
2566 // Always emit control flow.
2567 if (node->getBasicType() != glslang::EbtVoid)
2568 result = builder.createVariable(spv::StorageClassFunction, convertGlslangToSpvType(node->getType()));
John Kessenich433e9ff2017-01-26 20:31:11 -07002569
John Kessenich4bee5312018-02-20 21:29:05 -07002570 // Selection control:
2571 const spv::SelectionControlMask control = TranslateSelectionControl(*node);
2572
2573 // make an "if" based on the value created by the condition
2574 spv::Builder::If ifBuilder(condition, control, builder);
2575
2576 // emit the "then" statement
2577 if (node->getTrueBlock() != nullptr) {
2578 node->getTrueBlock()->traverse(this);
2579 if (result != spv::NoResult)
2580 builder.createStore(accessChainLoad(node->getTrueBlock()->getAsTyped()->getType()), result);
2581 }
2582
2583 if (node->getFalseBlock() != nullptr) {
2584 ifBuilder.makeBeginElse();
2585 // emit the "else" statement
2586 node->getFalseBlock()->traverse(this);
2587 if (result != spv::NoResult)
2588 builder.createStore(accessChainLoad(node->getFalseBlock()->getAsTyped()->getType()), result);
2589 }
2590
2591 // finish off the control flow
2592 ifBuilder.makeEndIf();
2593
2594 if (result != spv::NoResult) {
2595 builder.clearAccessChain();
2596 builder.setAccessChainLValue(result);
2597 }
2598 };
2599
2600 // Try for OpSelect (or a requirement to execute both sides)
2601 if (bothSidesPolicy()) {
John Kessenich8e6c6ce2017-01-28 19:29:42 -07002602 SpecConstantOpModeGuard spec_constant_op_mode_setter(&builder);
2603 if (node->getType().getQualifier().isSpecConstant())
2604 spec_constant_op_mode_setter.turnOnSpecConstantOpMode();
John Kessenich4bee5312018-02-20 21:29:05 -07002605 executeBothSides();
2606 } else
2607 executeOneSide();
John Kessenich140f3df2015-06-26 16:58:36 -06002608
2609 return false;
2610}
2611
2612bool TGlslangToSpvTraverser::visitSwitch(glslang::TVisit /* visit */, glslang::TIntermSwitch* node)
2613{
2614 // emit and get the condition before doing anything with switch
2615 node->getCondition()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07002616 spv::Id selector = accessChainLoad(node->getCondition()->getAsTyped()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002617
Rex Xu57e65922017-07-04 23:23:40 +08002618 // Selection control:
John Kesseniche18fd202018-01-30 11:01:39 -07002619 const spv::SelectionControlMask control = TranslateSwitchControl(*node);
Rex Xu57e65922017-07-04 23:23:40 +08002620
John Kessenich140f3df2015-06-26 16:58:36 -06002621 // browse the children to sort out code segments
2622 int defaultSegment = -1;
2623 std::vector<TIntermNode*> codeSegments;
2624 glslang::TIntermSequence& sequence = node->getBody()->getSequence();
2625 std::vector<int> caseValues;
2626 std::vector<int> valueIndexToSegment(sequence.size()); // note: probably not all are used, it is an overestimate
2627 for (glslang::TIntermSequence::iterator c = sequence.begin(); c != sequence.end(); ++c) {
2628 TIntermNode* child = *c;
2629 if (child->getAsBranchNode() && child->getAsBranchNode()->getFlowOp() == glslang::EOpDefault)
baldurkd76692d2015-07-12 11:32:58 +02002630 defaultSegment = (int)codeSegments.size();
John Kessenich140f3df2015-06-26 16:58:36 -06002631 else if (child->getAsBranchNode() && child->getAsBranchNode()->getFlowOp() == glslang::EOpCase) {
baldurkd76692d2015-07-12 11:32:58 +02002632 valueIndexToSegment[caseValues.size()] = (int)codeSegments.size();
John Kessenich140f3df2015-06-26 16:58:36 -06002633 caseValues.push_back(child->getAsBranchNode()->getExpression()->getAsConstantUnion()->getConstArray()[0].getIConst());
2634 } else
2635 codeSegments.push_back(child);
2636 }
2637
qining25262b32016-05-06 17:25:16 -04002638 // handle the case where the last code segment is missing, due to no code
John Kessenich140f3df2015-06-26 16:58:36 -06002639 // statements between the last case and the end of the switch statement
2640 if ((caseValues.size() && (int)codeSegments.size() == valueIndexToSegment[caseValues.size() - 1]) ||
2641 (int)codeSegments.size() == defaultSegment)
2642 codeSegments.push_back(nullptr);
2643
2644 // make the switch statement
2645 std::vector<spv::Block*> segmentBlocks; // returned, as the blocks allocated in the call
Rex Xu57e65922017-07-04 23:23:40 +08002646 builder.makeSwitch(selector, control, (int)codeSegments.size(), caseValues, valueIndexToSegment, defaultSegment, segmentBlocks);
John Kessenich140f3df2015-06-26 16:58:36 -06002647
2648 // emit all the code in the segments
2649 breakForLoop.push(false);
2650 for (unsigned int s = 0; s < codeSegments.size(); ++s) {
2651 builder.nextSwitchSegment(segmentBlocks, s);
2652 if (codeSegments[s])
2653 codeSegments[s]->traverse(this);
2654 else
2655 builder.addSwitchBreak();
2656 }
2657 breakForLoop.pop();
2658
2659 builder.endSwitch(segmentBlocks);
2660
2661 return false;
2662}
2663
2664void TGlslangToSpvTraverser::visitConstantUnion(glslang::TIntermConstantUnion* node)
2665{
2666 int nextConst = 0;
qining08408382016-03-21 09:51:37 -04002667 spv::Id constant = createSpvConstantFromConstUnionArray(node->getType(), node->getConstArray(), nextConst, false);
John Kessenich140f3df2015-06-26 16:58:36 -06002668
2669 builder.clearAccessChain();
2670 builder.setAccessChainRValue(constant);
2671}
2672
2673bool TGlslangToSpvTraverser::visitLoop(glslang::TVisit /* visit */, glslang::TIntermLoop* node)
2674{
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002675 auto blocks = builder.makeNewLoop();
Dejan Mircevski832c65c2016-01-11 15:57:11 -05002676 builder.createBranch(&blocks.head);
steve-lunargf1709e72017-05-02 20:14:50 -06002677
2678 // Loop control:
John Kessenicha2858d92018-01-31 08:11:18 -07002679 unsigned int dependencyLength = glslang::TIntermLoop::dependencyInfinite;
2680 const spv::LoopControlMask control = TranslateLoopControl(*node, dependencyLength);
steve-lunargf1709e72017-05-02 20:14:50 -06002681
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05002682 // Spec requires back edges to target header blocks, and every header block
2683 // must dominate its merge block. Make a header block first to ensure these
2684 // conditions are met. By definition, it will contain OpLoopMerge, followed
2685 // by a block-ending branch. But we don't want to put any other body/test
2686 // instructions in it, since the body/test may have arbitrary instructions,
2687 // including merges of its own.
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002688 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05002689 builder.setBuildPoint(&blocks.head);
John Kessenicha2858d92018-01-31 08:11:18 -07002690 builder.createLoopMerge(&blocks.merge, &blocks.continue_target, control, dependencyLength);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002691 if (node->testFirst() && node->getTest()) {
Dejan Mircevski213bbbe2016-01-20 11:51:43 -05002692 spv::Block& test = builder.makeNewBlock();
2693 builder.createBranch(&test);
2694
2695 builder.setBuildPoint(&test);
John Kessenich140f3df2015-06-26 16:58:36 -06002696 node->getTest()->traverse(this);
John Kesseniche485c7a2017-05-31 18:50:53 -06002697 spv::Id condition = accessChainLoad(node->getTest()->getType());
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002698 builder.createConditionalBranch(condition, &blocks.body, &blocks.merge);
2699
2700 builder.setBuildPoint(&blocks.body);
Dejan Mircevski832c65c2016-01-11 15:57:11 -05002701 breakForLoop.push(true);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002702 if (node->getBody())
Dejan Mircevskie537b8b2016-01-10 19:37:00 -05002703 node->getBody()->traverse(this);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002704 builder.createBranch(&blocks.continue_target);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05002705 breakForLoop.pop();
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002706
2707 builder.setBuildPoint(&blocks.continue_target);
2708 if (node->getTerminal())
2709 node->getTerminal()->traverse(this);
Dejan Mircevski832c65c2016-01-11 15:57:11 -05002710 builder.createBranch(&blocks.head);
David Netoc22f37c2015-07-15 16:21:26 -04002711 } else {
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002712 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002713 builder.createBranch(&blocks.body);
2714
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05002715 breakForLoop.push(true);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002716 builder.setBuildPoint(&blocks.body);
2717 if (node->getBody())
Dejan Mircevskie537b8b2016-01-10 19:37:00 -05002718 node->getBody()->traverse(this);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002719 builder.createBranch(&blocks.continue_target);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05002720 breakForLoop.pop();
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002721
2722 builder.setBuildPoint(&blocks.continue_target);
2723 if (node->getTerminal())
2724 node->getTerminal()->traverse(this);
2725 if (node->getTest()) {
2726 node->getTest()->traverse(this);
2727 spv::Id condition =
John Kessenich32cfd492016-02-02 12:37:46 -07002728 accessChainLoad(node->getTest()->getType());
Dejan Mircevski832c65c2016-01-11 15:57:11 -05002729 builder.createConditionalBranch(condition, &blocks.head, &blocks.merge);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002730 } else {
Dejan Mircevskied55bcd2016-01-19 21:13:38 -05002731 // TODO: unless there was a break/return/discard instruction
2732 // somewhere in the body, this is an infinite loop, so we should
2733 // issue a warning.
Dejan Mircevski832c65c2016-01-11 15:57:11 -05002734 builder.createBranch(&blocks.head);
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002735 }
John Kessenich140f3df2015-06-26 16:58:36 -06002736 }
Dejan Mircevski9c6734c2016-01-10 12:15:13 -05002737 builder.setBuildPoint(&blocks.merge);
Dejan Mircevskic8fbbab2016-01-11 14:48:36 -05002738 builder.closeLoop();
John Kessenich140f3df2015-06-26 16:58:36 -06002739 return false;
2740}
2741
2742bool TGlslangToSpvTraverser::visitBranch(glslang::TVisit /* visit */, glslang::TIntermBranch* node)
2743{
2744 if (node->getExpression())
2745 node->getExpression()->traverse(this);
2746
greg-lunarg5d43c4a2018-12-07 17:36:33 -07002747 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06002748
John Kessenich140f3df2015-06-26 16:58:36 -06002749 switch (node->getFlowOp()) {
2750 case glslang::EOpKill:
2751 builder.makeDiscard();
2752 break;
2753 case glslang::EOpBreak:
2754 if (breakForLoop.top())
2755 builder.createLoopExit();
2756 else
2757 builder.addSwitchBreak();
2758 break;
2759 case glslang::EOpContinue:
John Kessenich140f3df2015-06-26 16:58:36 -06002760 builder.createLoopContinue();
2761 break;
2762 case glslang::EOpReturn:
John Kesseniched33e052016-10-06 12:59:51 -06002763 if (node->getExpression()) {
2764 const glslang::TType& glslangReturnType = node->getExpression()->getType();
2765 spv::Id returnId = accessChainLoad(glslangReturnType);
2766 if (builder.getTypeId(returnId) != currentFunction->getReturnType()) {
2767 builder.clearAccessChain();
2768 spv::Id copyId = builder.createVariable(spv::StorageClassFunction, currentFunction->getReturnType());
2769 builder.setAccessChainLValue(copyId);
2770 multiTypeStore(glslangReturnType, returnId);
2771 returnId = builder.createLoad(copyId);
2772 }
2773 builder.makeReturn(false, returnId);
2774 } else
John Kesseniche770b3e2015-09-14 20:58:02 -06002775 builder.makeReturn(false);
John Kessenich140f3df2015-06-26 16:58:36 -06002776
2777 builder.clearAccessChain();
2778 break;
2779
2780 default:
John Kessenich55e7d112015-11-15 21:33:39 -07002781 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06002782 break;
2783 }
2784
2785 return false;
2786}
2787
2788spv::Id TGlslangToSpvTraverser::createSpvVariable(const glslang::TIntermSymbol* node)
2789{
qining25262b32016-05-06 17:25:16 -04002790 // First, steer off constants, which are not SPIR-V variables, but
John Kessenich140f3df2015-06-26 16:58:36 -06002791 // can still have a mapping to a SPIR-V Id.
John Kessenich55e7d112015-11-15 21:33:39 -07002792 // This includes specialization constants.
John Kessenich7cc0e282016-03-20 00:46:02 -06002793 if (node->getQualifier().isConstant()) {
Dan Sinclair12fcaa22018-11-13 09:17:44 -05002794 spv::Id result = createSpvConstant(*node);
2795 if (result != spv::NoResult)
2796 return result;
John Kessenich140f3df2015-06-26 16:58:36 -06002797 }
2798
2799 // Now, handle actual variables
John Kessenicha5c5fb62017-05-05 05:09:58 -06002800 spv::StorageClass storageClass = TranslateStorageClass(node->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06002801 spv::Id spvType = convertGlslangToSpvType(node->getType());
2802
Rex Xucabbb782017-03-24 13:41:14 +08002803 const bool contains16BitType = node->getType().containsBasicType(glslang::EbtFloat16) ||
2804 node->getType().containsBasicType(glslang::EbtInt16) ||
2805 node->getType().containsBasicType(glslang::EbtUint16);
Rex Xuf89ad982017-04-07 23:22:33 +08002806 if (contains16BitType) {
John Kessenich18310872018-05-14 22:08:53 -06002807 switch (storageClass) {
2808 case spv::StorageClassInput:
2809 case spv::StorageClassOutput:
John Kessenich66011cb2018-03-06 16:12:04 -07002810 addPre13Extension(spv::E_SPV_KHR_16bit_storage);
Rex Xuf89ad982017-04-07 23:22:33 +08002811 builder.addCapability(spv::CapabilityStorageInputOutput16);
John Kessenich18310872018-05-14 22:08:53 -06002812 break;
2813 case spv::StorageClassPushConstant:
John Kessenich66011cb2018-03-06 16:12:04 -07002814 addPre13Extension(spv::E_SPV_KHR_16bit_storage);
Rex Xuf89ad982017-04-07 23:22:33 +08002815 builder.addCapability(spv::CapabilityStoragePushConstant16);
John Kessenich18310872018-05-14 22:08:53 -06002816 break;
2817 case spv::StorageClassUniform:
John Kessenich66011cb2018-03-06 16:12:04 -07002818 addPre13Extension(spv::E_SPV_KHR_16bit_storage);
Rex Xuf89ad982017-04-07 23:22:33 +08002819 if (node->getType().getQualifier().storage == glslang::EvqBuffer)
2820 builder.addCapability(spv::CapabilityStorageUniformBufferBlock16);
John Kessenich18310872018-05-14 22:08:53 -06002821 else
2822 builder.addCapability(spv::CapabilityStorageUniform16);
2823 break;
2824 case spv::StorageClassStorageBuffer:
2825 addPre13Extension(spv::E_SPV_KHR_16bit_storage);
2826 builder.addCapability(spv::CapabilityStorageUniformBufferBlock16);
2827 break;
2828 default:
2829 break;
Rex Xuf89ad982017-04-07 23:22:33 +08002830 }
2831 }
Rex Xuf89ad982017-04-07 23:22:33 +08002832
John Kessenich312dcfb2018-07-03 13:19:51 -06002833 const bool contains8BitType = node->getType().containsBasicType(glslang::EbtInt8) ||
2834 node->getType().containsBasicType(glslang::EbtUint8);
2835 if (contains8BitType) {
2836 if (storageClass == spv::StorageClassPushConstant) {
2837 builder.addExtension(spv::E_SPV_KHR_8bit_storage);
2838 builder.addCapability(spv::CapabilityStoragePushConstant8);
2839 } else if (storageClass == spv::StorageClassUniform) {
2840 builder.addExtension(spv::E_SPV_KHR_8bit_storage);
2841 builder.addCapability(spv::CapabilityUniformAndStorageBuffer8BitAccess);
Neil Henningb6b01f02018-10-23 15:02:29 +01002842 } else if (storageClass == spv::StorageClassStorageBuffer) {
2843 builder.addExtension(spv::E_SPV_KHR_8bit_storage);
2844 builder.addCapability(spv::CapabilityStorageBuffer8BitAccess);
John Kessenich312dcfb2018-07-03 13:19:51 -06002845 }
2846 }
2847
John Kessenich140f3df2015-06-26 16:58:36 -06002848 const char* name = node->getName().c_str();
2849 if (glslang::IsAnonymous(name))
2850 name = "";
2851
2852 return builder.createVariable(storageClass, spvType, name);
2853}
2854
2855// Return type Id of the sampled type.
2856spv::Id TGlslangToSpvTraverser::getSampledType(const glslang::TSampler& sampler)
2857{
2858 switch (sampler.type) {
2859 case glslang::EbtFloat: return builder.makeFloatType(32);
Rex Xu1e5d7b02016-11-29 17:36:31 +08002860#ifdef AMD_EXTENSIONS
2861 case glslang::EbtFloat16:
2862 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float_fetch);
2863 builder.addCapability(spv::CapabilityFloat16ImageAMD);
2864 return builder.makeFloatType(16);
2865#endif
John Kessenich140f3df2015-06-26 16:58:36 -06002866 case glslang::EbtInt: return builder.makeIntType(32);
2867 case glslang::EbtUint: return builder.makeUintType(32);
2868 default:
John Kessenich55e7d112015-11-15 21:33:39 -07002869 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06002870 return builder.makeFloatType(32);
2871 }
2872}
2873
John Kessenich8c8505c2016-07-26 12:50:38 -06002874// If node is a swizzle operation, return the type that should be used if
2875// the swizzle base is first consumed by another operation, before the swizzle
2876// is applied.
2877spv::Id TGlslangToSpvTraverser::getInvertedSwizzleType(const glslang::TIntermTyped& node)
2878{
John Kessenichecba76f2017-01-06 00:34:48 -07002879 if (node.getAsOperator() &&
John Kessenich8c8505c2016-07-26 12:50:38 -06002880 node.getAsOperator()->getOp() == glslang::EOpVectorSwizzle)
2881 return convertGlslangToSpvType(node.getAsBinaryNode()->getLeft()->getType());
2882 else
2883 return spv::NoType;
2884}
2885
2886// When inverting a swizzle with a parent op, this function
2887// will apply the swizzle operation to a completed parent operation.
2888spv::Id TGlslangToSpvTraverser::createInvertedSwizzle(spv::Decoration precision, const glslang::TIntermTyped& node, spv::Id parentResult)
2889{
2890 std::vector<unsigned> swizzle;
2891 convertSwizzle(*node.getAsBinaryNode()->getRight()->getAsAggregate(), swizzle);
2892 return builder.createRvalueSwizzle(precision, convertGlslangToSpvType(node.getType()), parentResult, swizzle);
2893}
2894
John Kessenich8c8505c2016-07-26 12:50:38 -06002895// Convert a glslang AST swizzle node to a swizzle vector for building SPIR-V.
2896void TGlslangToSpvTraverser::convertSwizzle(const glslang::TIntermAggregate& node, std::vector<unsigned>& swizzle)
2897{
2898 const glslang::TIntermSequence& swizzleSequence = node.getSequence();
2899 for (int i = 0; i < (int)swizzleSequence.size(); ++i)
2900 swizzle.push_back(swizzleSequence[i]->getAsConstantUnion()->getConstArray()[0].getIConst());
2901}
2902
John Kessenich3ac051e2015-12-20 11:29:16 -07002903// Convert from a glslang type to an SPV type, by calling into a
2904// recursive version of this function. This establishes the inherited
2905// layout state rooted from the top-level type.
John Kessenich140f3df2015-06-26 16:58:36 -06002906spv::Id TGlslangToSpvTraverser::convertGlslangToSpvType(const glslang::TType& type)
2907{
John Kessenichead86222018-03-28 18:01:20 -06002908 return convertGlslangToSpvType(type, getExplicitLayout(type), type.getQualifier(), false);
John Kessenich31ed4832015-09-09 17:51:38 -06002909}
2910
2911// Do full recursive conversion of an arbitrary glslang type to a SPIR-V Id.
John Kessenich7b9fa252016-01-21 18:56:57 -07002912// explicitLayout can be kept the same throughout the hierarchical recursive walk.
John Kessenich6090df02016-06-30 21:18:02 -06002913// Mutually recursive with convertGlslangStructToSpvType().
John Kessenichead86222018-03-28 18:01:20 -06002914spv::Id TGlslangToSpvTraverser::convertGlslangToSpvType(const glslang::TType& type,
2915 glslang::TLayoutPacking explicitLayout, const glslang::TQualifier& qualifier, bool lastBufferBlockMember)
John Kessenich31ed4832015-09-09 17:51:38 -06002916{
John Kesseniche0b6cad2015-12-24 10:30:13 -07002917 spv::Id spvType = spv::NoResult;
John Kessenich140f3df2015-06-26 16:58:36 -06002918
2919 switch (type.getBasicType()) {
2920 case glslang::EbtVoid:
2921 spvType = builder.makeVoidType();
John Kessenich55e7d112015-11-15 21:33:39 -07002922 assert (! type.isArray());
John Kessenich140f3df2015-06-26 16:58:36 -06002923 break;
2924 case glslang::EbtFloat:
2925 spvType = builder.makeFloatType(32);
2926 break;
2927 case glslang::EbtDouble:
2928 spvType = builder.makeFloatType(64);
2929 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08002930 case glslang::EbtFloat16:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08002931 spvType = builder.makeFloatType(16);
2932 break;
John Kessenich140f3df2015-06-26 16:58:36 -06002933 case glslang::EbtBool:
John Kessenich103bef92016-02-08 21:38:15 -07002934 // "transparent" bool doesn't exist in SPIR-V. The GLSL convention is
2935 // a 32-bit int where non-0 means true.
2936 if (explicitLayout != glslang::ElpNone)
2937 spvType = builder.makeUintType(32);
2938 else
2939 spvType = builder.makeBoolType();
John Kessenich140f3df2015-06-26 16:58:36 -06002940 break;
John Kessenich31aa3d62018-08-15 13:54:09 -06002941 case glslang::EbtInt8:
John Kessenich66011cb2018-03-06 16:12:04 -07002942 spvType = builder.makeIntType(8);
2943 break;
2944 case glslang::EbtUint8:
John Kessenich66011cb2018-03-06 16:12:04 -07002945 spvType = builder.makeUintType(8);
2946 break;
John Kessenich31aa3d62018-08-15 13:54:09 -06002947 case glslang::EbtInt16:
John Kessenich66011cb2018-03-06 16:12:04 -07002948 spvType = builder.makeIntType(16);
2949 break;
2950 case glslang::EbtUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07002951 spvType = builder.makeUintType(16);
2952 break;
John Kessenich140f3df2015-06-26 16:58:36 -06002953 case glslang::EbtInt:
2954 spvType = builder.makeIntType(32);
2955 break;
2956 case glslang::EbtUint:
2957 spvType = builder.makeUintType(32);
2958 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08002959 case glslang::EbtInt64:
Rex Xu8ff43de2016-04-22 16:51:45 +08002960 spvType = builder.makeIntType(64);
2961 break;
2962 case glslang::EbtUint64:
Rex Xu8ff43de2016-04-22 16:51:45 +08002963 spvType = builder.makeUintType(64);
2964 break;
John Kessenich426394d2015-07-23 10:22:48 -06002965 case glslang::EbtAtomicUint:
John Kessenich2d0cc782016-07-07 13:20:00 -06002966 builder.addCapability(spv::CapabilityAtomicStorage);
John Kessenich426394d2015-07-23 10:22:48 -06002967 spvType = builder.makeUintType(32);
2968 break;
Chao Chenb50c02e2018-09-19 11:42:24 -07002969#ifdef NV_EXTENSIONS
2970 case glslang::EbtAccStructNV:
2971 spvType = builder.makeAccelerationStructureNVType();
2972 break;
2973#endif
John Kessenich140f3df2015-06-26 16:58:36 -06002974 case glslang::EbtSampler:
2975 {
2976 const glslang::TSampler& sampler = type.getSampler();
John Kessenich6c292d32016-02-15 20:58:50 -07002977 if (sampler.sampler) {
2978 // pure sampler
2979 spvType = builder.makeSamplerType();
2980 } else {
2981 // an image is present, make its type
2982 spvType = builder.makeImageType(getSampledType(sampler), TranslateDimensionality(sampler), sampler.shadow, sampler.arrayed, sampler.ms,
2983 sampler.image ? 2 : 1, TranslateImageFormat(type));
2984 if (sampler.combined) {
2985 // already has both image and sampler, make the combined type
2986 spvType = builder.makeSampledImageType(spvType);
2987 }
John Kessenich55e7d112015-11-15 21:33:39 -07002988 }
John Kesseniche0b6cad2015-12-24 10:30:13 -07002989 }
John Kessenich140f3df2015-06-26 16:58:36 -06002990 break;
2991 case glslang::EbtStruct:
2992 case glslang::EbtBlock:
2993 {
2994 // If we've seen this struct type, return it
John Kessenich6090df02016-06-30 21:18:02 -06002995 const glslang::TTypeList* glslangMembers = type.getStruct();
John Kesseniche0b6cad2015-12-24 10:30:13 -07002996
2997 // Try to share structs for different layouts, but not yet for other
2998 // kinds of qualification (primarily not yet including interpolant qualification).
John Kessenichf2b7f332016-09-01 17:05:23 -06002999 if (! HasNonLayoutQualifiers(type, qualifier))
John Kessenich6090df02016-06-30 21:18:02 -06003000 spvType = structMap[explicitLayout][qualifier.layoutMatrix][glslangMembers];
John Kesseniche0b6cad2015-12-24 10:30:13 -07003001 if (spvType != spv::NoResult)
John Kessenich140f3df2015-06-26 16:58:36 -06003002 break;
3003
3004 // else, we haven't seen it...
John Kessenich140f3df2015-06-26 16:58:36 -06003005 if (type.getBasicType() == glslang::EbtBlock)
John Kessenich6090df02016-06-30 21:18:02 -06003006 memberRemapper[glslangMembers].resize(glslangMembers->size());
3007 spvType = convertGlslangStructToSpvType(type, glslangMembers, explicitLayout, qualifier);
John Kessenich140f3df2015-06-26 16:58:36 -06003008 }
3009 break;
3010 default:
John Kessenich55e7d112015-11-15 21:33:39 -07003011 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06003012 break;
3013 }
3014
3015 if (type.isMatrix())
3016 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows());
3017 else {
3018 // If this variable has a vector element count greater than 1, create a SPIR-V vector
3019 if (type.getVectorSize() > 1)
3020 spvType = builder.makeVectorType(spvType, type.getVectorSize());
3021 }
3022
3023 if (type.isArray()) {
John Kessenichc9e0a422015-12-29 21:27:24 -07003024 int stride = 0; // keep this 0 unless doing an explicit layout; 0 will mean no decoration, no stride
3025
John Kessenichc9a80832015-09-12 12:17:44 -06003026 // Do all but the outer dimension
John Kessenichc9e0a422015-12-29 21:27:24 -07003027 if (type.getArraySizes()->getNumDims() > 1) {
John Kessenichf8842e52016-01-04 19:22:56 -07003028 // We need to decorate array strides for types needing explicit layout, except blocks.
3029 if (explicitLayout != glslang::ElpNone && type.getBasicType() != glslang::EbtBlock) {
John Kessenichc9e0a422015-12-29 21:27:24 -07003030 // Use a dummy glslang type for querying internal strides of
3031 // arrays of arrays, but using just a one-dimensional array.
3032 glslang::TType simpleArrayType(type, 0); // deference type of the array
John Kessenich859b0342018-03-26 00:38:53 -06003033 while (simpleArrayType.getArraySizes()->getNumDims() > 1)
3034 simpleArrayType.getArraySizes()->dereference();
John Kessenichc9e0a422015-12-29 21:27:24 -07003035
3036 // Will compute the higher-order strides here, rather than making a whole
3037 // pile of types and doing repetitive recursion on their contents.
3038 stride = getArrayStride(simpleArrayType, explicitLayout, qualifier.layoutMatrix);
3039 }
John Kessenichf8842e52016-01-04 19:22:56 -07003040
3041 // make the arrays
John Kessenichc9e0a422015-12-29 21:27:24 -07003042 for (int dim = type.getArraySizes()->getNumDims() - 1; dim > 0; --dim) {
John Kessenich6c292d32016-02-15 20:58:50 -07003043 spvType = builder.makeArrayType(spvType, makeArraySizeId(*type.getArraySizes(), dim), stride);
John Kessenichc9e0a422015-12-29 21:27:24 -07003044 if (stride > 0)
3045 builder.addDecoration(spvType, spv::DecorationArrayStride, stride);
John Kessenich6c292d32016-02-15 20:58:50 -07003046 stride *= type.getArraySizes()->getDimSize(dim);
John Kessenichc9e0a422015-12-29 21:27:24 -07003047 }
3048 } else {
3049 // single-dimensional array, and don't yet have stride
3050
John Kessenichf8842e52016-01-04 19:22:56 -07003051 // We need to decorate array strides for types needing explicit layout, except blocks.
John Kessenichc9e0a422015-12-29 21:27:24 -07003052 if (explicitLayout != glslang::ElpNone && type.getBasicType() != glslang::EbtBlock)
3053 stride = getArrayStride(type, explicitLayout, qualifier.layoutMatrix);
John Kessenichc9a80832015-09-12 12:17:44 -06003054 }
John Kessenich31ed4832015-09-09 17:51:38 -06003055
John Kessenichead86222018-03-28 18:01:20 -06003056 // Do the outer dimension, which might not be known for a runtime-sized array.
3057 // (Unsized arrays that survive through linking will be runtime-sized arrays)
3058 if (type.isSizedArray())
John Kessenich6c292d32016-02-15 20:58:50 -07003059 spvType = builder.makeArrayType(spvType, makeArraySizeId(*type.getArraySizes(), 0), stride);
John Kessenich5611c6d2018-04-05 11:25:02 -06003060 else {
3061 if (!lastBufferBlockMember) {
3062 builder.addExtension("SPV_EXT_descriptor_indexing");
3063 builder.addCapability(spv::CapabilityRuntimeDescriptorArrayEXT);
3064 }
John Kessenichead86222018-03-28 18:01:20 -06003065 spvType = builder.makeRuntimeArray(spvType);
John Kessenich5611c6d2018-04-05 11:25:02 -06003066 }
John Kessenichc9e0a422015-12-29 21:27:24 -07003067 if (stride > 0)
3068 builder.addDecoration(spvType, spv::DecorationArrayStride, stride);
John Kessenich140f3df2015-06-26 16:58:36 -06003069 }
3070
3071 return spvType;
3072}
3073
John Kessenich0e737842017-03-24 18:38:16 -06003074// TODO: this functionality should exist at a higher level, in creating the AST
3075//
3076// Identify interface members that don't have their required extension turned on.
3077//
3078bool TGlslangToSpvTraverser::filterMember(const glslang::TType& member)
3079{
Chao Chen3c366992018-09-19 11:41:59 -07003080#ifdef NV_EXTENSIONS
John Kessenich0e737842017-03-24 18:38:16 -06003081 auto& extensions = glslangIntermediate->getRequestedExtensions();
3082
Rex Xubcf291a2017-03-29 23:01:36 +08003083 if (member.getFieldName() == "gl_SecondaryViewportMaskNV" &&
3084 extensions.find("GL_NV_stereo_view_rendering") == extensions.end())
3085 return true;
John Kessenich0e737842017-03-24 18:38:16 -06003086 if (member.getFieldName() == "gl_SecondaryPositionNV" &&
3087 extensions.find("GL_NV_stereo_view_rendering") == extensions.end())
3088 return true;
Chao Chen3c366992018-09-19 11:41:59 -07003089
3090 if (glslangIntermediate->getStage() != EShLangMeshNV) {
3091 if (member.getFieldName() == "gl_ViewportMask" &&
3092 extensions.find("GL_NV_viewport_array2") == extensions.end())
3093 return true;
3094 if (member.getFieldName() == "gl_PositionPerViewNV" &&
3095 extensions.find("GL_NVX_multiview_per_view_attributes") == extensions.end())
3096 return true;
3097 if (member.getFieldName() == "gl_ViewportMaskPerViewNV" &&
3098 extensions.find("GL_NVX_multiview_per_view_attributes") == extensions.end())
3099 return true;
3100 }
3101#endif
John Kessenich0e737842017-03-24 18:38:16 -06003102
3103 return false;
3104};
3105
John Kessenich6090df02016-06-30 21:18:02 -06003106// Do full recursive conversion of a glslang structure (or block) type to a SPIR-V Id.
3107// explicitLayout can be kept the same throughout the hierarchical recursive walk.
3108// Mutually recursive with convertGlslangToSpvType().
3109spv::Id TGlslangToSpvTraverser::convertGlslangStructToSpvType(const glslang::TType& type,
3110 const glslang::TTypeList* glslangMembers,
3111 glslang::TLayoutPacking explicitLayout,
3112 const glslang::TQualifier& qualifier)
3113{
3114 // Create a vector of struct types for SPIR-V to consume
3115 std::vector<spv::Id> spvMembers;
3116 int memberDelta = 0; // how much the member's index changes from glslang to SPIR-V, normally 0, except sometimes for blocks
John Kessenich6090df02016-06-30 21:18:02 -06003117 for (int i = 0; i < (int)glslangMembers->size(); i++) {
3118 glslang::TType& glslangMember = *(*glslangMembers)[i].type;
3119 if (glslangMember.hiddenMember()) {
3120 ++memberDelta;
3121 if (type.getBasicType() == glslang::EbtBlock)
3122 memberRemapper[glslangMembers][i] = -1;
3123 } else {
John Kessenich0e737842017-03-24 18:38:16 -06003124 if (type.getBasicType() == glslang::EbtBlock) {
John Kessenich6090df02016-06-30 21:18:02 -06003125 memberRemapper[glslangMembers][i] = i - memberDelta;
John Kessenich0e737842017-03-24 18:38:16 -06003126 if (filterMember(glslangMember))
3127 continue;
3128 }
John Kessenich6090df02016-06-30 21:18:02 -06003129 // modify just this child's view of the qualifier
3130 glslang::TQualifier memberQualifier = glslangMember.getQualifier();
3131 InheritQualifiers(memberQualifier, qualifier);
3132
John Kessenich7cdf3fc2017-06-04 13:22:39 -06003133 // manually inherit location
John Kessenich6090df02016-06-30 21:18:02 -06003134 if (! memberQualifier.hasLocation() && qualifier.hasLocation())
John Kessenich7cdf3fc2017-06-04 13:22:39 -06003135 memberQualifier.layoutLocation = qualifier.layoutLocation;
John Kessenich6090df02016-06-30 21:18:02 -06003136
3137 // recurse
John Kessenichead86222018-03-28 18:01:20 -06003138 bool lastBufferBlockMember = qualifier.storage == glslang::EvqBuffer &&
3139 i == (int)glslangMembers->size() - 1;
3140 spvMembers.push_back(
3141 convertGlslangToSpvType(glslangMember, explicitLayout, memberQualifier, lastBufferBlockMember));
John Kessenich6090df02016-06-30 21:18:02 -06003142 }
3143 }
3144
3145 // Make the SPIR-V type
3146 spv::Id spvType = builder.makeStructType(spvMembers, type.getTypeName().c_str());
John Kessenichf2b7f332016-09-01 17:05:23 -06003147 if (! HasNonLayoutQualifiers(type, qualifier))
John Kessenich6090df02016-06-30 21:18:02 -06003148 structMap[explicitLayout][qualifier.layoutMatrix][glslangMembers] = spvType;
3149
3150 // Decorate it
3151 decorateStructType(type, glslangMembers, explicitLayout, qualifier, spvType);
3152
3153 return spvType;
3154}
3155
3156void TGlslangToSpvTraverser::decorateStructType(const glslang::TType& type,
3157 const glslang::TTypeList* glslangMembers,
3158 glslang::TLayoutPacking explicitLayout,
3159 const glslang::TQualifier& qualifier,
3160 spv::Id spvType)
3161{
3162 // Name and decorate the non-hidden members
3163 int offset = -1;
3164 int locationOffset = 0; // for use within the members of this struct
3165 for (int i = 0; i < (int)glslangMembers->size(); i++) {
3166 glslang::TType& glslangMember = *(*glslangMembers)[i].type;
3167 int member = i;
John Kessenich0e737842017-03-24 18:38:16 -06003168 if (type.getBasicType() == glslang::EbtBlock) {
John Kessenich6090df02016-06-30 21:18:02 -06003169 member = memberRemapper[glslangMembers][i];
John Kessenich0e737842017-03-24 18:38:16 -06003170 if (filterMember(glslangMember))
3171 continue;
3172 }
John Kessenich6090df02016-06-30 21:18:02 -06003173
3174 // modify just this child's view of the qualifier
3175 glslang::TQualifier memberQualifier = glslangMember.getQualifier();
3176 InheritQualifiers(memberQualifier, qualifier);
3177
3178 // using -1 above to indicate a hidden member
John Kessenich5d610ee2018-03-07 18:05:55 -07003179 if (member < 0)
3180 continue;
3181
3182 builder.addMemberName(spvType, member, glslangMember.getFieldName().c_str());
3183 builder.addMemberDecoration(spvType, member,
3184 TranslateLayoutDecoration(glslangMember, memberQualifier.layoutMatrix));
3185 builder.addMemberDecoration(spvType, member, TranslatePrecisionDecoration(glslangMember));
3186 // Add interpolation and auxiliary storage decorations only to
3187 // top-level members of Input and Output storage classes
3188 if (type.getQualifier().storage == glslang::EvqVaryingIn ||
3189 type.getQualifier().storage == glslang::EvqVaryingOut) {
3190 if (type.getBasicType() == glslang::EbtBlock ||
3191 glslangIntermediate->getSource() == glslang::EShSourceHlsl) {
3192 builder.addMemberDecoration(spvType, member, TranslateInterpolationDecoration(memberQualifier));
3193 builder.addMemberDecoration(spvType, member, TranslateAuxiliaryStorageDecoration(memberQualifier));
Chao Chen3c366992018-09-19 11:41:59 -07003194#ifdef NV_EXTENSIONS
3195 addMeshNVDecoration(spvType, member, memberQualifier);
3196#endif
John Kessenich6090df02016-06-30 21:18:02 -06003197 }
John Kessenich5d610ee2018-03-07 18:05:55 -07003198 }
3199 builder.addMemberDecoration(spvType, member, TranslateInvariantDecoration(memberQualifier));
John Kessenich6090df02016-06-30 21:18:02 -06003200
John Kessenich5d610ee2018-03-07 18:05:55 -07003201 if (type.getBasicType() == glslang::EbtBlock &&
3202 qualifier.storage == glslang::EvqBuffer) {
3203 // Add memory decorations only to top-level members of shader storage block
3204 std::vector<spv::Decoration> memory;
Jeff Bolz36831c92018-09-05 10:11:41 -05003205 TranslateMemoryDecoration(memberQualifier, memory, glslangIntermediate->usingVulkanMemoryModel());
John Kessenich5d610ee2018-03-07 18:05:55 -07003206 for (unsigned int i = 0; i < memory.size(); ++i)
3207 builder.addMemberDecoration(spvType, member, memory[i]);
3208 }
John Kessenich6090df02016-06-30 21:18:02 -06003209
John Kessenich5d610ee2018-03-07 18:05:55 -07003210 // Location assignment was already completed correctly by the front end,
3211 // just track whether a member needs to be decorated.
3212 // Ignore member locations if the container is an array, as that's
3213 // ill-specified and decisions have been made to not allow this.
3214 if (! type.isArray() && memberQualifier.hasLocation())
3215 builder.addMemberDecoration(spvType, member, spv::DecorationLocation, memberQualifier.layoutLocation);
John Kessenich6090df02016-06-30 21:18:02 -06003216
John Kessenich5d610ee2018-03-07 18:05:55 -07003217 if (qualifier.hasLocation()) // track for upcoming inheritance
3218 locationOffset += glslangIntermediate->computeTypeLocationSize(
3219 glslangMember, glslangIntermediate->getStage());
John Kessenich2f47bc92016-06-30 21:47:35 -06003220
John Kessenich5d610ee2018-03-07 18:05:55 -07003221 // component, XFB, others
3222 if (glslangMember.getQualifier().hasComponent())
3223 builder.addMemberDecoration(spvType, member, spv::DecorationComponent,
3224 glslangMember.getQualifier().layoutComponent);
3225 if (glslangMember.getQualifier().hasXfbOffset())
3226 builder.addMemberDecoration(spvType, member, spv::DecorationOffset,
3227 glslangMember.getQualifier().layoutXfbOffset);
3228 else if (explicitLayout != glslang::ElpNone) {
3229 // figure out what to do with offset, which is accumulating
3230 int nextOffset;
3231 updateMemberOffset(type, glslangMember, offset, nextOffset, explicitLayout, memberQualifier.layoutMatrix);
3232 if (offset >= 0)
3233 builder.addMemberDecoration(spvType, member, spv::DecorationOffset, offset);
3234 offset = nextOffset;
3235 }
John Kessenich6090df02016-06-30 21:18:02 -06003236
John Kessenich5d610ee2018-03-07 18:05:55 -07003237 if (glslangMember.isMatrix() && explicitLayout != glslang::ElpNone)
3238 builder.addMemberDecoration(spvType, member, spv::DecorationMatrixStride,
3239 getMatrixStride(glslangMember, explicitLayout, memberQualifier.layoutMatrix));
John Kessenich6090df02016-06-30 21:18:02 -06003240
John Kessenich5d610ee2018-03-07 18:05:55 -07003241 // built-in variable decorations
3242 spv::BuiltIn builtIn = TranslateBuiltInDecoration(glslangMember.getQualifier().builtIn, true);
3243 if (builtIn != spv::BuiltInMax)
3244 builder.addMemberDecoration(spvType, member, spv::DecorationBuiltIn, (int)builtIn);
chaoc771d89f2017-01-13 01:10:53 -08003245
John Kessenich5611c6d2018-04-05 11:25:02 -06003246 // nonuniform
3247 builder.addMemberDecoration(spvType, member, TranslateNonUniformDecoration(glslangMember.getQualifier()));
3248
John Kessenichead86222018-03-28 18:01:20 -06003249 if (glslangIntermediate->getHlslFunctionality1() && memberQualifier.semanticName != nullptr) {
3250 builder.addExtension("SPV_GOOGLE_hlsl_functionality1");
3251 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationHlslSemanticGOOGLE,
3252 memberQualifier.semanticName);
3253 }
3254
chaoc771d89f2017-01-13 01:10:53 -08003255#ifdef NV_EXTENSIONS
John Kessenich5d610ee2018-03-07 18:05:55 -07003256 if (builtIn == spv::BuiltInLayer) {
3257 // SPV_NV_viewport_array2 extension
3258 if (glslangMember.getQualifier().layoutViewportRelative){
3259 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationViewportRelativeNV);
3260 builder.addCapability(spv::CapabilityShaderViewportMaskNV);
3261 builder.addExtension(spv::E_SPV_NV_viewport_array2);
chaoc771d89f2017-01-13 01:10:53 -08003262 }
John Kessenich5d610ee2018-03-07 18:05:55 -07003263 if (glslangMember.getQualifier().layoutSecondaryViewportRelativeOffset != -2048){
3264 builder.addMemberDecoration(spvType, member,
3265 (spv::Decoration)spv::DecorationSecondaryViewportRelativeNV,
3266 glslangMember.getQualifier().layoutSecondaryViewportRelativeOffset);
3267 builder.addCapability(spv::CapabilityShaderStereoViewNV);
3268 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
chaocdf3956c2017-02-14 14:52:34 -08003269 }
John Kessenich5d610ee2018-03-07 18:05:55 -07003270 }
3271 if (glslangMember.getQualifier().layoutPassthrough) {
3272 builder.addMemberDecoration(spvType, member, (spv::Decoration)spv::DecorationPassthroughNV);
3273 builder.addCapability(spv::CapabilityGeometryShaderPassthroughNV);
3274 builder.addExtension(spv::E_SPV_NV_geometry_shader_passthrough);
3275 }
chaoc771d89f2017-01-13 01:10:53 -08003276#endif
John Kessenich6090df02016-06-30 21:18:02 -06003277 }
3278
3279 // Decorate the structure
John Kessenich5d610ee2018-03-07 18:05:55 -07003280 builder.addDecoration(spvType, TranslateLayoutDecoration(type, qualifier.layoutMatrix));
3281 builder.addDecoration(spvType, TranslateBlockDecoration(type, glslangIntermediate->usingStorageBuffer()));
John Kessenich6090df02016-06-30 21:18:02 -06003282 if (type.getQualifier().hasStream() && glslangIntermediate->isMultiStream()) {
3283 builder.addCapability(spv::CapabilityGeometryStreams);
3284 builder.addDecoration(spvType, spv::DecorationStream, type.getQualifier().layoutStream);
3285 }
John Kessenich6090df02016-06-30 21:18:02 -06003286}
3287
John Kessenich6c292d32016-02-15 20:58:50 -07003288// Turn the expression forming the array size into an id.
3289// This is not quite trivial, because of specialization constants.
3290// Sometimes, a raw constant is turned into an Id, and sometimes
3291// a specialization constant expression is.
3292spv::Id TGlslangToSpvTraverser::makeArraySizeId(const glslang::TArraySizes& arraySizes, int dim)
3293{
3294 // First, see if this is sized with a node, meaning a specialization constant:
3295 glslang::TIntermTyped* specNode = arraySizes.getDimNode(dim);
3296 if (specNode != nullptr) {
3297 builder.clearAccessChain();
3298 specNode->traverse(this);
3299 return accessChainLoad(specNode->getAsTyped()->getType());
3300 }
qining25262b32016-05-06 17:25:16 -04003301
John Kessenich6c292d32016-02-15 20:58:50 -07003302 // Otherwise, need a compile-time (front end) size, get it:
3303 int size = arraySizes.getDimSize(dim);
3304 assert(size > 0);
3305 return builder.makeUintConstant(size);
3306}
3307
John Kessenich103bef92016-02-08 21:38:15 -07003308// Wrap the builder's accessChainLoad to:
3309// - localize handling of RelaxedPrecision
3310// - use the SPIR-V inferred type instead of another conversion of the glslang type
3311// (avoids unnecessary work and possible type punning for structures)
3312// - do conversion of concrete to abstract type
John Kessenich32cfd492016-02-02 12:37:46 -07003313spv::Id TGlslangToSpvTraverser::accessChainLoad(const glslang::TType& type)
3314{
John Kessenich103bef92016-02-08 21:38:15 -07003315 spv::Id nominalTypeId = builder.accessChainGetInferredType();
Jeff Bolz36831c92018-09-05 10:11:41 -05003316
3317 spv::Builder::AccessChain::CoherentFlags coherentFlags = builder.getAccessChain().coherentFlags;
3318 coherentFlags |= TranslateCoherent(type);
3319
John Kessenich5611c6d2018-04-05 11:25:02 -06003320 spv::Id loadedId = builder.accessChainLoad(TranslatePrecisionDecoration(type),
Jeff Bolz36831c92018-09-05 10:11:41 -05003321 TranslateNonUniformDecoration(type.getQualifier()),
3322 nominalTypeId,
3323 spv::MemoryAccessMask(TranslateMemoryAccess(coherentFlags) & ~spv::MemoryAccessMakePointerAvailableKHRMask),
3324 TranslateMemoryScope(coherentFlags));
John Kessenich103bef92016-02-08 21:38:15 -07003325
3326 // Need to convert to abstract types when necessary
Rex Xu27253232016-02-23 17:51:09 +08003327 if (type.getBasicType() == glslang::EbtBool) {
3328 if (builder.isScalarType(nominalTypeId)) {
3329 // Conversion for bool
3330 spv::Id boolType = builder.makeBoolType();
3331 if (nominalTypeId != boolType)
3332 loadedId = builder.createBinOp(spv::OpINotEqual, boolType, loadedId, builder.makeUintConstant(0));
3333 } else if (builder.isVectorType(nominalTypeId)) {
3334 // Conversion for bvec
3335 int vecSize = builder.getNumTypeComponents(nominalTypeId);
3336 spv::Id bvecType = builder.makeVectorType(builder.makeBoolType(), vecSize);
3337 if (nominalTypeId != bvecType)
3338 loadedId = builder.createBinOp(spv::OpINotEqual, bvecType, loadedId, makeSmearedConstant(builder.makeUintConstant(0), vecSize));
3339 }
3340 }
John Kessenich103bef92016-02-08 21:38:15 -07003341
3342 return loadedId;
John Kessenich32cfd492016-02-02 12:37:46 -07003343}
3344
Rex Xu27253232016-02-23 17:51:09 +08003345// Wrap the builder's accessChainStore to:
3346// - do conversion of concrete to abstract type
John Kessenich4bf71552016-09-02 11:20:21 -06003347//
3348// Implicitly uses the existing builder.accessChain as the storage target.
Rex Xu27253232016-02-23 17:51:09 +08003349void TGlslangToSpvTraverser::accessChainStore(const glslang::TType& type, spv::Id rvalue)
3350{
3351 // Need to convert to abstract types when necessary
3352 if (type.getBasicType() == glslang::EbtBool) {
3353 spv::Id nominalTypeId = builder.accessChainGetInferredType();
3354
3355 if (builder.isScalarType(nominalTypeId)) {
3356 // Conversion for bool
3357 spv::Id boolType = builder.makeBoolType();
John Kessenichb6cabc42017-05-19 23:29:50 -06003358 if (nominalTypeId != boolType) {
3359 // keep these outside arguments, for determinant order-of-evaluation
3360 spv::Id one = builder.makeUintConstant(1);
3361 spv::Id zero = builder.makeUintConstant(0);
3362 rvalue = builder.createTriOp(spv::OpSelect, nominalTypeId, rvalue, one, zero);
3363 } else if (builder.getTypeId(rvalue) != boolType)
John Kessenich80f92a12017-05-19 23:00:13 -06003364 rvalue = builder.createBinOp(spv::OpINotEqual, boolType, rvalue, builder.makeUintConstant(0));
Rex Xu27253232016-02-23 17:51:09 +08003365 } else if (builder.isVectorType(nominalTypeId)) {
3366 // Conversion for bvec
3367 int vecSize = builder.getNumTypeComponents(nominalTypeId);
3368 spv::Id bvecType = builder.makeVectorType(builder.makeBoolType(), vecSize);
John Kessenichb6cabc42017-05-19 23:29:50 -06003369 if (nominalTypeId != bvecType) {
3370 // keep these outside arguments, for determinant order-of-evaluation
John Kessenich7b8c3862017-05-19 23:44:51 -06003371 spv::Id one = makeSmearedConstant(builder.makeUintConstant(1), vecSize);
3372 spv::Id zero = makeSmearedConstant(builder.makeUintConstant(0), vecSize);
3373 rvalue = builder.createTriOp(spv::OpSelect, nominalTypeId, rvalue, one, zero);
John Kessenichb6cabc42017-05-19 23:29:50 -06003374 } else if (builder.getTypeId(rvalue) != bvecType)
John Kessenich80f92a12017-05-19 23:00:13 -06003375 rvalue = builder.createBinOp(spv::OpINotEqual, bvecType, rvalue,
3376 makeSmearedConstant(builder.makeUintConstant(0), vecSize));
Rex Xu27253232016-02-23 17:51:09 +08003377 }
3378 }
3379
Jeff Bolz36831c92018-09-05 10:11:41 -05003380 spv::Builder::AccessChain::CoherentFlags coherentFlags = builder.getAccessChain().coherentFlags;
3381 coherentFlags |= TranslateCoherent(type);
3382
3383 builder.accessChainStore(rvalue,
3384 spv::MemoryAccessMask(TranslateMemoryAccess(coherentFlags) & ~spv::MemoryAccessMakePointerVisibleKHRMask),
3385 TranslateMemoryScope(coherentFlags));
Rex Xu27253232016-02-23 17:51:09 +08003386}
3387
John Kessenich4bf71552016-09-02 11:20:21 -06003388// For storing when types match at the glslang level, but not might match at the
3389// SPIR-V level.
3390//
3391// This especially happens when a single glslang type expands to multiple
John Kesseniched33e052016-10-06 12:59:51 -06003392// SPIR-V types, like a struct that is used in a member-undecorated way as well
John Kessenich4bf71552016-09-02 11:20:21 -06003393// as in a member-decorated way.
3394//
3395// NOTE: This function can handle any store request; if it's not special it
3396// simplifies to a simple OpStore.
3397//
3398// Implicitly uses the existing builder.accessChain as the storage target.
3399void TGlslangToSpvTraverser::multiTypeStore(const glslang::TType& type, spv::Id rValue)
3400{
John Kessenichb3e24e42016-09-11 12:33:43 -06003401 // we only do the complex path here if it's an aggregate
3402 if (! type.isStruct() && ! type.isArray()) {
John Kessenich4bf71552016-09-02 11:20:21 -06003403 accessChainStore(type, rValue);
3404 return;
3405 }
3406
John Kessenichb3e24e42016-09-11 12:33:43 -06003407 // and, it has to be a case of type aliasing
John Kessenich4bf71552016-09-02 11:20:21 -06003408 spv::Id rType = builder.getTypeId(rValue);
3409 spv::Id lValue = builder.accessChainGetLValue();
3410 spv::Id lType = builder.getContainedTypeId(builder.getTypeId(lValue));
3411 if (lType == rType) {
3412 accessChainStore(type, rValue);
3413 return;
3414 }
3415
John Kessenichb3e24e42016-09-11 12:33:43 -06003416 // Recursively (as needed) copy an aggregate type to a different aggregate type,
John Kessenich4bf71552016-09-02 11:20:21 -06003417 // where the two types were the same type in GLSL. This requires member
3418 // by member copy, recursively.
3419
John Kessenichb3e24e42016-09-11 12:33:43 -06003420 // If an array, copy element by element.
3421 if (type.isArray()) {
3422 glslang::TType glslangElementType(type, 0);
3423 spv::Id elementRType = builder.getContainedTypeId(rType);
3424 for (int index = 0; index < type.getOuterArraySize(); ++index) {
3425 // get the source member
3426 spv::Id elementRValue = builder.createCompositeExtract(rValue, elementRType, index);
John Kessenich4bf71552016-09-02 11:20:21 -06003427
John Kessenichb3e24e42016-09-11 12:33:43 -06003428 // set up the target storage
3429 builder.clearAccessChain();
3430 builder.setAccessChainLValue(lValue);
Jeff Bolz36831c92018-09-05 10:11:41 -05003431 builder.accessChainPush(builder.makeIntConstant(index), TranslateCoherent(type));
John Kessenich4bf71552016-09-02 11:20:21 -06003432
John Kessenichb3e24e42016-09-11 12:33:43 -06003433 // store the member
3434 multiTypeStore(glslangElementType, elementRValue);
3435 }
3436 } else {
3437 assert(type.isStruct());
John Kessenich4bf71552016-09-02 11:20:21 -06003438
John Kessenichb3e24e42016-09-11 12:33:43 -06003439 // loop over structure members
3440 const glslang::TTypeList& members = *type.getStruct();
3441 for (int m = 0; m < (int)members.size(); ++m) {
3442 const glslang::TType& glslangMemberType = *members[m].type;
3443
3444 // get the source member
3445 spv::Id memberRType = builder.getContainedTypeId(rType, m);
3446 spv::Id memberRValue = builder.createCompositeExtract(rValue, memberRType, m);
3447
3448 // set up the target storage
3449 builder.clearAccessChain();
3450 builder.setAccessChainLValue(lValue);
Jeff Bolz36831c92018-09-05 10:11:41 -05003451 builder.accessChainPush(builder.makeIntConstant(m), TranslateCoherent(type));
John Kessenichb3e24e42016-09-11 12:33:43 -06003452
3453 // store the member
3454 multiTypeStore(glslangMemberType, memberRValue);
3455 }
John Kessenich4bf71552016-09-02 11:20:21 -06003456 }
3457}
3458
John Kessenichf85e8062015-12-19 13:57:10 -07003459// Decide whether or not this type should be
3460// decorated with offsets and strides, and if so
3461// whether std140 or std430 rules should be applied.
3462glslang::TLayoutPacking TGlslangToSpvTraverser::getExplicitLayout(const glslang::TType& type) const
John Kessenich31ed4832015-09-09 17:51:38 -06003463{
John Kessenichf85e8062015-12-19 13:57:10 -07003464 // has to be a block
3465 if (type.getBasicType() != glslang::EbtBlock)
3466 return glslang::ElpNone;
3467
Chao Chen3c366992018-09-19 11:41:59 -07003468 // has to be a uniform or buffer block or task in/out blocks
John Kessenichf85e8062015-12-19 13:57:10 -07003469 if (type.getQualifier().storage != glslang::EvqUniform &&
Chao Chen3c366992018-09-19 11:41:59 -07003470 type.getQualifier().storage != glslang::EvqBuffer &&
3471 !type.getQualifier().isTaskMemory())
John Kessenichf85e8062015-12-19 13:57:10 -07003472 return glslang::ElpNone;
3473
3474 // return the layout to use
3475 switch (type.getQualifier().layoutPacking) {
3476 case glslang::ElpStd140:
3477 case glslang::ElpStd430:
Jeff Bolz7da39ed2018-11-14 09:30:53 -06003478 case glslang::ElpScalar:
John Kessenichf85e8062015-12-19 13:57:10 -07003479 return type.getQualifier().layoutPacking;
3480 default:
3481 return glslang::ElpNone;
3482 }
John Kessenich31ed4832015-09-09 17:51:38 -06003483}
3484
Jason Ekstrand54aedf12015-09-05 09:50:58 -07003485// Given an array type, returns the integer stride required for that array
John Kessenich3ac051e2015-12-20 11:29:16 -07003486int TGlslangToSpvTraverser::getArrayStride(const glslang::TType& arrayType, glslang::TLayoutPacking explicitLayout, glslang::TLayoutMatrix matrixLayout)
Jason Ekstrand54aedf12015-09-05 09:50:58 -07003487{
Jason Ekstrand54aedf12015-09-05 09:50:58 -07003488 int size;
John Kessenich49987892015-12-29 17:11:44 -07003489 int stride;
Jeff Bolz7da39ed2018-11-14 09:30:53 -06003490 glslangIntermediate->getMemberAlignment(arrayType, size, stride, explicitLayout, matrixLayout == glslang::ElmRowMajor);
John Kesseniche721f492015-12-06 19:17:49 -07003491
3492 return stride;
Jason Ekstrand54aedf12015-09-05 09:50:58 -07003493}
3494
John Kessenich49987892015-12-29 17:11:44 -07003495// 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 -07003496// when used as a member of an interface block
John Kessenich3ac051e2015-12-20 11:29:16 -07003497int TGlslangToSpvTraverser::getMatrixStride(const glslang::TType& matrixType, glslang::TLayoutPacking explicitLayout, glslang::TLayoutMatrix matrixLayout)
Jason Ekstrand54aedf12015-09-05 09:50:58 -07003498{
John Kessenich49987892015-12-29 17:11:44 -07003499 glslang::TType elementType;
3500 elementType.shallowCopy(matrixType);
3501 elementType.clearArraySizes();
3502
Jason Ekstrand54aedf12015-09-05 09:50:58 -07003503 int size;
John Kessenich49987892015-12-29 17:11:44 -07003504 int stride;
Jeff Bolz7da39ed2018-11-14 09:30:53 -06003505 glslangIntermediate->getMemberAlignment(elementType, size, stride, explicitLayout, matrixLayout == glslang::ElmRowMajor);
John Kessenich49987892015-12-29 17:11:44 -07003506
3507 return stride;
Jason Ekstrand54aedf12015-09-05 09:50:58 -07003508}
3509
John Kessenich5e4b1242015-08-06 22:53:06 -06003510// Given a member type of a struct, realign the current offset for it, and compute
3511// the next (not yet aligned) offset for the next member, which will get aligned
3512// on the next call.
3513// 'currentOffset' should be passed in already initialized, ready to modify, and reflecting
3514// the migration of data from nextOffset -> currentOffset. It should be -1 on the first call.
3515// -1 means a non-forced member offset (no decoration needed).
John Kessenich735d7e52017-07-13 11:39:16 -06003516void TGlslangToSpvTraverser::updateMemberOffset(const glslang::TType& structType, const glslang::TType& memberType, int& currentOffset, int& nextOffset,
John Kessenich3ac051e2015-12-20 11:29:16 -07003517 glslang::TLayoutPacking explicitLayout, glslang::TLayoutMatrix matrixLayout)
John Kessenich5e4b1242015-08-06 22:53:06 -06003518{
3519 // this will get a positive value when deemed necessary
3520 nextOffset = -1;
3521
John Kessenich5e4b1242015-08-06 22:53:06 -06003522 // override anything in currentOffset with user-set offset
3523 if (memberType.getQualifier().hasOffset())
3524 currentOffset = memberType.getQualifier().layoutOffset;
3525
3526 // It could be that current linker usage in glslang updated all the layoutOffset,
3527 // in which case the following code does not matter. But, that's not quite right
3528 // once cross-compilation unit GLSL validation is done, as the original user
3529 // settings are needed in layoutOffset, and then the following will come into play.
3530
John Kessenichf85e8062015-12-19 13:57:10 -07003531 if (explicitLayout == glslang::ElpNone) {
John Kessenich5e4b1242015-08-06 22:53:06 -06003532 if (! memberType.getQualifier().hasOffset())
3533 currentOffset = -1;
3534
3535 return;
3536 }
3537
John Kessenichf85e8062015-12-19 13:57:10 -07003538 // Getting this far means we need explicit offsets
John Kessenich5e4b1242015-08-06 22:53:06 -06003539 if (currentOffset < 0)
3540 currentOffset = 0;
qining25262b32016-05-06 17:25:16 -04003541
John Kessenich5e4b1242015-08-06 22:53:06 -06003542 // Now, currentOffset is valid (either 0, or from a previous nextOffset),
3543 // but possibly not yet correctly aligned.
3544
3545 int memberSize;
John Kessenich49987892015-12-29 17:11:44 -07003546 int dummyStride;
Jeff Bolz7da39ed2018-11-14 09:30:53 -06003547 int memberAlignment = glslangIntermediate->getMemberAlignment(memberType, memberSize, dummyStride, explicitLayout, matrixLayout == glslang::ElmRowMajor);
John Kessenich4f1403e2017-04-05 17:38:20 -06003548
3549 // Adjust alignment for HLSL rules
John Kessenich735d7e52017-07-13 11:39:16 -06003550 // TODO: make this consistent in early phases of code:
3551 // adjusting this late means inconsistencies with earlier code, which for reflection is an issue
3552 // Until reflection is brought in sync with these adjustments, don't apply to $Global,
3553 // which is the most likely to rely on reflection, and least likely to rely implicit layouts
John Kesseniche7df8e02018-08-22 17:12:46 -06003554 if (glslangIntermediate->usingHlslOffsets() &&
John Kessenich735d7e52017-07-13 11:39:16 -06003555 ! memberType.isArray() && memberType.isVector() && structType.getTypeName().compare("$Global") != 0) {
John Kessenich4f1403e2017-04-05 17:38:20 -06003556 int dummySize;
3557 int componentAlignment = glslangIntermediate->getBaseAlignmentScalar(memberType, dummySize);
3558 if (componentAlignment <= 4)
3559 memberAlignment = componentAlignment;
3560 }
3561
3562 // Bump up to member alignment
John Kessenich5e4b1242015-08-06 22:53:06 -06003563 glslang::RoundToPow2(currentOffset, memberAlignment);
John Kessenich4f1403e2017-04-05 17:38:20 -06003564
3565 // Bump up to vec4 if there is a bad straddle
Jeff Bolz7da39ed2018-11-14 09:30:53 -06003566 if (explicitLayout != glslang::ElpScalar && glslangIntermediate->improperStraddle(memberType, memberSize, currentOffset))
John Kessenich4f1403e2017-04-05 17:38:20 -06003567 glslang::RoundToPow2(currentOffset, 16);
3568
John Kessenich5e4b1242015-08-06 22:53:06 -06003569 nextOffset = currentOffset + memberSize;
3570}
3571
David Netoa901ffe2016-06-08 14:11:40 +01003572void TGlslangToSpvTraverser::declareUseOfStructMember(const glslang::TTypeList& members, int glslangMember)
John Kessenichebb50532016-05-16 19:22:05 -06003573{
David Netoa901ffe2016-06-08 14:11:40 +01003574 const glslang::TBuiltInVariable glslangBuiltIn = members[glslangMember].type->getQualifier().builtIn;
3575 switch (glslangBuiltIn)
3576 {
3577 case glslang::EbvClipDistance:
3578 case glslang::EbvCullDistance:
3579 case glslang::EbvPointSize:
chaoc771d89f2017-01-13 01:10:53 -08003580#ifdef NV_EXTENSIONS
chaoc771d89f2017-01-13 01:10:53 -08003581 case glslang::EbvViewportMaskNV:
3582 case glslang::EbvSecondaryPositionNV:
3583 case glslang::EbvSecondaryViewportMaskNV:
chaocdf3956c2017-02-14 14:52:34 -08003584 case glslang::EbvPositionPerViewNV:
3585 case glslang::EbvViewportMaskPerViewNV:
Chao Chen3c366992018-09-19 11:41:59 -07003586 case glslang::EbvTaskCountNV:
3587 case glslang::EbvPrimitiveCountNV:
3588 case glslang::EbvPrimitiveIndicesNV:
3589 case glslang::EbvClipDistancePerViewNV:
3590 case glslang::EbvCullDistancePerViewNV:
3591 case glslang::EbvLayerPerViewNV:
3592 case glslang::EbvMeshViewCountNV:
3593 case glslang::EbvMeshViewIndicesNV:
chaoc771d89f2017-01-13 01:10:53 -08003594#endif
David Netoa901ffe2016-06-08 14:11:40 +01003595 // Generate the associated capability. Delegate to TranslateBuiltInDecoration.
3596 // Alternately, we could just call this for any glslang built-in, since the
3597 // capability already guards against duplicates.
3598 TranslateBuiltInDecoration(glslangBuiltIn, false);
3599 break;
3600 default:
3601 // Capabilities were already generated when the struct was declared.
3602 break;
3603 }
John Kessenichebb50532016-05-16 19:22:05 -06003604}
3605
John Kessenich6fccb3c2016-09-19 16:01:41 -06003606bool TGlslangToSpvTraverser::isShaderEntryPoint(const glslang::TIntermAggregate* node)
John Kessenich140f3df2015-06-26 16:58:36 -06003607{
John Kessenicheee9d532016-09-19 18:09:30 -06003608 return node->getName().compare(glslangIntermediate->getEntryPointMangledName().c_str()) == 0;
John Kessenich140f3df2015-06-26 16:58:36 -06003609}
3610
John Kessenichd41993d2017-09-10 15:21:05 -06003611// Does parameter need a place to keep writes, separate from the original?
John Kessenich6a14f782017-12-04 02:48:10 -07003612// Assumes called after originalParam(), which filters out block/buffer/opaque-based
3613// qualifiers such that we should have only in/out/inout/constreadonly here.
John Kessenichd3ed90b2018-05-04 11:43:03 -06003614bool TGlslangToSpvTraverser::writableParam(glslang::TStorageQualifier qualifier) const
John Kessenichd41993d2017-09-10 15:21:05 -06003615{
John Kessenich6a14f782017-12-04 02:48:10 -07003616 assert(qualifier == glslang::EvqIn ||
3617 qualifier == glslang::EvqOut ||
3618 qualifier == glslang::EvqInOut ||
3619 qualifier == glslang::EvqConstReadOnly);
John Kessenichd41993d2017-09-10 15:21:05 -06003620 return qualifier != glslang::EvqConstReadOnly;
3621}
3622
3623// Is parameter pass-by-original?
3624bool TGlslangToSpvTraverser::originalParam(glslang::TStorageQualifier qualifier, const glslang::TType& paramType,
3625 bool implicitThisParam)
3626{
3627 if (implicitThisParam) // implicit this
3628 return true;
3629 if (glslangIntermediate->getSource() == glslang::EShSourceHlsl)
John Kessenich6a14f782017-12-04 02:48:10 -07003630 return paramType.getBasicType() == glslang::EbtBlock;
John Kessenichd41993d2017-09-10 15:21:05 -06003631 return paramType.containsOpaque() || // sampler, etc.
3632 (paramType.getBasicType() == glslang::EbtBlock && qualifier == glslang::EvqBuffer); // SSBO
3633}
3634
John Kessenich140f3df2015-06-26 16:58:36 -06003635// Make all the functions, skeletally, without actually visiting their bodies.
3636void TGlslangToSpvTraverser::makeFunctions(const glslang::TIntermSequence& glslFunctions)
3637{
Jeff Bolz36831c92018-09-05 10:11:41 -05003638 const auto getParamDecorations = [](std::vector<spv::Decoration>& decorations, const glslang::TType& type, bool useVulkanMemoryModel) {
John Kessenichfad62972017-07-18 02:35:46 -06003639 spv::Decoration paramPrecision = TranslatePrecisionDecoration(type);
3640 if (paramPrecision != spv::NoPrecision)
3641 decorations.push_back(paramPrecision);
Jeff Bolz36831c92018-09-05 10:11:41 -05003642 TranslateMemoryDecoration(type.getQualifier(), decorations, useVulkanMemoryModel);
John Kessenichfad62972017-07-18 02:35:46 -06003643 };
3644
John Kessenich140f3df2015-06-26 16:58:36 -06003645 for (int f = 0; f < (int)glslFunctions.size(); ++f) {
3646 glslang::TIntermAggregate* glslFunction = glslFunctions[f]->getAsAggregate();
John Kessenich6fccb3c2016-09-19 16:01:41 -06003647 if (! glslFunction || glslFunction->getOp() != glslang::EOpFunction || isShaderEntryPoint(glslFunction))
John Kessenich140f3df2015-06-26 16:58:36 -06003648 continue;
3649
3650 // We're on a user function. Set up the basic interface for the function now,
John Kessenich4bf71552016-09-02 11:20:21 -06003651 // so that it's available to call. Translating the body will happen later.
John Kessenich140f3df2015-06-26 16:58:36 -06003652 //
qining25262b32016-05-06 17:25:16 -04003653 // Typically (except for a "const in" parameter), an address will be passed to the
John Kessenich140f3df2015-06-26 16:58:36 -06003654 // function. What it is an address of varies:
3655 //
John Kessenich4bf71552016-09-02 11:20:21 -06003656 // - "in" parameters not marked as "const" can be written to without modifying the calling
3657 // argument so that write needs to be to a copy, hence the address of a copy works.
John Kessenich140f3df2015-06-26 16:58:36 -06003658 //
3659 // - "const in" parameters can just be the r-value, as no writes need occur.
3660 //
John Kessenich4bf71552016-09-02 11:20:21 -06003661 // - "out" and "inout" arguments can't be done as pointers to the calling argument, because
3662 // 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 -06003663
3664 std::vector<spv::Id> paramTypes;
John Kessenichfad62972017-07-18 02:35:46 -06003665 std::vector<std::vector<spv::Decoration>> paramDecorations; // list of decorations per parameter
John Kessenich140f3df2015-06-26 16:58:36 -06003666 glslang::TIntermSequence& parameters = glslFunction->getSequence()[0]->getAsAggregate()->getSequence();
3667
John Kessenichfad62972017-07-18 02:35:46 -06003668 bool implicitThis = (int)parameters.size() > 0 && parameters[0]->getAsSymbolNode()->getName() ==
3669 glslangIntermediate->implicitThisName;
John Kessenich37789792017-03-21 23:56:40 -06003670
John Kessenichfad62972017-07-18 02:35:46 -06003671 paramDecorations.resize(parameters.size());
John Kessenich140f3df2015-06-26 16:58:36 -06003672 for (int p = 0; p < (int)parameters.size(); ++p) {
3673 const glslang::TType& paramType = parameters[p]->getAsTyped()->getType();
3674 spv::Id typeId = convertGlslangToSpvType(paramType);
John Kessenichd41993d2017-09-10 15:21:05 -06003675 if (originalParam(paramType.getQualifier().storage, paramType, implicitThis && p == 0))
John Kessenicha5c5fb62017-05-05 05:09:58 -06003676 typeId = builder.makePointer(TranslateStorageClass(paramType), typeId);
John Kessenichd41993d2017-09-10 15:21:05 -06003677 else if (writableParam(paramType.getQualifier().storage))
John Kessenich140f3df2015-06-26 16:58:36 -06003678 typeId = builder.makePointer(spv::StorageClassFunction, typeId);
3679 else
John Kessenich4bf71552016-09-02 11:20:21 -06003680 rValueParameters.insert(parameters[p]->getAsSymbolNode()->getId());
Jeff Bolz36831c92018-09-05 10:11:41 -05003681 getParamDecorations(paramDecorations[p], paramType, glslangIntermediate->usingVulkanMemoryModel());
John Kessenich140f3df2015-06-26 16:58:36 -06003682 paramTypes.push_back(typeId);
3683 }
3684
3685 spv::Block* functionBlock;
John Kessenich32cfd492016-02-02 12:37:46 -07003686 spv::Function *function = builder.makeFunctionEntry(TranslatePrecisionDecoration(glslFunction->getType()),
3687 convertGlslangToSpvType(glslFunction->getType()),
John Kessenichfad62972017-07-18 02:35:46 -06003688 glslFunction->getName().c_str(), paramTypes,
3689 paramDecorations, &functionBlock);
John Kessenich37789792017-03-21 23:56:40 -06003690 if (implicitThis)
3691 function->setImplicitThis();
John Kessenich140f3df2015-06-26 16:58:36 -06003692
3693 // Track function to emit/call later
3694 functionMap[glslFunction->getName().c_str()] = function;
3695
3696 // Set the parameter id's
3697 for (int p = 0; p < (int)parameters.size(); ++p) {
3698 symbolValues[parameters[p]->getAsSymbolNode()->getId()] = function->getParamId(p);
3699 // give a name too
3700 builder.addName(function->getParamId(p), parameters[p]->getAsSymbolNode()->getName().c_str());
3701 }
3702 }
3703}
3704
3705// Process all the initializers, while skipping the functions and link objects
3706void TGlslangToSpvTraverser::makeGlobalInitializers(const glslang::TIntermSequence& initializers)
3707{
3708 builder.setBuildPoint(shaderEntry->getLastBlock());
3709 for (int i = 0; i < (int)initializers.size(); ++i) {
3710 glslang::TIntermAggregate* initializer = initializers[i]->getAsAggregate();
3711 if (initializer && initializer->getOp() != glslang::EOpFunction && initializer->getOp() != glslang::EOpLinkerObjects) {
3712
3713 // We're on a top-level node that's not a function. Treat as an initializer, whose
John Kessenich6fccb3c2016-09-19 16:01:41 -06003714 // code goes into the beginning of the entry point.
John Kessenich140f3df2015-06-26 16:58:36 -06003715 initializer->traverse(this);
3716 }
3717 }
3718}
3719
3720// Process all the functions, while skipping initializers.
3721void TGlslangToSpvTraverser::visitFunctions(const glslang::TIntermSequence& glslFunctions)
3722{
3723 for (int f = 0; f < (int)glslFunctions.size(); ++f) {
3724 glslang::TIntermAggregate* node = glslFunctions[f]->getAsAggregate();
John Kessenich6a60c2f2016-12-08 21:01:59 -07003725 if (node && (node->getOp() == glslang::EOpFunction || node->getOp() == glslang::EOpLinkerObjects))
John Kessenich140f3df2015-06-26 16:58:36 -06003726 node->traverse(this);
3727 }
3728}
3729
3730void TGlslangToSpvTraverser::handleFunctionEntry(const glslang::TIntermAggregate* node)
3731{
qining25262b32016-05-06 17:25:16 -04003732 // SPIR-V functions should already be in the functionMap from the prepass
John Kessenich140f3df2015-06-26 16:58:36 -06003733 // that called makeFunctions().
John Kesseniched33e052016-10-06 12:59:51 -06003734 currentFunction = functionMap[node->getName().c_str()];
3735 spv::Block* functionBlock = currentFunction->getEntryBlock();
John Kessenich140f3df2015-06-26 16:58:36 -06003736 builder.setBuildPoint(functionBlock);
3737}
3738
Rex Xu04db3f52015-09-16 11:44:02 +08003739void TGlslangToSpvTraverser::translateArguments(const glslang::TIntermAggregate& node, std::vector<spv::Id>& arguments)
John Kessenich140f3df2015-06-26 16:58:36 -06003740{
Rex Xufc618912015-09-09 16:42:49 +08003741 const glslang::TIntermSequence& glslangArguments = node.getSequence();
Rex Xu48edadf2015-12-31 16:11:41 +08003742
3743 glslang::TSampler sampler = {};
3744 bool cubeCompare = false;
Rex Xu1e5d7b02016-11-29 17:36:31 +08003745#ifdef AMD_EXTENSIONS
3746 bool f16ShadowCompare = false;
3747#endif
Rex Xu5eafa472016-02-19 22:24:03 +08003748 if (node.isTexture() || node.isImage()) {
Rex Xu48edadf2015-12-31 16:11:41 +08003749 sampler = glslangArguments[0]->getAsTyped()->getType().getSampler();
3750 cubeCompare = sampler.dim == glslang::EsdCube && sampler.arrayed && sampler.shadow;
Rex Xu1e5d7b02016-11-29 17:36:31 +08003751#ifdef AMD_EXTENSIONS
3752 f16ShadowCompare = sampler.shadow && glslangArguments[1]->getAsTyped()->getType().getBasicType() == glslang::EbtFloat16;
3753#endif
Rex Xu48edadf2015-12-31 16:11:41 +08003754 }
3755
John Kessenich140f3df2015-06-26 16:58:36 -06003756 for (int i = 0; i < (int)glslangArguments.size(); ++i) {
3757 builder.clearAccessChain();
3758 glslangArguments[i]->traverse(this);
Rex Xufc618912015-09-09 16:42:49 +08003759
3760 // Special case l-value operands
3761 bool lvalue = false;
3762 switch (node.getOp()) {
3763 case glslang::EOpImageAtomicAdd:
3764 case glslang::EOpImageAtomicMin:
3765 case glslang::EOpImageAtomicMax:
3766 case glslang::EOpImageAtomicAnd:
3767 case glslang::EOpImageAtomicOr:
3768 case glslang::EOpImageAtomicXor:
3769 case glslang::EOpImageAtomicExchange:
3770 case glslang::EOpImageAtomicCompSwap:
Jeff Bolz36831c92018-09-05 10:11:41 -05003771 case glslang::EOpImageAtomicLoad:
3772 case glslang::EOpImageAtomicStore:
Rex Xufc618912015-09-09 16:42:49 +08003773 if (i == 0)
3774 lvalue = true;
3775 break;
Rex Xu5eafa472016-02-19 22:24:03 +08003776 case glslang::EOpSparseImageLoad:
3777 if ((sampler.ms && i == 3) || (! sampler.ms && i == 2))
3778 lvalue = true;
3779 break;
Rex Xu1e5d7b02016-11-29 17:36:31 +08003780#ifdef AMD_EXTENSIONS
3781 case glslang::EOpSparseTexture:
3782 if (((cubeCompare || f16ShadowCompare) && i == 3) || (! (cubeCompare || f16ShadowCompare) && i == 2))
3783 lvalue = true;
3784 break;
3785 case glslang::EOpSparseTextureClamp:
3786 if (((cubeCompare || f16ShadowCompare) && i == 4) || (! (cubeCompare || f16ShadowCompare) && i == 3))
3787 lvalue = true;
3788 break;
3789 case glslang::EOpSparseTextureLod:
3790 case glslang::EOpSparseTextureOffset:
3791 if ((f16ShadowCompare && i == 4) || (! f16ShadowCompare && i == 3))
3792 lvalue = true;
3793 break;
3794#else
Rex Xu48edadf2015-12-31 16:11:41 +08003795 case glslang::EOpSparseTexture:
3796 if ((cubeCompare && i == 3) || (! cubeCompare && i == 2))
3797 lvalue = true;
3798 break;
3799 case glslang::EOpSparseTextureClamp:
3800 if ((cubeCompare && i == 4) || (! cubeCompare && i == 3))
3801 lvalue = true;
3802 break;
3803 case glslang::EOpSparseTextureLod:
3804 case glslang::EOpSparseTextureOffset:
3805 if (i == 3)
3806 lvalue = true;
3807 break;
Rex Xu1e5d7b02016-11-29 17:36:31 +08003808#endif
Rex Xu48edadf2015-12-31 16:11:41 +08003809 case glslang::EOpSparseTextureFetch:
3810 if ((sampler.dim != glslang::EsdRect && i == 3) || (sampler.dim == glslang::EsdRect && i == 2))
3811 lvalue = true;
3812 break;
3813 case glslang::EOpSparseTextureFetchOffset:
3814 if ((sampler.dim != glslang::EsdRect && i == 4) || (sampler.dim == glslang::EsdRect && i == 3))
3815 lvalue = true;
3816 break;
Rex Xu1e5d7b02016-11-29 17:36:31 +08003817#ifdef AMD_EXTENSIONS
3818 case glslang::EOpSparseTextureLodOffset:
3819 case glslang::EOpSparseTextureGrad:
3820 case glslang::EOpSparseTextureOffsetClamp:
3821 if ((f16ShadowCompare && i == 5) || (! f16ShadowCompare && i == 4))
3822 lvalue = true;
3823 break;
3824 case glslang::EOpSparseTextureGradOffset:
3825 case glslang::EOpSparseTextureGradClamp:
3826 if ((f16ShadowCompare && i == 6) || (! f16ShadowCompare && i == 5))
3827 lvalue = true;
3828 break;
3829 case glslang::EOpSparseTextureGradOffsetClamp:
3830 if ((f16ShadowCompare && i == 7) || (! f16ShadowCompare && i == 6))
3831 lvalue = true;
3832 break;
3833#else
Rex Xu48edadf2015-12-31 16:11:41 +08003834 case glslang::EOpSparseTextureLodOffset:
3835 case glslang::EOpSparseTextureGrad:
3836 case glslang::EOpSparseTextureOffsetClamp:
3837 if (i == 4)
3838 lvalue = true;
3839 break;
3840 case glslang::EOpSparseTextureGradOffset:
3841 case glslang::EOpSparseTextureGradClamp:
3842 if (i == 5)
3843 lvalue = true;
3844 break;
3845 case glslang::EOpSparseTextureGradOffsetClamp:
3846 if (i == 6)
3847 lvalue = true;
3848 break;
Rex Xu1e5d7b02016-11-29 17:36:31 +08003849#endif
Rex Xu225e0fc2016-11-17 17:47:59 +08003850 case glslang::EOpSparseTextureGather:
Rex Xu48edadf2015-12-31 16:11:41 +08003851 if ((sampler.shadow && i == 3) || (! sampler.shadow && i == 2))
3852 lvalue = true;
3853 break;
3854 case glslang::EOpSparseTextureGatherOffset:
3855 case glslang::EOpSparseTextureGatherOffsets:
3856 if ((sampler.shadow && i == 4) || (! sampler.shadow && i == 3))
3857 lvalue = true;
3858 break;
Rex Xu225e0fc2016-11-17 17:47:59 +08003859#ifdef AMD_EXTENSIONS
3860 case glslang::EOpSparseTextureGatherLod:
3861 if (i == 3)
3862 lvalue = true;
3863 break;
3864 case glslang::EOpSparseTextureGatherLodOffset:
3865 case glslang::EOpSparseTextureGatherLodOffsets:
3866 if (i == 4)
3867 lvalue = true;
3868 break;
Rex Xu129799a2017-07-05 17:23:28 +08003869 case glslang::EOpSparseImageLoadLod:
3870 if (i == 3)
3871 lvalue = true;
3872 break;
Rex Xu225e0fc2016-11-17 17:47:59 +08003873#endif
Chao Chen3a137962018-09-19 11:41:27 -07003874#ifdef NV_EXTENSIONS
3875 case glslang::EOpImageSampleFootprintNV:
3876 if (i == 4)
3877 lvalue = true;
3878 break;
3879 case glslang::EOpImageSampleFootprintClampNV:
3880 case glslang::EOpImageSampleFootprintLodNV:
3881 if (i == 5)
3882 lvalue = true;
3883 break;
3884 case glslang::EOpImageSampleFootprintGradNV:
3885 if (i == 6)
3886 lvalue = true;
3887 break;
3888 case glslang::EOpImageSampleFootprintGradClampNV:
3889 if (i == 7)
3890 lvalue = true;
3891 break;
3892#endif
Rex Xufc618912015-09-09 16:42:49 +08003893 default:
3894 break;
3895 }
3896
Rex Xu6b86d492015-09-16 17:48:22 +08003897 if (lvalue)
Rex Xufc618912015-09-09 16:42:49 +08003898 arguments.push_back(builder.accessChainGetLValue());
Rex Xu6b86d492015-09-16 17:48:22 +08003899 else
John Kessenich32cfd492016-02-02 12:37:46 -07003900 arguments.push_back(accessChainLoad(glslangArguments[i]->getAsTyped()->getType()));
John Kessenich140f3df2015-06-26 16:58:36 -06003901 }
3902}
3903
John Kessenichfc51d282015-08-19 13:34:18 -06003904void TGlslangToSpvTraverser::translateArguments(glslang::TIntermUnary& node, std::vector<spv::Id>& arguments)
John Kessenich140f3df2015-06-26 16:58:36 -06003905{
John Kessenichfc51d282015-08-19 13:34:18 -06003906 builder.clearAccessChain();
3907 node.getOperand()->traverse(this);
John Kessenich32cfd492016-02-02 12:37:46 -07003908 arguments.push_back(accessChainLoad(node.getOperand()->getType()));
John Kessenichfc51d282015-08-19 13:34:18 -06003909}
John Kessenich140f3df2015-06-26 16:58:36 -06003910
John Kessenichfc51d282015-08-19 13:34:18 -06003911spv::Id TGlslangToSpvTraverser::createImageTextureFunctionCall(glslang::TIntermOperator* node)
3912{
John Kesseniche485c7a2017-05-31 18:50:53 -06003913 if (! node->isImage() && ! node->isTexture())
John Kessenichfc51d282015-08-19 13:34:18 -06003914 return spv::NoResult;
John Kesseniche485c7a2017-05-31 18:50:53 -06003915
greg-lunarg5d43c4a2018-12-07 17:36:33 -07003916 builder.setLine(node->getLoc().line, node->getLoc().getFilename());
John Kesseniche485c7a2017-05-31 18:50:53 -06003917
John Kessenichfc51d282015-08-19 13:34:18 -06003918 // Process a GLSL texturing op (will be SPV image)
Jeff Bolz36831c92018-09-05 10:11:41 -05003919
3920 const glslang::TType &imageType = node->getAsAggregate() ? node->getAsAggregate()->getSequence()[0]->getAsTyped()->getType()
3921 : node->getAsUnaryNode()->getOperand()->getAsTyped()->getType();
3922 const glslang::TSampler sampler = imageType.getSampler();
Rex Xu1e5d7b02016-11-29 17:36:31 +08003923#ifdef AMD_EXTENSIONS
3924 bool f16ShadowCompare = (sampler.shadow && node->getAsAggregate())
3925 ? node->getAsAggregate()->getSequence()[1]->getAsTyped()->getType().getBasicType() == glslang::EbtFloat16
3926 : false;
3927#endif
3928
John Kessenichfc51d282015-08-19 13:34:18 -06003929 std::vector<spv::Id> arguments;
3930 if (node->getAsAggregate())
Rex Xufc618912015-09-09 16:42:49 +08003931 translateArguments(*node->getAsAggregate(), arguments);
John Kessenichfc51d282015-08-19 13:34:18 -06003932 else
3933 translateArguments(*node->getAsUnaryNode(), arguments);
John Kessenichf6640762016-08-01 19:44:00 -06003934 spv::Decoration precision = TranslatePrecisionDecoration(node->getOperationPrecision());
John Kessenichfc51d282015-08-19 13:34:18 -06003935
3936 spv::Builder::TextureParameters params = { };
3937 params.sampler = arguments[0];
3938
Rex Xu04db3f52015-09-16 11:44:02 +08003939 glslang::TCrackedTextureOp cracked;
3940 node->crackTexture(sampler, cracked);
3941
amhagan05506bb2017-06-13 16:53:02 -04003942 const bool isUnsignedResult = node->getType().getBasicType() == glslang::EbtUint;
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07003943
John Kessenichfc51d282015-08-19 13:34:18 -06003944 // Check for queries
3945 if (cracked.query) {
Maciej Jesionowski7208a972016-10-12 15:40:37 +02003946 // OpImageQueryLod works on a sampled image, for other queries the image has to be extracted first
3947 if (node->getOp() != glslang::EOpTextureQueryLod && builder.isSampledImage(params.sampler))
John Kessenich33661452015-12-08 19:32:47 -07003948 params.sampler = builder.createUnaryOp(spv::OpImage, builder.getImageType(params.sampler), params.sampler);
Maciej Jesionowski7208a972016-10-12 15:40:37 +02003949
John Kessenichfc51d282015-08-19 13:34:18 -06003950 switch (node->getOp()) {
3951 case glslang::EOpImageQuerySize:
3952 case glslang::EOpTextureQuerySize:
John Kessenich140f3df2015-06-26 16:58:36 -06003953 if (arguments.size() > 1) {
3954 params.lod = arguments[1];
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07003955 return builder.createTextureQueryCall(spv::OpImageQuerySizeLod, params, isUnsignedResult);
John Kessenich140f3df2015-06-26 16:58:36 -06003956 } else
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07003957 return builder.createTextureQueryCall(spv::OpImageQuerySize, params, isUnsignedResult);
John Kessenichfc51d282015-08-19 13:34:18 -06003958 case glslang::EOpImageQuerySamples:
3959 case glslang::EOpTextureQuerySamples:
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07003960 return builder.createTextureQueryCall(spv::OpImageQuerySamples, params, isUnsignedResult);
John Kessenichfc51d282015-08-19 13:34:18 -06003961 case glslang::EOpTextureQueryLod:
3962 params.coords = arguments[1];
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07003963 return builder.createTextureQueryCall(spv::OpImageQueryLod, params, isUnsignedResult);
John Kessenichfc51d282015-08-19 13:34:18 -06003964 case glslang::EOpTextureQueryLevels:
steve-lunarg0b5c2ae2017-03-10 12:45:50 -07003965 return builder.createTextureQueryCall(spv::OpImageQueryLevels, params, isUnsignedResult);
Rex Xu48edadf2015-12-31 16:11:41 +08003966 case glslang::EOpSparseTexelsResident:
3967 return builder.createUnaryOp(spv::OpImageSparseTexelsResident, builder.makeBoolType(), arguments[0]);
John Kessenichfc51d282015-08-19 13:34:18 -06003968 default:
3969 assert(0);
3970 break;
John Kessenich140f3df2015-06-26 16:58:36 -06003971 }
John Kessenich140f3df2015-06-26 16:58:36 -06003972 }
3973
LoopDawg4425f242018-02-18 11:40:01 -07003974 int components = node->getType().getVectorSize();
3975
3976 if (node->getOp() == glslang::EOpTextureFetch) {
3977 // These must produce 4 components, per SPIR-V spec. We'll add a conversion constructor if needed.
3978 // This will only happen through the HLSL path for operator[], so we do not have to handle e.g.
3979 // the EOpTexture/Proj/Lod/etc family. It would be harmless to do so, but would need more logic
3980 // here around e.g. which ones return scalars or other types.
3981 components = 4;
3982 }
3983
3984 glslang::TType returnType(node->getType().getBasicType(), glslang::EvqTemporary, components);
3985
3986 auto resultType = [&returnType,this]{ return convertGlslangToSpvType(returnType); };
3987
Rex Xufc618912015-09-09 16:42:49 +08003988 // Check for image functions other than queries
3989 if (node->isImage()) {
John Kessenich149afc32018-08-14 13:31:43 -06003990 std::vector<spv::IdImmediate> operands;
John Kessenich56bab042015-09-16 10:54:31 -06003991 auto opIt = arguments.begin();
John Kessenich149afc32018-08-14 13:31:43 -06003992 spv::IdImmediate image = { true, *(opIt++) };
3993 operands.push_back(image);
John Kessenich6c292d32016-02-15 20:58:50 -07003994
3995 // Handle subpass operations
3996 // TODO: GLSL should change to have the "MS" only on the type rather than the
3997 // built-in function.
3998 if (cracked.subpass) {
3999 // add on the (0,0) coordinate
4000 spv::Id zero = builder.makeIntConstant(0);
4001 std::vector<spv::Id> comps;
4002 comps.push_back(zero);
4003 comps.push_back(zero);
John Kessenich149afc32018-08-14 13:31:43 -06004004 spv::IdImmediate coord = { true,
4005 builder.makeCompositeConstant(builder.makeVectorType(builder.makeIntType(32), 2), comps) };
4006 operands.push_back(coord);
John Kessenich6c292d32016-02-15 20:58:50 -07004007 if (sampler.ms) {
John Kessenich149afc32018-08-14 13:31:43 -06004008 spv::IdImmediate imageOperands = { false, spv::ImageOperandsSampleMask };
4009 operands.push_back(imageOperands);
4010 spv::IdImmediate imageOperand = { true, *(opIt++) };
4011 operands.push_back(imageOperand);
John Kessenich6c292d32016-02-15 20:58:50 -07004012 }
John Kessenichfe4e5722017-10-19 02:07:30 -06004013 spv::Id result = builder.createOp(spv::OpImageRead, resultType(), operands);
4014 builder.setPrecision(result, precision);
4015 return result;
John Kessenich6c292d32016-02-15 20:58:50 -07004016 }
4017
John Kessenich149afc32018-08-14 13:31:43 -06004018 spv::IdImmediate coord = { true, *(opIt++) };
4019 operands.push_back(coord);
Rex Xu129799a2017-07-05 17:23:28 +08004020#ifdef AMD_EXTENSIONS
4021 if (node->getOp() == glslang::EOpImageLoad || node->getOp() == glslang::EOpImageLoadLod) {
4022#else
John Kessenich56bab042015-09-16 10:54:31 -06004023 if (node->getOp() == glslang::EOpImageLoad) {
Rex Xu129799a2017-07-05 17:23:28 +08004024#endif
Jeff Bolz36831c92018-09-05 10:11:41 -05004025 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
John Kessenich55e7d112015-11-15 21:33:39 -07004026 if (sampler.ms) {
Jeff Bolz36831c92018-09-05 10:11:41 -05004027 mask = mask | spv::ImageOperandsSampleMask;
4028 }
Rex Xu129799a2017-07-05 17:23:28 +08004029#ifdef AMD_EXTENSIONS
Jeff Bolz36831c92018-09-05 10:11:41 -05004030 if (cracked.lod) {
Rex Xu129799a2017-07-05 17:23:28 +08004031 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
4032 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
Jeff Bolz36831c92018-09-05 10:11:41 -05004033 mask = mask | spv::ImageOperandsLodMask;
John Kessenich55e7d112015-11-15 21:33:39 -07004034 }
Jeff Bolz36831c92018-09-05 10:11:41 -05004035#endif
4036 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
4037 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelAvailableKHRMask);
4038 if (mask) {
4039 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
4040 operands.push_back(imageOperands);
4041 }
4042 if (mask & spv::ImageOperandsSampleMask) {
4043 spv::IdImmediate imageOperand = { true, *opIt++ };
4044 operands.push_back(imageOperand);
4045 }
4046#ifdef AMD_EXTENSIONS
4047 if (mask & spv::ImageOperandsLodMask) {
4048 spv::IdImmediate imageOperand = { true, *opIt++ };
4049 operands.push_back(imageOperand);
4050 }
4051#endif
4052 if (mask & spv::ImageOperandsMakeTexelVisibleKHRMask) {
4053 spv::IdImmediate imageOperand = { true, builder.makeUintConstant(TranslateMemoryScope(TranslateCoherent(imageType))) };
4054 operands.push_back(imageOperand);
4055 }
4056
John Kessenich149afc32018-08-14 13:31:43 -06004057 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
John Kessenich5d0fa972016-02-15 11:57:00 -07004058 builder.addCapability(spv::CapabilityStorageImageReadWithoutFormat);
John Kessenichfe4e5722017-10-19 02:07:30 -06004059
John Kessenich149afc32018-08-14 13:31:43 -06004060 std::vector<spv::Id> result(1, builder.createOp(spv::OpImageRead, resultType(), operands));
LoopDawg4425f242018-02-18 11:40:01 -07004061 builder.setPrecision(result[0], precision);
4062
4063 // If needed, add a conversion constructor to the proper size.
4064 if (components != node->getType().getVectorSize())
4065 result[0] = builder.createConstructor(precision, result, convertGlslangToSpvType(node->getType()));
4066
4067 return result[0];
Rex Xu129799a2017-07-05 17:23:28 +08004068#ifdef AMD_EXTENSIONS
4069 } else if (node->getOp() == glslang::EOpImageStore || node->getOp() == glslang::EOpImageStoreLod) {
4070#else
John Kessenich56bab042015-09-16 10:54:31 -06004071 } else if (node->getOp() == glslang::EOpImageStore) {
Rex Xu129799a2017-07-05 17:23:28 +08004072#endif
Rex Xu129799a2017-07-05 17:23:28 +08004073
Jeff Bolz36831c92018-09-05 10:11:41 -05004074 // Push the texel value before the operands
4075#ifdef AMD_EXTENSIONS
4076 if (sampler.ms || cracked.lod) {
4077#else
4078 if (sampler.ms) {
4079#endif
John Kessenich149afc32018-08-14 13:31:43 -06004080 spv::IdImmediate texel = { true, *(opIt + 1) };
4081 operands.push_back(texel);
John Kessenich149afc32018-08-14 13:31:43 -06004082 } else {
4083 spv::IdImmediate texel = { true, *opIt };
4084 operands.push_back(texel);
4085 }
Jeff Bolz36831c92018-09-05 10:11:41 -05004086
4087 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
4088 if (sampler.ms) {
4089 mask = mask | spv::ImageOperandsSampleMask;
4090 }
4091#ifdef AMD_EXTENSIONS
4092 if (cracked.lod) {
4093 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
4094 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
4095 mask = mask | spv::ImageOperandsLodMask;
4096 }
4097#endif
4098 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
4099 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelVisibleKHRMask);
4100 if (mask) {
4101 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
4102 operands.push_back(imageOperands);
4103 }
4104 if (mask & spv::ImageOperandsSampleMask) {
4105 spv::IdImmediate imageOperand = { true, *opIt++ };
4106 operands.push_back(imageOperand);
4107 }
4108#ifdef AMD_EXTENSIONS
4109 if (mask & spv::ImageOperandsLodMask) {
4110 spv::IdImmediate imageOperand = { true, *opIt++ };
4111 operands.push_back(imageOperand);
4112 }
4113#endif
4114 if (mask & spv::ImageOperandsMakeTexelAvailableKHRMask) {
4115 spv::IdImmediate imageOperand = { true, builder.makeUintConstant(TranslateMemoryScope(TranslateCoherent(imageType))) };
4116 operands.push_back(imageOperand);
4117 }
4118
John Kessenich56bab042015-09-16 10:54:31 -06004119 builder.createNoResultOp(spv::OpImageWrite, operands);
John Kessenich149afc32018-08-14 13:31:43 -06004120 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
John Kessenich5d0fa972016-02-15 11:57:00 -07004121 builder.addCapability(spv::CapabilityStorageImageWriteWithoutFormat);
John Kessenich56bab042015-09-16 10:54:31 -06004122 return spv::NoResult;
Rex Xu129799a2017-07-05 17:23:28 +08004123#ifdef AMD_EXTENSIONS
4124 } else if (node->getOp() == glslang::EOpSparseImageLoad || node->getOp() == glslang::EOpSparseImageLoadLod) {
4125#else
Rex Xu5eafa472016-02-19 22:24:03 +08004126 } else if (node->getOp() == glslang::EOpSparseImageLoad) {
Rex Xu129799a2017-07-05 17:23:28 +08004127#endif
Rex Xu5eafa472016-02-19 22:24:03 +08004128 builder.addCapability(spv::CapabilitySparseResidency);
John Kessenich149afc32018-08-14 13:31:43 -06004129 if (builder.getImageTypeFormat(builder.getImageType(operands.front().word)) == spv::ImageFormatUnknown)
Rex Xu5eafa472016-02-19 22:24:03 +08004130 builder.addCapability(spv::CapabilityStorageImageReadWithoutFormat);
4131
Jeff Bolz36831c92018-09-05 10:11:41 -05004132 spv::ImageOperandsMask mask = spv::ImageOperandsMaskNone;
Rex Xu5eafa472016-02-19 22:24:03 +08004133 if (sampler.ms) {
Jeff Bolz36831c92018-09-05 10:11:41 -05004134 mask = mask | spv::ImageOperandsSampleMask;
4135 }
Rex Xu129799a2017-07-05 17:23:28 +08004136#ifdef AMD_EXTENSIONS
Jeff Bolz36831c92018-09-05 10:11:41 -05004137 if (cracked.lod) {
Rex Xu129799a2017-07-05 17:23:28 +08004138 builder.addExtension(spv::E_SPV_AMD_shader_image_load_store_lod);
4139 builder.addCapability(spv::CapabilityImageReadWriteLodAMD);
4140
Jeff Bolz36831c92018-09-05 10:11:41 -05004141 mask = mask | spv::ImageOperandsLodMask;
4142 }
4143#endif
4144 mask = mask | TranslateImageOperands(TranslateCoherent(imageType));
4145 mask = (spv::ImageOperandsMask)(mask & ~spv::ImageOperandsMakeTexelAvailableKHRMask);
4146 if (mask) {
4147 spv::IdImmediate imageOperands = { false, (unsigned int)mask };
John Kessenich149afc32018-08-14 13:31:43 -06004148 operands.push_back(imageOperands);
Jeff Bolz36831c92018-09-05 10:11:41 -05004149 }
4150 if (mask & spv::ImageOperandsSampleMask) {
John Kessenich149afc32018-08-14 13:31:43 -06004151 spv::IdImmediate imageOperand = { true, *opIt++ };
4152 operands.push_back(imageOperand);
Jeff Bolz36831c92018-09-05 10:11:41 -05004153 }
4154#ifdef AMD_EXTENSIONS
4155 if (mask & spv::ImageOperandsLodMask) {
4156 spv::IdImmediate imageOperand = { true, *opIt++ };
4157 operands.push_back(imageOperand);
4158 }
Rex Xu129799a2017-07-05 17:23:28 +08004159#endif
Jeff Bolz36831c92018-09-05 10:11:41 -05004160 if (mask & spv::ImageOperandsMakeTexelVisibleKHRMask) {
4161 spv::IdImmediate imageOperand = { true, builder.makeUintConstant(TranslateMemoryScope(TranslateCoherent(imageType))) };
4162 operands.push_back(imageOperand);
Rex Xu5eafa472016-02-19 22:24:03 +08004163 }
4164
4165 // Create the return type that was a special structure
4166 spv::Id texelOut = *opIt;
John Kessenich8c8505c2016-07-26 12:50:38 -06004167 spv::Id typeId0 = resultType();
Rex Xu5eafa472016-02-19 22:24:03 +08004168 spv::Id typeId1 = builder.getDerefTypeId(texelOut);
4169 spv::Id resultTypeId = builder.makeStructResultType(typeId0, typeId1);
4170
4171 spv::Id resultId = builder.createOp(spv::OpImageSparseRead, resultTypeId, operands);
4172
4173 // Decode the return type
4174 builder.createStore(builder.createCompositeExtract(resultId, typeId1, 1), texelOut);
4175 return builder.createCompositeExtract(resultId, typeId0, 0);
John Kessenichcd261442016-01-22 09:54:12 -07004176 } else {
Rex Xu6b86d492015-09-16 17:48:22 +08004177 // Process image atomic operations
4178
4179 // GLSL "IMAGE_PARAMS" will involve in constructing an image texel pointer and this pointer,
4180 // as the first source operand, is required by SPIR-V atomic operations.
John Kessenich149afc32018-08-14 13:31:43 -06004181 // For non-MS, the sample value should be 0
4182 spv::IdImmediate sample = { true, sampler.ms ? *(opIt++) : builder.makeUintConstant(0) };
4183 operands.push_back(sample);
John Kessenich140f3df2015-06-26 16:58:36 -06004184
Jeff Bolz36831c92018-09-05 10:11:41 -05004185 spv::Id resultTypeId;
4186 // imageAtomicStore has a void return type so base the pointer type on
4187 // the type of the value operand.
4188 if (node->getOp() == glslang::EOpImageAtomicStore) {
4189 resultTypeId = builder.makePointer(spv::StorageClassImage, builder.getTypeId(operands[2].word));
4190 } else {
4191 resultTypeId = builder.makePointer(spv::StorageClassImage, resultType());
4192 }
John Kessenich56bab042015-09-16 10:54:31 -06004193 spv::Id pointer = builder.createOp(spv::OpImageTexelPointer, resultTypeId, operands);
Rex Xufc618912015-09-09 16:42:49 +08004194
4195 std::vector<spv::Id> operands;
4196 operands.push_back(pointer);
4197 for (; opIt != arguments.end(); ++opIt)
4198 operands.push_back(*opIt);
4199
John Kessenich8c8505c2016-07-26 12:50:38 -06004200 return createAtomicOperation(node->getOp(), precision, resultType(), operands, node->getBasicType());
Rex Xufc618912015-09-09 16:42:49 +08004201 }
4202 }
4203
amhagan05506bb2017-06-13 16:53:02 -04004204#ifdef AMD_EXTENSIONS
4205 // Check for fragment mask functions other than queries
4206 if (cracked.fragMask) {
4207 assert(sampler.ms);
4208
4209 auto opIt = arguments.begin();
4210 std::vector<spv::Id> operands;
4211
4212 // Extract the image if necessary
4213 if (builder.isSampledImage(params.sampler))
4214 params.sampler = builder.createUnaryOp(spv::OpImage, builder.getImageType(params.sampler), params.sampler);
4215
4216 operands.push_back(params.sampler);
4217 ++opIt;
4218
4219 if (sampler.isSubpass()) {
4220 // add on the (0,0) coordinate
4221 spv::Id zero = builder.makeIntConstant(0);
4222 std::vector<spv::Id> comps;
4223 comps.push_back(zero);
4224 comps.push_back(zero);
4225 operands.push_back(builder.makeCompositeConstant(builder.makeVectorType(builder.makeIntType(32), 2), comps));
4226 }
4227
4228 for (; opIt != arguments.end(); ++opIt)
4229 operands.push_back(*opIt);
4230
4231 spv::Op fragMaskOp = spv::OpNop;
4232 if (node->getOp() == glslang::EOpFragmentMaskFetch)
4233 fragMaskOp = spv::OpFragmentMaskFetchAMD;
4234 else if (node->getOp() == glslang::EOpFragmentFetch)
4235 fragMaskOp = spv::OpFragmentFetchAMD;
4236
4237 builder.addExtension(spv::E_SPV_AMD_shader_fragment_mask);
4238 builder.addCapability(spv::CapabilityFragmentMaskAMD);
4239 return builder.createOp(fragMaskOp, resultType(), operands);
4240 }
4241#endif
4242
Rex Xufc618912015-09-09 16:42:49 +08004243 // Check for texture functions other than queries
Rex Xu48edadf2015-12-31 16:11:41 +08004244 bool sparse = node->isSparseTexture();
Chao Chen3a137962018-09-19 11:41:27 -07004245#ifdef NV_EXTENSIONS
4246 bool imageFootprint = node->isImageFootprint();
4247#endif
4248
Rex Xu71519fe2015-11-11 15:35:47 +08004249 bool cubeCompare = sampler.dim == glslang::EsdCube && sampler.arrayed && sampler.shadow;
4250
John Kessenichfc51d282015-08-19 13:34:18 -06004251 // check for bias argument
4252 bool bias = false;
Rex Xu225e0fc2016-11-17 17:47:59 +08004253#ifdef AMD_EXTENSIONS
4254 if (! cracked.lod && ! cracked.grad && ! cracked.fetch && ! cubeCompare) {
4255#else
Rex Xu71519fe2015-11-11 15:35:47 +08004256 if (! cracked.lod && ! cracked.gather && ! cracked.grad && ! cracked.fetch && ! cubeCompare) {
Rex Xu225e0fc2016-11-17 17:47:59 +08004257#endif
John Kessenichfc51d282015-08-19 13:34:18 -06004258 int nonBiasArgCount = 2;
Rex Xu225e0fc2016-11-17 17:47:59 +08004259#ifdef AMD_EXTENSIONS
4260 if (cracked.gather)
4261 ++nonBiasArgCount; // comp argument should be present when bias argument is present
Rex Xu1e5d7b02016-11-29 17:36:31 +08004262
4263 if (f16ShadowCompare)
4264 ++nonBiasArgCount;
Rex Xu225e0fc2016-11-17 17:47:59 +08004265#endif
John Kessenichfc51d282015-08-19 13:34:18 -06004266 if (cracked.offset)
4267 ++nonBiasArgCount;
Rex Xu225e0fc2016-11-17 17:47:59 +08004268#ifdef AMD_EXTENSIONS
4269 else if (cracked.offsets)
4270 ++nonBiasArgCount;
4271#endif
John Kessenichfc51d282015-08-19 13:34:18 -06004272 if (cracked.grad)
4273 nonBiasArgCount += 2;
Rex Xu48edadf2015-12-31 16:11:41 +08004274 if (cracked.lodClamp)
4275 ++nonBiasArgCount;
4276 if (sparse)
4277 ++nonBiasArgCount;
Chao Chen3a137962018-09-19 11:41:27 -07004278#ifdef NV_EXTENSIONS
4279 if (imageFootprint)
4280 //Following three extra arguments
4281 // int granularity, bool coarse, out gl_TextureFootprint2DNV footprint
4282 nonBiasArgCount += 3;
4283#endif
John Kessenichfc51d282015-08-19 13:34:18 -06004284 if ((int)arguments.size() > nonBiasArgCount)
4285 bias = true;
4286 }
4287
John Kessenicha5c33d62016-06-02 23:45:21 -06004288 // See if the sampler param should really be just the SPV image part
4289 if (cracked.fetch) {
4290 // a fetch needs to have the image extracted first
4291 if (builder.isSampledImage(params.sampler))
4292 params.sampler = builder.createUnaryOp(spv::OpImage, builder.getImageType(params.sampler), params.sampler);
4293 }
4294
Rex Xu225e0fc2016-11-17 17:47:59 +08004295#ifdef AMD_EXTENSIONS
4296 if (cracked.gather) {
4297 const auto& sourceExtensions = glslangIntermediate->getRequestedExtensions();
4298 if (bias || cracked.lod ||
4299 sourceExtensions.find(glslang::E_GL_AMD_texture_gather_bias_lod) != sourceExtensions.end()) {
4300 builder.addExtension(spv::E_SPV_AMD_texture_gather_bias_lod);
Rex Xu301a2bc2017-06-14 23:09:39 +08004301 builder.addCapability(spv::CapabilityImageGatherBiasLodAMD);
Rex Xu225e0fc2016-11-17 17:47:59 +08004302 }
4303 }
4304#endif
4305
John Kessenichfc51d282015-08-19 13:34:18 -06004306 // set the rest of the arguments
John Kessenich55e7d112015-11-15 21:33:39 -07004307
John Kessenichfc51d282015-08-19 13:34:18 -06004308 params.coords = arguments[1];
4309 int extraArgs = 0;
John Kessenich019f08f2016-02-15 15:40:42 -07004310 bool noImplicitLod = false;
John Kessenich55e7d112015-11-15 21:33:39 -07004311
4312 // sort out where Dref is coming from
Rex Xu1e5d7b02016-11-29 17:36:31 +08004313#ifdef AMD_EXTENSIONS
4314 if (cubeCompare || f16ShadowCompare) {
4315#else
Rex Xu48edadf2015-12-31 16:11:41 +08004316 if (cubeCompare) {
Rex Xu1e5d7b02016-11-29 17:36:31 +08004317#endif
John Kessenichfc51d282015-08-19 13:34:18 -06004318 params.Dref = arguments[2];
Rex Xu48edadf2015-12-31 16:11:41 +08004319 ++extraArgs;
4320 } else if (sampler.shadow && cracked.gather) {
John Kessenich55e7d112015-11-15 21:33:39 -07004321 params.Dref = arguments[2];
4322 ++extraArgs;
4323 } else if (sampler.shadow) {
John Kessenichfc51d282015-08-19 13:34:18 -06004324 std::vector<spv::Id> indexes;
John Kessenich76d4dfc2016-06-16 12:43:23 -06004325 int dRefComp;
John Kessenichfc51d282015-08-19 13:34:18 -06004326 if (cracked.proj)
John Kessenich76d4dfc2016-06-16 12:43:23 -06004327 dRefComp = 2; // "The resulting 3rd component of P in the shadow forms is used as Dref"
John Kessenichfc51d282015-08-19 13:34:18 -06004328 else
John Kessenich76d4dfc2016-06-16 12:43:23 -06004329 dRefComp = builder.getNumComponents(params.coords) - 1;
4330 indexes.push_back(dRefComp);
John Kessenichfc51d282015-08-19 13:34:18 -06004331 params.Dref = builder.createCompositeExtract(params.coords, builder.getScalarTypeId(builder.getTypeId(params.coords)), indexes);
4332 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06004333
4334 // lod
John Kessenichfc51d282015-08-19 13:34:18 -06004335 if (cracked.lod) {
LoopDawgef94b1a2017-07-24 18:45:37 -06004336 params.lod = arguments[2 + extraArgs];
John Kessenichfc51d282015-08-19 13:34:18 -06004337 ++extraArgs;
Chao Chenbeae2252018-09-19 11:40:45 -07004338 } else if (glslangIntermediate->getStage() != EShLangFragment
4339#ifdef NV_EXTENSIONS
4340 // NV_compute_shader_derivatives layout qualifiers allow for implicit LODs
4341 && !(glslangIntermediate->getStage() == EShLangCompute &&
4342 (glslangIntermediate->getLayoutDerivativeModeNone() != glslang::LayoutDerivativeNone))
4343#endif
4344 ) {
John Kessenich019f08f2016-02-15 15:40:42 -07004345 // we need to invent the default lod for an explicit lod instruction for a non-fragment stage
4346 noImplicitLod = true;
4347 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06004348
4349 // multisample
John Kessenich019f08f2016-02-15 15:40:42 -07004350 if (sampler.ms) {
LoopDawgef94b1a2017-07-24 18:45:37 -06004351 params.sample = arguments[2 + extraArgs]; // For MS, "sample" should be specified
Rex Xu04db3f52015-09-16 11:44:02 +08004352 ++extraArgs;
John Kessenichfc51d282015-08-19 13:34:18 -06004353 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06004354
4355 // gradient
John Kessenichfc51d282015-08-19 13:34:18 -06004356 if (cracked.grad) {
4357 params.gradX = arguments[2 + extraArgs];
4358 params.gradY = arguments[3 + extraArgs];
4359 extraArgs += 2;
4360 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06004361
4362 // offset and offsets
John Kessenich55e7d112015-11-15 21:33:39 -07004363 if (cracked.offset) {
John Kessenichfc51d282015-08-19 13:34:18 -06004364 params.offset = arguments[2 + extraArgs];
4365 ++extraArgs;
John Kessenich55e7d112015-11-15 21:33:39 -07004366 } else if (cracked.offsets) {
4367 params.offsets = arguments[2 + extraArgs];
4368 ++extraArgs;
John Kessenichfc51d282015-08-19 13:34:18 -06004369 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06004370
4371 // lod clamp
Rex Xu48edadf2015-12-31 16:11:41 +08004372 if (cracked.lodClamp) {
4373 params.lodClamp = arguments[2 + extraArgs];
4374 ++extraArgs;
4375 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06004376 // sparse
Rex Xu48edadf2015-12-31 16:11:41 +08004377 if (sparse) {
4378 params.texelOut = arguments[2 + extraArgs];
4379 ++extraArgs;
4380 }
John Kessenich76d4dfc2016-06-16 12:43:23 -06004381
John Kessenich76d4dfc2016-06-16 12:43:23 -06004382 // gather component
John Kessenich55e7d112015-11-15 21:33:39 -07004383 if (cracked.gather && ! sampler.shadow) {
4384 // default component is 0, if missing, otherwise an argument
4385 if (2 + extraArgs < (int)arguments.size()) {
John Kessenich76d4dfc2016-06-16 12:43:23 -06004386 params.component = arguments[2 + extraArgs];
John Kessenich55e7d112015-11-15 21:33:39 -07004387 ++extraArgs;
Rex Xu225e0fc2016-11-17 17:47:59 +08004388 } else
John Kessenich76d4dfc2016-06-16 12:43:23 -06004389 params.component = builder.makeIntConstant(0);
Rex Xu225e0fc2016-11-17 17:47:59 +08004390 }
Chao Chen3a137962018-09-19 11:41:27 -07004391#ifdef NV_EXTENSIONS
4392 spv::Id resultStruct = spv::NoResult;
4393 if (imageFootprint) {
4394 //Following three extra arguments
4395 // int granularity, bool coarse, out gl_TextureFootprint2DNV footprint
4396 params.granularity = arguments[2 + extraArgs];
4397 params.coarse = arguments[3 + extraArgs];
4398 resultStruct = arguments[4 + extraArgs];
4399 extraArgs += 3;
4400 }
4401#endif
Rex Xu225e0fc2016-11-17 17:47:59 +08004402 // bias
4403 if (bias) {
4404 params.bias = arguments[2 + extraArgs];
4405 ++extraArgs;
John Kessenich55e7d112015-11-15 21:33:39 -07004406 }
John Kessenichfc51d282015-08-19 13:34:18 -06004407
Chao Chen3a137962018-09-19 11:41:27 -07004408#ifdef NV_EXTENSIONS
4409 if (imageFootprint) {
4410 builder.addExtension(spv::E_SPV_NV_shader_image_footprint);
4411 builder.addCapability(spv::CapabilityImageFootprintNV);
4412
4413
4414 //resultStructType(OpenGL type) contains 5 elements:
4415 //struct gl_TextureFootprint2DNV {
4416 // uvec2 anchor;
4417 // uvec2 offset;
4418 // uvec2 mask;
4419 // uint lod;
4420 // uint granularity;
4421 //};
4422 //or
4423 //struct gl_TextureFootprint3DNV {
4424 // uvec3 anchor;
4425 // uvec3 offset;
4426 // uvec2 mask;
4427 // uint lod;
4428 // uint granularity;
4429 //};
4430 spv::Id resultStructType = builder.getContainedTypeId(builder.getTypeId(resultStruct));
4431 assert(builder.isStructType(resultStructType));
4432
4433 //resType (SPIR-V type) contains 6 elements:
4434 //Member 0 must be a Boolean type scalar(LOD),
4435 //Member 1 must be a vector of integer type, whose Signedness operand is 0(anchor),
4436 //Member 2 must be a vector of integer type, whose Signedness operand is 0(offset),
4437 //Member 3 must be a vector of integer type, whose Signedness operand is 0(mask),
4438 //Member 4 must be a scalar of integer type, whose Signedness operand is 0(lod),
4439 //Member 5 must be a scalar of integer type, whose Signedness operand is 0(granularity).
4440 std::vector<spv::Id> members;
4441 members.push_back(resultType());
4442 for (int i = 0; i < 5; i++) {
4443 members.push_back(builder.getContainedTypeId(resultStructType, i));
4444 }
4445 spv::Id resType = builder.makeStructType(members, "ResType");
4446
4447 //call ImageFootprintNV
4448 spv::Id res = builder.createTextureCall(precision, resType, sparse, cracked.fetch, cracked.proj, cracked.gather, noImplicitLod, params);
4449
4450 //copy resType (SPIR-V type) to resultStructType(OpenGL type)
4451 for (int i = 0; i < 5; i++) {
4452 builder.clearAccessChain();
4453 builder.setAccessChainLValue(resultStruct);
4454
4455 //Accessing to a struct we created, no coherent flag is set
4456 spv::Builder::AccessChain::CoherentFlags flags;
4457 flags.clear();
4458
4459 builder.accessChainPush(builder.makeIntConstant(i), flags);
4460 builder.accessChainStore(builder.createCompositeExtract(res, builder.getContainedTypeId(resType, i+1), i+1));
4461 }
4462 return builder.createCompositeExtract(res, resultType(), 0);
4463 }
4464#endif
4465
John Kessenich65336482016-06-16 14:06:26 -06004466 // projective component (might not to move)
4467 // GLSL: "The texture coordinates consumed from P, not including the last component of P,
4468 // are divided by the last component of P."
4469 // SPIR-V: "... (u [, v] [, w], q)... It may be a vector larger than needed, but all
4470 // unused components will appear after all used components."
4471 if (cracked.proj) {
4472 int projSourceComp = builder.getNumComponents(params.coords) - 1;
4473 int projTargetComp;
4474 switch (sampler.dim) {
4475 case glslang::Esd1D: projTargetComp = 1; break;
4476 case glslang::Esd2D: projTargetComp = 2; break;
4477 case glslang::EsdRect: projTargetComp = 2; break;
4478 default: projTargetComp = projSourceComp; break;
4479 }
4480 // copy the projective coordinate if we have to
4481 if (projTargetComp != projSourceComp) {
John Kessenichecba76f2017-01-06 00:34:48 -07004482 spv::Id projComp = builder.createCompositeExtract(params.coords,
John Kessenich65336482016-06-16 14:06:26 -06004483 builder.getScalarTypeId(builder.getTypeId(params.coords)),
4484 projSourceComp);
4485 params.coords = builder.createCompositeInsert(projComp, params.coords,
4486 builder.getTypeId(params.coords), projTargetComp);
4487 }
4488 }
4489
Jeff Bolz36831c92018-09-05 10:11:41 -05004490 // nonprivate
4491 if (imageType.getQualifier().nonprivate) {
4492 params.nonprivate = true;
4493 }
4494
4495 // volatile
4496 if (imageType.getQualifier().volatil) {
4497 params.volatil = true;
4498 }
4499
St0fFa1184dd2018-04-09 21:08:14 +02004500 std::vector<spv::Id> result( 1,
LoopDawg4425f242018-02-18 11:40:01 -07004501 builder.createTextureCall(precision, resultType(), sparse, cracked.fetch, cracked.proj, cracked.gather, noImplicitLod, params)
St0fFa1184dd2018-04-09 21:08:14 +02004502 );
LoopDawg4425f242018-02-18 11:40:01 -07004503
4504 if (components != node->getType().getVectorSize())
4505 result[0] = builder.createConstructor(precision, result, convertGlslangToSpvType(node->getType()));
4506
4507 return result[0];
John Kessenich140f3df2015-06-26 16:58:36 -06004508}
4509
4510spv::Id TGlslangToSpvTraverser::handleUserFunctionCall(const glslang::TIntermAggregate* node)
4511{
4512 // Grab the function's pointer from the previously created function
4513 spv::Function* function = functionMap[node->getName().c_str()];
4514 if (! function)
4515 return 0;
4516
4517 const glslang::TIntermSequence& glslangArgs = node->getSequence();
4518 const glslang::TQualifierList& qualifiers = node->getQualifierList();
4519
4520 // See comments in makeFunctions() for details about the semantics for parameter passing.
4521 //
4522 // These imply we need a four step process:
4523 // 1. Evaluate the arguments
4524 // 2. Allocate and make copies of in, out, and inout arguments
4525 // 3. Make the call
4526 // 4. Copy back the results
4527
John Kessenichd3ed90b2018-05-04 11:43:03 -06004528 // 1. Evaluate the arguments and their types
John Kessenich140f3df2015-06-26 16:58:36 -06004529 std::vector<spv::Builder::AccessChain> lValues;
4530 std::vector<spv::Id> rValues;
John Kessenich32cfd492016-02-02 12:37:46 -07004531 std::vector<const glslang::TType*> argTypes;
John Kessenich140f3df2015-06-26 16:58:36 -06004532 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
John Kessenichd3ed90b2018-05-04 11:43:03 -06004533 argTypes.push_back(&glslangArgs[a]->getAsTyped()->getType());
John Kessenich140f3df2015-06-26 16:58:36 -06004534 // build l-value
4535 builder.clearAccessChain();
4536 glslangArgs[a]->traverse(this);
John Kessenichd41993d2017-09-10 15:21:05 -06004537 // keep outputs and pass-by-originals as l-values, evaluate others as r-values
John Kessenichd3ed90b2018-05-04 11:43:03 -06004538 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0) ||
John Kessenich6a14f782017-12-04 02:48:10 -07004539 writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06004540 // save l-value
4541 lValues.push_back(builder.getAccessChain());
4542 } else {
4543 // process r-value
John Kessenich32cfd492016-02-02 12:37:46 -07004544 rValues.push_back(accessChainLoad(*argTypes.back()));
John Kessenich140f3df2015-06-26 16:58:36 -06004545 }
4546 }
4547
4548 // 2. Allocate space for anything needing a copy, and if it's "in" or "inout"
4549 // copy the original into that space.
4550 //
4551 // Also, build up the list of actual arguments to pass in for the call
4552 int lValueCount = 0;
4553 int rValueCount = 0;
4554 std::vector<spv::Id> spvArgs;
4555 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
4556 spv::Id arg;
John Kessenichd3ed90b2018-05-04 11:43:03 -06004557 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0)) {
Jason Ekstrand76d0ac12016-05-25 11:50:21 -07004558 builder.setAccessChain(lValues[lValueCount]);
4559 arg = builder.accessChainGetLValue();
4560 ++lValueCount;
John Kessenichd41993d2017-09-10 15:21:05 -06004561 } else if (writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06004562 // need space to hold the copy
John Kessenichd3ed90b2018-05-04 11:43:03 -06004563 arg = builder.createVariable(spv::StorageClassFunction, builder.getContainedTypeId(function->getParamType(a)), "param");
John Kessenich140f3df2015-06-26 16:58:36 -06004564 if (qualifiers[a] == glslang::EvqIn || qualifiers[a] == glslang::EvqInOut) {
4565 // need to copy the input into output space
4566 builder.setAccessChain(lValues[lValueCount]);
John Kessenich32cfd492016-02-02 12:37:46 -07004567 spv::Id copy = accessChainLoad(*argTypes[a]);
John Kessenich4bf71552016-09-02 11:20:21 -06004568 builder.clearAccessChain();
4569 builder.setAccessChainLValue(arg);
John Kessenichd3ed90b2018-05-04 11:43:03 -06004570 multiTypeStore(*argTypes[a], copy);
John Kessenich140f3df2015-06-26 16:58:36 -06004571 }
4572 ++lValueCount;
4573 } else {
John Kessenichd3ed90b2018-05-04 11:43:03 -06004574 // process r-value, which involves a copy for a type mismatch
4575 if (function->getParamType(a) != convertGlslangToSpvType(*argTypes[a])) {
4576 spv::Id argCopy = builder.createVariable(spv::StorageClassFunction, function->getParamType(a), "arg");
4577 builder.clearAccessChain();
4578 builder.setAccessChainLValue(argCopy);
4579 multiTypeStore(*argTypes[a], rValues[rValueCount]);
4580 arg = builder.createLoad(argCopy);
4581 } else
4582 arg = rValues[rValueCount];
John Kessenich140f3df2015-06-26 16:58:36 -06004583 ++rValueCount;
4584 }
4585 spvArgs.push_back(arg);
4586 }
4587
4588 // 3. Make the call.
4589 spv::Id result = builder.createFunctionCall(function, spvArgs);
John Kessenich32cfd492016-02-02 12:37:46 -07004590 builder.setPrecision(result, TranslatePrecisionDecoration(node->getType()));
John Kessenich140f3df2015-06-26 16:58:36 -06004591
4592 // 4. Copy back out an "out" arguments.
4593 lValueCount = 0;
4594 for (int a = 0; a < (int)glslangArgs.size(); ++a) {
John Kessenichd3ed90b2018-05-04 11:43:03 -06004595 if (originalParam(qualifiers[a], *argTypes[a], function->hasImplicitThis() && a == 0))
John Kessenichd41993d2017-09-10 15:21:05 -06004596 ++lValueCount;
4597 else if (writableParam(qualifiers[a])) {
John Kessenich140f3df2015-06-26 16:58:36 -06004598 if (qualifiers[a] == glslang::EvqOut || qualifiers[a] == glslang::EvqInOut) {
4599 spv::Id copy = builder.createLoad(spvArgs[a]);
4600 builder.setAccessChain(lValues[lValueCount]);
John Kessenichd3ed90b2018-05-04 11:43:03 -06004601 multiTypeStore(*argTypes[a], copy);
John Kessenich140f3df2015-06-26 16:58:36 -06004602 }
4603 ++lValueCount;
4604 }
4605 }
4606
4607 return result;
4608}
4609
4610// Translate AST operation to SPV operation, already having SPV-based operands/types.
John Kessenichead86222018-03-28 18:01:20 -06004611spv::Id TGlslangToSpvTraverser::createBinaryOperation(glslang::TOperator op, OpDecorations& decorations,
John Kessenich140f3df2015-06-26 16:58:36 -06004612 spv::Id typeId, spv::Id left, spv::Id right,
4613 glslang::TBasicType typeProxy, bool reduceComparison)
4614{
John Kessenich66011cb2018-03-06 16:12:04 -07004615 bool isUnsigned = isTypeUnsignedInt(typeProxy);
4616 bool isFloat = isTypeFloat(typeProxy);
Rex Xuc7d36562016-04-27 08:15:37 +08004617 bool isBool = typeProxy == glslang::EbtBool;
John Kessenich140f3df2015-06-26 16:58:36 -06004618
4619 spv::Op binOp = spv::OpNop;
John Kessenichec43d0a2015-07-04 17:17:31 -06004620 bool needMatchingVectors = true; // for non-matrix ops, would a scalar need to smear to match a vector?
John Kessenich140f3df2015-06-26 16:58:36 -06004621 bool comparison = false;
4622
4623 switch (op) {
4624 case glslang::EOpAdd:
4625 case glslang::EOpAddAssign:
4626 if (isFloat)
4627 binOp = spv::OpFAdd;
4628 else
4629 binOp = spv::OpIAdd;
4630 break;
4631 case glslang::EOpSub:
4632 case glslang::EOpSubAssign:
4633 if (isFloat)
4634 binOp = spv::OpFSub;
4635 else
4636 binOp = spv::OpISub;
4637 break;
4638 case glslang::EOpMul:
4639 case glslang::EOpMulAssign:
4640 if (isFloat)
4641 binOp = spv::OpFMul;
4642 else
4643 binOp = spv::OpIMul;
4644 break;
4645 case glslang::EOpVectorTimesScalar:
4646 case glslang::EOpVectorTimesScalarAssign:
John Kessenich8d72f1a2016-05-20 12:06:03 -06004647 if (isFloat && (builder.isVector(left) || builder.isVector(right))) {
John Kessenichec43d0a2015-07-04 17:17:31 -06004648 if (builder.isVector(right))
4649 std::swap(left, right);
4650 assert(builder.isScalar(right));
4651 needMatchingVectors = false;
4652 binOp = spv::OpVectorTimesScalar;
t.jung697fdf02018-11-14 13:04:39 +01004653 } else if (isFloat)
4654 binOp = spv::OpFMul;
4655 else
John Kessenichec43d0a2015-07-04 17:17:31 -06004656 binOp = spv::OpIMul;
John Kessenich140f3df2015-06-26 16:58:36 -06004657 break;
4658 case glslang::EOpVectorTimesMatrix:
4659 case glslang::EOpVectorTimesMatrixAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06004660 binOp = spv::OpVectorTimesMatrix;
4661 break;
4662 case glslang::EOpMatrixTimesVector:
John Kessenich140f3df2015-06-26 16:58:36 -06004663 binOp = spv::OpMatrixTimesVector;
4664 break;
4665 case glslang::EOpMatrixTimesScalar:
4666 case glslang::EOpMatrixTimesScalarAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06004667 binOp = spv::OpMatrixTimesScalar;
4668 break;
4669 case glslang::EOpMatrixTimesMatrix:
4670 case glslang::EOpMatrixTimesMatrixAssign:
John Kessenich140f3df2015-06-26 16:58:36 -06004671 binOp = spv::OpMatrixTimesMatrix;
4672 break;
4673 case glslang::EOpOuterProduct:
4674 binOp = spv::OpOuterProduct;
John Kessenichec43d0a2015-07-04 17:17:31 -06004675 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06004676 break;
4677
4678 case glslang::EOpDiv:
4679 case glslang::EOpDivAssign:
4680 if (isFloat)
4681 binOp = spv::OpFDiv;
4682 else if (isUnsigned)
4683 binOp = spv::OpUDiv;
4684 else
4685 binOp = spv::OpSDiv;
4686 break;
4687 case glslang::EOpMod:
4688 case glslang::EOpModAssign:
4689 if (isFloat)
4690 binOp = spv::OpFMod;
4691 else if (isUnsigned)
4692 binOp = spv::OpUMod;
4693 else
4694 binOp = spv::OpSMod;
4695 break;
4696 case glslang::EOpRightShift:
4697 case glslang::EOpRightShiftAssign:
4698 if (isUnsigned)
4699 binOp = spv::OpShiftRightLogical;
4700 else
4701 binOp = spv::OpShiftRightArithmetic;
4702 break;
4703 case glslang::EOpLeftShift:
4704 case glslang::EOpLeftShiftAssign:
4705 binOp = spv::OpShiftLeftLogical;
4706 break;
4707 case glslang::EOpAnd:
4708 case glslang::EOpAndAssign:
4709 binOp = spv::OpBitwiseAnd;
4710 break;
4711 case glslang::EOpLogicalAnd:
John Kessenichec43d0a2015-07-04 17:17:31 -06004712 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06004713 binOp = spv::OpLogicalAnd;
4714 break;
4715 case glslang::EOpInclusiveOr:
4716 case glslang::EOpInclusiveOrAssign:
4717 binOp = spv::OpBitwiseOr;
4718 break;
4719 case glslang::EOpLogicalOr:
John Kessenichec43d0a2015-07-04 17:17:31 -06004720 needMatchingVectors = false;
John Kessenich140f3df2015-06-26 16:58:36 -06004721 binOp = spv::OpLogicalOr;
4722 break;
4723 case glslang::EOpExclusiveOr:
4724 case glslang::EOpExclusiveOrAssign:
4725 binOp = spv::OpBitwiseXor;
4726 break;
4727 case glslang::EOpLogicalXor:
John Kessenichec43d0a2015-07-04 17:17:31 -06004728 needMatchingVectors = false;
John Kessenich5e4b1242015-08-06 22:53:06 -06004729 binOp = spv::OpLogicalNotEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06004730 break;
4731
4732 case glslang::EOpLessThan:
4733 case glslang::EOpGreaterThan:
4734 case glslang::EOpLessThanEqual:
4735 case glslang::EOpGreaterThanEqual:
4736 case glslang::EOpEqual:
4737 case glslang::EOpNotEqual:
4738 case glslang::EOpVectorEqual:
4739 case glslang::EOpVectorNotEqual:
4740 comparison = true;
4741 break;
4742 default:
4743 break;
4744 }
4745
John Kessenich7c1aa102015-10-15 13:29:11 -06004746 // handle mapped binary operations (should be non-comparison)
John Kessenich140f3df2015-06-26 16:58:36 -06004747 if (binOp != spv::OpNop) {
John Kessenich7c1aa102015-10-15 13:29:11 -06004748 assert(comparison == false);
John Kessenich04bb8a02015-12-12 12:28:14 -07004749 if (builder.isMatrix(left) || builder.isMatrix(right))
John Kessenichead86222018-03-28 18:01:20 -06004750 return createBinaryMatrixOperation(binOp, decorations, typeId, left, right);
John Kessenich140f3df2015-06-26 16:58:36 -06004751
4752 // No matrix involved; make both operands be the same number of components, if needed
John Kessenichec43d0a2015-07-04 17:17:31 -06004753 if (needMatchingVectors)
John Kessenichead86222018-03-28 18:01:20 -06004754 builder.promoteScalar(decorations.precision, left, right);
John Kessenich140f3df2015-06-26 16:58:36 -06004755
qining25262b32016-05-06 17:25:16 -04004756 spv::Id result = builder.createBinOp(binOp, typeId, left, right);
John Kessenichead86222018-03-28 18:01:20 -06004757 builder.addDecoration(result, decorations.noContraction);
John Kessenich5611c6d2018-04-05 11:25:02 -06004758 builder.addDecoration(result, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06004759 return builder.setPrecision(result, decorations.precision);
John Kessenich140f3df2015-06-26 16:58:36 -06004760 }
4761
4762 if (! comparison)
4763 return 0;
4764
John Kessenich7c1aa102015-10-15 13:29:11 -06004765 // Handle comparison instructions
John Kessenich140f3df2015-06-26 16:58:36 -06004766
John Kessenich4583b612016-08-07 19:14:22 -06004767 if (reduceComparison && (op == glslang::EOpEqual || op == glslang::EOpNotEqual)
John Kessenichead86222018-03-28 18:01:20 -06004768 && (builder.isVector(left) || builder.isMatrix(left) || builder.isAggregate(left))) {
4769 spv::Id result = builder.createCompositeCompare(decorations.precision, left, right, op == glslang::EOpEqual);
John Kessenich5611c6d2018-04-05 11:25:02 -06004770 builder.addDecoration(result, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06004771 return result;
4772 }
John Kessenich140f3df2015-06-26 16:58:36 -06004773
4774 switch (op) {
4775 case glslang::EOpLessThan:
4776 if (isFloat)
4777 binOp = spv::OpFOrdLessThan;
4778 else if (isUnsigned)
4779 binOp = spv::OpULessThan;
4780 else
4781 binOp = spv::OpSLessThan;
4782 break;
4783 case glslang::EOpGreaterThan:
4784 if (isFloat)
4785 binOp = spv::OpFOrdGreaterThan;
4786 else if (isUnsigned)
4787 binOp = spv::OpUGreaterThan;
4788 else
4789 binOp = spv::OpSGreaterThan;
4790 break;
4791 case glslang::EOpLessThanEqual:
4792 if (isFloat)
4793 binOp = spv::OpFOrdLessThanEqual;
4794 else if (isUnsigned)
4795 binOp = spv::OpULessThanEqual;
4796 else
4797 binOp = spv::OpSLessThanEqual;
4798 break;
4799 case glslang::EOpGreaterThanEqual:
4800 if (isFloat)
4801 binOp = spv::OpFOrdGreaterThanEqual;
4802 else if (isUnsigned)
4803 binOp = spv::OpUGreaterThanEqual;
4804 else
4805 binOp = spv::OpSGreaterThanEqual;
4806 break;
4807 case glslang::EOpEqual:
4808 case glslang::EOpVectorEqual:
4809 if (isFloat)
4810 binOp = spv::OpFOrdEqual;
Rex Xuc7d36562016-04-27 08:15:37 +08004811 else if (isBool)
4812 binOp = spv::OpLogicalEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06004813 else
4814 binOp = spv::OpIEqual;
4815 break;
4816 case glslang::EOpNotEqual:
4817 case glslang::EOpVectorNotEqual:
4818 if (isFloat)
4819 binOp = spv::OpFOrdNotEqual;
Rex Xuc7d36562016-04-27 08:15:37 +08004820 else if (isBool)
4821 binOp = spv::OpLogicalNotEqual;
John Kessenich140f3df2015-06-26 16:58:36 -06004822 else
4823 binOp = spv::OpINotEqual;
4824 break;
4825 default:
4826 break;
4827 }
4828
qining25262b32016-05-06 17:25:16 -04004829 if (binOp != spv::OpNop) {
4830 spv::Id result = builder.createBinOp(binOp, typeId, left, right);
John Kessenichead86222018-03-28 18:01:20 -06004831 builder.addDecoration(result, decorations.noContraction);
John Kessenich5611c6d2018-04-05 11:25:02 -06004832 builder.addDecoration(result, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06004833 return builder.setPrecision(result, decorations.precision);
qining25262b32016-05-06 17:25:16 -04004834 }
John Kessenich140f3df2015-06-26 16:58:36 -06004835
4836 return 0;
4837}
4838
John Kessenich04bb8a02015-12-12 12:28:14 -07004839//
4840// Translate AST matrix operation to SPV operation, already having SPV-based operands/types.
4841// These can be any of:
4842//
4843// matrix * scalar
4844// scalar * matrix
4845// matrix * matrix linear algebraic
4846// matrix * vector
4847// vector * matrix
4848// matrix * matrix componentwise
4849// matrix op matrix op in {+, -, /}
4850// matrix op scalar op in {+, -, /}
4851// scalar op matrix op in {+, -, /}
4852//
John Kessenichead86222018-03-28 18:01:20 -06004853spv::Id TGlslangToSpvTraverser::createBinaryMatrixOperation(spv::Op op, OpDecorations& decorations, spv::Id typeId,
4854 spv::Id left, spv::Id right)
John Kessenich04bb8a02015-12-12 12:28:14 -07004855{
4856 bool firstClass = true;
4857
4858 // First, handle first-class matrix operations (* and matrix/scalar)
4859 switch (op) {
4860 case spv::OpFDiv:
4861 if (builder.isMatrix(left) && builder.isScalar(right)) {
4862 // turn matrix / scalar into a multiply...
Neil Robertseddb1312018-03-13 10:57:59 +01004863 spv::Id resultType = builder.getTypeId(right);
4864 right = builder.createBinOp(spv::OpFDiv, resultType, builder.makeFpConstant(resultType, 1.0), right);
John Kessenich04bb8a02015-12-12 12:28:14 -07004865 op = spv::OpMatrixTimesScalar;
4866 } else
4867 firstClass = false;
4868 break;
4869 case spv::OpMatrixTimesScalar:
4870 if (builder.isMatrix(right))
4871 std::swap(left, right);
4872 assert(builder.isScalar(right));
4873 break;
4874 case spv::OpVectorTimesMatrix:
4875 assert(builder.isVector(left));
4876 assert(builder.isMatrix(right));
4877 break;
4878 case spv::OpMatrixTimesVector:
4879 assert(builder.isMatrix(left));
4880 assert(builder.isVector(right));
4881 break;
4882 case spv::OpMatrixTimesMatrix:
4883 assert(builder.isMatrix(left));
4884 assert(builder.isMatrix(right));
4885 break;
4886 default:
4887 firstClass = false;
4888 break;
4889 }
4890
qining25262b32016-05-06 17:25:16 -04004891 if (firstClass) {
4892 spv::Id result = builder.createBinOp(op, typeId, left, right);
John Kessenichead86222018-03-28 18:01:20 -06004893 builder.addDecoration(result, decorations.noContraction);
John Kessenich5611c6d2018-04-05 11:25:02 -06004894 builder.addDecoration(result, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06004895 return builder.setPrecision(result, decorations.precision);
qining25262b32016-05-06 17:25:16 -04004896 }
John Kessenich04bb8a02015-12-12 12:28:14 -07004897
LoopDawg592860c2016-06-09 08:57:35 -06004898 // Handle component-wise +, -, *, %, and / for all combinations of type.
John Kessenich04bb8a02015-12-12 12:28:14 -07004899 // The result type of all of them is the same type as the (a) matrix operand.
4900 // The algorithm is to:
4901 // - break the matrix(es) into vectors
4902 // - smear any scalar to a vector
4903 // - do vector operations
4904 // - make a matrix out the vector results
4905 switch (op) {
4906 case spv::OpFAdd:
4907 case spv::OpFSub:
4908 case spv::OpFDiv:
LoopDawg592860c2016-06-09 08:57:35 -06004909 case spv::OpFMod:
John Kessenich04bb8a02015-12-12 12:28:14 -07004910 case spv::OpFMul:
4911 {
4912 // one time set up...
4913 bool leftMat = builder.isMatrix(left);
4914 bool rightMat = builder.isMatrix(right);
4915 unsigned int numCols = leftMat ? builder.getNumColumns(left) : builder.getNumColumns(right);
4916 int numRows = leftMat ? builder.getNumRows(left) : builder.getNumRows(right);
4917 spv::Id scalarType = builder.getScalarTypeId(typeId);
4918 spv::Id vecType = builder.makeVectorType(scalarType, numRows);
4919 std::vector<spv::Id> results;
4920 spv::Id smearVec = spv::NoResult;
4921 if (builder.isScalar(left))
John Kessenichead86222018-03-28 18:01:20 -06004922 smearVec = builder.smearScalar(decorations.precision, left, vecType);
John Kessenich04bb8a02015-12-12 12:28:14 -07004923 else if (builder.isScalar(right))
John Kessenichead86222018-03-28 18:01:20 -06004924 smearVec = builder.smearScalar(decorations.precision, right, vecType);
John Kessenich04bb8a02015-12-12 12:28:14 -07004925
4926 // do each vector op
4927 for (unsigned int c = 0; c < numCols; ++c) {
4928 std::vector<unsigned int> indexes;
4929 indexes.push_back(c);
4930 spv::Id leftVec = leftMat ? builder.createCompositeExtract( left, vecType, indexes) : smearVec;
4931 spv::Id rightVec = rightMat ? builder.createCompositeExtract(right, vecType, indexes) : smearVec;
qining25262b32016-05-06 17:25:16 -04004932 spv::Id result = builder.createBinOp(op, vecType, leftVec, rightVec);
John Kessenichead86222018-03-28 18:01:20 -06004933 builder.addDecoration(result, decorations.noContraction);
John Kessenich5611c6d2018-04-05 11:25:02 -06004934 builder.addDecoration(result, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06004935 results.push_back(builder.setPrecision(result, decorations.precision));
John Kessenich04bb8a02015-12-12 12:28:14 -07004936 }
4937
4938 // put the pieces together
John Kessenichead86222018-03-28 18:01:20 -06004939 spv::Id result = builder.setPrecision(builder.createCompositeConstruct(typeId, results), decorations.precision);
John Kessenich5611c6d2018-04-05 11:25:02 -06004940 builder.addDecoration(result, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06004941 return result;
John Kessenich04bb8a02015-12-12 12:28:14 -07004942 }
4943 default:
4944 assert(0);
4945 return spv::NoResult;
4946 }
4947}
4948
John Kessenichead86222018-03-28 18:01:20 -06004949spv::Id TGlslangToSpvTraverser::createUnaryOperation(glslang::TOperator op, OpDecorations& decorations, spv::Id typeId,
4950 spv::Id operand, glslang::TBasicType typeProxy)
John Kessenich140f3df2015-06-26 16:58:36 -06004951{
4952 spv::Op unaryOp = spv::OpNop;
Rex Xu9d93a232016-05-05 12:30:44 +08004953 int extBuiltins = -1;
John Kessenich140f3df2015-06-26 16:58:36 -06004954 int libCall = -1;
John Kessenich66011cb2018-03-06 16:12:04 -07004955 bool isUnsigned = isTypeUnsignedInt(typeProxy);
4956 bool isFloat = isTypeFloat(typeProxy);
John Kessenich140f3df2015-06-26 16:58:36 -06004957
4958 switch (op) {
4959 case glslang::EOpNegative:
John Kessenich7a53f762016-01-20 11:19:27 -07004960 if (isFloat) {
John Kessenich140f3df2015-06-26 16:58:36 -06004961 unaryOp = spv::OpFNegate;
John Kessenich7a53f762016-01-20 11:19:27 -07004962 if (builder.isMatrixType(typeId))
John Kessenichead86222018-03-28 18:01:20 -06004963 return createUnaryMatrixOperation(unaryOp, decorations, typeId, operand, typeProxy);
John Kessenich7a53f762016-01-20 11:19:27 -07004964 } else
John Kessenich140f3df2015-06-26 16:58:36 -06004965 unaryOp = spv::OpSNegate;
4966 break;
4967
4968 case glslang::EOpLogicalNot:
4969 case glslang::EOpVectorLogicalNot:
John Kessenich5e4b1242015-08-06 22:53:06 -06004970 unaryOp = spv::OpLogicalNot;
4971 break;
John Kessenich140f3df2015-06-26 16:58:36 -06004972 case glslang::EOpBitwiseNot:
4973 unaryOp = spv::OpNot;
4974 break;
John Kessenich5e4b1242015-08-06 22:53:06 -06004975
John Kessenich140f3df2015-06-26 16:58:36 -06004976 case glslang::EOpDeterminant:
John Kessenich5e4b1242015-08-06 22:53:06 -06004977 libCall = spv::GLSLstd450Determinant;
John Kessenich140f3df2015-06-26 16:58:36 -06004978 break;
4979 case glslang::EOpMatrixInverse:
John Kessenich5e4b1242015-08-06 22:53:06 -06004980 libCall = spv::GLSLstd450MatrixInverse;
John Kessenich140f3df2015-06-26 16:58:36 -06004981 break;
4982 case glslang::EOpTranspose:
4983 unaryOp = spv::OpTranspose;
4984 break;
4985
4986 case glslang::EOpRadians:
John Kessenich5e4b1242015-08-06 22:53:06 -06004987 libCall = spv::GLSLstd450Radians;
John Kessenich140f3df2015-06-26 16:58:36 -06004988 break;
4989 case glslang::EOpDegrees:
John Kessenich5e4b1242015-08-06 22:53:06 -06004990 libCall = spv::GLSLstd450Degrees;
John Kessenich140f3df2015-06-26 16:58:36 -06004991 break;
4992 case glslang::EOpSin:
John Kessenich5e4b1242015-08-06 22:53:06 -06004993 libCall = spv::GLSLstd450Sin;
John Kessenich140f3df2015-06-26 16:58:36 -06004994 break;
4995 case glslang::EOpCos:
John Kessenich5e4b1242015-08-06 22:53:06 -06004996 libCall = spv::GLSLstd450Cos;
John Kessenich140f3df2015-06-26 16:58:36 -06004997 break;
4998 case glslang::EOpTan:
John Kessenich5e4b1242015-08-06 22:53:06 -06004999 libCall = spv::GLSLstd450Tan;
John Kessenich140f3df2015-06-26 16:58:36 -06005000 break;
5001 case glslang::EOpAcos:
John Kessenich5e4b1242015-08-06 22:53:06 -06005002 libCall = spv::GLSLstd450Acos;
John Kessenich140f3df2015-06-26 16:58:36 -06005003 break;
5004 case glslang::EOpAsin:
John Kessenich5e4b1242015-08-06 22:53:06 -06005005 libCall = spv::GLSLstd450Asin;
John Kessenich140f3df2015-06-26 16:58:36 -06005006 break;
5007 case glslang::EOpAtan:
John Kessenich5e4b1242015-08-06 22:53:06 -06005008 libCall = spv::GLSLstd450Atan;
John Kessenich140f3df2015-06-26 16:58:36 -06005009 break;
5010
5011 case glslang::EOpAcosh:
John Kessenich5e4b1242015-08-06 22:53:06 -06005012 libCall = spv::GLSLstd450Acosh;
John Kessenich140f3df2015-06-26 16:58:36 -06005013 break;
5014 case glslang::EOpAsinh:
John Kessenich5e4b1242015-08-06 22:53:06 -06005015 libCall = spv::GLSLstd450Asinh;
John Kessenich140f3df2015-06-26 16:58:36 -06005016 break;
5017 case glslang::EOpAtanh:
John Kessenich5e4b1242015-08-06 22:53:06 -06005018 libCall = spv::GLSLstd450Atanh;
John Kessenich140f3df2015-06-26 16:58:36 -06005019 break;
5020 case glslang::EOpTanh:
John Kessenich5e4b1242015-08-06 22:53:06 -06005021 libCall = spv::GLSLstd450Tanh;
John Kessenich140f3df2015-06-26 16:58:36 -06005022 break;
5023 case glslang::EOpCosh:
John Kessenich5e4b1242015-08-06 22:53:06 -06005024 libCall = spv::GLSLstd450Cosh;
John Kessenich140f3df2015-06-26 16:58:36 -06005025 break;
5026 case glslang::EOpSinh:
John Kessenich5e4b1242015-08-06 22:53:06 -06005027 libCall = spv::GLSLstd450Sinh;
John Kessenich140f3df2015-06-26 16:58:36 -06005028 break;
5029
5030 case glslang::EOpLength:
John Kessenich5e4b1242015-08-06 22:53:06 -06005031 libCall = spv::GLSLstd450Length;
John Kessenich140f3df2015-06-26 16:58:36 -06005032 break;
5033 case glslang::EOpNormalize:
John Kessenich5e4b1242015-08-06 22:53:06 -06005034 libCall = spv::GLSLstd450Normalize;
John Kessenich140f3df2015-06-26 16:58:36 -06005035 break;
5036
5037 case glslang::EOpExp:
John Kessenich5e4b1242015-08-06 22:53:06 -06005038 libCall = spv::GLSLstd450Exp;
John Kessenich140f3df2015-06-26 16:58:36 -06005039 break;
5040 case glslang::EOpLog:
John Kessenich5e4b1242015-08-06 22:53:06 -06005041 libCall = spv::GLSLstd450Log;
John Kessenich140f3df2015-06-26 16:58:36 -06005042 break;
5043 case glslang::EOpExp2:
John Kessenich5e4b1242015-08-06 22:53:06 -06005044 libCall = spv::GLSLstd450Exp2;
John Kessenich140f3df2015-06-26 16:58:36 -06005045 break;
5046 case glslang::EOpLog2:
John Kessenich5e4b1242015-08-06 22:53:06 -06005047 libCall = spv::GLSLstd450Log2;
John Kessenich140f3df2015-06-26 16:58:36 -06005048 break;
5049 case glslang::EOpSqrt:
John Kessenich5e4b1242015-08-06 22:53:06 -06005050 libCall = spv::GLSLstd450Sqrt;
John Kessenich140f3df2015-06-26 16:58:36 -06005051 break;
5052 case glslang::EOpInverseSqrt:
John Kessenich5e4b1242015-08-06 22:53:06 -06005053 libCall = spv::GLSLstd450InverseSqrt;
John Kessenich140f3df2015-06-26 16:58:36 -06005054 break;
5055
5056 case glslang::EOpFloor:
John Kessenich5e4b1242015-08-06 22:53:06 -06005057 libCall = spv::GLSLstd450Floor;
John Kessenich140f3df2015-06-26 16:58:36 -06005058 break;
5059 case glslang::EOpTrunc:
John Kessenich5e4b1242015-08-06 22:53:06 -06005060 libCall = spv::GLSLstd450Trunc;
John Kessenich140f3df2015-06-26 16:58:36 -06005061 break;
5062 case glslang::EOpRound:
John Kessenich5e4b1242015-08-06 22:53:06 -06005063 libCall = spv::GLSLstd450Round;
John Kessenich140f3df2015-06-26 16:58:36 -06005064 break;
5065 case glslang::EOpRoundEven:
John Kessenich5e4b1242015-08-06 22:53:06 -06005066 libCall = spv::GLSLstd450RoundEven;
John Kessenich140f3df2015-06-26 16:58:36 -06005067 break;
5068 case glslang::EOpCeil:
John Kessenich5e4b1242015-08-06 22:53:06 -06005069 libCall = spv::GLSLstd450Ceil;
John Kessenich140f3df2015-06-26 16:58:36 -06005070 break;
5071 case glslang::EOpFract:
John Kessenich5e4b1242015-08-06 22:53:06 -06005072 libCall = spv::GLSLstd450Fract;
John Kessenich140f3df2015-06-26 16:58:36 -06005073 break;
5074
5075 case glslang::EOpIsNan:
5076 unaryOp = spv::OpIsNan;
5077 break;
5078 case glslang::EOpIsInf:
5079 unaryOp = spv::OpIsInf;
5080 break;
LoopDawg592860c2016-06-09 08:57:35 -06005081 case glslang::EOpIsFinite:
5082 unaryOp = spv::OpIsFinite;
5083 break;
John Kessenich140f3df2015-06-26 16:58:36 -06005084
Rex Xucbc426e2015-12-15 16:03:10 +08005085 case glslang::EOpFloatBitsToInt:
5086 case glslang::EOpFloatBitsToUint:
5087 case glslang::EOpIntBitsToFloat:
5088 case glslang::EOpUintBitsToFloat:
Rex Xu8ff43de2016-04-22 16:51:45 +08005089 case glslang::EOpDoubleBitsToInt64:
5090 case glslang::EOpDoubleBitsToUint64:
5091 case glslang::EOpInt64BitsToDouble:
5092 case glslang::EOpUint64BitsToDouble:
Rex Xucabbb782017-03-24 13:41:14 +08005093 case glslang::EOpFloat16BitsToInt16:
5094 case glslang::EOpFloat16BitsToUint16:
5095 case glslang::EOpInt16BitsToFloat16:
5096 case glslang::EOpUint16BitsToFloat16:
Rex Xucbc426e2015-12-15 16:03:10 +08005097 unaryOp = spv::OpBitcast;
5098 break;
5099
John Kessenich140f3df2015-06-26 16:58:36 -06005100 case glslang::EOpPackSnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06005101 libCall = spv::GLSLstd450PackSnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06005102 break;
5103 case glslang::EOpUnpackSnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06005104 libCall = spv::GLSLstd450UnpackSnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06005105 break;
5106 case glslang::EOpPackUnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06005107 libCall = spv::GLSLstd450PackUnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06005108 break;
5109 case glslang::EOpUnpackUnorm2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06005110 libCall = spv::GLSLstd450UnpackUnorm2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06005111 break;
5112 case glslang::EOpPackHalf2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06005113 libCall = spv::GLSLstd450PackHalf2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06005114 break;
5115 case glslang::EOpUnpackHalf2x16:
John Kessenich5e4b1242015-08-06 22:53:06 -06005116 libCall = spv::GLSLstd450UnpackHalf2x16;
John Kessenich140f3df2015-06-26 16:58:36 -06005117 break;
John Kessenichfc51d282015-08-19 13:34:18 -06005118 case glslang::EOpPackSnorm4x8:
5119 libCall = spv::GLSLstd450PackSnorm4x8;
5120 break;
5121 case glslang::EOpUnpackSnorm4x8:
5122 libCall = spv::GLSLstd450UnpackSnorm4x8;
5123 break;
5124 case glslang::EOpPackUnorm4x8:
5125 libCall = spv::GLSLstd450PackUnorm4x8;
5126 break;
5127 case glslang::EOpUnpackUnorm4x8:
5128 libCall = spv::GLSLstd450UnpackUnorm4x8;
5129 break;
5130 case glslang::EOpPackDouble2x32:
5131 libCall = spv::GLSLstd450PackDouble2x32;
5132 break;
5133 case glslang::EOpUnpackDouble2x32:
5134 libCall = spv::GLSLstd450UnpackDouble2x32;
5135 break;
John Kessenich140f3df2015-06-26 16:58:36 -06005136
Rex Xu8ff43de2016-04-22 16:51:45 +08005137 case glslang::EOpPackInt2x32:
5138 case glslang::EOpUnpackInt2x32:
5139 case glslang::EOpPackUint2x32:
5140 case glslang::EOpUnpackUint2x32:
John Kessenich66011cb2018-03-06 16:12:04 -07005141 case glslang::EOpPack16:
5142 case glslang::EOpPack32:
5143 case glslang::EOpPack64:
5144 case glslang::EOpUnpack32:
5145 case glslang::EOpUnpack16:
5146 case glslang::EOpUnpack8:
Rex Xucabbb782017-03-24 13:41:14 +08005147 case glslang::EOpPackInt2x16:
5148 case glslang::EOpUnpackInt2x16:
5149 case glslang::EOpPackUint2x16:
5150 case glslang::EOpUnpackUint2x16:
5151 case glslang::EOpPackInt4x16:
5152 case glslang::EOpUnpackInt4x16:
5153 case glslang::EOpPackUint4x16:
5154 case glslang::EOpUnpackUint4x16:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005155 case glslang::EOpPackFloat2x16:
5156 case glslang::EOpUnpackFloat2x16:
5157 unaryOp = spv::OpBitcast;
5158 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005159
John Kessenich140f3df2015-06-26 16:58:36 -06005160 case glslang::EOpDPdx:
5161 unaryOp = spv::OpDPdx;
5162 break;
5163 case glslang::EOpDPdy:
5164 unaryOp = spv::OpDPdy;
5165 break;
5166 case glslang::EOpFwidth:
5167 unaryOp = spv::OpFwidth;
5168 break;
5169 case glslang::EOpDPdxFine:
5170 unaryOp = spv::OpDPdxFine;
5171 break;
5172 case glslang::EOpDPdyFine:
5173 unaryOp = spv::OpDPdyFine;
5174 break;
5175 case glslang::EOpFwidthFine:
5176 unaryOp = spv::OpFwidthFine;
5177 break;
5178 case glslang::EOpDPdxCoarse:
5179 unaryOp = spv::OpDPdxCoarse;
5180 break;
5181 case glslang::EOpDPdyCoarse:
5182 unaryOp = spv::OpDPdyCoarse;
5183 break;
5184 case glslang::EOpFwidthCoarse:
5185 unaryOp = spv::OpFwidthCoarse;
5186 break;
Rex Xu7a26c172015-12-08 17:12:09 +08005187 case glslang::EOpInterpolateAtCentroid:
Rex Xub4a2a6c2018-05-17 13:51:28 +08005188#ifdef AMD_EXTENSIONS
5189 if (typeProxy == glslang::EbtFloat16)
5190 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
5191#endif
Rex Xu7a26c172015-12-08 17:12:09 +08005192 libCall = spv::GLSLstd450InterpolateAtCentroid;
5193 break;
John Kessenich140f3df2015-06-26 16:58:36 -06005194 case glslang::EOpAny:
5195 unaryOp = spv::OpAny;
5196 break;
5197 case glslang::EOpAll:
5198 unaryOp = spv::OpAll;
5199 break;
5200
5201 case glslang::EOpAbs:
John Kessenich5e4b1242015-08-06 22:53:06 -06005202 if (isFloat)
5203 libCall = spv::GLSLstd450FAbs;
5204 else
5205 libCall = spv::GLSLstd450SAbs;
John Kessenich140f3df2015-06-26 16:58:36 -06005206 break;
5207 case glslang::EOpSign:
John Kessenich5e4b1242015-08-06 22:53:06 -06005208 if (isFloat)
5209 libCall = spv::GLSLstd450FSign;
5210 else
5211 libCall = spv::GLSLstd450SSign;
John Kessenich140f3df2015-06-26 16:58:36 -06005212 break;
5213
John Kessenichfc51d282015-08-19 13:34:18 -06005214 case glslang::EOpAtomicCounterIncrement:
5215 case glslang::EOpAtomicCounterDecrement:
5216 case glslang::EOpAtomicCounter:
5217 {
5218 // Handle all of the atomics in one place, in createAtomicOperation()
5219 std::vector<spv::Id> operands;
5220 operands.push_back(operand);
John Kessenichead86222018-03-28 18:01:20 -06005221 return createAtomicOperation(op, decorations.precision, typeId, operands, typeProxy);
John Kessenichfc51d282015-08-19 13:34:18 -06005222 }
5223
John Kessenichfc51d282015-08-19 13:34:18 -06005224 case glslang::EOpBitFieldReverse:
5225 unaryOp = spv::OpBitReverse;
5226 break;
5227 case glslang::EOpBitCount:
5228 unaryOp = spv::OpBitCount;
5229 break;
5230 case glslang::EOpFindLSB:
John Kessenich55e7d112015-11-15 21:33:39 -07005231 libCall = spv::GLSLstd450FindILsb;
John Kessenichfc51d282015-08-19 13:34:18 -06005232 break;
5233 case glslang::EOpFindMSB:
John Kessenich55e7d112015-11-15 21:33:39 -07005234 if (isUnsigned)
5235 libCall = spv::GLSLstd450FindUMsb;
5236 else
5237 libCall = spv::GLSLstd450FindSMsb;
John Kessenichfc51d282015-08-19 13:34:18 -06005238 break;
5239
Rex Xu574ab042016-04-14 16:53:07 +08005240 case glslang::EOpBallot:
5241 case glslang::EOpReadFirstInvocation:
Rex Xu338b1852016-05-05 20:38:33 +08005242 case glslang::EOpAnyInvocation:
Rex Xu338b1852016-05-05 20:38:33 +08005243 case glslang::EOpAllInvocations:
Rex Xu338b1852016-05-05 20:38:33 +08005244 case glslang::EOpAllInvocationsEqual:
Rex Xu9d93a232016-05-05 12:30:44 +08005245#ifdef AMD_EXTENSIONS
5246 case glslang::EOpMinInvocations:
5247 case glslang::EOpMaxInvocations:
5248 case glslang::EOpAddInvocations:
5249 case glslang::EOpMinInvocationsNonUniform:
5250 case glslang::EOpMaxInvocationsNonUniform:
5251 case glslang::EOpAddInvocationsNonUniform:
Rex Xu430ef402016-10-14 17:22:23 +08005252 case glslang::EOpMinInvocationsInclusiveScan:
5253 case glslang::EOpMaxInvocationsInclusiveScan:
5254 case glslang::EOpAddInvocationsInclusiveScan:
5255 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
5256 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
5257 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
5258 case glslang::EOpMinInvocationsExclusiveScan:
5259 case glslang::EOpMaxInvocationsExclusiveScan:
5260 case glslang::EOpAddInvocationsExclusiveScan:
5261 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
5262 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
5263 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
Rex Xu9d93a232016-05-05 12:30:44 +08005264#endif
Rex Xu51596642016-09-21 18:56:12 +08005265 {
5266 std::vector<spv::Id> operands;
5267 operands.push_back(operand);
5268 return createInvocationsOperation(op, typeId, operands, typeProxy);
5269 }
John Kessenich66011cb2018-03-06 16:12:04 -07005270 case glslang::EOpSubgroupAll:
5271 case glslang::EOpSubgroupAny:
5272 case glslang::EOpSubgroupAllEqual:
5273 case glslang::EOpSubgroupBroadcastFirst:
5274 case glslang::EOpSubgroupBallot:
5275 case glslang::EOpSubgroupInverseBallot:
5276 case glslang::EOpSubgroupBallotBitCount:
5277 case glslang::EOpSubgroupBallotInclusiveBitCount:
5278 case glslang::EOpSubgroupBallotExclusiveBitCount:
5279 case glslang::EOpSubgroupBallotFindLSB:
5280 case glslang::EOpSubgroupBallotFindMSB:
5281 case glslang::EOpSubgroupAdd:
5282 case glslang::EOpSubgroupMul:
5283 case glslang::EOpSubgroupMin:
5284 case glslang::EOpSubgroupMax:
5285 case glslang::EOpSubgroupAnd:
5286 case glslang::EOpSubgroupOr:
5287 case glslang::EOpSubgroupXor:
5288 case glslang::EOpSubgroupInclusiveAdd:
5289 case glslang::EOpSubgroupInclusiveMul:
5290 case glslang::EOpSubgroupInclusiveMin:
5291 case glslang::EOpSubgroupInclusiveMax:
5292 case glslang::EOpSubgroupInclusiveAnd:
5293 case glslang::EOpSubgroupInclusiveOr:
5294 case glslang::EOpSubgroupInclusiveXor:
5295 case glslang::EOpSubgroupExclusiveAdd:
5296 case glslang::EOpSubgroupExclusiveMul:
5297 case glslang::EOpSubgroupExclusiveMin:
5298 case glslang::EOpSubgroupExclusiveMax:
5299 case glslang::EOpSubgroupExclusiveAnd:
5300 case glslang::EOpSubgroupExclusiveOr:
5301 case glslang::EOpSubgroupExclusiveXor:
5302 case glslang::EOpSubgroupQuadSwapHorizontal:
5303 case glslang::EOpSubgroupQuadSwapVertical:
5304 case glslang::EOpSubgroupQuadSwapDiagonal: {
5305 std::vector<spv::Id> operands;
5306 operands.push_back(operand);
5307 return createSubgroupOperation(op, typeId, operands, typeProxy);
5308 }
Rex Xu9d93a232016-05-05 12:30:44 +08005309#ifdef AMD_EXTENSIONS
5310 case glslang::EOpMbcnt:
5311 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
5312 libCall = spv::MbcntAMD;
5313 break;
5314
5315 case glslang::EOpCubeFaceIndex:
5316 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_gcn_shader);
5317 libCall = spv::CubeFaceIndexAMD;
5318 break;
5319
5320 case glslang::EOpCubeFaceCoord:
5321 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_gcn_shader);
5322 libCall = spv::CubeFaceCoordAMD;
5323 break;
5324#endif
Jeff Bolz2abe9a42018-03-29 22:52:17 -05005325#ifdef NV_EXTENSIONS
5326 case glslang::EOpSubgroupPartition:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05005327 unaryOp = spv::OpGroupNonUniformPartitionNV;
5328 break;
5329#endif
John Kessenich140f3df2015-06-26 16:58:36 -06005330 default:
5331 return 0;
5332 }
5333
5334 spv::Id id;
5335 if (libCall >= 0) {
5336 std::vector<spv::Id> args;
5337 args.push_back(operand);
Rex Xu9d93a232016-05-05 12:30:44 +08005338 id = builder.createBuiltinCall(typeId, extBuiltins >= 0 ? extBuiltins : stdBuiltins, libCall, args);
Rex Xu338b1852016-05-05 20:38:33 +08005339 } else {
John Kessenich91cef522016-05-05 16:45:40 -06005340 id = builder.createUnaryOp(unaryOp, typeId, operand);
Rex Xu338b1852016-05-05 20:38:33 +08005341 }
John Kessenich140f3df2015-06-26 16:58:36 -06005342
John Kessenichead86222018-03-28 18:01:20 -06005343 builder.addDecoration(id, decorations.noContraction);
John Kessenich5611c6d2018-04-05 11:25:02 -06005344 builder.addDecoration(id, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06005345 return builder.setPrecision(id, decorations.precision);
John Kessenich140f3df2015-06-26 16:58:36 -06005346}
5347
John Kessenich7a53f762016-01-20 11:19:27 -07005348// Create a unary operation on a matrix
John Kessenichead86222018-03-28 18:01:20 -06005349spv::Id TGlslangToSpvTraverser::createUnaryMatrixOperation(spv::Op op, OpDecorations& decorations, spv::Id typeId,
5350 spv::Id operand, glslang::TBasicType /* typeProxy */)
John Kessenich7a53f762016-01-20 11:19:27 -07005351{
5352 // Handle unary operations vector by vector.
5353 // The result type is the same type as the original type.
5354 // The algorithm is to:
5355 // - break the matrix into vectors
5356 // - apply the operation to each vector
5357 // - make a matrix out the vector results
5358
5359 // get the types sorted out
5360 int numCols = builder.getNumColumns(operand);
5361 int numRows = builder.getNumRows(operand);
Rex Xuc1992e52016-05-17 18:57:18 +08005362 spv::Id srcVecType = builder.makeVectorType(builder.getScalarTypeId(builder.getTypeId(operand)), numRows);
5363 spv::Id destVecType = builder.makeVectorType(builder.getScalarTypeId(typeId), numRows);
John Kessenich7a53f762016-01-20 11:19:27 -07005364 std::vector<spv::Id> results;
5365
5366 // do each vector op
5367 for (int c = 0; c < numCols; ++c) {
5368 std::vector<unsigned int> indexes;
5369 indexes.push_back(c);
Rex Xuc1992e52016-05-17 18:57:18 +08005370 spv::Id srcVec = builder.createCompositeExtract(operand, srcVecType, indexes);
5371 spv::Id destVec = builder.createUnaryOp(op, destVecType, srcVec);
John Kessenichead86222018-03-28 18:01:20 -06005372 builder.addDecoration(destVec, decorations.noContraction);
John Kessenich5611c6d2018-04-05 11:25:02 -06005373 builder.addDecoration(destVec, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06005374 results.push_back(builder.setPrecision(destVec, decorations.precision));
John Kessenich7a53f762016-01-20 11:19:27 -07005375 }
5376
5377 // put the pieces together
John Kessenichead86222018-03-28 18:01:20 -06005378 spv::Id result = builder.setPrecision(builder.createCompositeConstruct(typeId, results), decorations.precision);
John Kessenich5611c6d2018-04-05 11:25:02 -06005379 builder.addDecoration(result, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06005380 return result;
John Kessenich7a53f762016-01-20 11:19:27 -07005381}
5382
John Kessenichad7645f2018-06-04 19:11:25 -06005383// For converting integers where both the bitwidth and the signedness could
5384// change, but only do the width change here. The caller is still responsible
5385// for the signedness conversion.
5386spv::Id TGlslangToSpvTraverser::createIntWidthConversion(glslang::TOperator op, spv::Id operand, int vectorSize)
John Kessenich66011cb2018-03-06 16:12:04 -07005387{
John Kessenichad7645f2018-06-04 19:11:25 -06005388 // Get the result type width, based on the type to convert to.
5389 int width = 32;
John Kessenich66011cb2018-03-06 16:12:04 -07005390 switch(op) {
John Kessenichad7645f2018-06-04 19:11:25 -06005391 case glslang::EOpConvInt16ToUint8:
5392 case glslang::EOpConvIntToUint8:
5393 case glslang::EOpConvInt64ToUint8:
5394 case glslang::EOpConvUint16ToInt8:
5395 case glslang::EOpConvUintToInt8:
5396 case glslang::EOpConvUint64ToInt8:
5397 width = 8;
5398 break;
John Kessenich66011cb2018-03-06 16:12:04 -07005399 case glslang::EOpConvInt8ToUint16:
John Kessenichad7645f2018-06-04 19:11:25 -06005400 case glslang::EOpConvIntToUint16:
5401 case glslang::EOpConvInt64ToUint16:
5402 case glslang::EOpConvUint8ToInt16:
5403 case glslang::EOpConvUintToInt16:
5404 case glslang::EOpConvUint64ToInt16:
5405 width = 16;
John Kessenich66011cb2018-03-06 16:12:04 -07005406 break;
5407 case glslang::EOpConvInt8ToUint:
John Kessenichad7645f2018-06-04 19:11:25 -06005408 case glslang::EOpConvInt16ToUint:
5409 case glslang::EOpConvInt64ToUint:
5410 case glslang::EOpConvUint8ToInt:
5411 case glslang::EOpConvUint16ToInt:
5412 case glslang::EOpConvUint64ToInt:
5413 width = 32;
John Kessenich66011cb2018-03-06 16:12:04 -07005414 break;
5415 case glslang::EOpConvInt8ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07005416 case glslang::EOpConvInt16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07005417 case glslang::EOpConvIntToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07005418 case glslang::EOpConvUint8ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07005419 case glslang::EOpConvUint16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07005420 case glslang::EOpConvUintToInt64:
John Kessenichad7645f2018-06-04 19:11:25 -06005421 width = 64;
John Kessenich66011cb2018-03-06 16:12:04 -07005422 break;
5423
5424 default:
5425 assert(false && "Default missing");
5426 break;
5427 }
5428
John Kessenichad7645f2018-06-04 19:11:25 -06005429 // Get the conversion operation and result type,
5430 // based on the target width, but the source type.
5431 spv::Id type = spv::NoType;
5432 spv::Op convOp = spv::OpNop;
5433 switch(op) {
5434 case glslang::EOpConvInt8ToUint16:
5435 case glslang::EOpConvInt8ToUint:
5436 case glslang::EOpConvInt8ToUint64:
5437 case glslang::EOpConvInt16ToUint8:
5438 case glslang::EOpConvInt16ToUint:
5439 case glslang::EOpConvInt16ToUint64:
5440 case glslang::EOpConvIntToUint8:
5441 case glslang::EOpConvIntToUint16:
5442 case glslang::EOpConvIntToUint64:
5443 case glslang::EOpConvInt64ToUint8:
5444 case glslang::EOpConvInt64ToUint16:
5445 case glslang::EOpConvInt64ToUint:
5446 convOp = spv::OpSConvert;
5447 type = builder.makeIntType(width);
5448 break;
5449 default:
5450 convOp = spv::OpUConvert;
5451 type = builder.makeUintType(width);
5452 break;
5453 }
5454
John Kessenich66011cb2018-03-06 16:12:04 -07005455 if (vectorSize > 0)
5456 type = builder.makeVectorType(type, vectorSize);
5457
John Kessenichad7645f2018-06-04 19:11:25 -06005458 return builder.createUnaryOp(convOp, type, operand);
John Kessenich66011cb2018-03-06 16:12:04 -07005459}
5460
John Kessenichead86222018-03-28 18:01:20 -06005461spv::Id TGlslangToSpvTraverser::createConversion(glslang::TOperator op, OpDecorations& decorations, spv::Id destType,
5462 spv::Id operand, glslang::TBasicType typeProxy)
John Kessenich140f3df2015-06-26 16:58:36 -06005463{
5464 spv::Op convOp = spv::OpNop;
5465 spv::Id zero = 0;
5466 spv::Id one = 0;
5467
5468 int vectorSize = builder.isVectorType(destType) ? builder.getNumTypeComponents(destType) : 0;
5469
5470 switch (op) {
John Kessenich66011cb2018-03-06 16:12:04 -07005471 case glslang::EOpConvInt8ToBool:
5472 case glslang::EOpConvUint8ToBool:
5473 zero = builder.makeUint8Constant(0);
5474 zero = makeSmearedConstant(zero, vectorSize);
5475 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
Rex Xucabbb782017-03-24 13:41:14 +08005476 case glslang::EOpConvInt16ToBool:
5477 case glslang::EOpConvUint16ToBool:
John Kessenich66011cb2018-03-06 16:12:04 -07005478 zero = builder.makeUint16Constant(0);
5479 zero = makeSmearedConstant(zero, vectorSize);
5480 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
5481 case glslang::EOpConvIntToBool:
5482 case glslang::EOpConvUintToBool:
5483 zero = builder.makeUintConstant(0);
5484 zero = makeSmearedConstant(zero, vectorSize);
5485 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
5486 case glslang::EOpConvInt64ToBool:
5487 case glslang::EOpConvUint64ToBool:
5488 zero = builder.makeUint64Constant(0);
John Kessenich140f3df2015-06-26 16:58:36 -06005489 zero = makeSmearedConstant(zero, vectorSize);
5490 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
5491
5492 case glslang::EOpConvFloatToBool:
5493 zero = builder.makeFloatConstant(0.0F);
5494 zero = makeSmearedConstant(zero, vectorSize);
5495 return builder.createBinOp(spv::OpFOrdNotEqual, destType, operand, zero);
5496
5497 case glslang::EOpConvDoubleToBool:
5498 zero = builder.makeDoubleConstant(0.0);
5499 zero = makeSmearedConstant(zero, vectorSize);
5500 return builder.createBinOp(spv::OpFOrdNotEqual, destType, operand, zero);
5501
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005502 case glslang::EOpConvFloat16ToBool:
5503 zero = builder.makeFloat16Constant(0.0F);
5504 zero = makeSmearedConstant(zero, vectorSize);
5505 return builder.createBinOp(spv::OpFOrdNotEqual, destType, operand, zero);
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005506
John Kessenich140f3df2015-06-26 16:58:36 -06005507 case glslang::EOpConvBoolToFloat:
5508 convOp = spv::OpSelect;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005509 zero = builder.makeFloatConstant(0.0F);
5510 one = builder.makeFloatConstant(1.0F);
John Kessenich140f3df2015-06-26 16:58:36 -06005511 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005512
John Kessenich140f3df2015-06-26 16:58:36 -06005513 case glslang::EOpConvBoolToDouble:
5514 convOp = spv::OpSelect;
5515 zero = builder.makeDoubleConstant(0.0);
5516 one = builder.makeDoubleConstant(1.0);
5517 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005518
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005519 case glslang::EOpConvBoolToFloat16:
5520 convOp = spv::OpSelect;
5521 zero = builder.makeFloat16Constant(0.0F);
5522 one = builder.makeFloat16Constant(1.0F);
5523 break;
John Kessenich66011cb2018-03-06 16:12:04 -07005524
5525 case glslang::EOpConvBoolToInt8:
5526 zero = builder.makeInt8Constant(0);
5527 one = builder.makeInt8Constant(1);
5528 convOp = spv::OpSelect;
5529 break;
5530
5531 case glslang::EOpConvBoolToUint8:
5532 zero = builder.makeUint8Constant(0);
5533 one = builder.makeUint8Constant(1);
5534 convOp = spv::OpSelect;
5535 break;
5536
5537 case glslang::EOpConvBoolToInt16:
5538 zero = builder.makeInt16Constant(0);
5539 one = builder.makeInt16Constant(1);
5540 convOp = spv::OpSelect;
5541 break;
5542
5543 case glslang::EOpConvBoolToUint16:
5544 zero = builder.makeUint16Constant(0);
5545 one = builder.makeUint16Constant(1);
5546 convOp = spv::OpSelect;
5547 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005548
John Kessenich140f3df2015-06-26 16:58:36 -06005549 case glslang::EOpConvBoolToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08005550 case glslang::EOpConvBoolToInt64:
Rex Xucabbb782017-03-24 13:41:14 +08005551 if (op == glslang::EOpConvBoolToInt64)
5552 zero = builder.makeInt64Constant(0);
Rex Xucabbb782017-03-24 13:41:14 +08005553 else
5554 zero = builder.makeIntConstant(0);
5555
5556 if (op == glslang::EOpConvBoolToInt64)
5557 one = builder.makeInt64Constant(1);
Rex Xucabbb782017-03-24 13:41:14 +08005558 else
5559 one = builder.makeIntConstant(1);
5560
John Kessenich140f3df2015-06-26 16:58:36 -06005561 convOp = spv::OpSelect;
5562 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005563
John Kessenich140f3df2015-06-26 16:58:36 -06005564 case glslang::EOpConvBoolToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08005565 case glslang::EOpConvBoolToUint64:
Rex Xucabbb782017-03-24 13:41:14 +08005566 if (op == glslang::EOpConvBoolToUint64)
5567 zero = builder.makeUint64Constant(0);
Rex Xucabbb782017-03-24 13:41:14 +08005568 else
5569 zero = builder.makeUintConstant(0);
5570
5571 if (op == glslang::EOpConvBoolToUint64)
5572 one = builder.makeUint64Constant(1);
Rex Xucabbb782017-03-24 13:41:14 +08005573 else
5574 one = builder.makeUintConstant(1);
5575
John Kessenich140f3df2015-06-26 16:58:36 -06005576 convOp = spv::OpSelect;
5577 break;
5578
John Kessenich66011cb2018-03-06 16:12:04 -07005579 case glslang::EOpConvInt8ToFloat16:
5580 case glslang::EOpConvInt8ToFloat:
5581 case glslang::EOpConvInt8ToDouble:
5582 case glslang::EOpConvInt16ToFloat16:
5583 case glslang::EOpConvInt16ToFloat:
5584 case glslang::EOpConvInt16ToDouble:
5585 case glslang::EOpConvIntToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06005586 case glslang::EOpConvIntToFloat:
5587 case glslang::EOpConvIntToDouble:
Rex Xu8ff43de2016-04-22 16:51:45 +08005588 case glslang::EOpConvInt64ToFloat:
5589 case glslang::EOpConvInt64ToDouble:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005590 case glslang::EOpConvInt64ToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06005591 convOp = spv::OpConvertSToF;
5592 break;
5593
John Kessenich66011cb2018-03-06 16:12:04 -07005594 case glslang::EOpConvUint8ToFloat16:
5595 case glslang::EOpConvUint8ToFloat:
5596 case glslang::EOpConvUint8ToDouble:
5597 case glslang::EOpConvUint16ToFloat16:
5598 case glslang::EOpConvUint16ToFloat:
5599 case glslang::EOpConvUint16ToDouble:
5600 case glslang::EOpConvUintToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06005601 case glslang::EOpConvUintToFloat:
5602 case glslang::EOpConvUintToDouble:
Rex Xu8ff43de2016-04-22 16:51:45 +08005603 case glslang::EOpConvUint64ToFloat:
5604 case glslang::EOpConvUint64ToDouble:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005605 case glslang::EOpConvUint64ToFloat16:
John Kessenich140f3df2015-06-26 16:58:36 -06005606 convOp = spv::OpConvertUToF;
5607 break;
5608
5609 case glslang::EOpConvDoubleToFloat:
5610 case glslang::EOpConvFloatToDouble:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005611 case glslang::EOpConvDoubleToFloat16:
5612 case glslang::EOpConvFloat16ToDouble:
5613 case glslang::EOpConvFloatToFloat16:
5614 case glslang::EOpConvFloat16ToFloat:
John Kessenich140f3df2015-06-26 16:58:36 -06005615 convOp = spv::OpFConvert;
Rex Xu73e3ce72016-04-27 18:48:17 +08005616 if (builder.isMatrixType(destType))
John Kessenichead86222018-03-28 18:01:20 -06005617 return createUnaryMatrixOperation(convOp, decorations, destType, operand, typeProxy);
John Kessenich140f3df2015-06-26 16:58:36 -06005618 break;
5619
John Kessenich66011cb2018-03-06 16:12:04 -07005620 case glslang::EOpConvFloat16ToInt8:
5621 case glslang::EOpConvFloatToInt8:
5622 case glslang::EOpConvDoubleToInt8:
5623 case glslang::EOpConvFloat16ToInt16:
Rex Xucabbb782017-03-24 13:41:14 +08005624 case glslang::EOpConvFloatToInt16:
5625 case glslang::EOpConvDoubleToInt16:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005626 case glslang::EOpConvFloat16ToInt:
John Kessenich66011cb2018-03-06 16:12:04 -07005627 case glslang::EOpConvFloatToInt:
5628 case glslang::EOpConvDoubleToInt:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005629 case glslang::EOpConvFloat16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07005630 case glslang::EOpConvFloatToInt64:
5631 case glslang::EOpConvDoubleToInt64:
John Kessenich140f3df2015-06-26 16:58:36 -06005632 convOp = spv::OpConvertFToS;
5633 break;
5634
John Kessenich66011cb2018-03-06 16:12:04 -07005635 case glslang::EOpConvUint8ToInt8:
5636 case glslang::EOpConvInt8ToUint8:
5637 case glslang::EOpConvUint16ToInt16:
5638 case glslang::EOpConvInt16ToUint16:
John Kessenich140f3df2015-06-26 16:58:36 -06005639 case glslang::EOpConvUintToInt:
5640 case glslang::EOpConvIntToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08005641 case glslang::EOpConvUint64ToInt64:
5642 case glslang::EOpConvInt64ToUint64:
qininge24aa5e2016-04-07 15:40:27 -04005643 if (builder.isInSpecConstCodeGenMode()) {
5644 // Build zero scalar or vector for OpIAdd.
John Kessenich66011cb2018-03-06 16:12:04 -07005645 if(op == glslang::EOpConvUint8ToInt8 || op == glslang::EOpConvInt8ToUint8) {
5646 zero = builder.makeUint8Constant(0);
5647 } else if (op == glslang::EOpConvUint16ToInt16 || op == glslang::EOpConvInt16ToUint16) {
Rex Xucabbb782017-03-24 13:41:14 +08005648 zero = builder.makeUint16Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07005649 } else if (op == glslang::EOpConvUint64ToInt64 || op == glslang::EOpConvInt64ToUint64) {
5650 zero = builder.makeUint64Constant(0);
5651 } else {
Rex Xucabbb782017-03-24 13:41:14 +08005652 zero = builder.makeUintConstant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07005653 }
qining189b2032016-04-12 23:16:20 -04005654 zero = makeSmearedConstant(zero, vectorSize);
qininge24aa5e2016-04-07 15:40:27 -04005655 // Use OpIAdd, instead of OpBitcast to do the conversion when
5656 // generating for OpSpecConstantOp instruction.
5657 return builder.createBinOp(spv::OpIAdd, destType, operand, zero);
5658 }
5659 // For normal run-time conversion instruction, use OpBitcast.
John Kessenich140f3df2015-06-26 16:58:36 -06005660 convOp = spv::OpBitcast;
5661 break;
5662
John Kessenich66011cb2018-03-06 16:12:04 -07005663 case glslang::EOpConvFloat16ToUint8:
5664 case glslang::EOpConvFloatToUint8:
5665 case glslang::EOpConvDoubleToUint8:
5666 case glslang::EOpConvFloat16ToUint16:
5667 case glslang::EOpConvFloatToUint16:
5668 case glslang::EOpConvDoubleToUint16:
5669 case glslang::EOpConvFloat16ToUint:
John Kessenich140f3df2015-06-26 16:58:36 -06005670 case glslang::EOpConvFloatToUint:
5671 case glslang::EOpConvDoubleToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08005672 case glslang::EOpConvFloatToUint64:
5673 case glslang::EOpConvDoubleToUint64:
Rex Xuc9e3c3c2016-07-29 16:00:05 +08005674 case glslang::EOpConvFloat16ToUint64:
John Kessenich140f3df2015-06-26 16:58:36 -06005675 convOp = spv::OpConvertFToU;
5676 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08005677
John Kessenich66011cb2018-03-06 16:12:04 -07005678 case glslang::EOpConvInt8ToInt16:
5679 case glslang::EOpConvInt8ToInt:
5680 case glslang::EOpConvInt8ToInt64:
5681 case glslang::EOpConvInt16ToInt8:
Rex Xucabbb782017-03-24 13:41:14 +08005682 case glslang::EOpConvInt16ToInt:
Rex Xucabbb782017-03-24 13:41:14 +08005683 case glslang::EOpConvInt16ToInt64:
John Kessenich66011cb2018-03-06 16:12:04 -07005684 case glslang::EOpConvIntToInt8:
5685 case glslang::EOpConvIntToInt16:
5686 case glslang::EOpConvIntToInt64:
5687 case glslang::EOpConvInt64ToInt8:
5688 case glslang::EOpConvInt64ToInt16:
5689 case glslang::EOpConvInt64ToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08005690 convOp = spv::OpSConvert;
5691 break;
5692
John Kessenich66011cb2018-03-06 16:12:04 -07005693 case glslang::EOpConvUint8ToUint16:
5694 case glslang::EOpConvUint8ToUint:
5695 case glslang::EOpConvUint8ToUint64:
5696 case glslang::EOpConvUint16ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08005697 case glslang::EOpConvUint16ToUint:
Rex Xucabbb782017-03-24 13:41:14 +08005698 case glslang::EOpConvUint16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07005699 case glslang::EOpConvUintToUint8:
5700 case glslang::EOpConvUintToUint16:
5701 case glslang::EOpConvUintToUint64:
5702 case glslang::EOpConvUint64ToUint8:
5703 case glslang::EOpConvUint64ToUint16:
5704 case glslang::EOpConvUint64ToUint:
Rex Xu8ff43de2016-04-22 16:51:45 +08005705 convOp = spv::OpUConvert;
5706 break;
5707
John Kessenich66011cb2018-03-06 16:12:04 -07005708 case glslang::EOpConvInt8ToUint16:
5709 case glslang::EOpConvInt8ToUint:
5710 case glslang::EOpConvInt8ToUint64:
5711 case glslang::EOpConvInt16ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08005712 case glslang::EOpConvInt16ToUint:
Rex Xucabbb782017-03-24 13:41:14 +08005713 case glslang::EOpConvInt16ToUint64:
John Kessenich66011cb2018-03-06 16:12:04 -07005714 case glslang::EOpConvIntToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08005715 case glslang::EOpConvIntToUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07005716 case glslang::EOpConvIntToUint64:
5717 case glslang::EOpConvInt64ToUint8:
Rex Xucabbb782017-03-24 13:41:14 +08005718 case glslang::EOpConvInt64ToUint16:
John Kessenich66011cb2018-03-06 16:12:04 -07005719 case glslang::EOpConvInt64ToUint:
5720 case glslang::EOpConvUint8ToInt16:
5721 case glslang::EOpConvUint8ToInt:
5722 case glslang::EOpConvUint8ToInt64:
5723 case glslang::EOpConvUint16ToInt8:
5724 case glslang::EOpConvUint16ToInt:
5725 case glslang::EOpConvUint16ToInt64:
5726 case glslang::EOpConvUintToInt8:
5727 case glslang::EOpConvUintToInt16:
5728 case glslang::EOpConvUintToInt64:
5729 case glslang::EOpConvUint64ToInt8:
5730 case glslang::EOpConvUint64ToInt16:
5731 case glslang::EOpConvUint64ToInt:
Rex Xu8ff43de2016-04-22 16:51:45 +08005732 // OpSConvert/OpUConvert + OpBitCast
John Kessenichad7645f2018-06-04 19:11:25 -06005733 operand = createIntWidthConversion(op, operand, vectorSize);
Rex Xu8ff43de2016-04-22 16:51:45 +08005734
5735 if (builder.isInSpecConstCodeGenMode()) {
5736 // Build zero scalar or vector for OpIAdd.
John Kessenich66011cb2018-03-06 16:12:04 -07005737 switch(op) {
5738 case glslang::EOpConvInt16ToUint8:
5739 case glslang::EOpConvIntToUint8:
5740 case glslang::EOpConvInt64ToUint8:
5741 case glslang::EOpConvUint16ToInt8:
5742 case glslang::EOpConvUintToInt8:
5743 case glslang::EOpConvUint64ToInt8:
5744 zero = builder.makeUint8Constant(0);
5745 break;
5746 case glslang::EOpConvInt8ToUint16:
5747 case glslang::EOpConvIntToUint16:
5748 case glslang::EOpConvInt64ToUint16:
5749 case glslang::EOpConvUint8ToInt16:
5750 case glslang::EOpConvUintToInt16:
5751 case glslang::EOpConvUint64ToInt16:
Rex Xucabbb782017-03-24 13:41:14 +08005752 zero = builder.makeUint16Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07005753 break;
5754 case glslang::EOpConvInt8ToUint:
5755 case glslang::EOpConvInt16ToUint:
5756 case glslang::EOpConvInt64ToUint:
5757 case glslang::EOpConvUint8ToInt:
5758 case glslang::EOpConvUint16ToInt:
5759 case glslang::EOpConvUint64ToInt:
Rex Xucabbb782017-03-24 13:41:14 +08005760 zero = builder.makeUintConstant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07005761 break;
5762 case glslang::EOpConvInt8ToUint64:
5763 case glslang::EOpConvInt16ToUint64:
5764 case glslang::EOpConvIntToUint64:
5765 case glslang::EOpConvUint8ToInt64:
5766 case glslang::EOpConvUint16ToInt64:
5767 case glslang::EOpConvUintToInt64:
Rex Xucabbb782017-03-24 13:41:14 +08005768 zero = builder.makeUint64Constant(0);
John Kessenich66011cb2018-03-06 16:12:04 -07005769 break;
5770 default:
5771 assert(false && "Default missing");
5772 break;
5773 }
Rex Xu8ff43de2016-04-22 16:51:45 +08005774 zero = makeSmearedConstant(zero, vectorSize);
5775 // Use OpIAdd, instead of OpBitcast to do the conversion when
5776 // generating for OpSpecConstantOp instruction.
5777 return builder.createBinOp(spv::OpIAdd, destType, operand, zero);
5778 }
5779 // For normal run-time conversion instruction, use OpBitcast.
5780 convOp = spv::OpBitcast;
5781 break;
John Kessenich140f3df2015-06-26 16:58:36 -06005782 default:
5783 break;
5784 }
5785
5786 spv::Id result = 0;
5787 if (convOp == spv::OpNop)
5788 return result;
5789
5790 if (convOp == spv::OpSelect) {
5791 zero = makeSmearedConstant(zero, vectorSize);
5792 one = makeSmearedConstant(one, vectorSize);
5793 result = builder.createTriOp(convOp, destType, operand, one, zero);
5794 } else
5795 result = builder.createUnaryOp(convOp, destType, operand);
5796
John Kessenichead86222018-03-28 18:01:20 -06005797 result = builder.setPrecision(result, decorations.precision);
John Kessenich5611c6d2018-04-05 11:25:02 -06005798 builder.addDecoration(result, decorations.nonUniform);
John Kessenichead86222018-03-28 18:01:20 -06005799 return result;
John Kessenich140f3df2015-06-26 16:58:36 -06005800}
5801
5802spv::Id TGlslangToSpvTraverser::makeSmearedConstant(spv::Id constant, int vectorSize)
5803{
5804 if (vectorSize == 0)
5805 return constant;
5806
5807 spv::Id vectorTypeId = builder.makeVectorType(builder.getTypeId(constant), vectorSize);
5808 std::vector<spv::Id> components;
5809 for (int c = 0; c < vectorSize; ++c)
5810 components.push_back(constant);
5811 return builder.makeCompositeConstant(vectorTypeId, components);
5812}
5813
John Kessenich426394d2015-07-23 10:22:48 -06005814// For glslang ops that map to SPV atomic opCodes
John Kessenich6c292d32016-02-15 20:58:50 -07005815spv::Id TGlslangToSpvTraverser::createAtomicOperation(glslang::TOperator op, spv::Decoration /*precision*/, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich426394d2015-07-23 10:22:48 -06005816{
5817 spv::Op opCode = spv::OpNop;
5818
5819 switch (op) {
5820 case glslang::EOpAtomicAdd:
Rex Xufc618912015-09-09 16:42:49 +08005821 case glslang::EOpImageAtomicAdd:
John Kessenich0d0c6d32017-07-23 16:08:26 -06005822 case glslang::EOpAtomicCounterAdd:
John Kessenich426394d2015-07-23 10:22:48 -06005823 opCode = spv::OpAtomicIAdd;
5824 break;
John Kessenich0d0c6d32017-07-23 16:08:26 -06005825 case glslang::EOpAtomicCounterSubtract:
5826 opCode = spv::OpAtomicISub;
5827 break;
John Kessenich426394d2015-07-23 10:22:48 -06005828 case glslang::EOpAtomicMin:
Rex Xufc618912015-09-09 16:42:49 +08005829 case glslang::EOpImageAtomicMin:
John Kessenich0d0c6d32017-07-23 16:08:26 -06005830 case glslang::EOpAtomicCounterMin:
Rex Xue8fe8b02017-09-26 15:42:56 +08005831 opCode = (typeProxy == glslang::EbtUint || typeProxy == glslang::EbtUint64) ? spv::OpAtomicUMin : spv::OpAtomicSMin;
John Kessenich426394d2015-07-23 10:22:48 -06005832 break;
5833 case glslang::EOpAtomicMax:
Rex Xufc618912015-09-09 16:42:49 +08005834 case glslang::EOpImageAtomicMax:
John Kessenich0d0c6d32017-07-23 16:08:26 -06005835 case glslang::EOpAtomicCounterMax:
Rex Xue8fe8b02017-09-26 15:42:56 +08005836 opCode = (typeProxy == glslang::EbtUint || typeProxy == glslang::EbtUint64) ? spv::OpAtomicUMax : spv::OpAtomicSMax;
John Kessenich426394d2015-07-23 10:22:48 -06005837 break;
5838 case glslang::EOpAtomicAnd:
Rex Xufc618912015-09-09 16:42:49 +08005839 case glslang::EOpImageAtomicAnd:
John Kessenich0d0c6d32017-07-23 16:08:26 -06005840 case glslang::EOpAtomicCounterAnd:
John Kessenich426394d2015-07-23 10:22:48 -06005841 opCode = spv::OpAtomicAnd;
5842 break;
5843 case glslang::EOpAtomicOr:
Rex Xufc618912015-09-09 16:42:49 +08005844 case glslang::EOpImageAtomicOr:
John Kessenich0d0c6d32017-07-23 16:08:26 -06005845 case glslang::EOpAtomicCounterOr:
John Kessenich426394d2015-07-23 10:22:48 -06005846 opCode = spv::OpAtomicOr;
5847 break;
5848 case glslang::EOpAtomicXor:
Rex Xufc618912015-09-09 16:42:49 +08005849 case glslang::EOpImageAtomicXor:
John Kessenich0d0c6d32017-07-23 16:08:26 -06005850 case glslang::EOpAtomicCounterXor:
John Kessenich426394d2015-07-23 10:22:48 -06005851 opCode = spv::OpAtomicXor;
5852 break;
5853 case glslang::EOpAtomicExchange:
Rex Xufc618912015-09-09 16:42:49 +08005854 case glslang::EOpImageAtomicExchange:
John Kessenich0d0c6d32017-07-23 16:08:26 -06005855 case glslang::EOpAtomicCounterExchange:
John Kessenich426394d2015-07-23 10:22:48 -06005856 opCode = spv::OpAtomicExchange;
5857 break;
5858 case glslang::EOpAtomicCompSwap:
Rex Xufc618912015-09-09 16:42:49 +08005859 case glslang::EOpImageAtomicCompSwap:
John Kessenich0d0c6d32017-07-23 16:08:26 -06005860 case glslang::EOpAtomicCounterCompSwap:
John Kessenich426394d2015-07-23 10:22:48 -06005861 opCode = spv::OpAtomicCompareExchange;
5862 break;
5863 case glslang::EOpAtomicCounterIncrement:
5864 opCode = spv::OpAtomicIIncrement;
5865 break;
5866 case glslang::EOpAtomicCounterDecrement:
5867 opCode = spv::OpAtomicIDecrement;
5868 break;
5869 case glslang::EOpAtomicCounter:
Jeff Bolz36831c92018-09-05 10:11:41 -05005870 case glslang::EOpImageAtomicLoad:
5871 case glslang::EOpAtomicLoad:
John Kessenich426394d2015-07-23 10:22:48 -06005872 opCode = spv::OpAtomicLoad;
5873 break;
Jeff Bolz36831c92018-09-05 10:11:41 -05005874 case glslang::EOpAtomicStore:
5875 case glslang::EOpImageAtomicStore:
5876 opCode = spv::OpAtomicStore;
5877 break;
John Kessenich426394d2015-07-23 10:22:48 -06005878 default:
John Kessenich55e7d112015-11-15 21:33:39 -07005879 assert(0);
John Kessenich426394d2015-07-23 10:22:48 -06005880 break;
5881 }
5882
Rex Xue8fe8b02017-09-26 15:42:56 +08005883 if (typeProxy == glslang::EbtInt64 || typeProxy == glslang::EbtUint64)
5884 builder.addCapability(spv::CapabilityInt64Atomics);
5885
John Kessenich426394d2015-07-23 10:22:48 -06005886 // Sort out the operands
5887 // - mapping from glslang -> SPV
Jeff Bolz36831c92018-09-05 10:11:41 -05005888 // - there are extra SPV operands that are optional in glslang
John Kessenich3e60a6f2015-09-14 22:45:16 -06005889 // - compare-exchange swaps the value and comparator
5890 // - compare-exchange has an extra memory semantics
John Kessenich48d6e792017-10-06 21:21:48 -06005891 // - EOpAtomicCounterDecrement needs a post decrement
Jeff Bolz36831c92018-09-05 10:11:41 -05005892 spv::Id pointerId = 0, compareId = 0, valueId = 0;
5893 // scope defaults to Device in the old model, QueueFamilyKHR in the new model
5894 spv::Id scopeId;
5895 if (glslangIntermediate->usingVulkanMemoryModel()) {
5896 scopeId = builder.makeUintConstant(spv::ScopeQueueFamilyKHR);
5897 } else {
5898 scopeId = builder.makeUintConstant(spv::ScopeDevice);
5899 }
5900 // semantics default to relaxed
5901 spv::Id semanticsId = builder.makeUintConstant(spv::MemorySemanticsMaskNone);
5902 spv::Id semanticsId2 = semanticsId;
5903
5904 pointerId = operands[0];
5905 if (opCode == spv::OpAtomicIIncrement || opCode == spv::OpAtomicIDecrement) {
5906 // no additional operands
5907 } else if (opCode == spv::OpAtomicCompareExchange) {
5908 compareId = operands[1];
5909 valueId = operands[2];
5910 if (operands.size() > 3) {
5911 scopeId = operands[3];
5912 semanticsId = builder.makeUintConstant(builder.getConstantScalar(operands[4]) | builder.getConstantScalar(operands[5]));
5913 semanticsId2 = builder.makeUintConstant(builder.getConstantScalar(operands[6]) | builder.getConstantScalar(operands[7]));
5914 }
5915 } else if (opCode == spv::OpAtomicLoad) {
5916 if (operands.size() > 1) {
5917 scopeId = operands[1];
5918 semanticsId = builder.makeUintConstant(builder.getConstantScalar(operands[2]) | builder.getConstantScalar(operands[3]));
5919 }
5920 } else {
5921 // atomic store or RMW
5922 valueId = operands[1];
5923 if (operands.size() > 2) {
5924 scopeId = operands[2];
5925 semanticsId = builder.makeUintConstant(builder.getConstantScalar(operands[3]) | builder.getConstantScalar(operands[4]));
5926 }
Rex Xu04db3f52015-09-16 11:44:02 +08005927 }
John Kessenich426394d2015-07-23 10:22:48 -06005928
Jeff Bolz36831c92018-09-05 10:11:41 -05005929 // Check for capabilities
5930 unsigned semanticsImmediate = builder.getConstantScalar(semanticsId) | builder.getConstantScalar(semanticsId2);
5931 if (semanticsImmediate & (spv::MemorySemanticsMakeAvailableKHRMask | spv::MemorySemanticsMakeVisibleKHRMask | spv::MemorySemanticsOutputMemoryKHRMask)) {
5932 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
5933 }
John Kessenich426394d2015-07-23 10:22:48 -06005934
Jeff Bolz36831c92018-09-05 10:11:41 -05005935 if (glslangIntermediate->usingVulkanMemoryModel() && builder.getConstantScalar(scopeId) == spv::ScopeDevice) {
5936 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
5937 }
John Kessenich48d6e792017-10-06 21:21:48 -06005938
Jeff Bolz36831c92018-09-05 10:11:41 -05005939 std::vector<spv::Id> spvAtomicOperands; // hold the spv operands
5940 spvAtomicOperands.push_back(pointerId);
5941 spvAtomicOperands.push_back(scopeId);
5942 spvAtomicOperands.push_back(semanticsId);
5943 if (opCode == spv::OpAtomicCompareExchange) {
5944 spvAtomicOperands.push_back(semanticsId2);
5945 spvAtomicOperands.push_back(valueId);
5946 spvAtomicOperands.push_back(compareId);
5947 } else if (opCode != spv::OpAtomicLoad && opCode != spv::OpAtomicIIncrement && opCode != spv::OpAtomicIDecrement) {
5948 spvAtomicOperands.push_back(valueId);
5949 }
John Kessenich48d6e792017-10-06 21:21:48 -06005950
Jeff Bolz36831c92018-09-05 10:11:41 -05005951 if (opCode == spv::OpAtomicStore) {
5952 builder.createNoResultOp(opCode, spvAtomicOperands);
5953 return 0;
5954 } else {
5955 spv::Id resultId = builder.createOp(opCode, typeId, spvAtomicOperands);
5956
5957 // GLSL and HLSL atomic-counter decrement return post-decrement value,
5958 // while SPIR-V returns pre-decrement value. Translate between these semantics.
5959 if (op == glslang::EOpAtomicCounterDecrement)
5960 resultId = builder.createBinOp(spv::OpISub, typeId, resultId, builder.makeIntConstant(1));
5961
5962 return resultId;
5963 }
John Kessenich426394d2015-07-23 10:22:48 -06005964}
5965
John Kessenich91cef522016-05-05 16:45:40 -06005966// Create group invocation operations.
Rex Xu51596642016-09-21 18:56:12 +08005967spv::Id TGlslangToSpvTraverser::createInvocationsOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich91cef522016-05-05 16:45:40 -06005968{
Corentin Walleze7061422018-08-08 15:20:15 +02005969#ifdef AMD_EXTENSIONS
John Kessenich66011cb2018-03-06 16:12:04 -07005970 bool isUnsigned = isTypeUnsignedInt(typeProxy);
5971 bool isFloat = isTypeFloat(typeProxy);
Corentin Walleze7061422018-08-08 15:20:15 +02005972#endif
Rex Xu9d93a232016-05-05 12:30:44 +08005973
Rex Xu51596642016-09-21 18:56:12 +08005974 spv::Op opCode = spv::OpNop;
John Kessenich149afc32018-08-14 13:31:43 -06005975 std::vector<spv::IdImmediate> spvGroupOperands;
Rex Xu430ef402016-10-14 17:22:23 +08005976 spv::GroupOperation groupOperation = spv::GroupOperationMax;
5977
chaocf200da82016-12-20 12:44:35 -08005978 if (op == glslang::EOpBallot || op == glslang::EOpReadFirstInvocation ||
5979 op == glslang::EOpReadInvocation) {
Rex Xu51596642016-09-21 18:56:12 +08005980 builder.addExtension(spv::E_SPV_KHR_shader_ballot);
5981 builder.addCapability(spv::CapabilitySubgroupBallotKHR);
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08005982 } else if (op == glslang::EOpAnyInvocation ||
5983 op == glslang::EOpAllInvocations ||
5984 op == glslang::EOpAllInvocationsEqual) {
5985 builder.addExtension(spv::E_SPV_KHR_subgroup_vote);
5986 builder.addCapability(spv::CapabilitySubgroupVoteKHR);
Rex Xu51596642016-09-21 18:56:12 +08005987 } else {
5988 builder.addCapability(spv::CapabilityGroups);
David Netobb5c02f2016-10-19 10:16:29 -04005989#ifdef AMD_EXTENSIONS
Rex Xu17ff3432016-10-14 17:41:45 +08005990 if (op == glslang::EOpMinInvocationsNonUniform ||
5991 op == glslang::EOpMaxInvocationsNonUniform ||
Rex Xu430ef402016-10-14 17:22:23 +08005992 op == glslang::EOpAddInvocationsNonUniform ||
5993 op == glslang::EOpMinInvocationsInclusiveScanNonUniform ||
5994 op == glslang::EOpMaxInvocationsInclusiveScanNonUniform ||
5995 op == glslang::EOpAddInvocationsInclusiveScanNonUniform ||
5996 op == glslang::EOpMinInvocationsExclusiveScanNonUniform ||
5997 op == glslang::EOpMaxInvocationsExclusiveScanNonUniform ||
5998 op == glslang::EOpAddInvocationsExclusiveScanNonUniform)
Rex Xu17ff3432016-10-14 17:41:45 +08005999 builder.addExtension(spv::E_SPV_AMD_shader_ballot);
David Netobb5c02f2016-10-19 10:16:29 -04006000#endif
Rex Xu51596642016-09-21 18:56:12 +08006001
Rex Xu9d93a232016-05-05 12:30:44 +08006002#ifdef AMD_EXTENSIONS
Rex Xu430ef402016-10-14 17:22:23 +08006003 switch (op) {
6004 case glslang::EOpMinInvocations:
6005 case glslang::EOpMaxInvocations:
6006 case glslang::EOpAddInvocations:
6007 case glslang::EOpMinInvocationsNonUniform:
6008 case glslang::EOpMaxInvocationsNonUniform:
6009 case glslang::EOpAddInvocationsNonUniform:
6010 groupOperation = spv::GroupOperationReduce;
Rex Xu430ef402016-10-14 17:22:23 +08006011 break;
6012 case glslang::EOpMinInvocationsInclusiveScan:
6013 case glslang::EOpMaxInvocationsInclusiveScan:
6014 case glslang::EOpAddInvocationsInclusiveScan:
6015 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
6016 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
6017 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
6018 groupOperation = spv::GroupOperationInclusiveScan;
Rex Xu430ef402016-10-14 17:22:23 +08006019 break;
6020 case glslang::EOpMinInvocationsExclusiveScan:
6021 case glslang::EOpMaxInvocationsExclusiveScan:
6022 case glslang::EOpAddInvocationsExclusiveScan:
6023 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
6024 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
6025 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
6026 groupOperation = spv::GroupOperationExclusiveScan;
Rex Xu430ef402016-10-14 17:22:23 +08006027 break;
Mike Weiblen4e9e4002017-01-20 13:34:10 -07006028 default:
6029 break;
Rex Xu430ef402016-10-14 17:22:23 +08006030 }
John Kessenich149afc32018-08-14 13:31:43 -06006031 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
6032 spvGroupOperands.push_back(scope);
6033 if (groupOperation != spv::GroupOperationMax) {
John Kessenichd122a722018-09-18 03:43:30 -06006034 spv::IdImmediate groupOp = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06006035 spvGroupOperands.push_back(groupOp);
6036 }
Rex Xu9d93a232016-05-05 12:30:44 +08006037#endif
Rex Xu51596642016-09-21 18:56:12 +08006038 }
6039
John Kessenich149afc32018-08-14 13:31:43 -06006040 for (auto opIt = operands.begin(); opIt != operands.end(); ++opIt) {
6041 spv::IdImmediate op = { true, *opIt };
6042 spvGroupOperands.push_back(op);
6043 }
John Kessenich91cef522016-05-05 16:45:40 -06006044
6045 switch (op) {
6046 case glslang::EOpAnyInvocation:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08006047 opCode = spv::OpSubgroupAnyKHR;
Rex Xu51596642016-09-21 18:56:12 +08006048 break;
John Kessenich91cef522016-05-05 16:45:40 -06006049 case glslang::EOpAllInvocations:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08006050 opCode = spv::OpSubgroupAllKHR;
Rex Xu51596642016-09-21 18:56:12 +08006051 break;
John Kessenich91cef522016-05-05 16:45:40 -06006052 case glslang::EOpAllInvocationsEqual:
Ashwin Kolhec720f3e2017-01-18 14:16:49 -08006053 opCode = spv::OpSubgroupAllEqualKHR;
6054 break;
Rex Xu51596642016-09-21 18:56:12 +08006055 case glslang::EOpReadInvocation:
chaocf200da82016-12-20 12:44:35 -08006056 opCode = spv::OpSubgroupReadInvocationKHR;
Rex Xub7072052016-09-26 15:53:40 +08006057 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08006058 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08006059 break;
6060 case glslang::EOpReadFirstInvocation:
6061 opCode = spv::OpSubgroupFirstInvocationKHR;
6062 break;
6063 case glslang::EOpBallot:
6064 {
6065 // NOTE: According to the spec, the result type of "OpSubgroupBallotKHR" must be a 4 component vector of 32
6066 // bit integer types. The GLSL built-in function "ballotARB()" assumes the maximum number of invocations in
6067 // a subgroup is 64. Thus, we have to convert uvec4.xy to uint64_t as follow:
6068 //
6069 // result = Bitcast(SubgroupBallotKHR(Predicate).xy)
6070 //
6071 spv::Id uintType = builder.makeUintType(32);
6072 spv::Id uvec4Type = builder.makeVectorType(uintType, 4);
6073 spv::Id result = builder.createOp(spv::OpSubgroupBallotKHR, uvec4Type, spvGroupOperands);
6074
6075 std::vector<spv::Id> components;
6076 components.push_back(builder.createCompositeExtract(result, uintType, 0));
6077 components.push_back(builder.createCompositeExtract(result, uintType, 1));
6078
6079 spv::Id uvec2Type = builder.makeVectorType(uintType, 2);
6080 return builder.createUnaryOp(spv::OpBitcast, typeId,
6081 builder.createCompositeConstruct(uvec2Type, components));
6082 }
6083
Rex Xu9d93a232016-05-05 12:30:44 +08006084#ifdef AMD_EXTENSIONS
6085 case glslang::EOpMinInvocations:
6086 case glslang::EOpMaxInvocations:
6087 case glslang::EOpAddInvocations:
Rex Xu430ef402016-10-14 17:22:23 +08006088 case glslang::EOpMinInvocationsInclusiveScan:
6089 case glslang::EOpMaxInvocationsInclusiveScan:
6090 case glslang::EOpAddInvocationsInclusiveScan:
6091 case glslang::EOpMinInvocationsExclusiveScan:
6092 case glslang::EOpMaxInvocationsExclusiveScan:
6093 case glslang::EOpAddInvocationsExclusiveScan:
6094 if (op == glslang::EOpMinInvocations ||
6095 op == glslang::EOpMinInvocationsInclusiveScan ||
6096 op == glslang::EOpMinInvocationsExclusiveScan) {
Rex Xu9d93a232016-05-05 12:30:44 +08006097 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08006098 opCode = spv::OpGroupFMin;
Rex Xu9d93a232016-05-05 12:30:44 +08006099 else {
6100 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08006101 opCode = spv::OpGroupUMin;
Rex Xu9d93a232016-05-05 12:30:44 +08006102 else
Rex Xu51596642016-09-21 18:56:12 +08006103 opCode = spv::OpGroupSMin;
Rex Xu9d93a232016-05-05 12:30:44 +08006104 }
Rex Xu430ef402016-10-14 17:22:23 +08006105 } else if (op == glslang::EOpMaxInvocations ||
6106 op == glslang::EOpMaxInvocationsInclusiveScan ||
6107 op == glslang::EOpMaxInvocationsExclusiveScan) {
Rex Xu9d93a232016-05-05 12:30:44 +08006108 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08006109 opCode = spv::OpGroupFMax;
Rex Xu9d93a232016-05-05 12:30:44 +08006110 else {
6111 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08006112 opCode = spv::OpGroupUMax;
Rex Xu9d93a232016-05-05 12:30:44 +08006113 else
Rex Xu51596642016-09-21 18:56:12 +08006114 opCode = spv::OpGroupSMax;
Rex Xu9d93a232016-05-05 12:30:44 +08006115 }
6116 } else {
6117 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08006118 opCode = spv::OpGroupFAdd;
Rex Xu9d93a232016-05-05 12:30:44 +08006119 else
Rex Xu51596642016-09-21 18:56:12 +08006120 opCode = spv::OpGroupIAdd;
Rex Xu9d93a232016-05-05 12:30:44 +08006121 }
6122
Rex Xu2bbbe062016-08-23 15:41:05 +08006123 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08006124 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08006125
6126 break;
Rex Xu9d93a232016-05-05 12:30:44 +08006127 case glslang::EOpMinInvocationsNonUniform:
6128 case glslang::EOpMaxInvocationsNonUniform:
6129 case glslang::EOpAddInvocationsNonUniform:
Rex Xu430ef402016-10-14 17:22:23 +08006130 case glslang::EOpMinInvocationsInclusiveScanNonUniform:
6131 case glslang::EOpMaxInvocationsInclusiveScanNonUniform:
6132 case glslang::EOpAddInvocationsInclusiveScanNonUniform:
6133 case glslang::EOpMinInvocationsExclusiveScanNonUniform:
6134 case glslang::EOpMaxInvocationsExclusiveScanNonUniform:
6135 case glslang::EOpAddInvocationsExclusiveScanNonUniform:
6136 if (op == glslang::EOpMinInvocationsNonUniform ||
6137 op == glslang::EOpMinInvocationsInclusiveScanNonUniform ||
6138 op == glslang::EOpMinInvocationsExclusiveScanNonUniform) {
Rex Xu9d93a232016-05-05 12:30:44 +08006139 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08006140 opCode = spv::OpGroupFMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08006141 else {
6142 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08006143 opCode = spv::OpGroupUMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08006144 else
Rex Xu51596642016-09-21 18:56:12 +08006145 opCode = spv::OpGroupSMinNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08006146 }
6147 }
Rex Xu430ef402016-10-14 17:22:23 +08006148 else if (op == glslang::EOpMaxInvocationsNonUniform ||
6149 op == glslang::EOpMaxInvocationsInclusiveScanNonUniform ||
6150 op == glslang::EOpMaxInvocationsExclusiveScanNonUniform) {
Rex Xu9d93a232016-05-05 12:30:44 +08006151 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08006152 opCode = spv::OpGroupFMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08006153 else {
6154 if (isUnsigned)
Rex Xu51596642016-09-21 18:56:12 +08006155 opCode = spv::OpGroupUMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08006156 else
Rex Xu51596642016-09-21 18:56:12 +08006157 opCode = spv::OpGroupSMaxNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08006158 }
6159 }
6160 else {
6161 if (isFloat)
Rex Xu51596642016-09-21 18:56:12 +08006162 opCode = spv::OpGroupFAddNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08006163 else
Rex Xu51596642016-09-21 18:56:12 +08006164 opCode = spv::OpGroupIAddNonUniformAMD;
Rex Xu9d93a232016-05-05 12:30:44 +08006165 }
6166
Rex Xu2bbbe062016-08-23 15:41:05 +08006167 if (builder.isVectorType(typeId))
Rex Xu430ef402016-10-14 17:22:23 +08006168 return CreateInvocationsVectorOperation(opCode, groupOperation, typeId, operands);
Rex Xu51596642016-09-21 18:56:12 +08006169
6170 break;
Rex Xu9d93a232016-05-05 12:30:44 +08006171#endif
John Kessenich91cef522016-05-05 16:45:40 -06006172 default:
6173 logger->missingFunctionality("invocation operation");
6174 return spv::NoResult;
6175 }
Rex Xu51596642016-09-21 18:56:12 +08006176
6177 assert(opCode != spv::OpNop);
6178 return builder.createOp(opCode, typeId, spvGroupOperands);
John Kessenich91cef522016-05-05 16:45:40 -06006179}
6180
Rex Xu2bbbe062016-08-23 15:41:05 +08006181// Create group invocation operations on a vector
John Kessenich149afc32018-08-14 13:31:43 -06006182spv::Id TGlslangToSpvTraverser::CreateInvocationsVectorOperation(spv::Op op, spv::GroupOperation groupOperation,
6183 spv::Id typeId, std::vector<spv::Id>& operands)
Rex Xu2bbbe062016-08-23 15:41:05 +08006184{
Rex Xub7072052016-09-26 15:53:40 +08006185#ifdef AMD_EXTENSIONS
Rex Xu2bbbe062016-08-23 15:41:05 +08006186 assert(op == spv::OpGroupFMin || op == spv::OpGroupUMin || op == spv::OpGroupSMin ||
6187 op == spv::OpGroupFMax || op == spv::OpGroupUMax || op == spv::OpGroupSMax ||
Rex Xub7072052016-09-26 15:53:40 +08006188 op == spv::OpGroupFAdd || op == spv::OpGroupIAdd || op == spv::OpGroupBroadcast ||
chaocf200da82016-12-20 12:44:35 -08006189 op == spv::OpSubgroupReadInvocationKHR ||
Rex Xu2bbbe062016-08-23 15:41:05 +08006190 op == spv::OpGroupFMinNonUniformAMD || op == spv::OpGroupUMinNonUniformAMD || op == spv::OpGroupSMinNonUniformAMD ||
6191 op == spv::OpGroupFMaxNonUniformAMD || op == spv::OpGroupUMaxNonUniformAMD || op == spv::OpGroupSMaxNonUniformAMD ||
6192 op == spv::OpGroupFAddNonUniformAMD || op == spv::OpGroupIAddNonUniformAMD);
Rex Xub7072052016-09-26 15:53:40 +08006193#else
6194 assert(op == spv::OpGroupFMin || op == spv::OpGroupUMin || op == spv::OpGroupSMin ||
6195 op == spv::OpGroupFMax || op == spv::OpGroupUMax || op == spv::OpGroupSMax ||
chaocf200da82016-12-20 12:44:35 -08006196 op == spv::OpGroupFAdd || op == spv::OpGroupIAdd || op == spv::OpGroupBroadcast ||
6197 op == spv::OpSubgroupReadInvocationKHR);
Rex Xub7072052016-09-26 15:53:40 +08006198#endif
Rex Xu2bbbe062016-08-23 15:41:05 +08006199
6200 // Handle group invocation operations scalar by scalar.
6201 // The result type is the same type as the original type.
6202 // The algorithm is to:
6203 // - break the vector into scalars
6204 // - apply the operation to each scalar
6205 // - make a vector out the scalar results
6206
6207 // get the types sorted out
Rex Xub7072052016-09-26 15:53:40 +08006208 int numComponents = builder.getNumComponents(operands[0]);
6209 spv::Id scalarType = builder.getScalarTypeId(builder.getTypeId(operands[0]));
Rex Xu2bbbe062016-08-23 15:41:05 +08006210 std::vector<spv::Id> results;
6211
6212 // do each scalar op
6213 for (int comp = 0; comp < numComponents; ++comp) {
6214 std::vector<unsigned int> indexes;
6215 indexes.push_back(comp);
John Kessenich149afc32018-08-14 13:31:43 -06006216 spv::IdImmediate scalar = { true, builder.createCompositeExtract(operands[0], scalarType, indexes) };
6217 std::vector<spv::IdImmediate> spvGroupOperands;
chaocf200da82016-12-20 12:44:35 -08006218 if (op == spv::OpSubgroupReadInvocationKHR) {
6219 spvGroupOperands.push_back(scalar);
John Kessenich149afc32018-08-14 13:31:43 -06006220 spv::IdImmediate operand = { true, operands[1] };
6221 spvGroupOperands.push_back(operand);
chaocf200da82016-12-20 12:44:35 -08006222 } else if (op == spv::OpGroupBroadcast) {
John Kessenich149afc32018-08-14 13:31:43 -06006223 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
6224 spvGroupOperands.push_back(scope);
Rex Xub7072052016-09-26 15:53:40 +08006225 spvGroupOperands.push_back(scalar);
John Kessenich149afc32018-08-14 13:31:43 -06006226 spv::IdImmediate operand = { true, operands[1] };
6227 spvGroupOperands.push_back(operand);
Rex Xub7072052016-09-26 15:53:40 +08006228 } else {
John Kessenich149afc32018-08-14 13:31:43 -06006229 spv::IdImmediate scope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
6230 spvGroupOperands.push_back(scope);
John Kessenichd122a722018-09-18 03:43:30 -06006231 spv::IdImmediate groupOp = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06006232 spvGroupOperands.push_back(groupOp);
Rex Xub7072052016-09-26 15:53:40 +08006233 spvGroupOperands.push_back(scalar);
6234 }
Rex Xu2bbbe062016-08-23 15:41:05 +08006235
Rex Xub7072052016-09-26 15:53:40 +08006236 results.push_back(builder.createOp(op, scalarType, spvGroupOperands));
Rex Xu2bbbe062016-08-23 15:41:05 +08006237 }
6238
6239 // put the pieces together
6240 return builder.createCompositeConstruct(typeId, results);
6241}
Rex Xu2bbbe062016-08-23 15:41:05 +08006242
John Kessenich66011cb2018-03-06 16:12:04 -07006243// Create subgroup invocation operations.
John Kessenich149afc32018-08-14 13:31:43 -06006244spv::Id TGlslangToSpvTraverser::createSubgroupOperation(glslang::TOperator op, spv::Id typeId,
6245 std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich66011cb2018-03-06 16:12:04 -07006246{
6247 // Add the required capabilities.
6248 switch (op) {
6249 case glslang::EOpSubgroupElect:
6250 builder.addCapability(spv::CapabilityGroupNonUniform);
6251 break;
6252 case glslang::EOpSubgroupAll:
6253 case glslang::EOpSubgroupAny:
6254 case glslang::EOpSubgroupAllEqual:
6255 builder.addCapability(spv::CapabilityGroupNonUniform);
6256 builder.addCapability(spv::CapabilityGroupNonUniformVote);
6257 break;
6258 case glslang::EOpSubgroupBroadcast:
6259 case glslang::EOpSubgroupBroadcastFirst:
6260 case glslang::EOpSubgroupBallot:
6261 case glslang::EOpSubgroupInverseBallot:
6262 case glslang::EOpSubgroupBallotBitExtract:
6263 case glslang::EOpSubgroupBallotBitCount:
6264 case glslang::EOpSubgroupBallotInclusiveBitCount:
6265 case glslang::EOpSubgroupBallotExclusiveBitCount:
6266 case glslang::EOpSubgroupBallotFindLSB:
6267 case glslang::EOpSubgroupBallotFindMSB:
6268 builder.addCapability(spv::CapabilityGroupNonUniform);
6269 builder.addCapability(spv::CapabilityGroupNonUniformBallot);
6270 break;
6271 case glslang::EOpSubgroupShuffle:
6272 case glslang::EOpSubgroupShuffleXor:
6273 builder.addCapability(spv::CapabilityGroupNonUniform);
6274 builder.addCapability(spv::CapabilityGroupNonUniformShuffle);
6275 break;
6276 case glslang::EOpSubgroupShuffleUp:
6277 case glslang::EOpSubgroupShuffleDown:
6278 builder.addCapability(spv::CapabilityGroupNonUniform);
6279 builder.addCapability(spv::CapabilityGroupNonUniformShuffleRelative);
6280 break;
6281 case glslang::EOpSubgroupAdd:
6282 case glslang::EOpSubgroupMul:
6283 case glslang::EOpSubgroupMin:
6284 case glslang::EOpSubgroupMax:
6285 case glslang::EOpSubgroupAnd:
6286 case glslang::EOpSubgroupOr:
6287 case glslang::EOpSubgroupXor:
6288 case glslang::EOpSubgroupInclusiveAdd:
6289 case glslang::EOpSubgroupInclusiveMul:
6290 case glslang::EOpSubgroupInclusiveMin:
6291 case glslang::EOpSubgroupInclusiveMax:
6292 case glslang::EOpSubgroupInclusiveAnd:
6293 case glslang::EOpSubgroupInclusiveOr:
6294 case glslang::EOpSubgroupInclusiveXor:
6295 case glslang::EOpSubgroupExclusiveAdd:
6296 case glslang::EOpSubgroupExclusiveMul:
6297 case glslang::EOpSubgroupExclusiveMin:
6298 case glslang::EOpSubgroupExclusiveMax:
6299 case glslang::EOpSubgroupExclusiveAnd:
6300 case glslang::EOpSubgroupExclusiveOr:
6301 case glslang::EOpSubgroupExclusiveXor:
6302 builder.addCapability(spv::CapabilityGroupNonUniform);
6303 builder.addCapability(spv::CapabilityGroupNonUniformArithmetic);
6304 break;
6305 case glslang::EOpSubgroupClusteredAdd:
6306 case glslang::EOpSubgroupClusteredMul:
6307 case glslang::EOpSubgroupClusteredMin:
6308 case glslang::EOpSubgroupClusteredMax:
6309 case glslang::EOpSubgroupClusteredAnd:
6310 case glslang::EOpSubgroupClusteredOr:
6311 case glslang::EOpSubgroupClusteredXor:
6312 builder.addCapability(spv::CapabilityGroupNonUniform);
6313 builder.addCapability(spv::CapabilityGroupNonUniformClustered);
6314 break;
6315 case glslang::EOpSubgroupQuadBroadcast:
6316 case glslang::EOpSubgroupQuadSwapHorizontal:
6317 case glslang::EOpSubgroupQuadSwapVertical:
6318 case glslang::EOpSubgroupQuadSwapDiagonal:
6319 builder.addCapability(spv::CapabilityGroupNonUniform);
6320 builder.addCapability(spv::CapabilityGroupNonUniformQuad);
6321 break;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006322#ifdef NV_EXTENSIONS
6323 case glslang::EOpSubgroupPartitionedAdd:
6324 case glslang::EOpSubgroupPartitionedMul:
6325 case glslang::EOpSubgroupPartitionedMin:
6326 case glslang::EOpSubgroupPartitionedMax:
6327 case glslang::EOpSubgroupPartitionedAnd:
6328 case glslang::EOpSubgroupPartitionedOr:
6329 case glslang::EOpSubgroupPartitionedXor:
6330 case glslang::EOpSubgroupPartitionedInclusiveAdd:
6331 case glslang::EOpSubgroupPartitionedInclusiveMul:
6332 case glslang::EOpSubgroupPartitionedInclusiveMin:
6333 case glslang::EOpSubgroupPartitionedInclusiveMax:
6334 case glslang::EOpSubgroupPartitionedInclusiveAnd:
6335 case glslang::EOpSubgroupPartitionedInclusiveOr:
6336 case glslang::EOpSubgroupPartitionedInclusiveXor:
6337 case glslang::EOpSubgroupPartitionedExclusiveAdd:
6338 case glslang::EOpSubgroupPartitionedExclusiveMul:
6339 case glslang::EOpSubgroupPartitionedExclusiveMin:
6340 case glslang::EOpSubgroupPartitionedExclusiveMax:
6341 case glslang::EOpSubgroupPartitionedExclusiveAnd:
6342 case glslang::EOpSubgroupPartitionedExclusiveOr:
6343 case glslang::EOpSubgroupPartitionedExclusiveXor:
6344 builder.addExtension(spv::E_SPV_NV_shader_subgroup_partitioned);
6345 builder.addCapability(spv::CapabilityGroupNonUniformPartitionedNV);
6346 break;
6347#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006348 default: assert(0 && "Unhandled subgroup operation!");
6349 }
6350
6351 const bool isUnsigned = typeProxy == glslang::EbtUint || typeProxy == glslang::EbtUint64;
6352 const bool isFloat = typeProxy == glslang::EbtFloat || typeProxy == glslang::EbtDouble;
6353 const bool isBool = typeProxy == glslang::EbtBool;
6354
6355 spv::Op opCode = spv::OpNop;
6356
6357 // Figure out which opcode to use.
6358 switch (op) {
6359 case glslang::EOpSubgroupElect: opCode = spv::OpGroupNonUniformElect; break;
6360 case glslang::EOpSubgroupAll: opCode = spv::OpGroupNonUniformAll; break;
6361 case glslang::EOpSubgroupAny: opCode = spv::OpGroupNonUniformAny; break;
6362 case glslang::EOpSubgroupAllEqual: opCode = spv::OpGroupNonUniformAllEqual; break;
6363 case glslang::EOpSubgroupBroadcast: opCode = spv::OpGroupNonUniformBroadcast; break;
6364 case glslang::EOpSubgroupBroadcastFirst: opCode = spv::OpGroupNonUniformBroadcastFirst; break;
6365 case glslang::EOpSubgroupBallot: opCode = spv::OpGroupNonUniformBallot; break;
6366 case glslang::EOpSubgroupInverseBallot: opCode = spv::OpGroupNonUniformInverseBallot; break;
6367 case glslang::EOpSubgroupBallotBitExtract: opCode = spv::OpGroupNonUniformBallotBitExtract; break;
6368 case glslang::EOpSubgroupBallotBitCount:
6369 case glslang::EOpSubgroupBallotInclusiveBitCount:
6370 case glslang::EOpSubgroupBallotExclusiveBitCount: opCode = spv::OpGroupNonUniformBallotBitCount; break;
6371 case glslang::EOpSubgroupBallotFindLSB: opCode = spv::OpGroupNonUniformBallotFindLSB; break;
6372 case glslang::EOpSubgroupBallotFindMSB: opCode = spv::OpGroupNonUniformBallotFindMSB; break;
6373 case glslang::EOpSubgroupShuffle: opCode = spv::OpGroupNonUniformShuffle; break;
6374 case glslang::EOpSubgroupShuffleXor: opCode = spv::OpGroupNonUniformShuffleXor; break;
6375 case glslang::EOpSubgroupShuffleUp: opCode = spv::OpGroupNonUniformShuffleUp; break;
6376 case glslang::EOpSubgroupShuffleDown: opCode = spv::OpGroupNonUniformShuffleDown; break;
6377 case glslang::EOpSubgroupAdd:
6378 case glslang::EOpSubgroupInclusiveAdd:
6379 case glslang::EOpSubgroupExclusiveAdd:
6380 case glslang::EOpSubgroupClusteredAdd:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006381#ifdef NV_EXTENSIONS
6382 case glslang::EOpSubgroupPartitionedAdd:
6383 case glslang::EOpSubgroupPartitionedInclusiveAdd:
6384 case glslang::EOpSubgroupPartitionedExclusiveAdd:
6385#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006386 if (isFloat) {
6387 opCode = spv::OpGroupNonUniformFAdd;
6388 } else {
6389 opCode = spv::OpGroupNonUniformIAdd;
6390 }
6391 break;
6392 case glslang::EOpSubgroupMul:
6393 case glslang::EOpSubgroupInclusiveMul:
6394 case glslang::EOpSubgroupExclusiveMul:
6395 case glslang::EOpSubgroupClusteredMul:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006396#ifdef NV_EXTENSIONS
6397 case glslang::EOpSubgroupPartitionedMul:
6398 case glslang::EOpSubgroupPartitionedInclusiveMul:
6399 case glslang::EOpSubgroupPartitionedExclusiveMul:
6400#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006401 if (isFloat) {
6402 opCode = spv::OpGroupNonUniformFMul;
6403 } else {
6404 opCode = spv::OpGroupNonUniformIMul;
6405 }
6406 break;
6407 case glslang::EOpSubgroupMin:
6408 case glslang::EOpSubgroupInclusiveMin:
6409 case glslang::EOpSubgroupExclusiveMin:
6410 case glslang::EOpSubgroupClusteredMin:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006411#ifdef NV_EXTENSIONS
6412 case glslang::EOpSubgroupPartitionedMin:
6413 case glslang::EOpSubgroupPartitionedInclusiveMin:
6414 case glslang::EOpSubgroupPartitionedExclusiveMin:
6415#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006416 if (isFloat) {
6417 opCode = spv::OpGroupNonUniformFMin;
6418 } else if (isUnsigned) {
6419 opCode = spv::OpGroupNonUniformUMin;
6420 } else {
6421 opCode = spv::OpGroupNonUniformSMin;
6422 }
6423 break;
6424 case glslang::EOpSubgroupMax:
6425 case glslang::EOpSubgroupInclusiveMax:
6426 case glslang::EOpSubgroupExclusiveMax:
6427 case glslang::EOpSubgroupClusteredMax:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006428#ifdef NV_EXTENSIONS
6429 case glslang::EOpSubgroupPartitionedMax:
6430 case glslang::EOpSubgroupPartitionedInclusiveMax:
6431 case glslang::EOpSubgroupPartitionedExclusiveMax:
6432#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006433 if (isFloat) {
6434 opCode = spv::OpGroupNonUniformFMax;
6435 } else if (isUnsigned) {
6436 opCode = spv::OpGroupNonUniformUMax;
6437 } else {
6438 opCode = spv::OpGroupNonUniformSMax;
6439 }
6440 break;
6441 case glslang::EOpSubgroupAnd:
6442 case glslang::EOpSubgroupInclusiveAnd:
6443 case glslang::EOpSubgroupExclusiveAnd:
6444 case glslang::EOpSubgroupClusteredAnd:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006445#ifdef NV_EXTENSIONS
6446 case glslang::EOpSubgroupPartitionedAnd:
6447 case glslang::EOpSubgroupPartitionedInclusiveAnd:
6448 case glslang::EOpSubgroupPartitionedExclusiveAnd:
6449#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006450 if (isBool) {
6451 opCode = spv::OpGroupNonUniformLogicalAnd;
6452 } else {
6453 opCode = spv::OpGroupNonUniformBitwiseAnd;
6454 }
6455 break;
6456 case glslang::EOpSubgroupOr:
6457 case glslang::EOpSubgroupInclusiveOr:
6458 case glslang::EOpSubgroupExclusiveOr:
6459 case glslang::EOpSubgroupClusteredOr:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006460#ifdef NV_EXTENSIONS
6461 case glslang::EOpSubgroupPartitionedOr:
6462 case glslang::EOpSubgroupPartitionedInclusiveOr:
6463 case glslang::EOpSubgroupPartitionedExclusiveOr:
6464#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006465 if (isBool) {
6466 opCode = spv::OpGroupNonUniformLogicalOr;
6467 } else {
6468 opCode = spv::OpGroupNonUniformBitwiseOr;
6469 }
6470 break;
6471 case glslang::EOpSubgroupXor:
6472 case glslang::EOpSubgroupInclusiveXor:
6473 case glslang::EOpSubgroupExclusiveXor:
6474 case glslang::EOpSubgroupClusteredXor:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006475#ifdef NV_EXTENSIONS
6476 case glslang::EOpSubgroupPartitionedXor:
6477 case glslang::EOpSubgroupPartitionedInclusiveXor:
6478 case glslang::EOpSubgroupPartitionedExclusiveXor:
6479#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006480 if (isBool) {
6481 opCode = spv::OpGroupNonUniformLogicalXor;
6482 } else {
6483 opCode = spv::OpGroupNonUniformBitwiseXor;
6484 }
6485 break;
6486 case glslang::EOpSubgroupQuadBroadcast: opCode = spv::OpGroupNonUniformQuadBroadcast; break;
6487 case glslang::EOpSubgroupQuadSwapHorizontal:
6488 case glslang::EOpSubgroupQuadSwapVertical:
6489 case glslang::EOpSubgroupQuadSwapDiagonal: opCode = spv::OpGroupNonUniformQuadSwap; break;
6490 default: assert(0 && "Unhandled subgroup operation!");
6491 }
6492
John Kessenich149afc32018-08-14 13:31:43 -06006493 // get the right Group Operation
6494 spv::GroupOperation groupOperation = spv::GroupOperationMax;
John Kessenich66011cb2018-03-06 16:12:04 -07006495 switch (op) {
John Kessenich149afc32018-08-14 13:31:43 -06006496 default:
6497 break;
John Kessenich66011cb2018-03-06 16:12:04 -07006498 case glslang::EOpSubgroupBallotBitCount:
6499 case glslang::EOpSubgroupAdd:
6500 case glslang::EOpSubgroupMul:
6501 case glslang::EOpSubgroupMin:
6502 case glslang::EOpSubgroupMax:
6503 case glslang::EOpSubgroupAnd:
6504 case glslang::EOpSubgroupOr:
6505 case glslang::EOpSubgroupXor:
John Kessenich149afc32018-08-14 13:31:43 -06006506 groupOperation = spv::GroupOperationReduce;
John Kessenich66011cb2018-03-06 16:12:04 -07006507 break;
6508 case glslang::EOpSubgroupBallotInclusiveBitCount:
6509 case glslang::EOpSubgroupInclusiveAdd:
6510 case glslang::EOpSubgroupInclusiveMul:
6511 case glslang::EOpSubgroupInclusiveMin:
6512 case glslang::EOpSubgroupInclusiveMax:
6513 case glslang::EOpSubgroupInclusiveAnd:
6514 case glslang::EOpSubgroupInclusiveOr:
6515 case glslang::EOpSubgroupInclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06006516 groupOperation = spv::GroupOperationInclusiveScan;
John Kessenich66011cb2018-03-06 16:12:04 -07006517 break;
6518 case glslang::EOpSubgroupBallotExclusiveBitCount:
6519 case glslang::EOpSubgroupExclusiveAdd:
6520 case glslang::EOpSubgroupExclusiveMul:
6521 case glslang::EOpSubgroupExclusiveMin:
6522 case glslang::EOpSubgroupExclusiveMax:
6523 case glslang::EOpSubgroupExclusiveAnd:
6524 case glslang::EOpSubgroupExclusiveOr:
6525 case glslang::EOpSubgroupExclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06006526 groupOperation = spv::GroupOperationExclusiveScan;
John Kessenich66011cb2018-03-06 16:12:04 -07006527 break;
6528 case glslang::EOpSubgroupClusteredAdd:
6529 case glslang::EOpSubgroupClusteredMul:
6530 case glslang::EOpSubgroupClusteredMin:
6531 case glslang::EOpSubgroupClusteredMax:
6532 case glslang::EOpSubgroupClusteredAnd:
6533 case glslang::EOpSubgroupClusteredOr:
6534 case glslang::EOpSubgroupClusteredXor:
John Kessenich149afc32018-08-14 13:31:43 -06006535 groupOperation = spv::GroupOperationClusteredReduce;
John Kessenich66011cb2018-03-06 16:12:04 -07006536 break;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006537#ifdef NV_EXTENSIONS
6538 case glslang::EOpSubgroupPartitionedAdd:
6539 case glslang::EOpSubgroupPartitionedMul:
6540 case glslang::EOpSubgroupPartitionedMin:
6541 case glslang::EOpSubgroupPartitionedMax:
6542 case glslang::EOpSubgroupPartitionedAnd:
6543 case glslang::EOpSubgroupPartitionedOr:
6544 case glslang::EOpSubgroupPartitionedXor:
John Kessenich149afc32018-08-14 13:31:43 -06006545 groupOperation = spv::GroupOperationPartitionedReduceNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006546 break;
6547 case glslang::EOpSubgroupPartitionedInclusiveAdd:
6548 case glslang::EOpSubgroupPartitionedInclusiveMul:
6549 case glslang::EOpSubgroupPartitionedInclusiveMin:
6550 case glslang::EOpSubgroupPartitionedInclusiveMax:
6551 case glslang::EOpSubgroupPartitionedInclusiveAnd:
6552 case glslang::EOpSubgroupPartitionedInclusiveOr:
6553 case glslang::EOpSubgroupPartitionedInclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06006554 groupOperation = spv::GroupOperationPartitionedInclusiveScanNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006555 break;
6556 case glslang::EOpSubgroupPartitionedExclusiveAdd:
6557 case glslang::EOpSubgroupPartitionedExclusiveMul:
6558 case glslang::EOpSubgroupPartitionedExclusiveMin:
6559 case glslang::EOpSubgroupPartitionedExclusiveMax:
6560 case glslang::EOpSubgroupPartitionedExclusiveAnd:
6561 case glslang::EOpSubgroupPartitionedExclusiveOr:
6562 case glslang::EOpSubgroupPartitionedExclusiveXor:
John Kessenich149afc32018-08-14 13:31:43 -06006563 groupOperation = spv::GroupOperationPartitionedExclusiveScanNV;
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006564 break;
6565#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006566 }
6567
John Kessenich149afc32018-08-14 13:31:43 -06006568 // build the instruction
6569 std::vector<spv::IdImmediate> spvGroupOperands;
6570
6571 // Every operation begins with the Execution Scope operand.
6572 spv::IdImmediate executionScope = { true, builder.makeUintConstant(spv::ScopeSubgroup) };
6573 spvGroupOperands.push_back(executionScope);
6574
6575 // Next, for all operations that use a Group Operation, push that as an operand.
6576 if (groupOperation != spv::GroupOperationMax) {
John Kessenichd122a722018-09-18 03:43:30 -06006577 spv::IdImmediate groupOperand = { false, (unsigned)groupOperation };
John Kessenich149afc32018-08-14 13:31:43 -06006578 spvGroupOperands.push_back(groupOperand);
6579 }
6580
John Kessenich66011cb2018-03-06 16:12:04 -07006581 // Push back the operands next.
John Kessenich149afc32018-08-14 13:31:43 -06006582 for (auto opIt = operands.cbegin(); opIt != operands.cend(); ++opIt) {
6583 spv::IdImmediate operand = { true, *opIt };
6584 spvGroupOperands.push_back(operand);
John Kessenich66011cb2018-03-06 16:12:04 -07006585 }
6586
6587 // Some opcodes have additional operands.
John Kessenich149afc32018-08-14 13:31:43 -06006588 spv::Id directionId = spv::NoResult;
John Kessenich66011cb2018-03-06 16:12:04 -07006589 switch (op) {
6590 default: break;
John Kessenich149afc32018-08-14 13:31:43 -06006591 case glslang::EOpSubgroupQuadSwapHorizontal: directionId = builder.makeUintConstant(0); break;
6592 case glslang::EOpSubgroupQuadSwapVertical: directionId = builder.makeUintConstant(1); break;
6593 case glslang::EOpSubgroupQuadSwapDiagonal: directionId = builder.makeUintConstant(2); break;
6594 }
6595 if (directionId != spv::NoResult) {
6596 spv::IdImmediate direction = { true, directionId };
6597 spvGroupOperands.push_back(direction);
John Kessenich66011cb2018-03-06 16:12:04 -07006598 }
6599
6600 return builder.createOp(opCode, typeId, spvGroupOperands);
6601}
6602
John Kessenich5e4b1242015-08-06 22:53:06 -06006603spv::Id TGlslangToSpvTraverser::createMiscOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy)
John Kessenich140f3df2015-06-26 16:58:36 -06006604{
John Kessenich66011cb2018-03-06 16:12:04 -07006605 bool isUnsigned = isTypeUnsignedInt(typeProxy);
6606 bool isFloat = isTypeFloat(typeProxy);
John Kessenich5e4b1242015-08-06 22:53:06 -06006607
John Kessenich140f3df2015-06-26 16:58:36 -06006608 spv::Op opCode = spv::OpNop;
Rex Xu9d93a232016-05-05 12:30:44 +08006609 int extBuiltins = -1;
John Kessenich140f3df2015-06-26 16:58:36 -06006610 int libCall = -1;
Mark Adams364c21c2016-01-06 13:41:02 -05006611 size_t consumedOperands = operands.size();
John Kessenich55e7d112015-11-15 21:33:39 -07006612 spv::Id typeId0 = 0;
6613 if (consumedOperands > 0)
6614 typeId0 = builder.getTypeId(operands[0]);
Rex Xu470026f2017-03-29 17:12:40 +08006615 spv::Id typeId1 = 0;
6616 if (consumedOperands > 1)
6617 typeId1 = builder.getTypeId(operands[1]);
John Kessenich55e7d112015-11-15 21:33:39 -07006618 spv::Id frexpIntType = 0;
John Kessenich140f3df2015-06-26 16:58:36 -06006619
6620 switch (op) {
6621 case glslang::EOpMin:
John Kessenich5e4b1242015-08-06 22:53:06 -06006622 if (isFloat)
6623 libCall = spv::GLSLstd450FMin;
6624 else if (isUnsigned)
6625 libCall = spv::GLSLstd450UMin;
6626 else
6627 libCall = spv::GLSLstd450SMin;
John Kesseniche7c83cf2015-12-13 13:34:37 -07006628 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06006629 break;
6630 case glslang::EOpModf:
John Kessenich5e4b1242015-08-06 22:53:06 -06006631 libCall = spv::GLSLstd450Modf;
John Kessenich140f3df2015-06-26 16:58:36 -06006632 break;
6633 case glslang::EOpMax:
John Kessenich5e4b1242015-08-06 22:53:06 -06006634 if (isFloat)
6635 libCall = spv::GLSLstd450FMax;
6636 else if (isUnsigned)
6637 libCall = spv::GLSLstd450UMax;
6638 else
6639 libCall = spv::GLSLstd450SMax;
John Kesseniche7c83cf2015-12-13 13:34:37 -07006640 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06006641 break;
6642 case glslang::EOpPow:
John Kessenich5e4b1242015-08-06 22:53:06 -06006643 libCall = spv::GLSLstd450Pow;
John Kessenich140f3df2015-06-26 16:58:36 -06006644 break;
6645 case glslang::EOpDot:
6646 opCode = spv::OpDot;
6647 break;
6648 case glslang::EOpAtan:
John Kessenich5e4b1242015-08-06 22:53:06 -06006649 libCall = spv::GLSLstd450Atan2;
John Kessenich140f3df2015-06-26 16:58:36 -06006650 break;
6651
6652 case glslang::EOpClamp:
John Kessenich5e4b1242015-08-06 22:53:06 -06006653 if (isFloat)
6654 libCall = spv::GLSLstd450FClamp;
6655 else if (isUnsigned)
6656 libCall = spv::GLSLstd450UClamp;
6657 else
6658 libCall = spv::GLSLstd450SClamp;
John Kesseniche7c83cf2015-12-13 13:34:37 -07006659 builder.promoteScalar(precision, operands.front(), operands[1]);
6660 builder.promoteScalar(precision, operands.front(), operands[2]);
John Kessenich140f3df2015-06-26 16:58:36 -06006661 break;
6662 case glslang::EOpMix:
Rex Xud715adc2016-03-15 12:08:31 +08006663 if (! builder.isBoolType(builder.getScalarTypeId(builder.getTypeId(operands.back())))) {
6664 assert(isFloat);
John Kessenich55e7d112015-11-15 21:33:39 -07006665 libCall = spv::GLSLstd450FMix;
Rex Xud715adc2016-03-15 12:08:31 +08006666 } else {
John Kessenich6c292d32016-02-15 20:58:50 -07006667 opCode = spv::OpSelect;
Rex Xud715adc2016-03-15 12:08:31 +08006668 std::swap(operands.front(), operands.back());
John Kessenich6c292d32016-02-15 20:58:50 -07006669 }
John Kesseniche7c83cf2015-12-13 13:34:37 -07006670 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06006671 break;
6672 case glslang::EOpStep:
John Kessenich5e4b1242015-08-06 22:53:06 -06006673 libCall = spv::GLSLstd450Step;
John Kesseniche7c83cf2015-12-13 13:34:37 -07006674 builder.promoteScalar(precision, operands.front(), operands.back());
John Kessenich140f3df2015-06-26 16:58:36 -06006675 break;
6676 case glslang::EOpSmoothStep:
John Kessenich5e4b1242015-08-06 22:53:06 -06006677 libCall = spv::GLSLstd450SmoothStep;
John Kesseniche7c83cf2015-12-13 13:34:37 -07006678 builder.promoteScalar(precision, operands[0], operands[2]);
6679 builder.promoteScalar(precision, operands[1], operands[2]);
John Kessenich140f3df2015-06-26 16:58:36 -06006680 break;
6681
6682 case glslang::EOpDistance:
John Kessenich5e4b1242015-08-06 22:53:06 -06006683 libCall = spv::GLSLstd450Distance;
John Kessenich140f3df2015-06-26 16:58:36 -06006684 break;
6685 case glslang::EOpCross:
John Kessenich5e4b1242015-08-06 22:53:06 -06006686 libCall = spv::GLSLstd450Cross;
John Kessenich140f3df2015-06-26 16:58:36 -06006687 break;
6688 case glslang::EOpFaceForward:
John Kessenich5e4b1242015-08-06 22:53:06 -06006689 libCall = spv::GLSLstd450FaceForward;
John Kessenich140f3df2015-06-26 16:58:36 -06006690 break;
6691 case glslang::EOpReflect:
John Kessenich5e4b1242015-08-06 22:53:06 -06006692 libCall = spv::GLSLstd450Reflect;
John Kessenich140f3df2015-06-26 16:58:36 -06006693 break;
6694 case glslang::EOpRefract:
John Kessenich5e4b1242015-08-06 22:53:06 -06006695 libCall = spv::GLSLstd450Refract;
John Kessenich140f3df2015-06-26 16:58:36 -06006696 break;
Rex Xu7a26c172015-12-08 17:12:09 +08006697 case glslang::EOpInterpolateAtSample:
Rex Xub4a2a6c2018-05-17 13:51:28 +08006698#ifdef AMD_EXTENSIONS
6699 if (typeProxy == glslang::EbtFloat16)
6700 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
6701#endif
Rex Xu7a26c172015-12-08 17:12:09 +08006702 libCall = spv::GLSLstd450InterpolateAtSample;
6703 break;
6704 case glslang::EOpInterpolateAtOffset:
Rex Xub4a2a6c2018-05-17 13:51:28 +08006705#ifdef AMD_EXTENSIONS
6706 if (typeProxy == glslang::EbtFloat16)
6707 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
6708#endif
Rex Xu7a26c172015-12-08 17:12:09 +08006709 libCall = spv::GLSLstd450InterpolateAtOffset;
6710 break;
John Kessenich55e7d112015-11-15 21:33:39 -07006711 case glslang::EOpAddCarry:
6712 opCode = spv::OpIAddCarry;
6713 typeId = builder.makeStructResultType(typeId0, typeId0);
6714 consumedOperands = 2;
6715 break;
6716 case glslang::EOpSubBorrow:
6717 opCode = spv::OpISubBorrow;
6718 typeId = builder.makeStructResultType(typeId0, typeId0);
6719 consumedOperands = 2;
6720 break;
6721 case glslang::EOpUMulExtended:
6722 opCode = spv::OpUMulExtended;
6723 typeId = builder.makeStructResultType(typeId0, typeId0);
6724 consumedOperands = 2;
6725 break;
6726 case glslang::EOpIMulExtended:
6727 opCode = spv::OpSMulExtended;
6728 typeId = builder.makeStructResultType(typeId0, typeId0);
6729 consumedOperands = 2;
6730 break;
6731 case glslang::EOpBitfieldExtract:
6732 if (isUnsigned)
6733 opCode = spv::OpBitFieldUExtract;
6734 else
6735 opCode = spv::OpBitFieldSExtract;
6736 break;
6737 case glslang::EOpBitfieldInsert:
6738 opCode = spv::OpBitFieldInsert;
6739 break;
6740
6741 case glslang::EOpFma:
6742 libCall = spv::GLSLstd450Fma;
6743 break;
6744 case glslang::EOpFrexp:
Rex Xu470026f2017-03-29 17:12:40 +08006745 {
6746 libCall = spv::GLSLstd450FrexpStruct;
6747 assert(builder.isPointerType(typeId1));
6748 typeId1 = builder.getContainedTypeId(typeId1);
Rex Xu470026f2017-03-29 17:12:40 +08006749 int width = builder.getScalarTypeWidth(typeId1);
Rex Xu7c88aff2018-04-11 16:56:50 +08006750#ifdef AMD_EXTENSIONS
6751 if (width == 16)
6752 // Using 16-bit exp operand, enable extension SPV_AMD_gpu_shader_int16
6753 builder.addExtension(spv::E_SPV_AMD_gpu_shader_int16);
6754#endif
Rex Xu470026f2017-03-29 17:12:40 +08006755 if (builder.getNumComponents(operands[0]) == 1)
6756 frexpIntType = builder.makeIntegerType(width, true);
6757 else
6758 frexpIntType = builder.makeVectorType(builder.makeIntegerType(width, true), builder.getNumComponents(operands[0]));
6759 typeId = builder.makeStructResultType(typeId0, frexpIntType);
6760 consumedOperands = 1;
6761 }
John Kessenich55e7d112015-11-15 21:33:39 -07006762 break;
6763 case glslang::EOpLdexp:
6764 libCall = spv::GLSLstd450Ldexp;
6765 break;
6766
Rex Xu574ab042016-04-14 16:53:07 +08006767 case glslang::EOpReadInvocation:
Rex Xu51596642016-09-21 18:56:12 +08006768 return createInvocationsOperation(op, typeId, operands, typeProxy);
Rex Xu574ab042016-04-14 16:53:07 +08006769
John Kessenich66011cb2018-03-06 16:12:04 -07006770 case glslang::EOpSubgroupBroadcast:
6771 case glslang::EOpSubgroupBallotBitExtract:
6772 case glslang::EOpSubgroupShuffle:
6773 case glslang::EOpSubgroupShuffleXor:
6774 case glslang::EOpSubgroupShuffleUp:
6775 case glslang::EOpSubgroupShuffleDown:
6776 case glslang::EOpSubgroupClusteredAdd:
6777 case glslang::EOpSubgroupClusteredMul:
6778 case glslang::EOpSubgroupClusteredMin:
6779 case glslang::EOpSubgroupClusteredMax:
6780 case glslang::EOpSubgroupClusteredAnd:
6781 case glslang::EOpSubgroupClusteredOr:
6782 case glslang::EOpSubgroupClusteredXor:
6783 case glslang::EOpSubgroupQuadBroadcast:
Jeff Bolz2abe9a42018-03-29 22:52:17 -05006784#ifdef NV_EXTENSIONS
6785 case glslang::EOpSubgroupPartitionedAdd:
6786 case glslang::EOpSubgroupPartitionedMul:
6787 case glslang::EOpSubgroupPartitionedMin:
6788 case glslang::EOpSubgroupPartitionedMax:
6789 case glslang::EOpSubgroupPartitionedAnd:
6790 case glslang::EOpSubgroupPartitionedOr:
6791 case glslang::EOpSubgroupPartitionedXor:
6792 case glslang::EOpSubgroupPartitionedInclusiveAdd:
6793 case glslang::EOpSubgroupPartitionedInclusiveMul:
6794 case glslang::EOpSubgroupPartitionedInclusiveMin:
6795 case glslang::EOpSubgroupPartitionedInclusiveMax:
6796 case glslang::EOpSubgroupPartitionedInclusiveAnd:
6797 case glslang::EOpSubgroupPartitionedInclusiveOr:
6798 case glslang::EOpSubgroupPartitionedInclusiveXor:
6799 case glslang::EOpSubgroupPartitionedExclusiveAdd:
6800 case glslang::EOpSubgroupPartitionedExclusiveMul:
6801 case glslang::EOpSubgroupPartitionedExclusiveMin:
6802 case glslang::EOpSubgroupPartitionedExclusiveMax:
6803 case glslang::EOpSubgroupPartitionedExclusiveAnd:
6804 case glslang::EOpSubgroupPartitionedExclusiveOr:
6805 case glslang::EOpSubgroupPartitionedExclusiveXor:
6806#endif
John Kessenich66011cb2018-03-06 16:12:04 -07006807 return createSubgroupOperation(op, typeId, operands, typeProxy);
6808
Rex Xu9d93a232016-05-05 12:30:44 +08006809#ifdef AMD_EXTENSIONS
6810 case glslang::EOpSwizzleInvocations:
6811 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
6812 libCall = spv::SwizzleInvocationsAMD;
6813 break;
6814 case glslang::EOpSwizzleInvocationsMasked:
6815 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
6816 libCall = spv::SwizzleInvocationsMaskedAMD;
6817 break;
6818 case glslang::EOpWriteInvocation:
6819 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_ballot);
6820 libCall = spv::WriteInvocationAMD;
6821 break;
6822
6823 case glslang::EOpMin3:
6824 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
6825 if (isFloat)
6826 libCall = spv::FMin3AMD;
6827 else {
6828 if (isUnsigned)
6829 libCall = spv::UMin3AMD;
6830 else
6831 libCall = spv::SMin3AMD;
6832 }
6833 break;
6834 case glslang::EOpMax3:
6835 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
6836 if (isFloat)
6837 libCall = spv::FMax3AMD;
6838 else {
6839 if (isUnsigned)
6840 libCall = spv::UMax3AMD;
6841 else
6842 libCall = spv::SMax3AMD;
6843 }
6844 break;
6845 case glslang::EOpMid3:
6846 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_trinary_minmax);
6847 if (isFloat)
6848 libCall = spv::FMid3AMD;
6849 else {
6850 if (isUnsigned)
6851 libCall = spv::UMid3AMD;
6852 else
6853 libCall = spv::SMid3AMD;
6854 }
6855 break;
6856
6857 case glslang::EOpInterpolateAtVertex:
Rex Xub4a2a6c2018-05-17 13:51:28 +08006858 if (typeProxy == glslang::EbtFloat16)
6859 builder.addExtension(spv::E_SPV_AMD_gpu_shader_half_float);
Rex Xu9d93a232016-05-05 12:30:44 +08006860 extBuiltins = getExtBuiltins(spv::E_SPV_AMD_shader_explicit_vertex_parameter);
6861 libCall = spv::InterpolateAtVertexAMD;
6862 break;
6863#endif
Jeff Bolz36831c92018-09-05 10:11:41 -05006864 case glslang::EOpBarrier:
6865 {
6866 // This is for the extended controlBarrier function, with four operands.
6867 // The unextended barrier() goes through createNoArgOperation.
6868 assert(operands.size() == 4);
6869 unsigned int executionScope = builder.getConstantScalar(operands[0]);
6870 unsigned int memoryScope = builder.getConstantScalar(operands[1]);
6871 unsigned int semantics = builder.getConstantScalar(operands[2]) | builder.getConstantScalar(operands[3]);
6872 builder.createControlBarrier((spv::Scope)executionScope, (spv::Scope)memoryScope, (spv::MemorySemanticsMask)semantics);
6873 if (semantics & (spv::MemorySemanticsMakeAvailableKHRMask | spv::MemorySemanticsMakeVisibleKHRMask | spv::MemorySemanticsOutputMemoryKHRMask)) {
6874 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
6875 }
6876 if (glslangIntermediate->usingVulkanMemoryModel() && (executionScope == spv::ScopeDevice || memoryScope == spv::ScopeDevice)) {
6877 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
6878 }
6879 return 0;
6880 }
6881 break;
6882 case glslang::EOpMemoryBarrier:
6883 {
6884 // This is for the extended memoryBarrier function, with three operands.
6885 // The unextended memoryBarrier() goes through createNoArgOperation.
6886 assert(operands.size() == 3);
6887 unsigned int memoryScope = builder.getConstantScalar(operands[0]);
6888 unsigned int semantics = builder.getConstantScalar(operands[1]) | builder.getConstantScalar(operands[2]);
6889 builder.createMemoryBarrier((spv::Scope)memoryScope, (spv::MemorySemanticsMask)semantics);
6890 if (semantics & (spv::MemorySemanticsMakeAvailableKHRMask | spv::MemorySemanticsMakeVisibleKHRMask | spv::MemorySemanticsOutputMemoryKHRMask)) {
6891 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
6892 }
6893 if (glslangIntermediate->usingVulkanMemoryModel() && memoryScope == spv::ScopeDevice) {
6894 builder.addCapability(spv::CapabilityVulkanMemoryModelDeviceScopeKHR);
6895 }
6896 return 0;
6897 }
6898 break;
Chao Chen3c366992018-09-19 11:41:59 -07006899
6900#ifdef NV_EXTENSIONS
Chao Chenb50c02e2018-09-19 11:42:24 -07006901 case glslang::EOpReportIntersectionNV:
6902 {
6903 typeId = builder.makeBoolType();
Ashwin Leleff1783d2018-10-22 16:41:44 -07006904 opCode = spv::OpReportIntersectionNV;
Chao Chenb50c02e2018-09-19 11:42:24 -07006905 }
6906 break;
6907 case glslang::EOpTraceNV:
6908 {
Ashwin Leleff1783d2018-10-22 16:41:44 -07006909 builder.createNoResultOp(spv::OpTraceNV, operands);
6910 return 0;
6911 }
6912 break;
6913 case glslang::EOpExecuteCallableNV:
6914 {
6915 builder.createNoResultOp(spv::OpExecuteCallableNV, operands);
Chao Chenb50c02e2018-09-19 11:42:24 -07006916 return 0;
6917 }
6918 break;
Chao Chen3c366992018-09-19 11:41:59 -07006919 case glslang::EOpWritePackedPrimitiveIndices4x8NV:
6920 builder.createNoResultOp(spv::OpWritePackedPrimitiveIndices4x8NV, operands);
6921 return 0;
6922#endif
John Kessenich140f3df2015-06-26 16:58:36 -06006923 default:
6924 return 0;
6925 }
6926
6927 spv::Id id = 0;
John Kessenich2359bd02015-12-06 19:29:11 -07006928 if (libCall >= 0) {
David Neto8d63a3d2015-12-07 16:17:06 -05006929 // Use an extended instruction from the standard library.
6930 // Construct the call arguments, without modifying the original operands vector.
6931 // We might need the remaining arguments, e.g. in the EOpFrexp case.
6932 std::vector<spv::Id> callArguments(operands.begin(), operands.begin() + consumedOperands);
Rex Xu9d93a232016-05-05 12:30:44 +08006933 id = builder.createBuiltinCall(typeId, extBuiltins >= 0 ? extBuiltins : stdBuiltins, libCall, callArguments);
t.jungb16bea82018-11-15 10:21:36 +01006934 } else if (opCode == spv::OpDot && !isFloat) {
6935 // int dot(int, int)
6936 // NOTE: never called for scalar/vector1, this is turned into simple mul before this can be reached
6937 const int componentCount = builder.getNumComponents(operands[0]);
6938 spv::Id mulOp = builder.createBinOp(spv::OpIMul, builder.getTypeId(operands[0]), operands[0], operands[1]);
6939 builder.setPrecision(mulOp, precision);
6940 id = builder.createCompositeExtract(mulOp, typeId, 0);
6941 for (int i = 1; i < componentCount; ++i) {
6942 builder.setPrecision(id, precision);
6943 id = builder.createBinOp(spv::OpIAdd, typeId, id, builder.createCompositeExtract(operands[0], typeId, i));
6944 }
John Kessenich2359bd02015-12-06 19:29:11 -07006945 } else {
John Kessenich55e7d112015-11-15 21:33:39 -07006946 switch (consumedOperands) {
John Kessenich140f3df2015-06-26 16:58:36 -06006947 case 0:
6948 // should all be handled by visitAggregate and createNoArgOperation
6949 assert(0);
6950 return 0;
6951 case 1:
6952 // should all be handled by createUnaryOperation
6953 assert(0);
6954 return 0;
6955 case 2:
6956 id = builder.createBinOp(opCode, typeId, operands[0], operands[1]);
6957 break;
John Kessenich140f3df2015-06-26 16:58:36 -06006958 default:
John Kessenich55e7d112015-11-15 21:33:39 -07006959 // anything 3 or over doesn't have l-value operands, so all should be consumed
6960 assert(consumedOperands == operands.size());
6961 id = builder.createOp(opCode, typeId, operands);
John Kessenich140f3df2015-06-26 16:58:36 -06006962 break;
6963 }
6964 }
6965
John Kessenich55e7d112015-11-15 21:33:39 -07006966 // Decode the return types that were structures
6967 switch (op) {
6968 case glslang::EOpAddCarry:
6969 case glslang::EOpSubBorrow:
6970 builder.createStore(builder.createCompositeExtract(id, typeId0, 1), operands[2]);
6971 id = builder.createCompositeExtract(id, typeId0, 0);
6972 break;
6973 case glslang::EOpUMulExtended:
6974 case glslang::EOpIMulExtended:
6975 builder.createStore(builder.createCompositeExtract(id, typeId0, 0), operands[3]);
6976 builder.createStore(builder.createCompositeExtract(id, typeId0, 1), operands[2]);
6977 break;
6978 case glslang::EOpFrexp:
Rex Xu470026f2017-03-29 17:12:40 +08006979 {
6980 assert(operands.size() == 2);
6981 if (builder.isFloatType(builder.getScalarTypeId(typeId1))) {
6982 // "exp" is floating-point type (from HLSL intrinsic)
6983 spv::Id member1 = builder.createCompositeExtract(id, frexpIntType, 1);
6984 member1 = builder.createUnaryOp(spv::OpConvertSToF, typeId1, member1);
6985 builder.createStore(member1, operands[1]);
6986 } else
6987 // "exp" is integer type (from GLSL built-in function)
6988 builder.createStore(builder.createCompositeExtract(id, frexpIntType, 1), operands[1]);
6989 id = builder.createCompositeExtract(id, typeId0, 0);
6990 }
John Kessenich55e7d112015-11-15 21:33:39 -07006991 break;
6992 default:
6993 break;
6994 }
6995
John Kessenich32cfd492016-02-02 12:37:46 -07006996 return builder.setPrecision(id, precision);
John Kessenich140f3df2015-06-26 16:58:36 -06006997}
6998
Rex Xu9d93a232016-05-05 12:30:44 +08006999// Intrinsics with no arguments (or no return value, and no precision).
7000spv::Id TGlslangToSpvTraverser::createNoArgOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId)
John Kessenich140f3df2015-06-26 16:58:36 -06007001{
Jeff Bolz36831c92018-09-05 10:11:41 -05007002 // GLSL memory barriers use queuefamily scope in new model, device scope in old model
7003 spv::Scope memoryBarrierScope = glslangIntermediate->usingVulkanMemoryModel() ? spv::ScopeQueueFamilyKHR : spv::ScopeDevice;
John Kessenich140f3df2015-06-26 16:58:36 -06007004
7005 switch (op) {
7006 case glslang::EOpEmitVertex:
7007 builder.createNoResultOp(spv::OpEmitVertex);
7008 return 0;
7009 case glslang::EOpEndPrimitive:
7010 builder.createNoResultOp(spv::OpEndPrimitive);
7011 return 0;
7012 case glslang::EOpBarrier:
John Kessenich82979362017-12-11 04:02:24 -07007013 if (glslangIntermediate->getStage() == EShLangTessControl) {
Jeff Bolz36831c92018-09-05 10:11:41 -05007014 if (glslangIntermediate->usingVulkanMemoryModel()) {
7015 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
7016 spv::MemorySemanticsOutputMemoryKHRMask |
7017 spv::MemorySemanticsAcquireReleaseMask);
7018 builder.addCapability(spv::CapabilityVulkanMemoryModelKHR);
7019 } else {
7020 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeInvocation, spv::MemorySemanticsMaskNone);
7021 }
John Kessenich82979362017-12-11 04:02:24 -07007022 } else {
7023 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
7024 spv::MemorySemanticsWorkgroupMemoryMask |
7025 spv::MemorySemanticsAcquireReleaseMask);
7026 }
John Kessenich140f3df2015-06-26 16:58:36 -06007027 return 0;
7028 case glslang::EOpMemoryBarrier:
Jeff Bolz36831c92018-09-05 10:11:41 -05007029 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsAllMemory |
7030 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06007031 return 0;
7032 case glslang::EOpMemoryBarrierAtomicCounter:
Jeff Bolz36831c92018-09-05 10:11:41 -05007033 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsAtomicCounterMemoryMask |
7034 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06007035 return 0;
7036 case glslang::EOpMemoryBarrierBuffer:
Jeff Bolz36831c92018-09-05 10:11:41 -05007037 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsUniformMemoryMask |
7038 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06007039 return 0;
7040 case glslang::EOpMemoryBarrierImage:
Jeff Bolz36831c92018-09-05 10:11:41 -05007041 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsImageMemoryMask |
7042 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06007043 return 0;
7044 case glslang::EOpMemoryBarrierShared:
Jeff Bolz36831c92018-09-05 10:11:41 -05007045 builder.createMemoryBarrier(memoryBarrierScope, spv::MemorySemanticsWorkgroupMemoryMask |
7046 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06007047 return 0;
7048 case glslang::EOpGroupMemoryBarrier:
John Kessenich82979362017-12-11 04:02:24 -07007049 builder.createMemoryBarrier(spv::ScopeWorkgroup, spv::MemorySemanticsAllMemory |
7050 spv::MemorySemanticsAcquireReleaseMask);
John Kessenich140f3df2015-06-26 16:58:36 -06007051 return 0;
LoopDawg6e72fdd2016-06-15 09:50:24 -06007052 case glslang::EOpAllMemoryBarrierWithGroupSync:
John Kessenich838d7af2017-12-12 22:50:53 -07007053 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeDevice,
John Kessenich82979362017-12-11 04:02:24 -07007054 spv::MemorySemanticsAllMemory |
John Kessenich838d7af2017-12-12 22:50:53 -07007055 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06007056 return 0;
John Kessenich838d7af2017-12-12 22:50:53 -07007057 case glslang::EOpDeviceMemoryBarrier:
7058 builder.createMemoryBarrier(spv::ScopeDevice, spv::MemorySemanticsUniformMemoryMask |
7059 spv::MemorySemanticsImageMemoryMask |
7060 spv::MemorySemanticsAcquireReleaseMask);
7061 return 0;
7062 case glslang::EOpDeviceMemoryBarrierWithGroupSync:
7063 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeDevice, spv::MemorySemanticsUniformMemoryMask |
7064 spv::MemorySemanticsImageMemoryMask |
7065 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06007066 return 0;
7067 case glslang::EOpWorkgroupMemoryBarrier:
John Kessenich838d7af2017-12-12 22:50:53 -07007068 builder.createMemoryBarrier(spv::ScopeWorkgroup, spv::MemorySemanticsWorkgroupMemoryMask |
7069 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06007070 return 0;
7071 case glslang::EOpWorkgroupMemoryBarrierWithGroupSync:
John Kessenich838d7af2017-12-12 22:50:53 -07007072 builder.createControlBarrier(spv::ScopeWorkgroup, spv::ScopeWorkgroup,
7073 spv::MemorySemanticsWorkgroupMemoryMask |
7074 spv::MemorySemanticsAcquireReleaseMask);
LoopDawg6e72fdd2016-06-15 09:50:24 -06007075 return 0;
John Kessenich66011cb2018-03-06 16:12:04 -07007076 case glslang::EOpSubgroupBarrier:
7077 builder.createControlBarrier(spv::ScopeSubgroup, spv::ScopeSubgroup, spv::MemorySemanticsAllMemory |
7078 spv::MemorySemanticsAcquireReleaseMask);
7079 return spv::NoResult;
7080 case glslang::EOpSubgroupMemoryBarrier:
7081 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsAllMemory |
7082 spv::MemorySemanticsAcquireReleaseMask);
7083 return spv::NoResult;
7084 case glslang::EOpSubgroupMemoryBarrierBuffer:
7085 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsUniformMemoryMask |
7086 spv::MemorySemanticsAcquireReleaseMask);
7087 return spv::NoResult;
7088 case glslang::EOpSubgroupMemoryBarrierImage:
7089 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsImageMemoryMask |
7090 spv::MemorySemanticsAcquireReleaseMask);
7091 return spv::NoResult;
7092 case glslang::EOpSubgroupMemoryBarrierShared:
7093 builder.createMemoryBarrier(spv::ScopeSubgroup, spv::MemorySemanticsWorkgroupMemoryMask |
7094 spv::MemorySemanticsAcquireReleaseMask);
7095 return spv::NoResult;
7096 case glslang::EOpSubgroupElect: {
7097 std::vector<spv::Id> operands;
7098 return createSubgroupOperation(op, typeId, operands, glslang::EbtVoid);
7099 }
Rex Xu9d93a232016-05-05 12:30:44 +08007100#ifdef AMD_EXTENSIONS
7101 case glslang::EOpTime:
7102 {
7103 std::vector<spv::Id> args; // Dummy arguments
7104 spv::Id id = builder.createBuiltinCall(typeId, getExtBuiltins(spv::E_SPV_AMD_gcn_shader), spv::TimeAMD, args);
7105 return builder.setPrecision(id, precision);
7106 }
7107#endif
Chao Chenb50c02e2018-09-19 11:42:24 -07007108#ifdef NV_EXTENSIONS
7109 case glslang::EOpIgnoreIntersectionNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -07007110 builder.createNoResultOp(spv::OpIgnoreIntersectionNV);
Chao Chenb50c02e2018-09-19 11:42:24 -07007111 return 0;
7112 case glslang::EOpTerminateRayNV:
Ashwin Leleff1783d2018-10-22 16:41:44 -07007113 builder.createNoResultOp(spv::OpTerminateRayNV);
Chao Chenb50c02e2018-09-19 11:42:24 -07007114 return 0;
7115#endif
John Kessenich140f3df2015-06-26 16:58:36 -06007116 default:
Lei Zhang17535f72016-05-04 15:55:59 -04007117 logger->missingFunctionality("unknown operation with no arguments");
John Kessenich140f3df2015-06-26 16:58:36 -06007118 return 0;
7119 }
7120}
7121
7122spv::Id TGlslangToSpvTraverser::getSymbolId(const glslang::TIntermSymbol* symbol)
7123{
John Kessenich2f273362015-07-18 22:34:27 -06007124 auto iter = symbolValues.find(symbol->getId());
John Kessenich140f3df2015-06-26 16:58:36 -06007125 spv::Id id;
7126 if (symbolValues.end() != iter) {
7127 id = iter->second;
7128 return id;
7129 }
7130
7131 // it was not found, create it
7132 id = createSpvVariable(symbol);
7133 symbolValues[symbol->getId()] = id;
7134
Rex Xuc884b4a2016-06-29 15:03:44 +08007135 if (symbol->getBasicType() != glslang::EbtBlock) {
John Kessenich5d610ee2018-03-07 18:05:55 -07007136 builder.addDecoration(id, TranslatePrecisionDecoration(symbol->getType()));
7137 builder.addDecoration(id, TranslateInterpolationDecoration(symbol->getType().getQualifier()));
7138 builder.addDecoration(id, TranslateAuxiliaryStorageDecoration(symbol->getType().getQualifier()));
Chao Chen3c366992018-09-19 11:41:59 -07007139#ifdef NV_EXTENSIONS
7140 addMeshNVDecoration(id, /*member*/ -1, symbol->getType().getQualifier());
7141#endif
John Kessenich6c292d32016-02-15 20:58:50 -07007142 if (symbol->getType().getQualifier().hasSpecConstantId())
John Kessenich5d610ee2018-03-07 18:05:55 -07007143 builder.addDecoration(id, spv::DecorationSpecId, symbol->getType().getQualifier().layoutSpecConstantId);
John Kessenich140f3df2015-06-26 16:58:36 -06007144 if (symbol->getQualifier().hasIndex())
7145 builder.addDecoration(id, spv::DecorationIndex, symbol->getQualifier().layoutIndex);
7146 if (symbol->getQualifier().hasComponent())
7147 builder.addDecoration(id, spv::DecorationComponent, symbol->getQualifier().layoutComponent);
John Kessenich91e4aa52016-07-07 17:46:42 -06007148 // atomic counters use this:
7149 if (symbol->getQualifier().hasOffset())
7150 builder.addDecoration(id, spv::DecorationOffset, symbol->getQualifier().layoutOffset);
John Kessenich140f3df2015-06-26 16:58:36 -06007151 }
7152
scygan2c864272016-05-18 18:09:17 +02007153 if (symbol->getQualifier().hasLocation())
7154 builder.addDecoration(id, spv::DecorationLocation, symbol->getQualifier().layoutLocation);
John Kessenich5d610ee2018-03-07 18:05:55 -07007155 builder.addDecoration(id, TranslateInvariantDecoration(symbol->getType().getQualifier()));
John Kessenichf2d8a5c2016-03-03 22:29:11 -07007156 if (symbol->getQualifier().hasStream() && glslangIntermediate->isMultiStream()) {
John Kessenich92187592016-02-01 13:45:25 -07007157 builder.addCapability(spv::CapabilityGeometryStreams);
John Kessenich140f3df2015-06-26 16:58:36 -06007158 builder.addDecoration(id, spv::DecorationStream, symbol->getQualifier().layoutStream);
John Kessenich92187592016-02-01 13:45:25 -07007159 }
John Kessenich140f3df2015-06-26 16:58:36 -06007160 if (symbol->getQualifier().hasSet())
7161 builder.addDecoration(id, spv::DecorationDescriptorSet, symbol->getQualifier().layoutSet);
John Kessenich6c292d32016-02-15 20:58:50 -07007162 else if (IsDescriptorResource(symbol->getType())) {
7163 // default to 0
7164 builder.addDecoration(id, spv::DecorationDescriptorSet, 0);
7165 }
John Kessenich140f3df2015-06-26 16:58:36 -06007166 if (symbol->getQualifier().hasBinding())
7167 builder.addDecoration(id, spv::DecorationBinding, symbol->getQualifier().layoutBinding);
John Kessenich6c292d32016-02-15 20:58:50 -07007168 if (symbol->getQualifier().hasAttachment())
7169 builder.addDecoration(id, spv::DecorationInputAttachmentIndex, symbol->getQualifier().layoutAttachment);
John Kessenich140f3df2015-06-26 16:58:36 -06007170 if (glslangIntermediate->getXfbMode()) {
John Kessenich92187592016-02-01 13:45:25 -07007171 builder.addCapability(spv::CapabilityTransformFeedback);
John Kessenichedaf5562017-12-15 06:21:46 -07007172 if (symbol->getQualifier().hasXfbBuffer()) {
John Kessenich140f3df2015-06-26 16:58:36 -06007173 builder.addDecoration(id, spv::DecorationXfbBuffer, symbol->getQualifier().layoutXfbBuffer);
John Kessenichedaf5562017-12-15 06:21:46 -07007174 unsigned stride = glslangIntermediate->getXfbStride(symbol->getQualifier().layoutXfbBuffer);
7175 if (stride != glslang::TQualifier::layoutXfbStrideEnd)
7176 builder.addDecoration(id, spv::DecorationXfbStride, stride);
7177 }
7178 if (symbol->getQualifier().hasXfbOffset())
7179 builder.addDecoration(id, spv::DecorationOffset, symbol->getQualifier().layoutXfbOffset);
John Kessenich140f3df2015-06-26 16:58:36 -06007180 }
7181
Rex Xu1da878f2016-02-21 20:59:01 +08007182 if (symbol->getType().isImage()) {
7183 std::vector<spv::Decoration> memory;
Jeff Bolz36831c92018-09-05 10:11:41 -05007184 TranslateMemoryDecoration(symbol->getType().getQualifier(), memory, glslangIntermediate->usingVulkanMemoryModel());
Rex Xu1da878f2016-02-21 20:59:01 +08007185 for (unsigned int i = 0; i < memory.size(); ++i)
John Kessenich5d610ee2018-03-07 18:05:55 -07007186 builder.addDecoration(id, memory[i]);
Rex Xu1da878f2016-02-21 20:59:01 +08007187 }
7188
John Kessenich140f3df2015-06-26 16:58:36 -06007189 // built-in variable decorations
John Kessenichebb50532016-05-16 19:22:05 -06007190 spv::BuiltIn builtIn = TranslateBuiltInDecoration(symbol->getQualifier().builtIn, false);
John Kessenich4016e382016-07-15 11:53:56 -06007191 if (builtIn != spv::BuiltInMax)
John Kessenich5d610ee2018-03-07 18:05:55 -07007192 builder.addDecoration(id, spv::DecorationBuiltIn, (int)builtIn);
John Kessenich140f3df2015-06-26 16:58:36 -06007193
John Kessenich5611c6d2018-04-05 11:25:02 -06007194 // nonuniform
7195 builder.addDecoration(id, TranslateNonUniformDecoration(symbol->getType().getQualifier()));
7196
John Kessenichecba76f2017-01-06 00:34:48 -07007197#ifdef NV_EXTENSIONS
chaoc0ad6a4e2016-12-19 16:29:34 -08007198 if (builtIn == spv::BuiltInSampleMask) {
7199 spv::Decoration decoration;
7200 // GL_NV_sample_mask_override_coverage extension
7201 if (glslangIntermediate->getLayoutOverrideCoverage())
chaoc771d89f2017-01-13 01:10:53 -08007202 decoration = (spv::Decoration)spv::DecorationOverrideCoverageNV;
chaoc0ad6a4e2016-12-19 16:29:34 -08007203 else
7204 decoration = (spv::Decoration)spv::DecorationMax;
John Kessenich5d610ee2018-03-07 18:05:55 -07007205 builder.addDecoration(id, decoration);
chaoc0ad6a4e2016-12-19 16:29:34 -08007206 if (decoration != spv::DecorationMax) {
7207 builder.addExtension(spv::E_SPV_NV_sample_mask_override_coverage);
7208 }
7209 }
chaoc771d89f2017-01-13 01:10:53 -08007210 else if (builtIn == spv::BuiltInLayer) {
7211 // SPV_NV_viewport_array2 extension
John Kessenichb41bff62017-08-11 13:07:17 -06007212 if (symbol->getQualifier().layoutViewportRelative) {
John Kessenich5d610ee2018-03-07 18:05:55 -07007213 builder.addDecoration(id, (spv::Decoration)spv::DecorationViewportRelativeNV);
chaoc771d89f2017-01-13 01:10:53 -08007214 builder.addCapability(spv::CapabilityShaderViewportMaskNV);
7215 builder.addExtension(spv::E_SPV_NV_viewport_array2);
7216 }
John Kessenichb41bff62017-08-11 13:07:17 -06007217 if (symbol->getQualifier().layoutSecondaryViewportRelativeOffset != -2048) {
John Kessenich5d610ee2018-03-07 18:05:55 -07007218 builder.addDecoration(id, (spv::Decoration)spv::DecorationSecondaryViewportRelativeNV,
7219 symbol->getQualifier().layoutSecondaryViewportRelativeOffset);
chaoc771d89f2017-01-13 01:10:53 -08007220 builder.addCapability(spv::CapabilityShaderStereoViewNV);
7221 builder.addExtension(spv::E_SPV_NV_stereo_view_rendering);
7222 }
7223 }
7224
chaoc6e5acae2016-12-20 13:28:52 -08007225 if (symbol->getQualifier().layoutPassthrough) {
John Kessenich5d610ee2018-03-07 18:05:55 -07007226 builder.addDecoration(id, spv::DecorationPassthroughNV);
chaoc771d89f2017-01-13 01:10:53 -08007227 builder.addCapability(spv::CapabilityGeometryShaderPassthroughNV);
chaoc6e5acae2016-12-20 13:28:52 -08007228 builder.addExtension(spv::E_SPV_NV_geometry_shader_passthrough);
7229 }
Chao Chen9eada4b2018-09-19 11:39:56 -07007230 if (symbol->getQualifier().pervertexNV) {
7231 builder.addDecoration(id, spv::DecorationPerVertexNV);
7232 builder.addCapability(spv::CapabilityFragmentBarycentricNV);
7233 builder.addExtension(spv::E_SPV_NV_fragment_shader_barycentric);
7234 }
chaoc0ad6a4e2016-12-19 16:29:34 -08007235#endif
7236
John Kessenich5d610ee2018-03-07 18:05:55 -07007237 if (glslangIntermediate->getHlslFunctionality1() && symbol->getType().getQualifier().semanticName != nullptr) {
7238 builder.addExtension("SPV_GOOGLE_hlsl_functionality1");
7239 builder.addDecoration(id, (spv::Decoration)spv::DecorationHlslSemanticGOOGLE,
7240 symbol->getType().getQualifier().semanticName);
7241 }
7242
John Kessenich140f3df2015-06-26 16:58:36 -06007243 return id;
7244}
7245
Chao Chen3c366992018-09-19 11:41:59 -07007246#ifdef NV_EXTENSIONS
7247// add per-primitive, per-view. per-task decorations to a struct member (member >= 0) or an object
7248void TGlslangToSpvTraverser::addMeshNVDecoration(spv::Id id, int member, const glslang::TQualifier& qualifier)
7249{
7250 if (member >= 0) {
Sahil Parmar38772c02018-10-25 23:50:59 -07007251 if (qualifier.perPrimitiveNV) {
7252 // Need to add capability/extension for fragment shader.
7253 // Mesh shader already adds this by default.
7254 if (glslangIntermediate->getStage() == EShLangFragment) {
7255 builder.addCapability(spv::CapabilityMeshShadingNV);
7256 builder.addExtension(spv::E_SPV_NV_mesh_shader);
7257 }
Chao Chen3c366992018-09-19 11:41:59 -07007258 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerPrimitiveNV);
Sahil Parmar38772c02018-10-25 23:50:59 -07007259 }
Chao Chen3c366992018-09-19 11:41:59 -07007260 if (qualifier.perViewNV)
7261 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerViewNV);
7262 if (qualifier.perTaskNV)
7263 builder.addMemberDecoration(id, (unsigned)member, spv::DecorationPerTaskNV);
7264 } else {
Sahil Parmar38772c02018-10-25 23:50:59 -07007265 if (qualifier.perPrimitiveNV) {
7266 // Need to add capability/extension for fragment shader.
7267 // Mesh shader already adds this by default.
7268 if (glslangIntermediate->getStage() == EShLangFragment) {
7269 builder.addCapability(spv::CapabilityMeshShadingNV);
7270 builder.addExtension(spv::E_SPV_NV_mesh_shader);
7271 }
Chao Chen3c366992018-09-19 11:41:59 -07007272 builder.addDecoration(id, spv::DecorationPerPrimitiveNV);
Sahil Parmar38772c02018-10-25 23:50:59 -07007273 }
Chao Chen3c366992018-09-19 11:41:59 -07007274 if (qualifier.perViewNV)
7275 builder.addDecoration(id, spv::DecorationPerViewNV);
7276 if (qualifier.perTaskNV)
7277 builder.addDecoration(id, spv::DecorationPerTaskNV);
7278 }
7279}
7280#endif
7281
John Kessenich55e7d112015-11-15 21:33:39 -07007282// Make a full tree of instructions to build a SPIR-V specialization constant,
John Kessenich6c292d32016-02-15 20:58:50 -07007283// or regular constant if possible.
John Kessenich55e7d112015-11-15 21:33:39 -07007284//
7285// TBD: this is not yet done, nor verified to be the best design, it does do the leaf symbols though
7286//
7287// Recursively walk the nodes. The nodes form a tree whose leaves are
7288// regular constants, which themselves are trees that createSpvConstant()
7289// recursively walks. So, this function walks the "top" of the tree:
7290// - emit specialization constant-building instructions for specConstant
7291// - when running into a non-spec-constant, switch to createSpvConstant()
qining08408382016-03-21 09:51:37 -04007292spv::Id TGlslangToSpvTraverser::createSpvConstant(const glslang::TIntermTyped& node)
John Kessenich55e7d112015-11-15 21:33:39 -07007293{
John Kessenich7cc0e282016-03-20 00:46:02 -06007294 assert(node.getQualifier().isConstant());
John Kessenich55e7d112015-11-15 21:33:39 -07007295
qining4f4bb812016-04-03 23:55:17 -04007296 // Handle front-end constants first (non-specialization constants).
John Kessenich6c292d32016-02-15 20:58:50 -07007297 if (! node.getQualifier().specConstant) {
7298 // hand off to the non-spec-constant path
7299 assert(node.getAsConstantUnion() != nullptr || node.getAsSymbolNode() != nullptr);
7300 int nextConst = 0;
qining08408382016-03-21 09:51:37 -04007301 return createSpvConstantFromConstUnionArray(node.getType(), node.getAsConstantUnion() ? node.getAsConstantUnion()->getConstArray() : node.getAsSymbolNode()->getConstArray(),
John Kessenich6c292d32016-02-15 20:58:50 -07007302 nextConst, false);
7303 }
7304
7305 // We now know we have a specialization constant to build
7306
John Kessenichd94c0032016-05-30 19:29:40 -06007307 // gl_WorkGroupSize is a special case until the front-end handles hierarchical specialization constants,
qining4f4bb812016-04-03 23:55:17 -04007308 // even then, it's specialization ids are handled by special case syntax in GLSL: layout(local_size_x = ...
7309 if (node.getType().getQualifier().builtIn == glslang::EbvWorkGroupSize) {
7310 std::vector<spv::Id> dimConstId;
7311 for (int dim = 0; dim < 3; ++dim) {
7312 bool specConst = (glslangIntermediate->getLocalSizeSpecId(dim) != glslang::TQualifier::layoutNotSet);
7313 dimConstId.push_back(builder.makeUintConstant(glslangIntermediate->getLocalSize(dim), specConst));
John Kessenich5d610ee2018-03-07 18:05:55 -07007314 if (specConst) {
7315 builder.addDecoration(dimConstId.back(), spv::DecorationSpecId,
7316 glslangIntermediate->getLocalSizeSpecId(dim));
7317 }
qining4f4bb812016-04-03 23:55:17 -04007318 }
7319 return builder.makeCompositeConstant(builder.makeVectorType(builder.makeUintType(32), 3), dimConstId, true);
7320 }
7321
7322 // An AST node labelled as specialization constant should be a symbol node.
7323 // Its initializer should either be a sub tree with constant nodes, or a constant union array.
7324 if (auto* sn = node.getAsSymbolNode()) {
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07007325 spv::Id result;
qining4f4bb812016-04-03 23:55:17 -04007326 if (auto* sub_tree = sn->getConstSubtree()) {
qining27e04a02016-04-14 16:40:20 -04007327 // Traverse the constant constructor sub tree like generating normal run-time instructions.
7328 // During the AST traversal, if the node is marked as 'specConstant', SpecConstantOpModeGuard
7329 // will set the builder into spec constant op instruction generating mode.
7330 sub_tree->traverse(this);
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07007331 result = accessChainLoad(sub_tree->getType());
7332 } else if (auto* const_union_array = &sn->getConstArray()) {
qining4f4bb812016-04-03 23:55:17 -04007333 int nextConst = 0;
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07007334 result = createSpvConstantFromConstUnionArray(sn->getType(), *const_union_array, nextConst, true);
Dan Sinclair70661b92018-11-12 13:56:52 -05007335 } else {
7336 logger->missingFunctionality("Invalid initializer for spec onstant.");
Dan Sinclair70661b92018-11-12 13:56:52 -05007337 return spv::NoResult;
John Kessenich6c292d32016-02-15 20:58:50 -07007338 }
Grigory Dzhavadyan4c9876b2018-10-29 22:56:44 -07007339 builder.addName(result, sn->getName().c_str());
7340 return result;
John Kessenich6c292d32016-02-15 20:58:50 -07007341 }
qining4f4bb812016-04-03 23:55:17 -04007342
7343 // Neither a front-end constant node, nor a specialization constant node with constant union array or
7344 // constant sub tree as initializer.
Lei Zhang17535f72016-05-04 15:55:59 -04007345 logger->missingFunctionality("Neither a front-end constant nor a spec constant.");
qining4f4bb812016-04-03 23:55:17 -04007346 return spv::NoResult;
John Kessenich55e7d112015-11-15 21:33:39 -07007347}
7348
John Kessenich140f3df2015-06-26 16:58:36 -06007349// Use 'consts' as the flattened glslang source of scalar constants to recursively
7350// build the aggregate SPIR-V constant.
7351//
7352// If there are not enough elements present in 'consts', 0 will be substituted;
7353// an empty 'consts' can be used to create a fully zeroed SPIR-V constant.
7354//
qining08408382016-03-21 09:51:37 -04007355spv::Id TGlslangToSpvTraverser::createSpvConstantFromConstUnionArray(const glslang::TType& glslangType, const glslang::TConstUnionArray& consts, int& nextConst, bool specConstant)
John Kessenich140f3df2015-06-26 16:58:36 -06007356{
7357 // vector of constants for SPIR-V
7358 std::vector<spv::Id> spvConsts;
7359
7360 // Type is used for struct and array constants
7361 spv::Id typeId = convertGlslangToSpvType(glslangType);
7362
7363 if (glslangType.isArray()) {
John Kessenich65c78a02015-08-10 17:08:55 -06007364 glslang::TType elementType(glslangType, 0);
7365 for (int i = 0; i < glslangType.getOuterArraySize(); ++i)
qining08408382016-03-21 09:51:37 -04007366 spvConsts.push_back(createSpvConstantFromConstUnionArray(elementType, consts, nextConst, false));
John Kessenich140f3df2015-06-26 16:58:36 -06007367 } else if (glslangType.isMatrix()) {
John Kessenich65c78a02015-08-10 17:08:55 -06007368 glslang::TType vectorType(glslangType, 0);
John Kessenich140f3df2015-06-26 16:58:36 -06007369 for (int col = 0; col < glslangType.getMatrixCols(); ++col)
qining08408382016-03-21 09:51:37 -04007370 spvConsts.push_back(createSpvConstantFromConstUnionArray(vectorType, consts, nextConst, false));
John Kessenich140f3df2015-06-26 16:58:36 -06007371 } else if (glslangType.getStruct()) {
7372 glslang::TVector<glslang::TTypeLoc>::const_iterator iter;
7373 for (iter = glslangType.getStruct()->begin(); iter != glslangType.getStruct()->end(); ++iter)
qining08408382016-03-21 09:51:37 -04007374 spvConsts.push_back(createSpvConstantFromConstUnionArray(*iter->type, consts, nextConst, false));
John Kessenich8d72f1a2016-05-20 12:06:03 -06007375 } else if (glslangType.getVectorSize() > 1) {
John Kessenich140f3df2015-06-26 16:58:36 -06007376 for (unsigned int i = 0; i < (unsigned int)glslangType.getVectorSize(); ++i) {
7377 bool zero = nextConst >= consts.size();
7378 switch (glslangType.getBasicType()) {
John Kessenich66011cb2018-03-06 16:12:04 -07007379 case glslang::EbtInt8:
7380 spvConsts.push_back(builder.makeInt8Constant(zero ? 0 : consts[nextConst].getI8Const()));
7381 break;
7382 case glslang::EbtUint8:
7383 spvConsts.push_back(builder.makeUint8Constant(zero ? 0 : consts[nextConst].getU8Const()));
7384 break;
7385 case glslang::EbtInt16:
7386 spvConsts.push_back(builder.makeInt16Constant(zero ? 0 : consts[nextConst].getI16Const()));
7387 break;
7388 case glslang::EbtUint16:
7389 spvConsts.push_back(builder.makeUint16Constant(zero ? 0 : consts[nextConst].getU16Const()));
7390 break;
John Kessenich140f3df2015-06-26 16:58:36 -06007391 case glslang::EbtInt:
7392 spvConsts.push_back(builder.makeIntConstant(zero ? 0 : consts[nextConst].getIConst()));
7393 break;
7394 case glslang::EbtUint:
7395 spvConsts.push_back(builder.makeUintConstant(zero ? 0 : consts[nextConst].getUConst()));
7396 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08007397 case glslang::EbtInt64:
7398 spvConsts.push_back(builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const()));
7399 break;
7400 case glslang::EbtUint64:
7401 spvConsts.push_back(builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const()));
7402 break;
John Kessenich140f3df2015-06-26 16:58:36 -06007403 case glslang::EbtFloat:
7404 spvConsts.push_back(builder.makeFloatConstant(zero ? 0.0F : (float)consts[nextConst].getDConst()));
7405 break;
7406 case glslang::EbtDouble:
7407 spvConsts.push_back(builder.makeDoubleConstant(zero ? 0.0 : consts[nextConst].getDConst()));
7408 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08007409 case glslang::EbtFloat16:
7410 spvConsts.push_back(builder.makeFloat16Constant(zero ? 0.0F : (float)consts[nextConst].getDConst()));
7411 break;
John Kessenich140f3df2015-06-26 16:58:36 -06007412 case glslang::EbtBool:
7413 spvConsts.push_back(builder.makeBoolConstant(zero ? false : consts[nextConst].getBConst()));
7414 break;
7415 default:
John Kessenich55e7d112015-11-15 21:33:39 -07007416 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06007417 break;
7418 }
7419 ++nextConst;
7420 }
7421 } else {
7422 // we have a non-aggregate (scalar) constant
7423 bool zero = nextConst >= consts.size();
7424 spv::Id scalar = 0;
7425 switch (glslangType.getBasicType()) {
John Kessenich66011cb2018-03-06 16:12:04 -07007426 case glslang::EbtInt8:
7427 scalar = builder.makeInt8Constant(zero ? 0 : consts[nextConst].getI8Const(), specConstant);
7428 break;
7429 case glslang::EbtUint8:
7430 scalar = builder.makeUint8Constant(zero ? 0 : consts[nextConst].getU8Const(), specConstant);
7431 break;
7432 case glslang::EbtInt16:
7433 scalar = builder.makeInt16Constant(zero ? 0 : consts[nextConst].getI16Const(), specConstant);
7434 break;
7435 case glslang::EbtUint16:
7436 scalar = builder.makeUint16Constant(zero ? 0 : consts[nextConst].getU16Const(), specConstant);
7437 break;
John Kessenich140f3df2015-06-26 16:58:36 -06007438 case glslang::EbtInt:
John Kessenich55e7d112015-11-15 21:33:39 -07007439 scalar = builder.makeIntConstant(zero ? 0 : consts[nextConst].getIConst(), specConstant);
John Kessenich140f3df2015-06-26 16:58:36 -06007440 break;
7441 case glslang::EbtUint:
John Kessenich55e7d112015-11-15 21:33:39 -07007442 scalar = builder.makeUintConstant(zero ? 0 : consts[nextConst].getUConst(), specConstant);
John Kessenich140f3df2015-06-26 16:58:36 -06007443 break;
Rex Xu8ff43de2016-04-22 16:51:45 +08007444 case glslang::EbtInt64:
7445 scalar = builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const(), specConstant);
7446 break;
7447 case glslang::EbtUint64:
7448 scalar = builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const(), specConstant);
7449 break;
John Kessenich140f3df2015-06-26 16:58:36 -06007450 case glslang::EbtFloat:
John Kessenich55e7d112015-11-15 21:33:39 -07007451 scalar = builder.makeFloatConstant(zero ? 0.0F : (float)consts[nextConst].getDConst(), specConstant);
John Kessenich140f3df2015-06-26 16:58:36 -06007452 break;
7453 case glslang::EbtDouble:
John Kessenich55e7d112015-11-15 21:33:39 -07007454 scalar = builder.makeDoubleConstant(zero ? 0.0 : consts[nextConst].getDConst(), specConstant);
John Kessenich140f3df2015-06-26 16:58:36 -06007455 break;
Rex Xuc9e3c3c2016-07-29 16:00:05 +08007456 case glslang::EbtFloat16:
7457 scalar = builder.makeFloat16Constant(zero ? 0.0F : (float)consts[nextConst].getDConst(), specConstant);
7458 break;
John Kessenich140f3df2015-06-26 16:58:36 -06007459 case glslang::EbtBool:
John Kessenich55e7d112015-11-15 21:33:39 -07007460 scalar = builder.makeBoolConstant(zero ? false : consts[nextConst].getBConst(), specConstant);
John Kessenich140f3df2015-06-26 16:58:36 -06007461 break;
7462 default:
John Kessenich55e7d112015-11-15 21:33:39 -07007463 assert(0);
John Kessenich140f3df2015-06-26 16:58:36 -06007464 break;
7465 }
7466 ++nextConst;
7467 return scalar;
7468 }
7469
7470 return builder.makeCompositeConstant(typeId, spvConsts);
7471}
7472
John Kessenich7c1aa102015-10-15 13:29:11 -06007473// Return true if the node is a constant or symbol whose reading has no
7474// non-trivial observable cost or effect.
7475bool TGlslangToSpvTraverser::isTrivialLeaf(const glslang::TIntermTyped* node)
7476{
7477 // don't know what this is
7478 if (node == nullptr)
7479 return false;
7480
7481 // a constant is safe
7482 if (node->getAsConstantUnion() != nullptr)
7483 return true;
7484
7485 // not a symbol means non-trivial
7486 if (node->getAsSymbolNode() == nullptr)
7487 return false;
7488
7489 // a symbol, depends on what's being read
7490 switch (node->getType().getQualifier().storage) {
7491 case glslang::EvqTemporary:
7492 case glslang::EvqGlobal:
7493 case glslang::EvqIn:
7494 case glslang::EvqInOut:
7495 case glslang::EvqConst:
7496 case glslang::EvqConstReadOnly:
7497 case glslang::EvqUniform:
7498 return true;
7499 default:
7500 return false;
7501 }
qining25262b32016-05-06 17:25:16 -04007502}
John Kessenich7c1aa102015-10-15 13:29:11 -06007503
7504// A node is trivial if it is a single operation with no side effects.
John Kessenich84cc15f2017-05-24 16:44:47 -06007505// HLSL (and/or vectors) are always trivial, as it does not short circuit.
John Kessenich0d2b4712017-05-19 20:19:00 -06007506// Otherwise, error on the side of saying non-trivial.
John Kessenich7c1aa102015-10-15 13:29:11 -06007507// Return true if trivial.
7508bool TGlslangToSpvTraverser::isTrivial(const glslang::TIntermTyped* node)
7509{
7510 if (node == nullptr)
7511 return false;
7512
John Kessenich84cc15f2017-05-24 16:44:47 -06007513 // count non scalars as trivial, as well as anything coming from HLSL
7514 if (! node->getType().isScalarOrVec1() || glslangIntermediate->getSource() == glslang::EShSourceHlsl)
John Kessenich0d2b4712017-05-19 20:19:00 -06007515 return true;
7516
John Kessenich7c1aa102015-10-15 13:29:11 -06007517 // symbols and constants are trivial
7518 if (isTrivialLeaf(node))
7519 return true;
7520
7521 // otherwise, it needs to be a simple operation or one or two leaf nodes
7522
7523 // not a simple operation
7524 const glslang::TIntermBinary* binaryNode = node->getAsBinaryNode();
7525 const glslang::TIntermUnary* unaryNode = node->getAsUnaryNode();
7526 if (binaryNode == nullptr && unaryNode == nullptr)
7527 return false;
7528
7529 // not on leaf nodes
7530 if (binaryNode && (! isTrivialLeaf(binaryNode->getLeft()) || ! isTrivialLeaf(binaryNode->getRight())))
7531 return false;
7532
7533 if (unaryNode && ! isTrivialLeaf(unaryNode->getOperand())) {
7534 return false;
7535 }
7536
7537 switch (node->getAsOperator()->getOp()) {
7538 case glslang::EOpLogicalNot:
7539 case glslang::EOpConvIntToBool:
7540 case glslang::EOpConvUintToBool:
7541 case glslang::EOpConvFloatToBool:
7542 case glslang::EOpConvDoubleToBool:
7543 case glslang::EOpEqual:
7544 case glslang::EOpNotEqual:
7545 case glslang::EOpLessThan:
7546 case glslang::EOpGreaterThan:
7547 case glslang::EOpLessThanEqual:
7548 case glslang::EOpGreaterThanEqual:
7549 case glslang::EOpIndexDirect:
7550 case glslang::EOpIndexDirectStruct:
7551 case glslang::EOpLogicalXor:
7552 case glslang::EOpAny:
7553 case glslang::EOpAll:
7554 return true;
7555 default:
7556 return false;
7557 }
7558}
7559
7560// Emit short-circuiting code, where 'right' is never evaluated unless
7561// the left side is true (for &&) or false (for ||).
7562spv::Id TGlslangToSpvTraverser::createShortCircuit(glslang::TOperator op, glslang::TIntermTyped& left, glslang::TIntermTyped& right)
7563{
7564 spv::Id boolTypeId = builder.makeBoolType();
7565
7566 // emit left operand
7567 builder.clearAccessChain();
7568 left.traverse(this);
Rex Xub4fd8d12016-03-03 14:38:51 +08007569 spv::Id leftId = accessChainLoad(left.getType());
John Kessenich7c1aa102015-10-15 13:29:11 -06007570
7571 // Operands to accumulate OpPhi operands
7572 std::vector<spv::Id> phiOperands;
7573 // accumulate left operand's phi information
7574 phiOperands.push_back(leftId);
7575 phiOperands.push_back(builder.getBuildPoint()->getId());
7576
7577 // Make the two kinds of operation symmetric with a "!"
7578 // || => emit "if (! left) result = right"
7579 // && => emit "if ( left) result = right"
7580 //
7581 // TODO: this runtime "not" for || could be avoided by adding functionality
7582 // to 'builder' to have an "else" without an "then"
7583 if (op == glslang::EOpLogicalOr)
7584 leftId = builder.createUnaryOp(spv::OpLogicalNot, boolTypeId, leftId);
7585
7586 // make an "if" based on the left value
Rex Xu57e65922017-07-04 23:23:40 +08007587 spv::Builder::If ifBuilder(leftId, spv::SelectionControlMaskNone, builder);
John Kessenich7c1aa102015-10-15 13:29:11 -06007588
7589 // emit right operand as the "then" part of the "if"
7590 builder.clearAccessChain();
7591 right.traverse(this);
Rex Xub4fd8d12016-03-03 14:38:51 +08007592 spv::Id rightId = accessChainLoad(right.getType());
John Kessenich7c1aa102015-10-15 13:29:11 -06007593
7594 // accumulate left operand's phi information
7595 phiOperands.push_back(rightId);
7596 phiOperands.push_back(builder.getBuildPoint()->getId());
7597
7598 // finish the "if"
7599 ifBuilder.makeEndIf();
7600
7601 // phi together the two results
7602 return builder.createOp(spv::OpPhi, boolTypeId, phiOperands);
7603}
7604
Frank Henigman541f7bb2018-01-16 00:18:26 -05007605#ifdef AMD_EXTENSIONS
Rex Xu9d93a232016-05-05 12:30:44 +08007606// Return type Id of the imported set of extended instructions corresponds to the name.
7607// Import this set if it has not been imported yet.
7608spv::Id TGlslangToSpvTraverser::getExtBuiltins(const char* name)
7609{
7610 if (extBuiltinMap.find(name) != extBuiltinMap.end())
7611 return extBuiltinMap[name];
7612 else {
Rex Xu51596642016-09-21 18:56:12 +08007613 builder.addExtension(name);
Rex Xu9d93a232016-05-05 12:30:44 +08007614 spv::Id extBuiltins = builder.import(name);
7615 extBuiltinMap[name] = extBuiltins;
7616 return extBuiltins;
7617 }
7618}
Frank Henigman541f7bb2018-01-16 00:18:26 -05007619#endif
Rex Xu9d93a232016-05-05 12:30:44 +08007620
John Kessenich140f3df2015-06-26 16:58:36 -06007621}; // end anonymous namespace
7622
7623namespace glslang {
7624
John Kessenich68d78fd2015-07-12 19:28:10 -06007625void GetSpirvVersion(std::string& version)
7626{
John Kessenich9e55f632015-07-15 10:03:39 -06007627 const int bufSize = 100;
John Kessenichf98ee232015-07-12 19:39:51 -06007628 char buf[bufSize];
John Kessenich55e7d112015-11-15 21:33:39 -07007629 snprintf(buf, bufSize, "0x%08x, Revision %d", spv::Version, spv::Revision);
John Kessenich68d78fd2015-07-12 19:28:10 -06007630 version = buf;
7631}
7632
John Kessenicha372a3e2017-11-02 22:32:14 -06007633// For low-order part of the generator's magic number. Bump up
7634// when there is a change in the style (e.g., if SSA form changes,
7635// or a different instruction sequence to do something gets used).
7636int GetSpirvGeneratorVersion()
7637{
John Kessenich3f0d4bc2017-12-16 23:46:37 -07007638 // return 1; // start
7639 // return 2; // EOpAtomicCounterDecrement gets a post decrement, to map between GLSL -> SPIR-V
John Kessenich71b5da62018-02-06 08:06:36 -07007640 // return 3; // change/correct barrier-instruction operands, to match memory model group decisions
John Kessenich0216f242018-03-03 11:47:07 -07007641 // return 4; // some deeper access chains: for dynamic vector component, and local Boolean component
John Kessenichac370792018-03-07 11:24:50 -07007642 // return 5; // make OpArrayLength result type be an int with signedness of 0
John Kessenichd6c97552018-06-04 15:33:31 -06007643 // return 6; // revert version 5 change, which makes a different (new) kind of incorrect code,
7644 // versions 4 and 6 each generate OpArrayLength as it has long been done
7645 return 7; // GLSL volatile keyword maps to both SPIR-V decorations Volatile and Coherent
John Kessenicha372a3e2017-11-02 22:32:14 -06007646}
7647
John Kessenich140f3df2015-06-26 16:58:36 -06007648// Write SPIR-V out to a binary file
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05007649void OutputSpvBin(const std::vector<unsigned int>& spirv, const char* baseName)
John Kessenich140f3df2015-06-26 16:58:36 -06007650{
7651 std::ofstream out;
John Kessenich68d78fd2015-07-12 19:28:10 -06007652 out.open(baseName, std::ios::binary | std::ios::out);
John Kessenich8f674e82017-02-18 09:45:40 -07007653 if (out.fail())
7654 printf("ERROR: Failed to open file: %s\n", baseName);
John Kessenich140f3df2015-06-26 16:58:36 -06007655 for (int i = 0; i < (int)spirv.size(); ++i) {
7656 unsigned int word = spirv[i];
7657 out.write((const char*)&word, 4);
7658 }
7659 out.close();
7660}
7661
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05007662// Write SPIR-V out to a text file with 32-bit hexadecimal words
Flavioaea3c892017-02-06 11:46:35 -08007663void OutputSpvHex(const std::vector<unsigned int>& spirv, const char* baseName, const char* varName)
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05007664{
7665 std::ofstream out;
7666 out.open(baseName, std::ios::binary | std::ios::out);
John Kessenich8f674e82017-02-18 09:45:40 -07007667 if (out.fail())
7668 printf("ERROR: Failed to open file: %s\n", baseName);
John Kessenichc6c80a62018-03-05 22:23:17 -07007669 out << "\t// " <<
John Kessenich4e11b612018-08-30 16:56:59 -06007670 GetSpirvGeneratorVersion() << "." << GLSLANG_MINOR_VERSION << "." << GLSLANG_PATCH_LEVEL <<
John Kessenichc6c80a62018-03-05 22:23:17 -07007671 std::endl;
Flavio15017db2017-02-15 14:29:33 -08007672 if (varName != nullptr) {
7673 out << "\t #pragma once" << std::endl;
7674 out << "const uint32_t " << varName << "[] = {" << std::endl;
7675 }
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05007676 const int WORDS_PER_LINE = 8;
7677 for (int i = 0; i < (int)spirv.size(); i += WORDS_PER_LINE) {
7678 out << "\t";
7679 for (int j = 0; j < WORDS_PER_LINE && i + j < (int)spirv.size(); ++j) {
7680 const unsigned int word = spirv[i + j];
7681 out << "0x" << std::hex << std::setw(8) << std::setfill('0') << word;
7682 if (i + j + 1 < (int)spirv.size()) {
7683 out << ",";
7684 }
7685 }
7686 out << std::endl;
7687 }
Flavio15017db2017-02-15 14:29:33 -08007688 if (varName != nullptr) {
7689 out << "};";
7690 }
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05007691 out.close();
7692}
7693
John Kessenich140f3df2015-06-26 16:58:36 -06007694//
7695// Set up the glslang traversal
7696//
John Kessenich4e11b612018-08-30 16:56:59 -06007697void GlslangToSpv(const TIntermediate& intermediate, std::vector<unsigned int>& spirv, SpvOptions* options)
John Kessenich140f3df2015-06-26 16:58:36 -06007698{
Lei Zhang17535f72016-05-04 15:55:59 -04007699 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -06007700 GlslangToSpv(intermediate, spirv, &logger, options);
Lei Zhang09caf122016-05-02 18:11:54 -04007701}
7702
John Kessenich4e11b612018-08-30 16:56:59 -06007703void GlslangToSpv(const TIntermediate& intermediate, std::vector<unsigned int>& spirv,
John Kessenich121853f2017-05-31 17:11:16 -06007704 spv::SpvBuildLogger* logger, SpvOptions* options)
Lei Zhang09caf122016-05-02 18:11:54 -04007705{
John Kessenich140f3df2015-06-26 16:58:36 -06007706 TIntermNode* root = intermediate.getTreeRoot();
7707
7708 if (root == 0)
7709 return;
7710
John Kessenich4e11b612018-08-30 16:56:59 -06007711 SpvOptions defaultOptions;
John Kessenich121853f2017-05-31 17:11:16 -06007712 if (options == nullptr)
7713 options = &defaultOptions;
7714
John Kessenich4e11b612018-08-30 16:56:59 -06007715 GetThreadPoolAllocator().push();
John Kessenich140f3df2015-06-26 16:58:36 -06007716
John Kessenich2b5ea9f2018-01-31 18:35:56 -07007717 TGlslangToSpvTraverser it(intermediate.getSpv().spv, &intermediate, logger, *options);
John Kessenich140f3df2015-06-26 16:58:36 -06007718 root->traverse(&it);
John Kessenichfca82622016-11-26 13:23:20 -07007719 it.finishSpv();
John Kessenich140f3df2015-06-26 16:58:36 -06007720 it.dumpSpv(spirv);
7721
GregFfb03a552018-03-29 11:49:14 -06007722#if ENABLE_OPT
GregFcd1f1692017-09-21 18:40:22 -06007723 // If from HLSL, run spirv-opt to "legalize" the SPIR-V for Vulkan
7724 // eg. forward and remove memory writes of opaque types.
John Kessenich717c80a2018-08-23 15:17:10 -06007725 if ((intermediate.getSource() == EShSourceHlsl || options->optimizeSize) && !options->disableOptimizer)
John Kesseniche7df8e02018-08-22 17:12:46 -06007726 SpirvToolsLegalize(intermediate, spirv, logger, options);
John Kessenich717c80a2018-08-23 15:17:10 -06007727
John Kessenich4e11b612018-08-30 16:56:59 -06007728 if (options->validate)
7729 SpirvToolsValidate(intermediate, spirv, logger);
7730
John Kessenich717c80a2018-08-23 15:17:10 -06007731 if (options->disassemble)
John Kessenich4e11b612018-08-30 16:56:59 -06007732 SpirvToolsDisassemble(std::cout, spirv);
John Kessenich717c80a2018-08-23 15:17:10 -06007733
GregFcd1f1692017-09-21 18:40:22 -06007734#endif
7735
John Kessenich4e11b612018-08-30 16:56:59 -06007736 GetThreadPoolAllocator().pop();
John Kessenich140f3df2015-06-26 16:58:36 -06007737}
7738
7739}; // end namespace glslang