blob: 6292a812f83c5e722d34655e1e054444c80951d7 [file] [log] [blame]
John Kessenicha0af4732012-12-12 21:15:54 +00001//
John Kessenich927608b2017-01-06 12:34:14 -07002// Copyright (C) 2002-2005 3Dlabs Inc. Ltd.
3// Copyright (C) 2013-2016 LunarG, Inc.
John Kessenichbd0747d2013-02-17 06:01:50 +00004//
John Kessenich927608b2017-01-06 12:34:14 -07005// All rights reserved.
John Kessenicha0af4732012-12-12 21:15:54 +00006//
John Kessenich927608b2017-01-06 12:34:14 -07007// Redistribution and use in source and binary forms, with or without
8// modification, are permitted provided that the following conditions
9// are met:
John Kessenicha0af4732012-12-12 21:15:54 +000010//
11// Redistributions of source code must retain the above copyright
12// notice, this list of conditions and the following disclaimer.
13//
14// Redistributions in binary form must reproduce the above
15// copyright notice, this list of conditions and the following
16// disclaimer in the documentation and/or other materials provided
17// with the distribution.
18//
19// Neither the name of 3Dlabs Inc. Ltd. nor the names of its
20// contributors may be used to endorse or promote products derived
21// from this software without specific prior written permission.
22//
John Kessenich927608b2017-01-06 12:34:14 -070023// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34// POSSIBILITY OF SUCH DAMAGE.
John Kessenicha0af4732012-12-12 21:15:54 +000035//
John Kessenich05a70632013-09-17 19:26:08 +000036
37// this only applies to the standalone wrapper, not the front end in general
Aras Pranckevicius8e204b22017-05-10 16:52:50 +030038#ifndef _CRT_SECURE_NO_WARNINGS
John Kessenich05a70632013-09-17 19:26:08 +000039#define _CRT_SECURE_NO_WARNINGS
Aras Pranckevicius8e204b22017-05-10 16:52:50 +030040#endif
John Kessenich05a70632013-09-17 19:26:08 +000041
Lei Zhang8a9b1ee2016-05-19 13:31:43 -040042#include "ResourceLimits.h"
John Kessenich2b07c7e2013-07-31 18:44:13 +000043#include "Worklist.h"
John Kessenich3494b4d2017-05-22 15:00:42 -060044#include "DirStackFileIncluder.h"
John Kessenicha0af4732012-12-12 21:15:54 +000045#include "./../glslang/Include/ShHandle.h"
John Kessenich0da9eaa2015-08-01 17:10:02 -060046#include "./../glslang/Include/revision.h"
John Kessenicha0af4732012-12-12 21:15:54 +000047#include "./../glslang/Public/ShaderLang.h"
John Kessenich0df0cde2015-03-03 17:09:43 +000048#include "../SPIRV/GlslangToSpv.h"
John Kessenich5e4b1242015-08-06 22:53:06 -060049#include "../SPIRV/GLSL.std.450.h"
John Kessenichacba7722015-03-04 03:48:38 +000050#include "../SPIRV/doc.h"
51#include "../SPIRV/disassemble.h"
John Kessenich3494b4d2017-05-22 15:00:42 -060052
John Kessenich66ec80e2016-08-05 14:04:23 -060053#include <cstring>
54#include <cstdlib>
steve-lunarg7f7c2ed2016-09-07 15:20:19 -060055#include <cctype>
John Kessenich66ec80e2016-08-05 14:04:23 -060056#include <cmath>
steve-lunarg7f7c2ed2016-09-07 15:20:19 -060057#include <array>
LoopDawg08a14422017-10-17 19:27:14 -060058#include <map>
Juan Lopeza558b262017-04-02 23:04:00 +020059#include <memory>
60#include <thread>
John Kessenicha0af4732012-12-12 21:15:54 +000061
baldurk876a0e32015-11-16 18:03:28 +010062#include "../glslang/OSDependent/osinclude.h"
John Kessenicha0af4732012-12-12 21:15:54 +000063
64extern "C" {
65 SH_IMPORT_EXPORT void ShOutputHtml();
66}
67
John Kessenich94a81fb2013-08-31 02:41:30 +000068// Command-line options
69enum TOptions {
John Kessenich906cc212016-12-09 19:22:20 -070070 EOptionNone = 0,
71 EOptionIntermediate = (1 << 0),
72 EOptionSuppressInfolog = (1 << 1),
73 EOptionMemoryLeakMode = (1 << 2),
74 EOptionRelaxedErrors = (1 << 3),
75 EOptionGiveWarnings = (1 << 4),
76 EOptionLinkProgram = (1 << 5),
77 EOptionMultiThreaded = (1 << 6),
78 EOptionDumpConfig = (1 << 7),
79 EOptionDumpReflection = (1 << 8),
80 EOptionSuppressWarnings = (1 << 9),
81 EOptionDumpVersions = (1 << 10),
82 EOptionSpv = (1 << 11),
83 EOptionHumanReadableSpv = (1 << 12),
84 EOptionVulkanRules = (1 << 13),
85 EOptionDefaultDesktop = (1 << 14),
86 EOptionOutputPreprocessed = (1 << 15),
87 EOptionOutputHexadecimal = (1 << 16),
88 EOptionReadHlsl = (1 << 17),
89 EOptionCascadingErrors = (1 << 18),
90 EOptionAutoMapBindings = (1 << 19),
steve-lunarge0b9deb2016-09-16 13:26:37 -060091 EOptionFlattenUniformArrays = (1 << 20),
John Kessenich906cc212016-12-09 19:22:20 -070092 EOptionNoStorageFormat = (1 << 21),
John Kessenich20f01e72016-12-12 11:41:43 -070093 EOptionKeepUncalled = (1 << 22),
John Kessenich4f1403e2017-04-05 17:38:20 -060094 EOptionHlslOffsets = (1 << 23),
steve-lunargbe283552017-04-18 12:18:01 -060095 EOptionHlslIoMapping = (1 << 24),
John Kessenich71facdf2017-05-17 18:28:19 -060096 EOptionAutoMapLocations = (1 << 25),
John Kessenich121853f2017-05-31 17:11:16 -060097 EOptionDebug = (1 << 26),
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +020098 EOptionStdin = (1 << 27),
GregFcd1f1692017-09-21 18:40:22 -060099 EOptionOptimizeDisable = (1 << 28),
100 EOptionOptimizeSize = (1 << 29),
John Kessenich94a81fb2013-08-31 02:41:30 +0000101};
102
John Kessenicha0af4732012-12-12 21:15:54 +0000103//
John Kessenich68d78fd2015-07-12 19:28:10 -0600104// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +0000105//
106enum TFailCode {
107 ESuccess = 0,
108 EFailUsage,
109 EFailCompile,
110 EFailLink,
111 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +0000112 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +0000113 EFailLinkerCreate
114};
115
116//
John Kessenich68d78fd2015-07-12 19:28:10 -0600117// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +0000118//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600119EShLanguage FindLanguage(const std::string& name, bool parseSuffix=true);
John Kessenich51cdd902014-02-18 23:37:57 +0000120void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000121void usage();
John Kessenich04acb1b2017-06-14 17:36:50 -0600122char* ReadFileData(const char* fileName);
123void FreeFileData(char* data);
John Kessenich54d8cda2013-02-11 22:36:01 +0000124void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000125
John Kessenichc999ba22013-11-07 23:33:24 +0000126// Globally track if any compile or link failure.
127bool CompileFailed = false;
128bool LinkFailed = false;
129
John Kessenich05a70632013-09-17 19:26:08 +0000130TBuiltInResource Resources;
131std::string ConfigFile;
132
John Kessenicha0af4732012-12-12 21:15:54 +0000133//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600134// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000135//
136void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000137{
John Kessenich04acb1b2017-06-14 17:36:50 -0600138 if (ConfigFile.size() == 0)
Lei Zhang414eb602016-03-04 16:22:34 -0500139 Resources = glslang::DefaultTBuiltInResource;
John Kessenich04acb1b2017-06-14 17:36:50 -0600140 else {
141 char* configString = ReadFileData(ConfigFile.c_str());
142 glslang::DecodeResourceLimits(&Resources, configString);
143 FreeFileData(configString);
John Kessenich05a70632013-09-17 19:26:08 +0000144 }
John Kessenicha0af4732012-12-12 21:15:54 +0000145}
146
John Kessenich94a81fb2013-08-31 02:41:30 +0000147int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600148const char* ExecutableName = nullptr;
149const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700150const char* entryPointName = nullptr;
steve-lunargf1e0c872016-10-31 15:13:43 -0600151const char* sourceEntryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400152const char* shaderStageName = nullptr;
Flavioaea3c892017-02-06 11:46:35 -0800153const char* variableName = nullptr;
John Kessenich971a0a82017-06-07 15:06:58 -0600154std::vector<std::string> IncludeDirectoryList;
John Kessenich6353d552017-06-23 11:11:09 -0600155int ClientInputSemanticsVersion = 100; // maps to, say, #define VULKAN 100
156int VulkanClientVersion = 100; // would map to, say, Vulkan 1.0
157int OpenGLClientVersion = 450; // doesn't influence anything yet, but maps to OpenGL 4.50
158unsigned int TargetVersion = 0x00001000; // maps to, say, SPIR-V 1.0
John Kessenich2a271162017-07-20 20:00:36 -0600159std::vector<std::string> Processes; // what should be recorded by OpModuleProcessed, or equivalent
John Kessenich68d78fd2015-07-12 19:28:10 -0600160
LoopDawg08a14422017-10-17 19:27:14 -0600161// Per descriptor-set binding base data
162typedef std::map<unsigned int, unsigned int> TPerSetBaseBinding;
163
164std::array<std::array<unsigned int, EShLangCount>, glslang::EResCount> baseBinding;
165std::array<std::array<TPerSetBaseBinding, EShLangCount>, glslang::EResCount> baseBindingForSet;
Hyangran Park36dc8292017-05-02 16:27:29 +0900166std::array<std::vector<std::string>, EShLangCount> baseResourceSetBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600167
John Kessenicha9313662017-06-15 10:40:49 -0600168// Add things like "#define ..." to a preamble to use in the beginning of the shader.
169class TPreamble {
170public:
171 TPreamble() { }
172
173 bool isSet() const { return text.size() > 0; }
174 const char* get() const { return text.c_str(); }
175
176 // #define...
177 void addDef(std::string def)
178 {
179 text.append("#define ");
180 fixLine(def);
181
John Kessenich2a271162017-07-20 20:00:36 -0600182 Processes.push_back("D");
183 Processes.back().append(def);
184
John Kessenicha9313662017-06-15 10:40:49 -0600185 // The first "=" needs to turn into a space
LoopDawgb97b25e2017-07-12 09:04:39 -0600186 const size_t equal = def.find_first_of("=");
John Kessenicha9313662017-06-15 10:40:49 -0600187 if (equal != def.npos)
188 def[equal] = ' ';
189
190 text.append(def);
191 text.append("\n");
192 }
193
194 // #undef...
195 void addUndef(std::string undef)
196 {
197 text.append("#undef ");
198 fixLine(undef);
John Kessenich2a271162017-07-20 20:00:36 -0600199
200 Processes.push_back("U");
201 Processes.back().append(undef);
202
John Kessenicha9313662017-06-15 10:40:49 -0600203 text.append(undef);
204 text.append("\n");
205 }
206
207protected:
208 void fixLine(std::string& line)
209 {
210 // Can't go past a newline in the line
LoopDawgb97b25e2017-07-12 09:04:39 -0600211 const size_t end = line.find_first_of("\n");
John Kessenicha9313662017-06-15 10:40:49 -0600212 if (end != line.npos)
213 line = line.substr(0, end);
214 }
215
216 std::string text; // contents of preamble
217};
218
219TPreamble UserPreamble;
220
John Kessenich68d78fd2015-07-12 19:28:10 -0600221//
222// Create the default name for saving a binary if -o is not provided.
223//
224const char* GetBinaryName(EShLanguage stage)
225{
226 const char* name;
227 if (binaryFileName == nullptr) {
228 switch (stage) {
229 case EShLangVertex: name = "vert.spv"; break;
230 case EShLangTessControl: name = "tesc.spv"; break;
231 case EShLangTessEvaluation: name = "tese.spv"; break;
232 case EShLangGeometry: name = "geom.spv"; break;
233 case EShLangFragment: name = "frag.spv"; break;
234 case EShLangCompute: name = "comp.spv"; break;
235 default: name = "unknown"; break;
236 }
237 } else
238 name = binaryFileName;
239
240 return name;
241}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000242
John Kessenich05a70632013-09-17 19:26:08 +0000243//
244// *.conf => this is a config file that can set limits/resources
245//
246bool SetConfigFile(const std::string& name)
247{
248 if (name.size() < 5)
249 return false;
250
John Kessenich4c706852013-10-11 16:28:43 +0000251 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000252 ConfigFile = name;
253 return true;
254 }
255
256 return false;
257}
258
John Kessenich68d78fd2015-07-12 19:28:10 -0600259//
260// Give error and exit with failure code.
261//
262void Error(const char* message)
263{
John Kessenichaf527992017-11-02 22:48:15 -0600264 fprintf(stderr, "%s: Error %s (use -h for usage)\n", ExecutableName, message);
John Kessenich68d78fd2015-07-12 19:28:10 -0600265 exit(EFailUsage);
266}
267
268//
LoopDawg08a14422017-10-17 19:27:14 -0600269// Process an optional binding base of one the forms:
270// --argname [stage] base // base for stage (if given) or all stages (if not)
271// --argname [stage] [set base]... // set/base pairs: set the base for given binding set.
272
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600273// Where stage is one of the forms accepted by FindLanguage, and base is an integer
274//
LoopDawg08a14422017-10-17 19:27:14 -0600275void ProcessBindingBase(int& argc, char**& argv, glslang::TResourceType res)
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600276{
277 if (argc < 2)
278 usage();
279
LoopDawg08a14422017-10-17 19:27:14 -0600280 EShLanguage lang = EShLangCount;
281 int singleBase = 0;
282 TPerSetBaseBinding perSetBase;
283 int arg = 1;
284
285 // Parse stage, if given
286 if (!isdigit(argv[arg][0])) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600287 if (argc < 3) // this form needs one more argument
288 usage();
John Kessenichecba76f2017-01-06 00:34:48 -0700289
LoopDawg08a14422017-10-17 19:27:14 -0600290 lang = FindLanguage(argv[arg++], false);
291 }
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600292
LoopDawg08a14422017-10-17 19:27:14 -0600293 if ((argc - arg) > 2 && isdigit(argv[arg+0][0]) && isdigit(argv[arg+1][0])) {
294 // Parse a per-set binding base
295 while ((argc - arg) > 2 && isdigit(argv[arg+0][0]) && isdigit(argv[arg+1][0])) {
296 const int setNum = atoi(argv[arg++]);
297 const int baseNum = atoi(argv[arg++]);
298 perSetBase[setNum] = baseNum;
299 }
300 } else {
301 // Parse single binding base
302 singleBase = atoi(argv[arg++]);
303 }
304
305 argc -= (arg-1);
306 argv += (arg-1);
307
308 // Set one or all languages
309 const int langMin = (lang < EShLangCount) ? lang+0 : 0;
310 const int langMax = (lang < EShLangCount) ? lang+1 : EShLangCount;
311
312 for (int lang = langMin; lang < langMax; ++lang) {
313 if (!perSetBase.empty())
314 baseBindingForSet[res][lang] = perSetBase;
315 else
316 baseBinding[res][lang] = singleBase;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600317 }
318}
319
Hyangran Park36dc8292017-05-02 16:27:29 +0900320void ProcessResourceSetBindingBase(int& argc, char**& argv, std::array<std::vector<std::string>, EShLangCount>& base)
321{
322 if (argc < 2)
323 usage();
324
325 if (!isdigit(argv[1][0])) {
LoopDawg52017192017-07-14 15:15:47 -0600326 if (argc < 3) // this form needs one more argument
Hyangran Park36dc8292017-05-02 16:27:29 +0900327 usage();
328
LoopDawg52017192017-07-14 15:15:47 -0600329 // Parse form: --argname stage [regname set base...], or:
330 // --argname stage set
Hyangran Park36dc8292017-05-02 16:27:29 +0900331 const EShLanguage lang = FindLanguage(argv[1], false);
332
LoopDawg52017192017-07-14 15:15:47 -0600333 argc--;
334 argv++;
335
336 while (argc > 1 && argv[1] != nullptr && argv[1][0] != '-') {
337 base[lang].push_back(argv[1]);
338
339 argc--;
340 argv++;
Hyangran Park36dc8292017-05-02 16:27:29 +0900341 }
LoopDawg52017192017-07-14 15:15:47 -0600342
343 // Must have one arg, or a multiple of three (for [regname set binding] triples)
344 if (base[lang].size() != 1 && (base[lang].size() % 3) != 0)
345 usage();
346
Hyangran Park36dc8292017-05-02 16:27:29 +0900347 } else {
LoopDawg52017192017-07-14 15:15:47 -0600348 // Parse form: --argname set
Hyangran Park36dc8292017-05-02 16:27:29 +0900349 for (int lang=0; lang<EShLangCount; ++lang)
350 base[lang].push_back(argv[1]);
351
352 argc--;
353 argv++;
354 }
355}
356
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600357//
John Kessenich68d78fd2015-07-12 19:28:10 -0600358// Do all command-line argument parsing. This includes building up the work-items
359// to be processed later, and saving all the command-line options.
360//
361// Does not return (it exits) if command-line is fatally flawed.
362//
Juan Lopeza558b262017-04-02 23:04:00 +0200363void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItems, int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000364{
LoopDawg08a14422017-10-17 19:27:14 -0600365 for (int res = 0; res < glslang::EResCount; ++res)
366 baseBinding[res].fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600367
John Kessenich38f3b892013-09-06 19:52:57 +0000368 ExecutableName = argv[0];
Juan Lopeza558b262017-04-02 23:04:00 +0200369 workItems.reserve(argc);
John Kessenich38f3b892013-09-06 19:52:57 +0000370
John Kessenichc178f0a2017-06-23 10:58:31 -0600371 const auto bumpArg = [&]() {
372 if (argc > 0) {
373 argc--;
374 argv++;
375 }
376 };
377
378 // read a string directly attached to a single-letter option
John Kessenich6263fb12017-06-14 15:52:44 -0600379 const auto getStringOperand = [&](const char* desc) {
380 if (argv[0][2] == 0) {
381 printf("%s must immediately follow option (no spaces)\n", desc);
382 exit(EFailUsage);
383 }
384 return argv[0] + 2;
385 };
386
John Kessenich6353d552017-06-23 11:11:09 -0600387 // read a number attached to a single-letter option
388 const auto getAttachedNumber = [&](const char* desc) {
389 int num = atoi(argv[0] + 2);
390 if (num == 0) {
391 printf("%s: expected attached non-0 number\n", desc);
392 exit(EFailUsage);
393 }
394 return num;
395 };
396
397 // minimum needed (without overriding something else) to target Vulkan SPIR-V
398 const auto setVulkanSpv = []() {
399 Options |= EOptionSpv;
400 Options |= EOptionVulkanRules;
401 Options |= EOptionLinkProgram;
402 };
403
404 // minimum needed (without overriding something else) to target OpenGL SPIR-V
405 const auto setOpenGlSpv = []() {
406 Options |= EOptionSpv;
407 Options |= EOptionLinkProgram;
408 // undo a -H default to Vulkan
409 Options &= ~EOptionVulkanRules;
410 };
411
John Kessenichc178f0a2017-06-23 10:58:31 -0600412 for (bumpArg(); argc >= 1; bumpArg()) {
John Kessenich2b07c7e2013-07-31 18:44:13 +0000413 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000414 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600415 case '-':
416 {
417 std::string lowerword(argv[0]+2);
418 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
419
420 // handle --word style options
John Kessenich6263fb12017-06-14 15:52:44 -0600421 if (lowerword == "auto-map-bindings" || // synonyms
John Kessenich6353d552017-06-23 11:11:09 -0600422 lowerword == "auto-map-binding" ||
423 lowerword == "amb") {
John Kessenich6263fb12017-06-14 15:52:44 -0600424 Options |= EOptionAutoMapBindings;
425 } else if (lowerword == "auto-map-locations" || // synonyms
426 lowerword == "aml") {
427 Options |= EOptionAutoMapLocations;
John Kessenich6353d552017-06-23 11:11:09 -0600428 } else if (lowerword == "client") {
429 if (argc > 1) {
430 if (strcmp(argv[1], "vulkan100") == 0)
431 setVulkanSpv();
432 else if (strcmp(argv[1], "opengl100") == 0)
433 setOpenGlSpv();
434 else
435 Error("--client expects vulkan100 or opengl100");
436 }
437 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600438 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
439 lowerword == "flatten-uniform-array" ||
440 lowerword == "fua") {
441 Options |= EOptionFlattenUniformArrays;
442 } else if (lowerword == "hlsl-offsets") {
443 Options |= EOptionHlslOffsets;
444 } else if (lowerword == "hlsl-iomap" ||
445 lowerword == "hlsl-iomapper" ||
446 lowerword == "hlsl-iomapping") {
447 Options |= EOptionHlslIoMapping;
448 } else if (lowerword == "keep-uncalled" || // synonyms
449 lowerword == "ku") {
450 Options |= EOptionKeepUncalled;
451 } else if (lowerword == "no-storage-format" || // synonyms
452 lowerword == "nsf") {
453 Options |= EOptionNoStorageFormat;
John Kessenich2a271162017-07-20 20:00:36 -0600454 } else if (lowerword == "relaxed-errors") {
455 Options |= EOptionRelaxedErrors;
John Kessenich6263fb12017-06-14 15:52:44 -0600456 } else if (lowerword == "resource-set-bindings" || // synonyms
457 lowerword == "resource-set-binding" ||
458 lowerword == "rsb") {
459 ProcessResourceSetBindingBase(argc, argv, baseResourceSetBinding);
steve-lunarg9088be42016-11-01 10:31:42 -0600460 } else if (lowerword == "shift-image-bindings" || // synonyms
461 lowerword == "shift-image-binding" ||
462 lowerword == "sib") {
LoopDawg08a14422017-10-17 19:27:14 -0600463 ProcessBindingBase(argc, argv, glslang::EResImage);
John Kessenich6263fb12017-06-14 15:52:44 -0600464 } else if (lowerword == "shift-sampler-bindings" || // synonyms
465 lowerword == "shift-sampler-binding" ||
466 lowerword == "ssb") {
LoopDawg08a14422017-10-17 19:27:14 -0600467 ProcessBindingBase(argc, argv, glslang::EResSampler);
John Kessenich6263fb12017-06-14 15:52:44 -0600468 } else if (lowerword == "shift-uav-bindings" || // synonyms
469 lowerword == "shift-uav-binding" ||
470 lowerword == "suavb") {
LoopDawg08a14422017-10-17 19:27:14 -0600471 ProcessBindingBase(argc, argv, glslang::EResUav);
John Kessenich6263fb12017-06-14 15:52:44 -0600472 } else if (lowerword == "shift-texture-bindings" || // synonyms
473 lowerword == "shift-texture-binding" ||
474 lowerword == "stb") {
LoopDawg08a14422017-10-17 19:27:14 -0600475 ProcessBindingBase(argc, argv, glslang::EResTexture);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600476 } else if (lowerword == "shift-ubo-bindings" || // synonyms
477 lowerword == "shift-ubo-binding" ||
steve-lunargbe283552017-04-18 12:18:01 -0600478 lowerword == "shift-cbuffer-bindings" ||
479 lowerword == "shift-cbuffer-binding" ||
480 lowerword == "sub" ||
481 lowerword == "scb") {
LoopDawg08a14422017-10-17 19:27:14 -0600482 ProcessBindingBase(argc, argv, glslang::EResUbo);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700483 } else if (lowerword == "shift-ssbo-bindings" || // synonyms
484 lowerword == "shift-ssbo-binding" ||
485 lowerword == "sbb") {
LoopDawg08a14422017-10-17 19:27:14 -0600486 ProcessBindingBase(argc, argv, glslang::EResSsbo);
John Kessenich6263fb12017-06-14 15:52:44 -0600487 } else if (lowerword == "source-entrypoint" || // synonyms
488 lowerword == "sep") {
John Kessenichc178f0a2017-06-23 10:58:31 -0600489 if (argc <= 1)
John Kessenich6263fb12017-06-14 15:52:44 -0600490 Error("no <entry-point> provided for --source-entrypoint");
John Kessenichc178f0a2017-06-23 10:58:31 -0600491 sourceEntryPointName = argv[1];
492 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600493 break;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200494 } else if (lowerword == "stdin") {
495 Options |= EOptionStdin;
496 shaderStageName = argv[1];
John Kessenich2a271162017-07-20 20:00:36 -0600497 } else if (lowerword == "suppress-warnings") {
498 Options |= EOptionSuppressWarnings;
John Kessenich6353d552017-06-23 11:11:09 -0600499 } else if (lowerword == "target-env") {
500 if (argc > 1) {
501 if (strcmp(argv[1], "vulkan1.0") == 0) {
502 setVulkanSpv();
503 VulkanClientVersion = 100;
504 } else if (strcmp(argv[1], "opengl") == 0) {
505 setOpenGlSpv();
506 OpenGLClientVersion = 450;
507 } else
508 Error("--target-env expected vulkan1.0 or opengl");
509 }
510 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800511 } else if (lowerword == "variable-name" || // synonyms
512 lowerword == "vn") {
513 Options |= EOptionOutputHexadecimal;
John Kessenichc178f0a2017-06-23 10:58:31 -0600514 if (argc <= 1)
Flavio15017db2017-02-15 14:29:33 -0800515 Error("no <C-variable-name> provided for --variable-name");
John Kessenichc178f0a2017-06-23 10:58:31 -0600516 variableName = argv[1];
517 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800518 break;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600519 } else {
520 usage();
521 }
522 }
523 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600524 case 'C':
525 Options |= EOptionCascadingErrors;
526 break;
527 case 'D':
John Kessenicha9313662017-06-15 10:40:49 -0600528 if (argv[0][2] == 0)
529 Options |= EOptionReadHlsl;
530 else
531 UserPreamble.addDef(getStringOperand("-D<macro> macro name"));
John Kessenich6263fb12017-06-14 15:52:44 -0600532 break;
533 case 'E':
534 Options |= EOptionOutputPreprocessed;
535 break;
536 case 'G':
John Kessenich6353d552017-06-23 11:11:09 -0600537 // OpenGL Client
538 setOpenGlSpv();
539 if (argv[0][2] != 0)
540 ClientInputSemanticsVersion = getAttachedNumber("-G<num> client input semantics");
John Kessenich6263fb12017-06-14 15:52:44 -0600541 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000542 case 'H':
543 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600544 if ((Options & EOptionSpv) == 0) {
545 // default to Vulkan
John Kessenich6353d552017-06-23 11:11:09 -0600546 setVulkanSpv();
John Kessenich91e4aa52016-07-07 17:46:42 -0600547 }
548 break;
John Kessenich971a0a82017-06-07 15:06:58 -0600549 case 'I':
John Kessenicha9313662017-06-15 10:40:49 -0600550 IncludeDirectoryList.push_back(getStringOperand("-I<dir> include path"));
John Kessenich68d78fd2015-07-12 19:28:10 -0600551 break;
GregFcd1f1692017-09-21 18:40:22 -0600552 case 'O':
553 if (argv[0][2] == 'd')
554 Options |= EOptionOptimizeDisable;
555 else if (argv[0][2] == 's')
556#ifdef ENABLE_OPT
557 Options |= EOptionOptimizeSize;
558#else
559 Error("-Os not available; optimizer not linked");
560#endif
561 else
562 Error("unknown -O option");
563 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400564 case 'S':
John Kessenichc178f0a2017-06-23 10:58:31 -0600565 if (argc <= 1)
Dan Baker5afdd782016-08-11 17:53:57 -0400566 Error("no <stage> specified for -S");
John Kessenichc178f0a2017-06-23 10:58:31 -0600567 shaderStageName = argv[1];
568 bumpArg();
dankbaker45d49bc2016-08-08 21:43:07 -0400569 break;
John Kessenicha9313662017-06-15 10:40:49 -0600570 case 'U':
571 UserPreamble.addUndef(getStringOperand("-U<macro>: macro name"));
572 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600573 case 'V':
John Kessenich6353d552017-06-23 11:11:09 -0600574 setVulkanSpv();
575 if (argv[0][2] != 0)
576 ClientInputSemanticsVersion = getAttachedNumber("-G<num> client input semantics");
John Kessenichc555ddd2015-06-17 02:38:44 +0000577 break;
John Kessenich05a70632013-09-17 19:26:08 +0000578 case 'c':
579 Options |= EOptionDumpConfig;
580 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000581 case 'd':
John Kessenich26ad2682014-08-13 20:17:19 +0000582 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000583 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700584 case 'e':
585 // HLSL todo: entry point handle needs much more sophistication.
586 // This is okay for one compilation unit with one entry point.
587 entryPointName = argv[1];
John Kessenichc178f0a2017-06-23 10:58:31 -0600588 if (argc <= 1)
John Kessenicha25530c2017-09-11 20:13:49 -0600589 Error("no <name> provided for -e");
John Kessenichc178f0a2017-06-23 10:58:31 -0600590 bumpArg();
John Kessenich4d65ee32016-03-12 18:17:47 -0700591 break;
John Kessenich121853f2017-05-31 17:11:16 -0600592 case 'g':
593 Options |= EOptionDebug;
594 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600595 case 'h':
596 usage();
597 break;
John Kessenich05a70632013-09-17 19:26:08 +0000598 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000599 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000600 break;
601 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000602 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000603 break;
604 case 'm':
605 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000606 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600607 case 'o':
John Kessenichc178f0a2017-06-23 10:58:31 -0600608 if (argc <= 1)
John Kessenich68d78fd2015-07-12 19:28:10 -0600609 Error("no <file> provided for -o");
John Kessenichc178f0a2017-06-23 10:58:31 -0600610 binaryFileName = argv[1];
611 bumpArg();
John Kessenich68d78fd2015-07-12 19:28:10 -0600612 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000613 case 'q':
614 Options |= EOptionDumpReflection;
615 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000616 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000617 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000618 break;
619 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000620 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000621 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000622 case 't':
Juan Lopeza558b262017-04-02 23:04:00 +0200623 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000624 break;
John Kessenich319de232013-12-04 04:43:40 +0000625 case 'v':
626 Options |= EOptionDumpVersions;
627 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000628 case 'w':
629 Options |= EOptionSuppressWarnings;
630 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500631 case 'x':
632 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500633 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000634 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600635 usage();
636 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000637 }
John Kessenich38f3b892013-09-06 19:52:57 +0000638 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000639 std::string name(argv[0]);
640 if (! SetConfigFile(name)) {
Juan Lopeza558b262017-04-02 23:04:00 +0200641 workItems.push_back(std::unique_ptr<glslang::TWorkItem>(new glslang::TWorkItem(name)));
John Kessenich05a70632013-09-17 19:26:08 +0000642 }
John Kessenich38f3b892013-09-06 19:52:57 +0000643 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000644 }
645
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200646 // Make sure that -S is always specified if --stdin is specified
647 if ((Options & EOptionStdin) && shaderStageName == nullptr)
648 Error("must provide -S when --stdin is given");
649
John Kessenich68d78fd2015-07-12 19:28:10 -0600650 // Make sure that -E is not specified alongside linking (which includes SPV generation)
651 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
652 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000653
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500654 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600655 if (binaryFileName && (Options & EOptionSpv) == 0)
656 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600657
658 if ((Options & EOptionFlattenUniformArrays) != 0 &&
659 (Options & EOptionReadHlsl) == 0)
660 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000661}
662
John Kessenich68d78fd2015-07-12 19:28:10 -0600663//
664// Translate the meaningful subset of command-line options to parser-behavior options.
665//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000666void SetMessageOptions(EShMessages& messages)
667{
668 if (Options & EOptionRelaxedErrors)
669 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
670 if (Options & EOptionIntermediate)
671 messages = (EShMessages)(messages | EShMsgAST);
672 if (Options & EOptionSuppressWarnings)
673 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600674 if (Options & EOptionSpv)
675 messages = (EShMessages)(messages | EShMsgSpvRules);
676 if (Options & EOptionVulkanRules)
677 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400678 if (Options & EOptionOutputPreprocessed)
679 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700680 if (Options & EOptionReadHlsl)
681 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600682 if (Options & EOptionCascadingErrors)
683 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenich906cc212016-12-09 19:22:20 -0700684 if (Options & EOptionKeepUncalled)
685 messages = (EShMessages)(messages | EShMsgKeepUncalled);
John Kessenich4f1403e2017-04-05 17:38:20 -0600686 if (Options & EOptionHlslOffsets)
687 messages = (EShMessages)(messages | EShMsgHlslOffsets);
John Kessenich121853f2017-05-31 17:11:16 -0600688 if (Options & EOptionDebug)
689 messages = (EShMessages)(messages | EShMsgDebugInfo);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000690}
691
John Kessenich68d78fd2015-07-12 19:28:10 -0600692//
John Kessenich69f4b512013-09-04 21:19:27 +0000693// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000694//
Juan Lopeza558b262017-04-02 23:04:00 +0200695void CompileShaders(glslang::TWorklist& worklist)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000696{
John Kessenich38f3b892013-09-06 19:52:57 +0000697 glslang::TWorkItem* workItem;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200698 if (Options & EOptionStdin) {
699 worklist.remove(workItem);
700 ShHandle compiler = ShConstructCompiler(FindLanguage("stdin"), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000701 if (compiler == 0)
Juan Lopeza558b262017-04-02 23:04:00 +0200702 return;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000703
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200704 CompileFile("stdin", compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000705
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200706 if (! (Options & EOptionSuppressInfolog))
707 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000708
709 ShDestruct(compiler);
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200710 } else {
711 while (worklist.remove(workItem)) {
712 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
713 if (compiler == 0)
714 return;
715
716 CompileFile(workItem->name.c_str(), compiler);
717
718 if (! (Options & EOptionSuppressInfolog))
719 workItem->results = ShGetInfoLog(compiler);
720
721 ShDestruct(compiler);
722 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000723 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000724}
725
John Kessenich6626cad2015-06-19 05:14:19 +0000726// Outputs the given string, but only if it is non-null and non-empty.
727// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400728void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000729{
730 if (str && str[0]) {
731 puts(str);
732 }
733}
734
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400735// Outputs the given string to stderr, but only if it is non-null and non-empty.
736// This prevents erroneous newlines from appearing.
737void StderrIfNonEmpty(const char* str)
738{
John Kessenich04acb1b2017-06-14 17:36:50 -0600739 if (str && str[0])
740 fprintf(stderr, "%s\n", str);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400741}
742
John Kessenichc57b2a92016-01-16 15:30:03 -0700743// Simple bundling of what makes a compilation unit for ease in passing around,
744// and separation of handling file IO versus API (programmatic) compilation.
745struct ShaderCompUnit {
746 EShLanguage stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600747 static const int maxCount = 1;
748 int count; // live number of strings/names
John Kessenicha9313662017-06-15 10:40:49 -0600749 const char* text[maxCount]; // memory owned/managed externally
John Kessenich04acb1b2017-06-14 17:36:50 -0600750 std::string fileName[maxCount]; // hold's the memory, but...
751 const char* fileNameList[maxCount]; // downstream interface wants pointers
dankbakerafe6e9c2016-08-21 12:29:08 -0400752
John Kessenich04acb1b2017-06-14 17:36:50 -0600753 ShaderCompUnit(EShLanguage stage) : stage(stage), count(0) { }
dankbakerafe6e9c2016-08-21 12:29:08 -0400754
John Kessenich04acb1b2017-06-14 17:36:50 -0600755 ShaderCompUnit(const ShaderCompUnit& rhs)
dankbakerafe6e9c2016-08-21 12:29:08 -0400756 {
757 stage = rhs.stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600758 count = rhs.count;
759 for (int i = 0; i < count; ++i) {
760 fileName[i] = rhs.fileName[i];
761 text[i] = rhs.text[i];
762 fileNameList[i] = rhs.fileName[i].c_str();
763 }
dankbakerafe6e9c2016-08-21 12:29:08 -0400764 }
765
John Kessenicha9313662017-06-15 10:40:49 -0600766 void addString(std::string& ifileName, const char* itext)
John Kessenich04acb1b2017-06-14 17:36:50 -0600767 {
768 assert(count < maxCount);
769 fileName[count] = ifileName;
770 text[count] = itext;
771 fileNameList[count] = fileName[count].c_str();
772 ++count;
773 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700774};
775
John Kessenich69f4b512013-09-04 21:19:27 +0000776//
John Kessenichc57b2a92016-01-16 15:30:03 -0700777// For linking mode: Will independently parse each compilation unit, but then put them
778// in the same program and link them together, making at most one linked module per
779// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000780//
781// Uses the new C++ interface instead of the old handle-based interface.
782//
John Kessenichc57b2a92016-01-16 15:30:03 -0700783
784void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000785{
786 // keep track of what to free
787 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700788
John Kessenich69f4b512013-09-04 21:19:27 +0000789 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000790 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000791
John Kessenich69f4b512013-09-04 21:19:27 +0000792 //
793 // Per-shader processing...
794 //
795
John Kessenich5b0f13a2013-11-01 03:08:40 +0000796 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100797 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
798 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700799 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
John Kessenich04acb1b2017-06-14 17:36:50 -0600800 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, compUnit.count);
John Kessenich4d65ee32016-03-12 18:17:47 -0700801 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
802 shader->setEntryPoint(entryPointName);
John Kessenich3693e632017-09-29 17:51:52 -0600803 if (sourceEntryPointName) {
804 if (entryPointName == nullptr)
805 printf("Warning: Changing source entry point name without setting an entry-point name.\n"
806 "Use '-e <name>'.\n");
steve-lunargf1e0c872016-10-31 15:13:43 -0600807 shader->setSourceEntryPoint(sourceEntryPointName);
John Kessenich3693e632017-09-29 17:51:52 -0600808 }
John Kessenicha9313662017-06-15 10:40:49 -0600809 if (UserPreamble.isSet())
810 shader->setPreamble(UserPreamble.get());
John Kessenich2a271162017-07-20 20:00:36 -0600811 shader->addProcesses(Processes);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600812
LoopDawg08a14422017-10-17 19:27:14 -0600813 // Set IO mapper binding shift values
814 for (int r = 0; r < glslang::EResCount; ++r) {
815 const glslang::TResourceType res = glslang::TResourceType(r);
816
817 // Set base bindings
818 shader->setShiftBinding(res, baseBinding[res][compUnit.stage]);
819
820 // Set bindings for particular resource sets
821 // TODO: use a range based for loop here, when available in all environments.
822 for (auto i = baseBindingForSet[res][compUnit.stage].begin();
823 i != baseBindingForSet[res][compUnit.stage].end(); ++i)
824 shader->setShiftBindingForSet(res, i->first, i->second);
825 }
826
steve-lunarge0b9deb2016-09-16 13:26:37 -0600827 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
steve-lunargcce8d482016-10-14 18:36:42 -0600828 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
Hyangran Park36dc8292017-05-02 16:27:29 +0900829 shader->setResourceSetBinding(baseResourceSetBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600830
steve-lunargbe283552017-04-18 12:18:01 -0600831 if (Options & EOptionHlslIoMapping)
832 shader->setHlslIoMapping(true);
833
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600834 if (Options & EOptionAutoMapBindings)
835 shader->setAutoMapBindings(true);
John Kessenichecba76f2017-01-06 00:34:48 -0700836
John Kessenich71facdf2017-05-17 18:28:19 -0600837 if (Options & EOptionAutoMapLocations)
838 shader->setAutoMapLocations(true);
839
John Kessenich4be4aeb2017-06-23 10:50:22 -0600840 // Set up the environment, some subsettings take precedence over earlier
841 // ways of setting things.
842 if (Options & EOptionSpv) {
843 if (Options & EOptionVulkanRules) {
844 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
845 : glslang::EShSourceGlsl,
John Kessenich6353d552017-06-23 11:11:09 -0600846 compUnit.stage, glslang::EShClientVulkan, ClientInputSemanticsVersion);
847 shader->setEnvClient(glslang::EShClientVulkan, VulkanClientVersion);
848 shader->setEnvTarget(glslang::EshTargetSpv, TargetVersion);
John Kessenich4be4aeb2017-06-23 10:50:22 -0600849 } else {
850 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
851 : glslang::EShSourceGlsl,
John Kessenich6353d552017-06-23 11:11:09 -0600852 compUnit.stage, glslang::EShClientOpenGL, ClientInputSemanticsVersion);
853 shader->setEnvClient(glslang::EShClientOpenGL, OpenGLClientVersion);
854 shader->setEnvTarget(glslang::EshTargetSpv, TargetVersion);
John Kessenich4be4aeb2017-06-23 10:50:22 -0600855 }
856 }
857
John Kessenich69f4b512013-09-04 21:19:27 +0000858 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600859
John Kessenich4be4aeb2017-06-23 10:50:22 -0600860 const int defaultVersion = Options & EOptionDefaultDesktop ? 110 : 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000861
John Kessenich3494b4d2017-05-22 15:00:42 -0600862 DirStackFileIncluder includer;
John Kessenich971a0a82017-06-07 15:06:58 -0600863 std::for_each(IncludeDirectoryList.rbegin(), IncludeDirectoryList.rend(), [&includer](const std::string& dir) {
864 includer.pushExternalLocalDirectory(dir); });
John Kessenichc555ddd2015-06-17 02:38:44 +0000865 if (Options & EOptionOutputPreprocessed) {
866 std::string str;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400867 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500868 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400869 PutsIfNonEmpty(str.c_str());
870 } else {
871 CompileFailed = true;
872 }
873 StderrIfNonEmpty(shader->getInfoLog());
874 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000875 continue;
876 }
John Kessenich3494b4d2017-05-22 15:00:42 -0600877 if (! shader->parse(&Resources, defaultVersion, false, messages, includer))
John Kessenichc999ba22013-11-07 23:33:24 +0000878 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000879
John Kessenich69f4b512013-09-04 21:19:27 +0000880 program.addShader(shader);
881
John Kessenichc57b2a92016-01-16 15:30:03 -0700882 if (! (Options & EOptionSuppressInfolog) &&
883 ! (Options & EOptionMemoryLeakMode)) {
John Kessenich04acb1b2017-06-14 17:36:50 -0600884 PutsIfNonEmpty(compUnit.fileName[0].c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400885 PutsIfNonEmpty(shader->getInfoLog());
886 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000887 }
John Kessenich69f4b512013-09-04 21:19:27 +0000888 }
889
890 //
891 // Program-level processing...
892 //
893
John Kessenich4d65ee32016-03-12 18:17:47 -0700894 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600895 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000896 LinkFailed = true;
897
steve-lunarg9ae34742016-10-05 13:40:13 -0600898 // Map IO
899 if (Options & EOptionSpv) {
900 if (!program.mapIO())
901 LinkFailed = true;
902 }
John Kessenichecba76f2017-01-06 00:34:48 -0700903
John Kessenich4d65ee32016-03-12 18:17:47 -0700904 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700905 if (! (Options & EOptionSuppressInfolog) &&
906 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400907 PutsIfNonEmpty(program.getInfoLog());
908 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000909 }
910
John Kessenich4d65ee32016-03-12 18:17:47 -0700911 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000912 if (Options & EOptionDumpReflection) {
913 program.buildReflection();
914 program.dumpReflection();
915 }
916
John Kessenich4d65ee32016-03-12 18:17:47 -0700917 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000918 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000919 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600920 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000921 else {
922 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000923 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000924 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400925 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400926 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -0600927 glslang::SpvOptions spvOptions;
928 if (Options & EOptionDebug)
929 spvOptions.generateDebugInfo = true;
GregF52fe3d52017-09-28 10:08:32 -0600930 spvOptions.disableOptimizer = (Options & EOptionOptimizeDisable) != 0;
931 spvOptions.optimizeSize = (Options & EOptionOptimizeSize) != 0;
John Kessenich121853f2017-05-31 17:11:16 -0600932 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger, &spvOptions);
John Kessenichc57b2a92016-01-16 15:30:03 -0700933
934 // Dump the spv to a file or stdout, etc., but only if not doing
935 // memory/perf testing, as it's not internal to programmatic use.
936 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500937 printf("%s", logger.getAllMessages().c_str());
938 if (Options & EOptionOutputHexadecimal) {
John Kessenich8f674e82017-02-18 09:45:40 -0700939 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage), variableName);
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500940 } else {
941 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
942 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700943 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700944 spv::Disassemble(std::cout, spirv);
945 }
John Kessenichacba7722015-03-04 03:48:38 +0000946 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000947 }
John Kessenich92f90382014-07-28 04:21:04 +0000948 }
949 }
950 }
951
John Kessenich5b0f13a2013-11-01 03:08:40 +0000952 // Free everything up, program has to go before the shaders
953 // because it might have merged stuff from the shaders, and
954 // the stuff from the shaders has to have its destructors called
955 // before the pools holding the memory in the shaders is freed.
956 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000957 while (shaders.size() > 0) {
958 delete shaders.back();
959 shaders.pop_back();
960 }
John Kessenich69f4b512013-09-04 21:19:27 +0000961}
962
John Kessenichc57b2a92016-01-16 15:30:03 -0700963//
964// Do file IO part of compile and link, handing off the pure
965// API/programmatic mode to CompileAndLinkShaderUnits(), which can
966// be put in a loop for testing memory footprint and performance.
967//
968// This is just for linking mode: meaning all the shaders will be put into the
969// the same program linked together.
970//
971// This means there are a limited number of work items (not multi-threading mode)
972// and that the point is testing at the linking level. Hence, to enable
973// performance and memory testing, the actual compile/link can be put in
974// a loop, independent of processing the work items and file IO.
975//
Juan Lopeza558b262017-04-02 23:04:00 +0200976void CompileAndLinkShaderFiles(glslang::TWorklist& Worklist)
John Kessenichc57b2a92016-01-16 15:30:03 -0700977{
978 std::vector<ShaderCompUnit> compUnits;
979
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200980 // If this is using stdin, we can't really detect multiple different file
981 // units by input type. We need to assume that we're just being given one
982 // file of a certain type.
983 if ((Options & EOptionStdin) != 0) {
984 ShaderCompUnit compUnit(FindLanguage("stdin"));
985 std::istreambuf_iterator<char> begin(std::cin), end;
986 std::string tempString(begin, end);
987 char* fileText = strdup(tempString.c_str());
988 std::string fileName = "stdin";
989 compUnit.addString(fileName, fileText);
John Kessenichc57b2a92016-01-16 15:30:03 -0700990 compUnits.push_back(compUnit);
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200991 } else {
992 // Transfer all the work items from to a simple list of
993 // of compilation units. (We don't care about the thread
994 // work-item distribution properties in this path, which
995 // is okay due to the limited number of shaders, know since
996 // they are all getting linked together.)
997 glslang::TWorkItem* workItem;
998 while (Worklist.remove(workItem)) {
999 ShaderCompUnit compUnit(FindLanguage(workItem->name));
1000 char* fileText = ReadFileData(workItem->name.c_str());
1001 if (fileText == nullptr)
1002 usage();
1003 compUnit.addString(workItem->name, fileText);
1004 compUnits.push_back(compUnit);
1005 }
John Kessenichc57b2a92016-01-16 15:30:03 -07001006 }
1007
1008 // Actual call to programmatic processing of compile and link,
1009 // in a loop for testing memory and performance. This part contains
1010 // all the perf/memory that a programmatic consumer will care about.
1011 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1012 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
1013 CompileAndLinkShaderUnits(compUnits);
1014
1015 if (Options & EOptionMemoryLeakMode)
1016 glslang::OS_DumpMemoryCounters();
1017 }
1018
John Kessenicha9313662017-06-15 10:40:49 -06001019 // free memory from ReadFileData, which got stored in a const char*
1020 // as the first string above
rdb32084e82016-02-23 22:17:38 +01001021 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
John Kessenicha9313662017-06-15 10:40:49 -06001022 FreeFileData(const_cast<char*>(it->text[0]));
John Kessenichc57b2a92016-01-16 15:30:03 -07001023}
1024
John Kessenicha0af4732012-12-12 21:15:54 +00001025int C_DECL main(int argc, char* argv[])
1026{
Juan Lopeza558b262017-04-02 23:04:00 +02001027 // array of unique places to leave the shader names and infologs for the asynchronous compiles
1028 std::vector<std::unique_ptr<glslang::TWorkItem>> workItems;
1029 ProcessArguments(workItems, argc, argv);
1030
1031 glslang::TWorklist workList;
1032 std::for_each(workItems.begin(), workItems.end(), [&workList](std::unique_ptr<glslang::TWorkItem>& item) {
1033 assert(item);
1034 workList.add(item.get());
1035 });
John Kessenich2b07c7e2013-07-31 18:44:13 +00001036
John Kessenich05a70632013-09-17 19:26:08 +00001037 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -05001038 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
Juan Lopeza558b262017-04-02 23:04:00 +02001039 if (workList.empty())
John Kessenich05a70632013-09-17 19:26:08 +00001040 return ESuccess;
1041 }
1042
John Kessenich0da9eaa2015-08-01 17:10:02 -06001043 if (Options & EOptionDumpVersions) {
1044 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +00001045 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
1046 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -06001047 std::string spirvVersion;
1048 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -06001049 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -06001050 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -07001051 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenicha372a3e2017-11-02 22:32:14 -06001052 printf("SPIR-V Generator Version %d\n", glslang::GetSpirvGeneratorVersion());
John Kessenichb84313d2016-07-20 16:03:29 -06001053 printf("GL_KHR_vulkan_glsl version %d\n", 100);
1054 printf("ARB_GL_gl_spirv version %d\n", 100);
Juan Lopeza558b262017-04-02 23:04:00 +02001055 if (workList.empty())
John Kessenich319de232013-12-04 04:43:40 +00001056 return ESuccess;
1057 }
1058
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001059 if (workList.empty() && ((Options & EOptionStdin) == 0)) {
John Kessenich05a70632013-09-17 19:26:08 +00001060 usage();
John Kessenich05a70632013-09-17 19:26:08 +00001061 }
1062
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001063 if (Options & EOptionStdin) {
1064 workItems.push_back(std::unique_ptr<glslang::TWorkItem>{new glslang::TWorkItem("stdin")});
1065 workList.add(workItems.back().get());
1066 }
1067
John Kessenich05a70632013-09-17 19:26:08 +00001068 ProcessConfigFile();
1069
John Kessenich69f4b512013-09-04 21:19:27 +00001070 //
1071 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +00001072 // 1) linking all arguments together, single-threaded, new C++ interface
1073 // 2) independent arguments, can be tackled by multiple asynchronous threads, for testing thread safety, using the old handle interface
John Kessenich69f4b512013-09-04 21:19:27 +00001074 //
John Kessenichc555ddd2015-06-17 02:38:44 +00001075 if (Options & EOptionLinkProgram ||
1076 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +00001077 glslang::InitializeProcess();
Juan Lopeza558b262017-04-02 23:04:00 +02001078 CompileAndLinkShaderFiles(workList);
John Kessenichc36e1d82013-11-01 17:41:52 +00001079 glslang::FinalizeProcess();
1080 } else {
1081 ShInitialize();
1082
Juan Lopeza558b262017-04-02 23:04:00 +02001083 bool printShaderNames = workList.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +00001084
Juan Lopeza558b262017-04-02 23:04:00 +02001085 if (Options & EOptionMultiThreaded)
1086 {
1087 std::array<std::thread, 16> threads;
1088 for (unsigned int t = 0; t < threads.size(); ++t)
1089 {
1090 threads[t] = std::thread(CompileShaders, std::ref(workList));
1091 if (threads[t].get_id() == std::thread::id())
1092 {
John Kessenichaf527992017-11-02 22:48:15 -06001093 fprintf(stderr, "Failed to create thread\n");
John Kessenich38f3b892013-09-06 19:52:57 +00001094 return EFailThreadCreate;
1095 }
John Kessenicha0af4732012-12-12 21:15:54 +00001096 }
Juan Lopeza558b262017-04-02 23:04:00 +02001097
1098 std::for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); });
John Kessenichc999ba22013-11-07 23:33:24 +00001099 } else
Juan Lopeza558b262017-04-02 23:04:00 +02001100 CompileShaders(workList);
John Kessenich38f3b892013-09-06 19:52:57 +00001101
1102 // Print out all the resulting infologs
Juan Lopeza558b262017-04-02 23:04:00 +02001103 for (size_t w = 0; w < workItems.size(); ++w) {
1104 if (workItems[w]) {
1105 if (printShaderNames || workItems[w]->results.size() > 0)
1106 PutsIfNonEmpty(workItems[w]->name.c_str());
1107 PutsIfNonEmpty(workItems[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +00001108 }
1109 }
John Kessenichc36e1d82013-11-01 17:41:52 +00001110
1111 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +00001112 }
John Kessenich2b07c7e2013-07-31 18:44:13 +00001113
John Kessenichc999ba22013-11-07 23:33:24 +00001114 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001115 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +00001116 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001117 return EFailLink;
1118
1119 return 0;
1120}
1121
1122//
1123// Deduce the language from the filename. Files must end in one of the
1124// following extensions:
1125//
John Kessenich2b07c7e2013-07-31 18:44:13 +00001126// .vert = vertex
1127// .tesc = tessellation control
1128// .tese = tessellation evaluation
1129// .geom = geometry
1130// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +00001131// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +00001132//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001133EShLanguage FindLanguage(const std::string& name, bool parseSuffix)
John Kessenicha0af4732012-12-12 21:15:54 +00001134{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001135 size_t ext = 0;
John Kesseniche751bca2017-03-16 11:20:38 -06001136 std::string suffix;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001137
Dan Bakerc6ede892016-08-11 14:06:06 -04001138 if (shaderStageName)
1139 suffix = shaderStageName;
John Kesseniche751bca2017-03-16 11:20:38 -06001140 else {
1141 // Search for a suffix on a filename: e.g, "myfile.frag". If given
1142 // the suffix directly, we skip looking for the '.'
1143 if (parseSuffix) {
1144 ext = name.rfind('.');
1145 if (ext == std::string::npos) {
1146 usage();
1147 return EShLangVertex;
1148 }
1149 ++ext;
1150 }
1151 suffix = name.substr(ext, std::string::npos);
1152 }
dankbaker45d49bc2016-08-08 21:43:07 -04001153
John Kessenich2b07c7e2013-07-31 18:44:13 +00001154 if (suffix == "vert")
1155 return EShLangVertex;
1156 else if (suffix == "tesc")
1157 return EShLangTessControl;
1158 else if (suffix == "tese")
1159 return EShLangTessEvaluation;
1160 else if (suffix == "geom")
1161 return EShLangGeometry;
1162 else if (suffix == "frag")
1163 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +00001164 else if (suffix == "comp")
1165 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +00001166
1167 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +00001168 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +00001169}
1170
John Kessenicha0af4732012-12-12 21:15:54 +00001171//
John Kessenichecba76f2017-01-06 00:34:48 -07001172// Read a file's data into a string, and compile it using the old interface ShCompile,
John Kessenich69f4b512013-09-04 21:19:27 +00001173// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +00001174//
John Kessenich51cdd902014-02-18 23:37:57 +00001175void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +00001176{
John Kessenichca3457f2015-05-18 01:59:45 +00001177 int ret = 0;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001178 char* shaderString;
1179 if ((Options & EOptionStdin) != 0) {
1180 std::istreambuf_iterator<char> begin(std::cin), end;
1181 std::string tempString(begin, end);
1182 shaderString = strdup(tempString.c_str());
1183 } else {
1184 shaderString = ReadFileData(fileName);
1185 }
John Kessenich41cf6b52013-06-25 18:10:05 +00001186
1187 // move to length-based strings, rather than null-terminated strings
John Kessenich04acb1b2017-06-14 17:36:50 -06001188 int* lengths = new int[1];
1189 lengths[0] = (int)strlen(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001190
John Kessenich52ac67e2013-05-05 23:46:22 +00001191 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +00001192 SetMessageOptions(messages);
John Kessenichecba76f2017-01-06 00:34:48 -07001193
John Kessenicha9313662017-06-15 10:40:49 -06001194 if (UserPreamble.isSet())
1195 Error("-D and -U options require -l (linking)\n");
1196
John Kessenich94a81fb2013-08-31 02:41:30 +00001197 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1198 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich927608b2017-01-06 12:34:14 -07001199 // ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich04acb1b2017-06-14 17:36:50 -06001200 ret = ShCompile(compiler, &shaderString, 1, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich927608b2017-01-06 12:34:14 -07001201 // const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
John Kessenichecba76f2017-01-06 00:34:48 -07001202 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
John Kessenichea869fb2013-10-28 18:12:06 +00001203 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich927608b2017-01-06 12:34:14 -07001204 // const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
1205 // ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +00001206 }
John Kessenicha0af4732012-12-12 21:15:54 +00001207
John Kessenich94a81fb2013-08-31 02:41:30 +00001208 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +00001209 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +00001210 }
John Kessenicha0af4732012-12-12 21:15:54 +00001211
John Kessenich41cf6b52013-06-25 18:10:05 +00001212 delete [] lengths;
John Kessenich04acb1b2017-06-14 17:36:50 -06001213 FreeFileData(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001214
John Kessenichc999ba22013-11-07 23:33:24 +00001215 if (ret == 0)
1216 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +00001217}
1218
John Kessenicha0af4732012-12-12 21:15:54 +00001219//
1220// print usage to stdout
1221//
1222void usage()
1223{
John Kessenich319de232013-12-04 04:43:40 +00001224 printf("Usage: glslangValidator [option]... [file]...\n"
1225 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001226 "'file' can end in .<stage> for auto-stage classification, where <stage> is:\n"
1227 " .conf to provide a config file that replaces the default configuration\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001228 " (see -c option below for generating a template)\n"
1229 " .vert for a vertex shader\n"
1230 " .tesc for a tessellation control shader\n"
1231 " .tese for a tessellation evaluation shader\n"
1232 " .geom for a geometry shader\n"
1233 " .frag for a fragment shader\n"
1234 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +00001235 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001236 "Options:\n"
1237 " -C cascading errors; risk crash from accumulation of error recoveries\n"
1238 " -D input is HLSL\n"
John Kessenicha9313662017-06-15 10:40:49 -06001239 " -D<macro=def>\n"
1240 " -D<macro> define a pre-processor macro\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001241 " -E print pre-processed GLSL; cannot be used with -l;\n"
1242 " errors will appear on stderr.\n"
John Kessenich6353d552017-06-23 11:11:09 -06001243 " -G[ver] create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001244 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich6353d552017-06-23 11:11:09 -06001245 " 'ver', when present, is the version of the input semantics,\n"
1246 " which will appear in #define GL_SPIRV ver\n"
1247 " '--client opengl100' is the same as -G100\n"
1248 " a '--target-env' for OpenGL will also imply '-G'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001249 " -H print human readable form of SPIR-V; turns on -V\n"
John Kessenich971a0a82017-06-07 15:06:58 -06001250 " -I<dir> add dir to the include search path; includer's directory\n"
1251 " is searched first, followed by left-to-right order of -I\n"
GregFcd1f1692017-09-21 18:40:22 -06001252 " -Od disables optimization. May cause illegal SPIR-V for HLSL.\n"
1253 " -Os optimizes SPIR-V to minimize size.\n"
John Kesseniche751bca2017-03-16 11:20:38 -06001254 " -S <stage> uses specified stage rather than parsing the file extension\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001255 " choices for <stage> are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich6353d552017-06-23 11:11:09 -06001256 " -U<macro> undefine a pre-processor macro\n"
1257 " -V[ver] create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001258 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich6353d552017-06-23 11:11:09 -06001259 " 'ver', when present, is the version of the input semantics,\n"
1260 " which will appear in #define VULKAN ver\n"
1261 " '--client vulkan100' is the same as -V100\n"
1262 " a '--target-env' for Vulkan will also imply '-V'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001263 " -c configuration dump;\n"
1264 " creates the default configuration file (redirect to a .conf file)\n"
1265 " -d default to desktop (#version 110) when there is no shader #version\n"
1266 " (default is ES version 100)\n"
John Kessenicha25530c2017-09-11 20:13:49 -06001267 " -e <name> specify <name> as the entry-point name\n"
John Kessenich121853f2017-05-31 17:11:16 -06001268 " -g generate debug information\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001269 " -h print this usage message\n"
1270 " -i intermediate tree (glslang AST) is printed out\n"
1271 " -l link all input files together to form a single module\n"
1272 " -m memory leak mode\n"
John Kessenicha25530c2017-09-11 20:13:49 -06001273 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001274 " -q dump reflection query database\n"
John Kessenich2a271162017-07-20 20:00:36 -06001275 " -r synonym for --relaxed-errors\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001276 " -s silent mode\n"
1277 " -t multi-threaded mode\n"
1278 " -v print version strings\n"
John Kessenich2a271162017-07-20 20:00:36 -06001279 " -w synonym for --suppress-warnings\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001280 " -x save binary output as text-based 32-bit hexadecimal numbers\n"
1281 " --auto-map-bindings automatically bind uniform variables\n"
1282 " without explicit bindings.\n"
1283 " --amb synonym for --auto-map-bindings\n"
1284 " --auto-map-locations automatically locate input/output lacking\n"
John Kessenichc178f0a2017-06-23 10:58:31 -06001285 " 'location' (fragile, not cross stage)\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001286 " --aml synonym for --auto-map-locations\n"
John Kessenich6353d552017-06-23 11:11:09 -06001287 " --client {vulkan<ver>|opengl<ver>} see -V and -G\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001288 " --flatten-uniform-arrays flatten uniform texture/sampler arrays to\n"
1289 " scalars\n"
1290 " --fua synonym for --flatten-uniform-arrays\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001291 " --hlsl-offsets Allow block offsets to follow HLSL rules\n"
1292 " Works independently of source language\n"
1293 " --hlsl-iomap Perform IO mapping in HLSL register space\n"
1294 " --keep-uncalled don't eliminate uncalled functions\n"
1295 " --ku synonym for --keep-uncalled\n"
1296 " --no-storage-format use Unknown image format\n"
1297 " --nsf synonym for --no-storage-format\n"
John Kessenich2a271162017-07-20 20:00:36 -06001298 " --relaxed-errors relaxed GLSL semantic error-checking mode\n"
LoopDawg52017192017-07-14 15:15:47 -06001299 " --resource-set-binding [stage] name set binding\n"
1300 " Set descriptor set and binding for individual resources\n"
1301 " --resource-set-binding [stage] set\n"
1302 " Set descriptor set for all resources\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001303 " --rsb [stage] type set binding synonym for --resource-set-binding\n"
1304 " --shift-image-binding [stage] num base binding number for images (uav)\n"
LoopDawg08a14422017-10-17 19:27:14 -06001305 " --shift-image-binding [stage] [set num]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001306 " --sib [stage] num synonym for --shift-image-binding\n"
1307 " --shift-sampler-binding [stage] num base binding number for samplers\n"
LoopDawg08a14422017-10-17 19:27:14 -06001308 " --shift-sampler-binding [stage] [set num]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001309 " --ssb [stage] num synonym for --shift-sampler-binding\n"
1310 " --shift-ssbo-binding [stage] num base binding number for SSBOs\n"
LoopDawg08a14422017-10-17 19:27:14 -06001311 " --shift-ssbo-binding [stage] [set num]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001312 " --sbb [stage] num synonym for --shift-ssbo-binding\n"
1313 " --shift-texture-binding [stage] num base binding number for textures\n"
LoopDawg08a14422017-10-17 19:27:14 -06001314 " --shift-texture-binding [stage] [set num]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001315 " --stb [stage] num synonym for --shift-texture-binding\n"
1316 " --shift-uav-binding [stage] num base binding number for UAVs\n"
LoopDawg08a14422017-10-17 19:27:14 -06001317 " --shift-uav-binding [stage] [set num]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001318 " --suavb [stage] num synonym for --shift-uav-binding\n"
1319 " --shift-UBO-binding [stage] num base binding number for UBOs\n"
LoopDawg08a14422017-10-17 19:27:14 -06001320 " --shift-UBO-binding [stage] [set num]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001321 " --shift-cbuffer-binding [stage] num synonym for --shift-UBO-binding\n"
LoopDawg08a14422017-10-17 19:27:14 -06001322 " --shift-cbuffer-binding [stage] [set num]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001323 " --sub [stage] num synonym for --shift-UBO-binding\n"
John Kessenicha25530c2017-09-11 20:13:49 -06001324 " --source-entrypoint <name> the given shader source function is\n"
1325 " renamed to be the <name> given in -e\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001326 " --sep synonym for --source-entrypoint\n"
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001327 " --stdin Read from stdin instead of from a file.\n"
1328 " You'll have to provide the shader stage\n"
1329 " using -S.\n"
John Kessenich2a271162017-07-20 20:00:36 -06001330 " --suppress-warnings suppress GLSL warnings\n"
1331 " (except as required by #extension : warn)\n"
1332 " --target-env {vulkan1.0|opengl} set the execution environment code will\n"
1333 " execute in (as opposed to language\n"
1334 " semantics selected by --client) defaults:\n"
1335 " 'vulkan1.0' under '--client vulkan<ver>'\n"
1336 " 'opengl' under '--client opengl<ver>'\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001337 " --variable-name <name> Creates a C header file that contains a\n"
1338 " uint32_t array named <name>\n"
1339 " initialized with the shader binary code.\n"
1340 " --vn <name> synonym for --variable-name <name>\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +00001341 );
John Kessenich68d78fd2015-07-12 19:28:10 -06001342
1343 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +00001344}
1345
John Kessenich3ce4e592014-10-06 19:57:34 +00001346#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +00001347
1348#include <errno.h>
1349
1350int fopen_s(
1351 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +00001352 const char* filename,
1353 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +00001354)
1355{
1356 if (!pFile || !filename || !mode) {
1357 return EINVAL;
1358 }
1359
1360 FILE* f = fopen(filename, mode);
1361 if (! f) {
1362 if (errno != 0) {
1363 return errno;
1364 } else {
1365 return ENOENT;
1366 }
1367 }
1368 *pFile = f;
1369
1370 return 0;
1371}
1372
1373#endif
1374
John Kessenicha0af4732012-12-12 21:15:54 +00001375//
1376// Malloc a string of sufficient size and read a string into it.
1377//
John Kessenich04acb1b2017-06-14 17:36:50 -06001378char* ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +00001379{
John Kessenichb3297152015-07-11 18:01:03 -06001380 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +00001381 int errorCode = fopen_s(&in, fileName, "r");
John Kessenich68d78fd2015-07-12 19:28:10 -06001382 if (errorCode || in == nullptr)
1383 Error("unable to open input file");
John Kessenichecba76f2017-01-06 00:34:48 -07001384
John Kessenich04acb1b2017-06-14 17:36:50 -06001385 int count = 0;
John Kessenicha0af4732012-12-12 21:15:54 +00001386 while (fgetc(in) != EOF)
1387 count++;
1388
John Kessenichd6c72a42014-08-18 19:42:35 +00001389 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001390
John Kessenich04acb1b2017-06-14 17:36:50 -06001391 char* return_data = (char*)malloc(count + 1); // freed in FreeFileData()
1392 if ((int)fread(return_data, 1, count, in) != count) {
1393 free(return_data);
John Kessenich68d78fd2015-07-12 19:28:10 -06001394 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001395 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001396
John Kessenich04acb1b2017-06-14 17:36:50 -06001397 return_data[count] = '\0';
John Kessenicha0af4732012-12-12 21:15:54 +00001398 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001399
John Kessenicha0af4732012-12-12 21:15:54 +00001400 return return_data;
1401}
1402
John Kessenich04acb1b2017-06-14 17:36:50 -06001403void FreeFileData(char* data)
John Kessenicha0af4732012-12-12 21:15:54 +00001404{
John Kessenichb3297152015-07-11 18:01:03 -06001405 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001406}
1407
John Kessenich54d8cda2013-02-11 22:36:01 +00001408void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001409{
John Kessenichfae38ee2015-06-10 23:23:12 +00001410 if (num >= 0 )
1411 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1412 else
1413 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001414}