blob: 1089432a3056a1acce9853651924dafb3ed7c546 [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>
Juan Lopeza558b262017-04-02 23:04:00 +020058#include <memory>
59#include <thread>
John Kessenicha0af4732012-12-12 21:15:54 +000060
baldurk876a0e32015-11-16 18:03:28 +010061#include "../glslang/OSDependent/osinclude.h"
John Kessenicha0af4732012-12-12 21:15:54 +000062
63extern "C" {
64 SH_IMPORT_EXPORT void ShOutputHtml();
65}
66
John Kessenich94a81fb2013-08-31 02:41:30 +000067// Command-line options
68enum TOptions {
John Kessenich906cc212016-12-09 19:22:20 -070069 EOptionNone = 0,
70 EOptionIntermediate = (1 << 0),
71 EOptionSuppressInfolog = (1 << 1),
72 EOptionMemoryLeakMode = (1 << 2),
73 EOptionRelaxedErrors = (1 << 3),
74 EOptionGiveWarnings = (1 << 4),
75 EOptionLinkProgram = (1 << 5),
76 EOptionMultiThreaded = (1 << 6),
77 EOptionDumpConfig = (1 << 7),
78 EOptionDumpReflection = (1 << 8),
79 EOptionSuppressWarnings = (1 << 9),
80 EOptionDumpVersions = (1 << 10),
81 EOptionSpv = (1 << 11),
82 EOptionHumanReadableSpv = (1 << 12),
83 EOptionVulkanRules = (1 << 13),
84 EOptionDefaultDesktop = (1 << 14),
85 EOptionOutputPreprocessed = (1 << 15),
86 EOptionOutputHexadecimal = (1 << 16),
87 EOptionReadHlsl = (1 << 17),
88 EOptionCascadingErrors = (1 << 18),
89 EOptionAutoMapBindings = (1 << 19),
steve-lunarge0b9deb2016-09-16 13:26:37 -060090 EOptionFlattenUniformArrays = (1 << 20),
John Kessenich906cc212016-12-09 19:22:20 -070091 EOptionNoStorageFormat = (1 << 21),
John Kessenich20f01e72016-12-12 11:41:43 -070092 EOptionKeepUncalled = (1 << 22),
John Kessenich4f1403e2017-04-05 17:38:20 -060093 EOptionHlslOffsets = (1 << 23),
steve-lunargbe283552017-04-18 12:18:01 -060094 EOptionHlslIoMapping = (1 << 24),
John Kessenich71facdf2017-05-17 18:28:19 -060095 EOptionAutoMapLocations = (1 << 25),
John Kessenich121853f2017-05-31 17:11:16 -060096 EOptionDebug = (1 << 26),
John Kessenich94a81fb2013-08-31 02:41:30 +000097};
98
John Kessenicha0af4732012-12-12 21:15:54 +000099//
John Kessenich68d78fd2015-07-12 19:28:10 -0600100// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +0000101//
102enum TFailCode {
103 ESuccess = 0,
104 EFailUsage,
105 EFailCompile,
106 EFailLink,
107 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +0000108 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +0000109 EFailLinkerCreate
110};
111
112//
John Kessenich68d78fd2015-07-12 19:28:10 -0600113// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +0000114//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600115EShLanguage FindLanguage(const std::string& name, bool parseSuffix=true);
John Kessenich51cdd902014-02-18 23:37:57 +0000116void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000117void usage();
John Kessenich04acb1b2017-06-14 17:36:50 -0600118char* ReadFileData(const char* fileName);
119void FreeFileData(char* data);
John Kessenich54d8cda2013-02-11 22:36:01 +0000120void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000121
John Kessenichc999ba22013-11-07 23:33:24 +0000122// Globally track if any compile or link failure.
123bool CompileFailed = false;
124bool LinkFailed = false;
125
John Kessenich05a70632013-09-17 19:26:08 +0000126TBuiltInResource Resources;
127std::string ConfigFile;
128
John Kessenicha0af4732012-12-12 21:15:54 +0000129//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600130// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000131//
132void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000133{
John Kessenich04acb1b2017-06-14 17:36:50 -0600134 if (ConfigFile.size() == 0)
Lei Zhang414eb602016-03-04 16:22:34 -0500135 Resources = glslang::DefaultTBuiltInResource;
John Kessenich04acb1b2017-06-14 17:36:50 -0600136 else {
137 char* configString = ReadFileData(ConfigFile.c_str());
138 glslang::DecodeResourceLimits(&Resources, configString);
139 FreeFileData(configString);
John Kessenich05a70632013-09-17 19:26:08 +0000140 }
John Kessenicha0af4732012-12-12 21:15:54 +0000141}
142
John Kessenich94a81fb2013-08-31 02:41:30 +0000143int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600144const char* ExecutableName = nullptr;
145const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700146const char* entryPointName = nullptr;
steve-lunargf1e0c872016-10-31 15:13:43 -0600147const char* sourceEntryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400148const char* shaderStageName = nullptr;
Flavioaea3c892017-02-06 11:46:35 -0800149const char* variableName = nullptr;
John Kessenich971a0a82017-06-07 15:06:58 -0600150std::vector<std::string> IncludeDirectoryList;
John Kessenich6353d552017-06-23 11:11:09 -0600151int ClientInputSemanticsVersion = 100; // maps to, say, #define VULKAN 100
152int VulkanClientVersion = 100; // would map to, say, Vulkan 1.0
153int OpenGLClientVersion = 450; // doesn't influence anything yet, but maps to OpenGL 4.50
154unsigned int TargetVersion = 0x00001000; // maps to, say, SPIR-V 1.0
John Kessenich68d78fd2015-07-12 19:28:10 -0600155
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600156std::array<unsigned int, EShLangCount> baseSamplerBinding;
157std::array<unsigned int, EShLangCount> baseTextureBinding;
steve-lunarg9088be42016-11-01 10:31:42 -0600158std::array<unsigned int, EShLangCount> baseImageBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600159std::array<unsigned int, EShLangCount> baseUboBinding;
steve-lunarg932bb5c2017-02-21 17:19:08 -0700160std::array<unsigned int, EShLangCount> baseSsboBinding;
steve-lunargbe283552017-04-18 12:18:01 -0600161std::array<unsigned int, EShLangCount> baseUavBinding;
Hyangran Park36dc8292017-05-02 16:27:29 +0900162std::array<std::vector<std::string>, EShLangCount> baseResourceSetBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600163
John Kessenicha9313662017-06-15 10:40:49 -0600164// Add things like "#define ..." to a preamble to use in the beginning of the shader.
165class TPreamble {
166public:
167 TPreamble() { }
168
169 bool isSet() const { return text.size() > 0; }
170 const char* get() const { return text.c_str(); }
171
172 // #define...
173 void addDef(std::string def)
174 {
175 text.append("#define ");
176 fixLine(def);
177
178 // The first "=" needs to turn into a space
LoopDawgb97b25e2017-07-12 09:04:39 -0600179 const size_t equal = def.find_first_of("=");
John Kessenicha9313662017-06-15 10:40:49 -0600180 if (equal != def.npos)
181 def[equal] = ' ';
182
183 text.append(def);
184 text.append("\n");
185 }
186
187 // #undef...
188 void addUndef(std::string undef)
189 {
190 text.append("#undef ");
191 fixLine(undef);
192 text.append(undef);
193 text.append("\n");
194 }
195
196protected:
197 void fixLine(std::string& line)
198 {
199 // Can't go past a newline in the line
LoopDawgb97b25e2017-07-12 09:04:39 -0600200 const size_t end = line.find_first_of("\n");
John Kessenicha9313662017-06-15 10:40:49 -0600201 if (end != line.npos)
202 line = line.substr(0, end);
203 }
204
205 std::string text; // contents of preamble
206};
207
208TPreamble UserPreamble;
209
John Kessenich68d78fd2015-07-12 19:28:10 -0600210//
211// Create the default name for saving a binary if -o is not provided.
212//
213const char* GetBinaryName(EShLanguage stage)
214{
215 const char* name;
216 if (binaryFileName == nullptr) {
217 switch (stage) {
218 case EShLangVertex: name = "vert.spv"; break;
219 case EShLangTessControl: name = "tesc.spv"; break;
220 case EShLangTessEvaluation: name = "tese.spv"; break;
221 case EShLangGeometry: name = "geom.spv"; break;
222 case EShLangFragment: name = "frag.spv"; break;
223 case EShLangCompute: name = "comp.spv"; break;
224 default: name = "unknown"; break;
225 }
226 } else
227 name = binaryFileName;
228
229 return name;
230}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000231
John Kessenich05a70632013-09-17 19:26:08 +0000232//
233// *.conf => this is a config file that can set limits/resources
234//
235bool SetConfigFile(const std::string& name)
236{
237 if (name.size() < 5)
238 return false;
239
John Kessenich4c706852013-10-11 16:28:43 +0000240 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000241 ConfigFile = name;
242 return true;
243 }
244
245 return false;
246}
247
John Kessenich68d78fd2015-07-12 19:28:10 -0600248//
249// Give error and exit with failure code.
250//
251void Error(const char* message)
252{
253 printf("%s: Error %s (use -h for usage)\n", ExecutableName, message);
254 exit(EFailUsage);
255}
256
257//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600258// Process an optional binding base of the form:
259// --argname [stage] base
260// Where stage is one of the forms accepted by FindLanguage, and base is an integer
261//
262void ProcessBindingBase(int& argc, char**& argv, std::array<unsigned int, EShLangCount>& base)
263{
264 if (argc < 2)
265 usage();
266
267 if (!isdigit(argv[1][0])) {
268 if (argc < 3) // this form needs one more argument
269 usage();
John Kessenichecba76f2017-01-06 00:34:48 -0700270
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600271 // Parse form: --argname stage base
272 const EShLanguage lang = FindLanguage(argv[1], false);
273 base[lang] = atoi(argv[2]);
274 argc-= 2;
275 argv+= 2;
276 } else {
277 // Parse form: --argname base
278 for (int lang=0; lang<EShLangCount; ++lang)
279 base[lang] = atoi(argv[1]);
280
281 argc--;
282 argv++;
283 }
284}
285
Hyangran Park36dc8292017-05-02 16:27:29 +0900286void ProcessResourceSetBindingBase(int& argc, char**& argv, std::array<std::vector<std::string>, EShLangCount>& base)
287{
288 if (argc < 2)
289 usage();
290
291 if (!isdigit(argv[1][0])) {
292 if (argc < 5) // this form needs one more argument
293 usage();
294
295 // Parse form: --argname stage base
296 const EShLanguage lang = FindLanguage(argv[1], false);
297
298 base[lang].push_back(argv[2]);
299 base[lang].push_back(argv[3]);
300 base[lang].push_back(argv[4]);
John Kessenich6353d552017-06-23 11:11:09 -0600301 argc -= 4;
302 argv += 4;
Hyangran Park36dc8292017-05-02 16:27:29 +0900303 while(argv[1] != NULL) {
304 if(argv[1][0] != '-') {
305 base[lang].push_back(argv[1]);
306 base[lang].push_back(argv[2]);
307 base[lang].push_back(argv[3]);
John Kessenich6353d552017-06-23 11:11:09 -0600308 argc -= 3;
309 argv += 3;
Hyangran Park36dc8292017-05-02 16:27:29 +0900310 }
311 else {
312 break;
313 }
314 }
315 } else {
316 // Parse form: --argname base
317 for (int lang=0; lang<EShLangCount; ++lang)
318 base[lang].push_back(argv[1]);
319
320 argc--;
321 argv++;
322 }
323}
324
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600325//
John Kessenich68d78fd2015-07-12 19:28:10 -0600326// Do all command-line argument parsing. This includes building up the work-items
327// to be processed later, and saving all the command-line options.
328//
329// Does not return (it exits) if command-line is fatally flawed.
330//
Juan Lopeza558b262017-04-02 23:04:00 +0200331void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItems, int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000332{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600333 baseSamplerBinding.fill(0);
334 baseTextureBinding.fill(0);
steve-lunarg9088be42016-11-01 10:31:42 -0600335 baseImageBinding.fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600336 baseUboBinding.fill(0);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700337 baseSsboBinding.fill(0);
steve-lunargbe283552017-04-18 12:18:01 -0600338 baseUavBinding.fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600339
John Kessenich38f3b892013-09-06 19:52:57 +0000340 ExecutableName = argv[0];
Juan Lopeza558b262017-04-02 23:04:00 +0200341 workItems.reserve(argc);
John Kessenich38f3b892013-09-06 19:52:57 +0000342
John Kessenichc178f0a2017-06-23 10:58:31 -0600343 const auto bumpArg = [&]() {
344 if (argc > 0) {
345 argc--;
346 argv++;
347 }
348 };
349
350 // read a string directly attached to a single-letter option
John Kessenich6263fb12017-06-14 15:52:44 -0600351 const auto getStringOperand = [&](const char* desc) {
352 if (argv[0][2] == 0) {
353 printf("%s must immediately follow option (no spaces)\n", desc);
354 exit(EFailUsage);
355 }
356 return argv[0] + 2;
357 };
358
John Kessenich6353d552017-06-23 11:11:09 -0600359 // read a number attached to a single-letter option
360 const auto getAttachedNumber = [&](const char* desc) {
361 int num = atoi(argv[0] + 2);
362 if (num == 0) {
363 printf("%s: expected attached non-0 number\n", desc);
364 exit(EFailUsage);
365 }
366 return num;
367 };
368
369 // minimum needed (without overriding something else) to target Vulkan SPIR-V
370 const auto setVulkanSpv = []() {
371 Options |= EOptionSpv;
372 Options |= EOptionVulkanRules;
373 Options |= EOptionLinkProgram;
374 };
375
376 // minimum needed (without overriding something else) to target OpenGL SPIR-V
377 const auto setOpenGlSpv = []() {
378 Options |= EOptionSpv;
379 Options |= EOptionLinkProgram;
380 // undo a -H default to Vulkan
381 Options &= ~EOptionVulkanRules;
382 };
383
John Kessenichc178f0a2017-06-23 10:58:31 -0600384 for (bumpArg(); argc >= 1; bumpArg()) {
John Kessenich2b07c7e2013-07-31 18:44:13 +0000385 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000386 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600387 case '-':
388 {
389 std::string lowerword(argv[0]+2);
390 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
391
392 // handle --word style options
John Kessenich6263fb12017-06-14 15:52:44 -0600393 if (lowerword == "auto-map-bindings" || // synonyms
John Kessenich6353d552017-06-23 11:11:09 -0600394 lowerword == "auto-map-binding" ||
395 lowerword == "amb") {
John Kessenich6263fb12017-06-14 15:52:44 -0600396 Options |= EOptionAutoMapBindings;
397 } else if (lowerword == "auto-map-locations" || // synonyms
398 lowerword == "aml") {
399 Options |= EOptionAutoMapLocations;
John Kessenich6353d552017-06-23 11:11:09 -0600400 } else if (lowerword == "client") {
401 if (argc > 1) {
402 if (strcmp(argv[1], "vulkan100") == 0)
403 setVulkanSpv();
404 else if (strcmp(argv[1], "opengl100") == 0)
405 setOpenGlSpv();
406 else
407 Error("--client expects vulkan100 or opengl100");
408 }
409 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600410 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
411 lowerword == "flatten-uniform-array" ||
412 lowerword == "fua") {
413 Options |= EOptionFlattenUniformArrays;
414 } else if (lowerword == "hlsl-offsets") {
415 Options |= EOptionHlslOffsets;
416 } else if (lowerword == "hlsl-iomap" ||
417 lowerword == "hlsl-iomapper" ||
418 lowerword == "hlsl-iomapping") {
419 Options |= EOptionHlslIoMapping;
420 } else if (lowerword == "keep-uncalled" || // synonyms
421 lowerword == "ku") {
422 Options |= EOptionKeepUncalled;
423 } else if (lowerword == "no-storage-format" || // synonyms
424 lowerword == "nsf") {
425 Options |= EOptionNoStorageFormat;
426 } else if (lowerword == "resource-set-bindings" || // synonyms
427 lowerword == "resource-set-binding" ||
428 lowerword == "rsb") {
429 ProcessResourceSetBindingBase(argc, argv, baseResourceSetBinding);
steve-lunarg9088be42016-11-01 10:31:42 -0600430 } else if (lowerword == "shift-image-bindings" || // synonyms
431 lowerword == "shift-image-binding" ||
432 lowerword == "sib") {
433 ProcessBindingBase(argc, argv, baseImageBinding);
John Kessenich6263fb12017-06-14 15:52:44 -0600434 } else if (lowerword == "shift-sampler-bindings" || // synonyms
435 lowerword == "shift-sampler-binding" ||
436 lowerword == "ssb") {
437 ProcessBindingBase(argc, argv, baseSamplerBinding);
438 } else if (lowerword == "shift-uav-bindings" || // synonyms
439 lowerword == "shift-uav-binding" ||
440 lowerword == "suavb") {
441 ProcessBindingBase(argc, argv, baseUavBinding);
442 } else if (lowerword == "shift-texture-bindings" || // synonyms
443 lowerword == "shift-texture-binding" ||
444 lowerword == "stb") {
445 ProcessBindingBase(argc, argv, baseTextureBinding);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600446 } else if (lowerword == "shift-ubo-bindings" || // synonyms
447 lowerword == "shift-ubo-binding" ||
steve-lunargbe283552017-04-18 12:18:01 -0600448 lowerword == "shift-cbuffer-bindings" ||
449 lowerword == "shift-cbuffer-binding" ||
450 lowerword == "sub" ||
451 lowerword == "scb") {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600452 ProcessBindingBase(argc, argv, baseUboBinding);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700453 } else if (lowerword == "shift-ssbo-bindings" || // synonyms
454 lowerword == "shift-ssbo-binding" ||
455 lowerword == "sbb") {
456 ProcessBindingBase(argc, argv, baseSsboBinding);
John Kessenich6263fb12017-06-14 15:52:44 -0600457 } else if (lowerword == "source-entrypoint" || // synonyms
458 lowerword == "sep") {
John Kessenichc178f0a2017-06-23 10:58:31 -0600459 if (argc <= 1)
John Kessenich6263fb12017-06-14 15:52:44 -0600460 Error("no <entry-point> provided for --source-entrypoint");
John Kessenichc178f0a2017-06-23 10:58:31 -0600461 sourceEntryPointName = argv[1];
462 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600463 break;
John Kessenich6353d552017-06-23 11:11:09 -0600464 } else if (lowerword == "target-env") {
465 if (argc > 1) {
466 if (strcmp(argv[1], "vulkan1.0") == 0) {
467 setVulkanSpv();
468 VulkanClientVersion = 100;
469 } else if (strcmp(argv[1], "opengl") == 0) {
470 setOpenGlSpv();
471 OpenGLClientVersion = 450;
472 } else
473 Error("--target-env expected vulkan1.0 or opengl");
474 }
475 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800476 } else if (lowerword == "variable-name" || // synonyms
477 lowerword == "vn") {
478 Options |= EOptionOutputHexadecimal;
John Kessenichc178f0a2017-06-23 10:58:31 -0600479 if (argc <= 1)
Flavio15017db2017-02-15 14:29:33 -0800480 Error("no <C-variable-name> provided for --variable-name");
John Kessenichc178f0a2017-06-23 10:58:31 -0600481 variableName = argv[1];
482 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800483 break;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600484 } else {
485 usage();
486 }
487 }
488 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600489 case 'C':
490 Options |= EOptionCascadingErrors;
491 break;
492 case 'D':
John Kessenicha9313662017-06-15 10:40:49 -0600493 if (argv[0][2] == 0)
494 Options |= EOptionReadHlsl;
495 else
496 UserPreamble.addDef(getStringOperand("-D<macro> macro name"));
John Kessenich6263fb12017-06-14 15:52:44 -0600497 break;
498 case 'E':
499 Options |= EOptionOutputPreprocessed;
500 break;
501 case 'G':
John Kessenich6353d552017-06-23 11:11:09 -0600502 // OpenGL Client
503 setOpenGlSpv();
504 if (argv[0][2] != 0)
505 ClientInputSemanticsVersion = getAttachedNumber("-G<num> client input semantics");
John Kessenich6263fb12017-06-14 15:52:44 -0600506 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000507 case 'H':
508 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600509 if ((Options & EOptionSpv) == 0) {
510 // default to Vulkan
John Kessenich6353d552017-06-23 11:11:09 -0600511 setVulkanSpv();
John Kessenich91e4aa52016-07-07 17:46:42 -0600512 }
513 break;
John Kessenich971a0a82017-06-07 15:06:58 -0600514 case 'I':
John Kessenicha9313662017-06-15 10:40:49 -0600515 IncludeDirectoryList.push_back(getStringOperand("-I<dir> include path"));
John Kessenich68d78fd2015-07-12 19:28:10 -0600516 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400517 case 'S':
John Kessenichc178f0a2017-06-23 10:58:31 -0600518 if (argc <= 1)
Dan Baker5afdd782016-08-11 17:53:57 -0400519 Error("no <stage> specified for -S");
John Kessenichc178f0a2017-06-23 10:58:31 -0600520 shaderStageName = argv[1];
521 bumpArg();
dankbaker45d49bc2016-08-08 21:43:07 -0400522 break;
John Kessenicha9313662017-06-15 10:40:49 -0600523 case 'U':
524 UserPreamble.addUndef(getStringOperand("-U<macro>: macro name"));
525 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600526 case 'V':
John Kessenich6353d552017-06-23 11:11:09 -0600527 setVulkanSpv();
528 if (argv[0][2] != 0)
529 ClientInputSemanticsVersion = getAttachedNumber("-G<num> client input semantics");
John Kessenichc555ddd2015-06-17 02:38:44 +0000530 break;
John Kessenich05a70632013-09-17 19:26:08 +0000531 case 'c':
532 Options |= EOptionDumpConfig;
533 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000534 case 'd':
John Kessenich26ad2682014-08-13 20:17:19 +0000535 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000536 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700537 case 'e':
538 // HLSL todo: entry point handle needs much more sophistication.
539 // This is okay for one compilation unit with one entry point.
540 entryPointName = argv[1];
John Kessenichc178f0a2017-06-23 10:58:31 -0600541 if (argc <= 1)
John Kessenich4d65ee32016-03-12 18:17:47 -0700542 Error("no <entry-point> provided for -e");
John Kessenichc178f0a2017-06-23 10:58:31 -0600543 bumpArg();
John Kessenich4d65ee32016-03-12 18:17:47 -0700544 break;
John Kessenich121853f2017-05-31 17:11:16 -0600545 case 'g':
546 Options |= EOptionDebug;
547 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600548 case 'h':
549 usage();
550 break;
John Kessenich05a70632013-09-17 19:26:08 +0000551 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000552 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000553 break;
554 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000555 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000556 break;
557 case 'm':
558 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000559 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600560 case 'o':
John Kessenichc178f0a2017-06-23 10:58:31 -0600561 if (argc <= 1)
John Kessenich68d78fd2015-07-12 19:28:10 -0600562 Error("no <file> provided for -o");
John Kessenichc178f0a2017-06-23 10:58:31 -0600563 binaryFileName = argv[1];
564 bumpArg();
John Kessenich68d78fd2015-07-12 19:28:10 -0600565 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000566 case 'q':
567 Options |= EOptionDumpReflection;
568 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000569 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000570 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000571 break;
572 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000573 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000574 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000575 case 't':
Juan Lopeza558b262017-04-02 23:04:00 +0200576 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000577 break;
John Kessenich319de232013-12-04 04:43:40 +0000578 case 'v':
579 Options |= EOptionDumpVersions;
580 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000581 case 'w':
582 Options |= EOptionSuppressWarnings;
583 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500584 case 'x':
585 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500586 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000587 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600588 usage();
589 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000590 }
John Kessenich38f3b892013-09-06 19:52:57 +0000591 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000592 std::string name(argv[0]);
593 if (! SetConfigFile(name)) {
Juan Lopeza558b262017-04-02 23:04:00 +0200594 workItems.push_back(std::unique_ptr<glslang::TWorkItem>(new glslang::TWorkItem(name)));
John Kessenich05a70632013-09-17 19:26:08 +0000595 }
John Kessenich38f3b892013-09-06 19:52:57 +0000596 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000597 }
598
John Kessenich68d78fd2015-07-12 19:28:10 -0600599 // Make sure that -E is not specified alongside linking (which includes SPV generation)
600 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
601 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000602
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500603 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600604 if (binaryFileName && (Options & EOptionSpv) == 0)
605 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600606
607 if ((Options & EOptionFlattenUniformArrays) != 0 &&
608 (Options & EOptionReadHlsl) == 0)
609 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000610}
611
John Kessenich68d78fd2015-07-12 19:28:10 -0600612//
613// Translate the meaningful subset of command-line options to parser-behavior options.
614//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000615void SetMessageOptions(EShMessages& messages)
616{
617 if (Options & EOptionRelaxedErrors)
618 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
619 if (Options & EOptionIntermediate)
620 messages = (EShMessages)(messages | EShMsgAST);
621 if (Options & EOptionSuppressWarnings)
622 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600623 if (Options & EOptionSpv)
624 messages = (EShMessages)(messages | EShMsgSpvRules);
625 if (Options & EOptionVulkanRules)
626 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400627 if (Options & EOptionOutputPreprocessed)
628 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700629 if (Options & EOptionReadHlsl)
630 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600631 if (Options & EOptionCascadingErrors)
632 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenich906cc212016-12-09 19:22:20 -0700633 if (Options & EOptionKeepUncalled)
634 messages = (EShMessages)(messages | EShMsgKeepUncalled);
John Kessenich4f1403e2017-04-05 17:38:20 -0600635 if (Options & EOptionHlslOffsets)
636 messages = (EShMessages)(messages | EShMsgHlslOffsets);
John Kessenich121853f2017-05-31 17:11:16 -0600637 if (Options & EOptionDebug)
638 messages = (EShMessages)(messages | EShMsgDebugInfo);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000639}
640
John Kessenich68d78fd2015-07-12 19:28:10 -0600641//
John Kessenich69f4b512013-09-04 21:19:27 +0000642// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000643//
Juan Lopeza558b262017-04-02 23:04:00 +0200644void CompileShaders(glslang::TWorklist& worklist)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000645{
John Kessenich38f3b892013-09-06 19:52:57 +0000646 glslang::TWorkItem* workItem;
Juan Lopeza558b262017-04-02 23:04:00 +0200647 while (worklist.remove(workItem)) {
John Kessenich38f3b892013-09-06 19:52:57 +0000648 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000649 if (compiler == 0)
Juan Lopeza558b262017-04-02 23:04:00 +0200650 return;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000651
John Kessenichb0a7eb52013-11-07 17:44:20 +0000652 CompileFile(workItem->name.c_str(), compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000653
John Kessenich94a81fb2013-08-31 02:41:30 +0000654 if (! (Options & EOptionSuppressInfolog))
John Kessenich38f3b892013-09-06 19:52:57 +0000655 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000656
657 ShDestruct(compiler);
658 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000659}
660
John Kessenich6626cad2015-06-19 05:14:19 +0000661// Outputs the given string, but only if it is non-null and non-empty.
662// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400663void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000664{
665 if (str && str[0]) {
666 puts(str);
667 }
668}
669
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400670// Outputs the given string to stderr, but only if it is non-null and non-empty.
671// This prevents erroneous newlines from appearing.
672void StderrIfNonEmpty(const char* str)
673{
John Kessenich04acb1b2017-06-14 17:36:50 -0600674 if (str && str[0])
675 fprintf(stderr, "%s\n", str);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400676}
677
John Kessenichc57b2a92016-01-16 15:30:03 -0700678// Simple bundling of what makes a compilation unit for ease in passing around,
679// and separation of handling file IO versus API (programmatic) compilation.
680struct ShaderCompUnit {
681 EShLanguage stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600682 static const int maxCount = 1;
683 int count; // live number of strings/names
John Kessenicha9313662017-06-15 10:40:49 -0600684 const char* text[maxCount]; // memory owned/managed externally
John Kessenich04acb1b2017-06-14 17:36:50 -0600685 std::string fileName[maxCount]; // hold's the memory, but...
686 const char* fileNameList[maxCount]; // downstream interface wants pointers
dankbakerafe6e9c2016-08-21 12:29:08 -0400687
John Kessenich04acb1b2017-06-14 17:36:50 -0600688 ShaderCompUnit(EShLanguage stage) : stage(stage), count(0) { }
dankbakerafe6e9c2016-08-21 12:29:08 -0400689
John Kessenich04acb1b2017-06-14 17:36:50 -0600690 ShaderCompUnit(const ShaderCompUnit& rhs)
dankbakerafe6e9c2016-08-21 12:29:08 -0400691 {
692 stage = rhs.stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600693 count = rhs.count;
694 for (int i = 0; i < count; ++i) {
695 fileName[i] = rhs.fileName[i];
696 text[i] = rhs.text[i];
697 fileNameList[i] = rhs.fileName[i].c_str();
698 }
dankbakerafe6e9c2016-08-21 12:29:08 -0400699 }
700
John Kessenicha9313662017-06-15 10:40:49 -0600701 void addString(std::string& ifileName, const char* itext)
John Kessenich04acb1b2017-06-14 17:36:50 -0600702 {
703 assert(count < maxCount);
704 fileName[count] = ifileName;
705 text[count] = itext;
706 fileNameList[count] = fileName[count].c_str();
707 ++count;
708 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700709};
710
John Kessenich69f4b512013-09-04 21:19:27 +0000711//
John Kessenichc57b2a92016-01-16 15:30:03 -0700712// For linking mode: Will independently parse each compilation unit, but then put them
713// in the same program and link them together, making at most one linked module per
714// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000715//
716// Uses the new C++ interface instead of the old handle-based interface.
717//
John Kessenichc57b2a92016-01-16 15:30:03 -0700718
719void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000720{
721 // keep track of what to free
722 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700723
John Kessenich69f4b512013-09-04 21:19:27 +0000724 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000725 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000726
John Kessenich69f4b512013-09-04 21:19:27 +0000727 //
728 // Per-shader processing...
729 //
730
John Kessenich5b0f13a2013-11-01 03:08:40 +0000731 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100732 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
733 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700734 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
John Kessenich04acb1b2017-06-14 17:36:50 -0600735 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, compUnit.count);
John Kessenich4d65ee32016-03-12 18:17:47 -0700736 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
737 shader->setEntryPoint(entryPointName);
steve-lunargf1e0c872016-10-31 15:13:43 -0600738 if (sourceEntryPointName)
739 shader->setSourceEntryPoint(sourceEntryPointName);
John Kessenicha9313662017-06-15 10:40:49 -0600740 if (UserPreamble.isSet())
741 shader->setPreamble(UserPreamble.get());
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600742
743 shader->setShiftSamplerBinding(baseSamplerBinding[compUnit.stage]);
744 shader->setShiftTextureBinding(baseTextureBinding[compUnit.stage]);
steve-lunarg9088be42016-11-01 10:31:42 -0600745 shader->setShiftImageBinding(baseImageBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600746 shader->setShiftUboBinding(baseUboBinding[compUnit.stage]);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700747 shader->setShiftSsboBinding(baseSsboBinding[compUnit.stage]);
steve-lunargbe283552017-04-18 12:18:01 -0600748 shader->setShiftUavBinding(baseUavBinding[compUnit.stage]);
steve-lunarge0b9deb2016-09-16 13:26:37 -0600749 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
steve-lunargcce8d482016-10-14 18:36:42 -0600750 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
Hyangran Park36dc8292017-05-02 16:27:29 +0900751 shader->setResourceSetBinding(baseResourceSetBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600752
steve-lunargbe283552017-04-18 12:18:01 -0600753 if (Options & EOptionHlslIoMapping)
754 shader->setHlslIoMapping(true);
755
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600756 if (Options & EOptionAutoMapBindings)
757 shader->setAutoMapBindings(true);
John Kessenichecba76f2017-01-06 00:34:48 -0700758
John Kessenich71facdf2017-05-17 18:28:19 -0600759 if (Options & EOptionAutoMapLocations)
760 shader->setAutoMapLocations(true);
761
John Kessenich4be4aeb2017-06-23 10:50:22 -0600762 // Set up the environment, some subsettings take precedence over earlier
763 // ways of setting things.
764 if (Options & EOptionSpv) {
765 if (Options & EOptionVulkanRules) {
766 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
767 : glslang::EShSourceGlsl,
John Kessenich6353d552017-06-23 11:11:09 -0600768 compUnit.stage, glslang::EShClientVulkan, ClientInputSemanticsVersion);
769 shader->setEnvClient(glslang::EShClientVulkan, VulkanClientVersion);
770 shader->setEnvTarget(glslang::EshTargetSpv, TargetVersion);
John Kessenich4be4aeb2017-06-23 10:50:22 -0600771 } else {
772 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
773 : glslang::EShSourceGlsl,
John Kessenich6353d552017-06-23 11:11:09 -0600774 compUnit.stage, glslang::EShClientOpenGL, ClientInputSemanticsVersion);
775 shader->setEnvClient(glslang::EShClientOpenGL, OpenGLClientVersion);
776 shader->setEnvTarget(glslang::EshTargetSpv, TargetVersion);
John Kessenich4be4aeb2017-06-23 10:50:22 -0600777 }
778 }
779
John Kessenich69f4b512013-09-04 21:19:27 +0000780 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600781
John Kessenich4be4aeb2017-06-23 10:50:22 -0600782 const int defaultVersion = Options & EOptionDefaultDesktop ? 110 : 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000783
John Kessenich3494b4d2017-05-22 15:00:42 -0600784 DirStackFileIncluder includer;
John Kessenich971a0a82017-06-07 15:06:58 -0600785 std::for_each(IncludeDirectoryList.rbegin(), IncludeDirectoryList.rend(), [&includer](const std::string& dir) {
786 includer.pushExternalLocalDirectory(dir); });
John Kessenichc555ddd2015-06-17 02:38:44 +0000787 if (Options & EOptionOutputPreprocessed) {
788 std::string str;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400789 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500790 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400791 PutsIfNonEmpty(str.c_str());
792 } else {
793 CompileFailed = true;
794 }
795 StderrIfNonEmpty(shader->getInfoLog());
796 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000797 continue;
798 }
John Kessenich3494b4d2017-05-22 15:00:42 -0600799 if (! shader->parse(&Resources, defaultVersion, false, messages, includer))
John Kessenichc999ba22013-11-07 23:33:24 +0000800 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000801
John Kessenich69f4b512013-09-04 21:19:27 +0000802 program.addShader(shader);
803
John Kessenichc57b2a92016-01-16 15:30:03 -0700804 if (! (Options & EOptionSuppressInfolog) &&
805 ! (Options & EOptionMemoryLeakMode)) {
John Kessenich04acb1b2017-06-14 17:36:50 -0600806 PutsIfNonEmpty(compUnit.fileName[0].c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400807 PutsIfNonEmpty(shader->getInfoLog());
808 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000809 }
John Kessenich69f4b512013-09-04 21:19:27 +0000810 }
811
812 //
813 // Program-level processing...
814 //
815
John Kessenich4d65ee32016-03-12 18:17:47 -0700816 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600817 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000818 LinkFailed = true;
819
steve-lunarg9ae34742016-10-05 13:40:13 -0600820 // Map IO
821 if (Options & EOptionSpv) {
822 if (!program.mapIO())
823 LinkFailed = true;
824 }
John Kessenichecba76f2017-01-06 00:34:48 -0700825
John Kessenich4d65ee32016-03-12 18:17:47 -0700826 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700827 if (! (Options & EOptionSuppressInfolog) &&
828 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400829 PutsIfNonEmpty(program.getInfoLog());
830 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000831 }
832
John Kessenich4d65ee32016-03-12 18:17:47 -0700833 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000834 if (Options & EOptionDumpReflection) {
835 program.buildReflection();
836 program.dumpReflection();
837 }
838
John Kessenich4d65ee32016-03-12 18:17:47 -0700839 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000840 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000841 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600842 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000843 else {
844 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000845 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000846 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400847 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400848 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -0600849 glslang::SpvOptions spvOptions;
850 if (Options & EOptionDebug)
851 spvOptions.generateDebugInfo = true;
852 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger, &spvOptions);
John Kessenichc57b2a92016-01-16 15:30:03 -0700853
854 // Dump the spv to a file or stdout, etc., but only if not doing
855 // memory/perf testing, as it's not internal to programmatic use.
856 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500857 printf("%s", logger.getAllMessages().c_str());
858 if (Options & EOptionOutputHexadecimal) {
John Kessenich8f674e82017-02-18 09:45:40 -0700859 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage), variableName);
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500860 } else {
861 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
862 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700863 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700864 spv::Disassemble(std::cout, spirv);
865 }
John Kessenichacba7722015-03-04 03:48:38 +0000866 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000867 }
John Kessenich92f90382014-07-28 04:21:04 +0000868 }
869 }
870 }
871
John Kessenich5b0f13a2013-11-01 03:08:40 +0000872 // Free everything up, program has to go before the shaders
873 // because it might have merged stuff from the shaders, and
874 // the stuff from the shaders has to have its destructors called
875 // before the pools holding the memory in the shaders is freed.
876 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000877 while (shaders.size() > 0) {
878 delete shaders.back();
879 shaders.pop_back();
880 }
John Kessenich69f4b512013-09-04 21:19:27 +0000881}
882
John Kessenichc57b2a92016-01-16 15:30:03 -0700883//
884// Do file IO part of compile and link, handing off the pure
885// API/programmatic mode to CompileAndLinkShaderUnits(), which can
886// be put in a loop for testing memory footprint and performance.
887//
888// This is just for linking mode: meaning all the shaders will be put into the
889// the same program linked together.
890//
891// This means there are a limited number of work items (not multi-threading mode)
892// and that the point is testing at the linking level. Hence, to enable
893// performance and memory testing, the actual compile/link can be put in
894// a loop, independent of processing the work items and file IO.
895//
Juan Lopeza558b262017-04-02 23:04:00 +0200896void CompileAndLinkShaderFiles(glslang::TWorklist& Worklist)
John Kessenichc57b2a92016-01-16 15:30:03 -0700897{
898 std::vector<ShaderCompUnit> compUnits;
899
900 // Transfer all the work items from to a simple list of
901 // of compilation units. (We don't care about the thread
902 // work-item distribution properties in this path, which
903 // is okay due to the limited number of shaders, know since
904 // they are all getting linked together.)
905 glslang::TWorkItem* workItem;
906 while (Worklist.remove(workItem)) {
John Kessenich04acb1b2017-06-14 17:36:50 -0600907 ShaderCompUnit compUnit(FindLanguage(workItem->name));
908 char* fileText = ReadFileData(workItem->name.c_str());
909 if (fileText == nullptr)
John Kessenichc57b2a92016-01-16 15:30:03 -0700910 usage();
John Kessenich04acb1b2017-06-14 17:36:50 -0600911 compUnit.addString(workItem->name, fileText);
John Kessenichc57b2a92016-01-16 15:30:03 -0700912 compUnits.push_back(compUnit);
913 }
914
915 // Actual call to programmatic processing of compile and link,
916 // in a loop for testing memory and performance. This part contains
917 // all the perf/memory that a programmatic consumer will care about.
918 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
919 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
920 CompileAndLinkShaderUnits(compUnits);
921
922 if (Options & EOptionMemoryLeakMode)
923 glslang::OS_DumpMemoryCounters();
924 }
925
John Kessenicha9313662017-06-15 10:40:49 -0600926 // free memory from ReadFileData, which got stored in a const char*
927 // as the first string above
rdb32084e82016-02-23 22:17:38 +0100928 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
John Kessenicha9313662017-06-15 10:40:49 -0600929 FreeFileData(const_cast<char*>(it->text[0]));
John Kessenichc57b2a92016-01-16 15:30:03 -0700930}
931
John Kessenicha0af4732012-12-12 21:15:54 +0000932int C_DECL main(int argc, char* argv[])
933{
Juan Lopeza558b262017-04-02 23:04:00 +0200934 // array of unique places to leave the shader names and infologs for the asynchronous compiles
935 std::vector<std::unique_ptr<glslang::TWorkItem>> workItems;
936 ProcessArguments(workItems, argc, argv);
937
938 glslang::TWorklist workList;
939 std::for_each(workItems.begin(), workItems.end(), [&workList](std::unique_ptr<glslang::TWorkItem>& item) {
940 assert(item);
941 workList.add(item.get());
942 });
John Kessenich2b07c7e2013-07-31 18:44:13 +0000943
John Kessenich05a70632013-09-17 19:26:08 +0000944 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -0500945 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
Juan Lopeza558b262017-04-02 23:04:00 +0200946 if (workList.empty())
John Kessenich05a70632013-09-17 19:26:08 +0000947 return ESuccess;
948 }
949
John Kessenich0da9eaa2015-08-01 17:10:02 -0600950 if (Options & EOptionDumpVersions) {
951 printf("Glslang Version: %s %s\n", GLSLANG_REVISION, GLSLANG_DATE);
John Kessenich319de232013-12-04 04:43:40 +0000952 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
953 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -0600954 std::string spirvVersion;
955 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -0600956 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -0600957 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -0700958 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenichb84313d2016-07-20 16:03:29 -0600959 printf("GL_KHR_vulkan_glsl version %d\n", 100);
960 printf("ARB_GL_gl_spirv version %d\n", 100);
Juan Lopeza558b262017-04-02 23:04:00 +0200961 if (workList.empty())
John Kessenich319de232013-12-04 04:43:40 +0000962 return ESuccess;
963 }
964
Juan Lopeza558b262017-04-02 23:04:00 +0200965 if (workList.empty()) {
John Kessenich05a70632013-09-17 19:26:08 +0000966 usage();
John Kessenich05a70632013-09-17 19:26:08 +0000967 }
968
969 ProcessConfigFile();
970
John Kessenich69f4b512013-09-04 21:19:27 +0000971 //
972 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +0000973 // 1) linking all arguments together, single-threaded, new C++ interface
974 // 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 +0000975 //
John Kessenichc555ddd2015-06-17 02:38:44 +0000976 if (Options & EOptionLinkProgram ||
977 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +0000978 glslang::InitializeProcess();
Juan Lopeza558b262017-04-02 23:04:00 +0200979 CompileAndLinkShaderFiles(workList);
John Kessenichc36e1d82013-11-01 17:41:52 +0000980 glslang::FinalizeProcess();
981 } else {
982 ShInitialize();
983
Juan Lopeza558b262017-04-02 23:04:00 +0200984 bool printShaderNames = workList.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +0000985
Juan Lopeza558b262017-04-02 23:04:00 +0200986 if (Options & EOptionMultiThreaded)
987 {
988 std::array<std::thread, 16> threads;
989 for (unsigned int t = 0; t < threads.size(); ++t)
990 {
991 threads[t] = std::thread(CompileShaders, std::ref(workList));
992 if (threads[t].get_id() == std::thread::id())
993 {
John Kessenich38f3b892013-09-06 19:52:57 +0000994 printf("Failed to create thread\n");
995 return EFailThreadCreate;
996 }
John Kessenicha0af4732012-12-12 21:15:54 +0000997 }
Juan Lopeza558b262017-04-02 23:04:00 +0200998
999 std::for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); });
John Kessenichc999ba22013-11-07 23:33:24 +00001000 } else
Juan Lopeza558b262017-04-02 23:04:00 +02001001 CompileShaders(workList);
John Kessenich38f3b892013-09-06 19:52:57 +00001002
1003 // Print out all the resulting infologs
Juan Lopeza558b262017-04-02 23:04:00 +02001004 for (size_t w = 0; w < workItems.size(); ++w) {
1005 if (workItems[w]) {
1006 if (printShaderNames || workItems[w]->results.size() > 0)
1007 PutsIfNonEmpty(workItems[w]->name.c_str());
1008 PutsIfNonEmpty(workItems[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +00001009 }
1010 }
John Kessenichc36e1d82013-11-01 17:41:52 +00001011
1012 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +00001013 }
John Kessenich2b07c7e2013-07-31 18:44:13 +00001014
John Kessenichc999ba22013-11-07 23:33:24 +00001015 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001016 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +00001017 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001018 return EFailLink;
1019
1020 return 0;
1021}
1022
1023//
1024// Deduce the language from the filename. Files must end in one of the
1025// following extensions:
1026//
John Kessenich2b07c7e2013-07-31 18:44:13 +00001027// .vert = vertex
1028// .tesc = tessellation control
1029// .tese = tessellation evaluation
1030// .geom = geometry
1031// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +00001032// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +00001033//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001034EShLanguage FindLanguage(const std::string& name, bool parseSuffix)
John Kessenicha0af4732012-12-12 21:15:54 +00001035{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001036 size_t ext = 0;
John Kesseniche751bca2017-03-16 11:20:38 -06001037 std::string suffix;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001038
Dan Bakerc6ede892016-08-11 14:06:06 -04001039 if (shaderStageName)
1040 suffix = shaderStageName;
John Kesseniche751bca2017-03-16 11:20:38 -06001041 else {
1042 // Search for a suffix on a filename: e.g, "myfile.frag". If given
1043 // the suffix directly, we skip looking for the '.'
1044 if (parseSuffix) {
1045 ext = name.rfind('.');
1046 if (ext == std::string::npos) {
1047 usage();
1048 return EShLangVertex;
1049 }
1050 ++ext;
1051 }
1052 suffix = name.substr(ext, std::string::npos);
1053 }
dankbaker45d49bc2016-08-08 21:43:07 -04001054
John Kessenich2b07c7e2013-07-31 18:44:13 +00001055 if (suffix == "vert")
1056 return EShLangVertex;
1057 else if (suffix == "tesc")
1058 return EShLangTessControl;
1059 else if (suffix == "tese")
1060 return EShLangTessEvaluation;
1061 else if (suffix == "geom")
1062 return EShLangGeometry;
1063 else if (suffix == "frag")
1064 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +00001065 else if (suffix == "comp")
1066 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +00001067
1068 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +00001069 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +00001070}
1071
John Kessenicha0af4732012-12-12 21:15:54 +00001072//
John Kessenichecba76f2017-01-06 00:34:48 -07001073// Read a file's data into a string, and compile it using the old interface ShCompile,
John Kessenich69f4b512013-09-04 21:19:27 +00001074// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +00001075//
John Kessenich51cdd902014-02-18 23:37:57 +00001076void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +00001077{
John Kessenichca3457f2015-05-18 01:59:45 +00001078 int ret = 0;
John Kessenich04acb1b2017-06-14 17:36:50 -06001079 char* shaderString = ReadFileData(fileName);
John Kessenich41cf6b52013-06-25 18:10:05 +00001080
1081 // move to length-based strings, rather than null-terminated strings
John Kessenich04acb1b2017-06-14 17:36:50 -06001082 int* lengths = new int[1];
1083 lengths[0] = (int)strlen(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001084
John Kessenich52ac67e2013-05-05 23:46:22 +00001085 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +00001086 SetMessageOptions(messages);
John Kessenichecba76f2017-01-06 00:34:48 -07001087
John Kessenicha9313662017-06-15 10:40:49 -06001088 if (UserPreamble.isSet())
1089 Error("-D and -U options require -l (linking)\n");
1090
John Kessenich94a81fb2013-08-31 02:41:30 +00001091 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1092 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich927608b2017-01-06 12:34:14 -07001093 // ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich04acb1b2017-06-14 17:36:50 -06001094 ret = ShCompile(compiler, &shaderString, 1, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich927608b2017-01-06 12:34:14 -07001095 // const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
John Kessenichecba76f2017-01-06 00:34:48 -07001096 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
John Kessenichea869fb2013-10-28 18:12:06 +00001097 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich927608b2017-01-06 12:34:14 -07001098 // const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
1099 // ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +00001100 }
John Kessenicha0af4732012-12-12 21:15:54 +00001101
John Kessenich94a81fb2013-08-31 02:41:30 +00001102 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +00001103 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +00001104 }
John Kessenicha0af4732012-12-12 21:15:54 +00001105
John Kessenich41cf6b52013-06-25 18:10:05 +00001106 delete [] lengths;
John Kessenich04acb1b2017-06-14 17:36:50 -06001107 FreeFileData(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001108
John Kessenichc999ba22013-11-07 23:33:24 +00001109 if (ret == 0)
1110 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +00001111}
1112
John Kessenicha0af4732012-12-12 21:15:54 +00001113//
1114// print usage to stdout
1115//
1116void usage()
1117{
John Kessenich319de232013-12-04 04:43:40 +00001118 printf("Usage: glslangValidator [option]... [file]...\n"
1119 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001120 "'file' can end in .<stage> for auto-stage classification, where <stage> is:\n"
1121 " .conf to provide a config file that replaces the default configuration\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001122 " (see -c option below for generating a template)\n"
1123 " .vert for a vertex shader\n"
1124 " .tesc for a tessellation control shader\n"
1125 " .tese for a tessellation evaluation shader\n"
1126 " .geom for a geometry shader\n"
1127 " .frag for a fragment shader\n"
1128 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +00001129 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001130 "Options:\n"
1131 " -C cascading errors; risk crash from accumulation of error recoveries\n"
1132 " -D input is HLSL\n"
John Kessenicha9313662017-06-15 10:40:49 -06001133 " -D<macro=def>\n"
1134 " -D<macro> define a pre-processor macro\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001135 " -E print pre-processed GLSL; cannot be used with -l;\n"
1136 " errors will appear on stderr.\n"
John Kessenich6353d552017-06-23 11:11:09 -06001137 " -G[ver] create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001138 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich6353d552017-06-23 11:11:09 -06001139 " 'ver', when present, is the version of the input semantics,\n"
1140 " which will appear in #define GL_SPIRV ver\n"
1141 " '--client opengl100' is the same as -G100\n"
1142 " a '--target-env' for OpenGL will also imply '-G'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001143 " -H print human readable form of SPIR-V; turns on -V\n"
John Kessenich971a0a82017-06-07 15:06:58 -06001144 " -I<dir> add dir to the include search path; includer's directory\n"
1145 " is searched first, followed by left-to-right order of -I\n"
John Kesseniche751bca2017-03-16 11:20:38 -06001146 " -S <stage> uses specified stage rather than parsing the file extension\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001147 " choices for <stage> are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich6353d552017-06-23 11:11:09 -06001148 " -U<macro> undefine a pre-processor macro\n"
1149 " -V[ver] create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001150 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich6353d552017-06-23 11:11:09 -06001151 " 'ver', when present, is the version of the input semantics,\n"
1152 " which will appear in #define VULKAN ver\n"
1153 " '--client vulkan100' is the same as -V100\n"
1154 " a '--target-env' for Vulkan will also imply '-V'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001155 " -c configuration dump;\n"
1156 " creates the default configuration file (redirect to a .conf file)\n"
1157 " -d default to desktop (#version 110) when there is no shader #version\n"
1158 " (default is ES version 100)\n"
John Kessenich4d65ee32016-03-12 18:17:47 -07001159 " -e specify entry-point name\n"
John Kessenich121853f2017-05-31 17:11:16 -06001160 " -g generate debug information\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001161 " -h print this usage message\n"
1162 " -i intermediate tree (glslang AST) is printed out\n"
1163 " -l link all input files together to form a single module\n"
1164 " -m memory leak mode\n"
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05001165 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001166 " -q dump reflection query database\n"
1167 " -r relaxed semantic error-checking mode\n"
1168 " -s silent mode\n"
1169 " -t multi-threaded mode\n"
1170 " -v print version strings\n"
1171 " -w suppress warnings (except as required by #extension : warn)\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001172 " -x save binary output as text-based 32-bit hexadecimal numbers\n"
1173 " --auto-map-bindings automatically bind uniform variables\n"
1174 " without explicit bindings.\n"
1175 " --amb synonym for --auto-map-bindings\n"
1176 " --auto-map-locations automatically locate input/output lacking\n"
John Kessenichc178f0a2017-06-23 10:58:31 -06001177 " 'location' (fragile, not cross stage)\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001178 " --aml synonym for --auto-map-locations\n"
John Kessenich6353d552017-06-23 11:11:09 -06001179 " --client {vulkan<ver>|opengl<ver>} see -V and -G\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001180 " --flatten-uniform-arrays flatten uniform texture/sampler arrays to\n"
1181 " scalars\n"
1182 " --fua synonym for --flatten-uniform-arrays\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001183 " --hlsl-offsets Allow block offsets to follow HLSL rules\n"
1184 " Works independently of source language\n"
1185 " --hlsl-iomap Perform IO mapping in HLSL register space\n"
1186 " --keep-uncalled don't eliminate uncalled functions\n"
1187 " --ku synonym for --keep-uncalled\n"
1188 " --no-storage-format use Unknown image format\n"
1189 " --nsf synonym for --no-storage-format\n"
1190 " --resource-set-binding [stage] num descriptor set and binding for resources\n"
1191 " --rsb [stage] type set binding synonym for --resource-set-binding\n"
1192 " --shift-image-binding [stage] num base binding number for images (uav)\n"
1193 " --sib [stage] num synonym for --shift-image-binding\n"
1194 " --shift-sampler-binding [stage] num base binding number for samplers\n"
1195 " --ssb [stage] num synonym for --shift-sampler-binding\n"
1196 " --shift-ssbo-binding [stage] num base binding number for SSBOs\n"
1197 " --sbb [stage] num synonym for --shift-ssbo-binding\n"
1198 " --shift-texture-binding [stage] num base binding number for textures\n"
1199 " --stb [stage] num synonym for --shift-texture-binding\n"
1200 " --shift-uav-binding [stage] num base binding number for UAVs\n"
1201 " --suavb [stage] num synonym for --shift-uav-binding\n"
1202 " --shift-UBO-binding [stage] num base binding number for UBOs\n"
1203 " --shift-cbuffer-binding [stage] num synonym for --shift-UBO-binding\n"
1204 " --sub [stage] num synonym for --shift-UBO-binding\n"
1205 " --source-entrypoint name the given shader source function is\n"
1206 " renamed to be the entry point given in -e\n"
1207 " --sep synonym for --source-entrypoint\n"
John Kessenich6353d552017-06-23 11:11:09 -06001208 " --target-env {vulkan1.0|opengl} set the execution environment the generated\n"
1209 " code will execute in (as opposed to language\n"
1210 " semantics selected by --client)\n"
1211 " default is 'vulkan1.0' under '--client vulkan'\n"
1212 " default is 'opengl' under '--client opengl'\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001213 " --variable-name <name> Creates a C header file that contains a\n"
1214 " uint32_t array named <name>\n"
1215 " initialized with the shader binary code.\n"
1216 " --vn <name> synonym for --variable-name <name>\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +00001217 );
John Kessenich68d78fd2015-07-12 19:28:10 -06001218
1219 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +00001220}
1221
John Kessenich3ce4e592014-10-06 19:57:34 +00001222#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +00001223
1224#include <errno.h>
1225
1226int fopen_s(
1227 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +00001228 const char* filename,
1229 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +00001230)
1231{
1232 if (!pFile || !filename || !mode) {
1233 return EINVAL;
1234 }
1235
1236 FILE* f = fopen(filename, mode);
1237 if (! f) {
1238 if (errno != 0) {
1239 return errno;
1240 } else {
1241 return ENOENT;
1242 }
1243 }
1244 *pFile = f;
1245
1246 return 0;
1247}
1248
1249#endif
1250
John Kessenicha0af4732012-12-12 21:15:54 +00001251//
1252// Malloc a string of sufficient size and read a string into it.
1253//
John Kessenich04acb1b2017-06-14 17:36:50 -06001254char* ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +00001255{
John Kessenichb3297152015-07-11 18:01:03 -06001256 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +00001257 int errorCode = fopen_s(&in, fileName, "r");
John Kessenich68d78fd2015-07-12 19:28:10 -06001258 if (errorCode || in == nullptr)
1259 Error("unable to open input file");
John Kessenichecba76f2017-01-06 00:34:48 -07001260
John Kessenich04acb1b2017-06-14 17:36:50 -06001261 int count = 0;
John Kessenicha0af4732012-12-12 21:15:54 +00001262 while (fgetc(in) != EOF)
1263 count++;
1264
John Kessenichd6c72a42014-08-18 19:42:35 +00001265 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001266
John Kessenich04acb1b2017-06-14 17:36:50 -06001267 char* return_data = (char*)malloc(count + 1); // freed in FreeFileData()
1268 if ((int)fread(return_data, 1, count, in) != count) {
1269 free(return_data);
John Kessenich68d78fd2015-07-12 19:28:10 -06001270 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001271 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001272
John Kessenich04acb1b2017-06-14 17:36:50 -06001273 return_data[count] = '\0';
John Kessenicha0af4732012-12-12 21:15:54 +00001274 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001275
John Kessenicha0af4732012-12-12 21:15:54 +00001276 return return_data;
1277}
1278
John Kessenich04acb1b2017-06-14 17:36:50 -06001279void FreeFileData(char* data)
John Kessenicha0af4732012-12-12 21:15:54 +00001280{
John Kessenichb3297152015-07-11 18:01:03 -06001281 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001282}
1283
John Kessenich54d8cda2013-02-11 22:36:01 +00001284void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001285{
John Kessenichfae38ee2015-06-10 23:23:12 +00001286 if (num >= 0 )
1287 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1288 else
1289 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001290}