blob: 8452a68d84230cffec897c7db76ada0da0f5c183 [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),
LoopDawgb22c0692017-12-06 16:52:03 -0700101 EOptionInvertY = (1 << 30),
John Kessenichc6c80a62018-03-05 22:23:17 -0700102 EOptionDumpBareVersion = (1 << 31),
John Kessenich94a81fb2013-08-31 02:41:30 +0000103};
104
John Kessenicha0af4732012-12-12 21:15:54 +0000105//
John Kessenich68d78fd2015-07-12 19:28:10 -0600106// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +0000107//
108enum TFailCode {
109 ESuccess = 0,
110 EFailUsage,
111 EFailCompile,
112 EFailLink,
113 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +0000114 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +0000115 EFailLinkerCreate
116};
117
118//
John Kessenich68d78fd2015-07-12 19:28:10 -0600119// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +0000120//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600121EShLanguage FindLanguage(const std::string& name, bool parseSuffix=true);
John Kessenich51cdd902014-02-18 23:37:57 +0000122void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000123void usage();
John Kessenich04acb1b2017-06-14 17:36:50 -0600124char* ReadFileData(const char* fileName);
125void FreeFileData(char* data);
John Kessenich54d8cda2013-02-11 22:36:01 +0000126void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000127
John Kessenichc999ba22013-11-07 23:33:24 +0000128// Globally track if any compile or link failure.
129bool CompileFailed = false;
130bool LinkFailed = false;
131
John Kessenich94f28eb2017-11-13 01:32:06 -0700132// array of unique places to leave the shader names and infologs for the asynchronous compiles
133std::vector<std::unique_ptr<glslang::TWorkItem>> WorkItems;
134
John Kessenich05a70632013-09-17 19:26:08 +0000135TBuiltInResource Resources;
136std::string ConfigFile;
137
John Kessenicha0af4732012-12-12 21:15:54 +0000138//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600139// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000140//
141void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000142{
John Kessenich04acb1b2017-06-14 17:36:50 -0600143 if (ConfigFile.size() == 0)
Lei Zhang414eb602016-03-04 16:22:34 -0500144 Resources = glslang::DefaultTBuiltInResource;
John Kessenich04acb1b2017-06-14 17:36:50 -0600145 else {
146 char* configString = ReadFileData(ConfigFile.c_str());
147 glslang::DecodeResourceLimits(&Resources, configString);
148 FreeFileData(configString);
John Kessenich05a70632013-09-17 19:26:08 +0000149 }
John Kessenicha0af4732012-12-12 21:15:54 +0000150}
151
John Kessenich94a81fb2013-08-31 02:41:30 +0000152int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600153const char* ExecutableName = nullptr;
154const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700155const char* entryPointName = nullptr;
steve-lunargf1e0c872016-10-31 15:13:43 -0600156const char* sourceEntryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400157const char* shaderStageName = nullptr;
Flavioaea3c892017-02-06 11:46:35 -0800158const char* variableName = nullptr;
John Kessenich971a0a82017-06-07 15:06:58 -0600159std::vector<std::string> IncludeDirectoryList;
John Kessenich6353d552017-06-23 11:11:09 -0600160int ClientInputSemanticsVersion = 100; // maps to, say, #define VULKAN 100
161int VulkanClientVersion = 100; // would map to, say, Vulkan 1.0
162int OpenGLClientVersion = 450; // doesn't influence anything yet, but maps to OpenGL 4.50
John Kessenich2b5ea9f2018-01-31 18:35:56 -0700163unsigned int TargetVersion = 0x00010000; // maps to, say, SPIR-V 1.0
John Kessenich2a271162017-07-20 20:00:36 -0600164std::vector<std::string> Processes; // what should be recorded by OpModuleProcessed, or equivalent
John Kessenich68d78fd2015-07-12 19:28:10 -0600165
LoopDawg08a14422017-10-17 19:27:14 -0600166// Per descriptor-set binding base data
167typedef std::map<unsigned int, unsigned int> TPerSetBaseBinding;
168
169std::array<std::array<unsigned int, EShLangCount>, glslang::EResCount> baseBinding;
170std::array<std::array<TPerSetBaseBinding, EShLangCount>, glslang::EResCount> baseBindingForSet;
Hyangran Park36dc8292017-05-02 16:27:29 +0900171std::array<std::vector<std::string>, EShLangCount> baseResourceSetBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600172
John Kessenicha9313662017-06-15 10:40:49 -0600173// Add things like "#define ..." to a preamble to use in the beginning of the shader.
174class TPreamble {
175public:
176 TPreamble() { }
177
178 bool isSet() const { return text.size() > 0; }
179 const char* get() const { return text.c_str(); }
180
181 // #define...
182 void addDef(std::string def)
183 {
184 text.append("#define ");
185 fixLine(def);
186
John Kessenich2a271162017-07-20 20:00:36 -0600187 Processes.push_back("D");
188 Processes.back().append(def);
189
John Kessenicha9313662017-06-15 10:40:49 -0600190 // The first "=" needs to turn into a space
LoopDawgb97b25e2017-07-12 09:04:39 -0600191 const size_t equal = def.find_first_of("=");
John Kessenicha9313662017-06-15 10:40:49 -0600192 if (equal != def.npos)
193 def[equal] = ' ';
194
195 text.append(def);
196 text.append("\n");
197 }
198
199 // #undef...
200 void addUndef(std::string undef)
201 {
202 text.append("#undef ");
203 fixLine(undef);
John Kessenich2a271162017-07-20 20:00:36 -0600204
205 Processes.push_back("U");
206 Processes.back().append(undef);
207
John Kessenicha9313662017-06-15 10:40:49 -0600208 text.append(undef);
209 text.append("\n");
210 }
211
212protected:
213 void fixLine(std::string& line)
214 {
215 // Can't go past a newline in the line
LoopDawgb97b25e2017-07-12 09:04:39 -0600216 const size_t end = line.find_first_of("\n");
John Kessenicha9313662017-06-15 10:40:49 -0600217 if (end != line.npos)
218 line = line.substr(0, end);
219 }
220
221 std::string text; // contents of preamble
222};
223
224TPreamble UserPreamble;
225
John Kessenich68d78fd2015-07-12 19:28:10 -0600226//
227// Create the default name for saving a binary if -o is not provided.
228//
229const char* GetBinaryName(EShLanguage stage)
230{
231 const char* name;
232 if (binaryFileName == nullptr) {
233 switch (stage) {
234 case EShLangVertex: name = "vert.spv"; break;
235 case EShLangTessControl: name = "tesc.spv"; break;
236 case EShLangTessEvaluation: name = "tese.spv"; break;
237 case EShLangGeometry: name = "geom.spv"; break;
238 case EShLangFragment: name = "frag.spv"; break;
239 case EShLangCompute: name = "comp.spv"; break;
240 default: name = "unknown"; break;
241 }
242 } else
243 name = binaryFileName;
244
245 return name;
246}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000247
John Kessenich05a70632013-09-17 19:26:08 +0000248//
249// *.conf => this is a config file that can set limits/resources
250//
251bool SetConfigFile(const std::string& name)
252{
253 if (name.size() < 5)
254 return false;
255
John Kessenich4c706852013-10-11 16:28:43 +0000256 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000257 ConfigFile = name;
258 return true;
259 }
260
261 return false;
262}
263
John Kessenich68d78fd2015-07-12 19:28:10 -0600264//
265// Give error and exit with failure code.
266//
267void Error(const char* message)
268{
John Kessenichaf527992017-11-02 22:48:15 -0600269 fprintf(stderr, "%s: Error %s (use -h for usage)\n", ExecutableName, message);
John Kessenich68d78fd2015-07-12 19:28:10 -0600270 exit(EFailUsage);
271}
272
273//
LoopDawg08a14422017-10-17 19:27:14 -0600274// Process an optional binding base of one the forms:
275// --argname [stage] base // base for stage (if given) or all stages (if not)
LoopDawge5709552017-10-21 10:46:39 -0600276// --argname [stage] [base set]... // set/base pairs: set the base for given binding set.
LoopDawg08a14422017-10-17 19:27:14 -0600277
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600278// Where stage is one of the forms accepted by FindLanguage, and base is an integer
279//
LoopDawg08a14422017-10-17 19:27:14 -0600280void ProcessBindingBase(int& argc, char**& argv, glslang::TResourceType res)
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600281{
282 if (argc < 2)
283 usage();
284
LoopDawg08a14422017-10-17 19:27:14 -0600285 EShLanguage lang = EShLangCount;
286 int singleBase = 0;
287 TPerSetBaseBinding perSetBase;
288 int arg = 1;
289
290 // Parse stage, if given
291 if (!isdigit(argv[arg][0])) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600292 if (argc < 3) // this form needs one more argument
293 usage();
John Kessenichecba76f2017-01-06 00:34:48 -0700294
LoopDawg08a14422017-10-17 19:27:14 -0600295 lang = FindLanguage(argv[arg++], false);
296 }
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600297
LoopDawg08a14422017-10-17 19:27:14 -0600298 if ((argc - arg) > 2 && isdigit(argv[arg+0][0]) && isdigit(argv[arg+1][0])) {
299 // Parse a per-set binding base
300 while ((argc - arg) > 2 && isdigit(argv[arg+0][0]) && isdigit(argv[arg+1][0])) {
LoopDawg08a14422017-10-17 19:27:14 -0600301 const int baseNum = atoi(argv[arg++]);
LoopDawge5709552017-10-21 10:46:39 -0600302 const int setNum = atoi(argv[arg++]);
LoopDawg08a14422017-10-17 19:27:14 -0600303 perSetBase[setNum] = baseNum;
304 }
305 } else {
306 // Parse single binding base
307 singleBase = atoi(argv[arg++]);
308 }
309
310 argc -= (arg-1);
311 argv += (arg-1);
312
313 // Set one or all languages
314 const int langMin = (lang < EShLangCount) ? lang+0 : 0;
315 const int langMax = (lang < EShLangCount) ? lang+1 : EShLangCount;
316
317 for (int lang = langMin; lang < langMax; ++lang) {
318 if (!perSetBase.empty())
319 baseBindingForSet[res][lang] = perSetBase;
320 else
321 baseBinding[res][lang] = singleBase;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600322 }
323}
324
Hyangran Park36dc8292017-05-02 16:27:29 +0900325void ProcessResourceSetBindingBase(int& argc, char**& argv, std::array<std::vector<std::string>, EShLangCount>& base)
326{
327 if (argc < 2)
328 usage();
329
330 if (!isdigit(argv[1][0])) {
LoopDawg52017192017-07-14 15:15:47 -0600331 if (argc < 3) // this form needs one more argument
Hyangran Park36dc8292017-05-02 16:27:29 +0900332 usage();
333
LoopDawg52017192017-07-14 15:15:47 -0600334 // Parse form: --argname stage [regname set base...], or:
335 // --argname stage set
Hyangran Park36dc8292017-05-02 16:27:29 +0900336 const EShLanguage lang = FindLanguage(argv[1], false);
337
LoopDawg52017192017-07-14 15:15:47 -0600338 argc--;
339 argv++;
340
341 while (argc > 1 && argv[1] != nullptr && argv[1][0] != '-') {
342 base[lang].push_back(argv[1]);
343
344 argc--;
345 argv++;
Hyangran Park36dc8292017-05-02 16:27:29 +0900346 }
LoopDawg52017192017-07-14 15:15:47 -0600347
348 // Must have one arg, or a multiple of three (for [regname set binding] triples)
349 if (base[lang].size() != 1 && (base[lang].size() % 3) != 0)
350 usage();
351
Hyangran Park36dc8292017-05-02 16:27:29 +0900352 } else {
LoopDawg52017192017-07-14 15:15:47 -0600353 // Parse form: --argname set
Hyangran Park36dc8292017-05-02 16:27:29 +0900354 for (int lang=0; lang<EShLangCount; ++lang)
355 base[lang].push_back(argv[1]);
356
357 argc--;
358 argv++;
359 }
360}
361
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600362//
John Kessenich68d78fd2015-07-12 19:28:10 -0600363// Do all command-line argument parsing. This includes building up the work-items
364// to be processed later, and saving all the command-line options.
365//
366// Does not return (it exits) if command-line is fatally flawed.
367//
Juan Lopeza558b262017-04-02 23:04:00 +0200368void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItems, int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000369{
LoopDawg08a14422017-10-17 19:27:14 -0600370 for (int res = 0; res < glslang::EResCount; ++res)
371 baseBinding[res].fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600372
John Kessenich38f3b892013-09-06 19:52:57 +0000373 ExecutableName = argv[0];
Juan Lopeza558b262017-04-02 23:04:00 +0200374 workItems.reserve(argc);
John Kessenich38f3b892013-09-06 19:52:57 +0000375
John Kessenichc178f0a2017-06-23 10:58:31 -0600376 const auto bumpArg = [&]() {
377 if (argc > 0) {
378 argc--;
379 argv++;
380 }
381 };
382
383 // read a string directly attached to a single-letter option
John Kessenich6263fb12017-06-14 15:52:44 -0600384 const auto getStringOperand = [&](const char* desc) {
385 if (argv[0][2] == 0) {
386 printf("%s must immediately follow option (no spaces)\n", desc);
387 exit(EFailUsage);
388 }
389 return argv[0] + 2;
390 };
391
John Kessenich6353d552017-06-23 11:11:09 -0600392 // read a number attached to a single-letter option
393 const auto getAttachedNumber = [&](const char* desc) {
394 int num = atoi(argv[0] + 2);
395 if (num == 0) {
396 printf("%s: expected attached non-0 number\n", desc);
397 exit(EFailUsage);
398 }
399 return num;
400 };
401
402 // minimum needed (without overriding something else) to target Vulkan SPIR-V
403 const auto setVulkanSpv = []() {
404 Options |= EOptionSpv;
405 Options |= EOptionVulkanRules;
406 Options |= EOptionLinkProgram;
407 };
408
409 // minimum needed (without overriding something else) to target OpenGL SPIR-V
410 const auto setOpenGlSpv = []() {
411 Options |= EOptionSpv;
412 Options |= EOptionLinkProgram;
413 // undo a -H default to Vulkan
414 Options &= ~EOptionVulkanRules;
415 };
416
John Kessenichc178f0a2017-06-23 10:58:31 -0600417 for (bumpArg(); argc >= 1; bumpArg()) {
John Kessenich2b07c7e2013-07-31 18:44:13 +0000418 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000419 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600420 case '-':
421 {
422 std::string lowerword(argv[0]+2);
423 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
424
425 // handle --word style options
John Kessenich6263fb12017-06-14 15:52:44 -0600426 if (lowerword == "auto-map-bindings" || // synonyms
John Kessenich6353d552017-06-23 11:11:09 -0600427 lowerword == "auto-map-binding" ||
428 lowerword == "amb") {
John Kessenich6263fb12017-06-14 15:52:44 -0600429 Options |= EOptionAutoMapBindings;
430 } else if (lowerword == "auto-map-locations" || // synonyms
431 lowerword == "aml") {
432 Options |= EOptionAutoMapLocations;
John Kessenich6353d552017-06-23 11:11:09 -0600433 } else if (lowerword == "client") {
434 if (argc > 1) {
435 if (strcmp(argv[1], "vulkan100") == 0)
436 setVulkanSpv();
437 else if (strcmp(argv[1], "opengl100") == 0)
438 setOpenGlSpv();
439 else
440 Error("--client expects vulkan100 or opengl100");
441 }
442 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600443 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
444 lowerword == "flatten-uniform-array" ||
445 lowerword == "fua") {
446 Options |= EOptionFlattenUniformArrays;
447 } else if (lowerword == "hlsl-offsets") {
448 Options |= EOptionHlslOffsets;
449 } else if (lowerword == "hlsl-iomap" ||
450 lowerword == "hlsl-iomapper" ||
451 lowerword == "hlsl-iomapping") {
452 Options |= EOptionHlslIoMapping;
John Kessenichc6c80a62018-03-05 22:23:17 -0700453 } else if (lowerword == "invert-y" || // synonyms
454 lowerword == "iy") {
455 Options |= EOptionInvertY;
John Kessenich6263fb12017-06-14 15:52:44 -0600456 } else if (lowerword == "keep-uncalled" || // synonyms
457 lowerword == "ku") {
458 Options |= EOptionKeepUncalled;
459 } else if (lowerword == "no-storage-format" || // synonyms
460 lowerword == "nsf") {
461 Options |= EOptionNoStorageFormat;
John Kessenich2a271162017-07-20 20:00:36 -0600462 } else if (lowerword == "relaxed-errors") {
463 Options |= EOptionRelaxedErrors;
John Kessenich6263fb12017-06-14 15:52:44 -0600464 } else if (lowerword == "resource-set-bindings" || // synonyms
465 lowerword == "resource-set-binding" ||
466 lowerword == "rsb") {
467 ProcessResourceSetBindingBase(argc, argv, baseResourceSetBinding);
steve-lunarg9088be42016-11-01 10:31:42 -0600468 } else if (lowerword == "shift-image-bindings" || // synonyms
469 lowerword == "shift-image-binding" ||
470 lowerword == "sib") {
LoopDawg08a14422017-10-17 19:27:14 -0600471 ProcessBindingBase(argc, argv, glslang::EResImage);
John Kessenich6263fb12017-06-14 15:52:44 -0600472 } else if (lowerword == "shift-sampler-bindings" || // synonyms
473 lowerword == "shift-sampler-binding" ||
474 lowerword == "ssb") {
LoopDawg08a14422017-10-17 19:27:14 -0600475 ProcessBindingBase(argc, argv, glslang::EResSampler);
John Kessenich6263fb12017-06-14 15:52:44 -0600476 } else if (lowerword == "shift-uav-bindings" || // synonyms
477 lowerword == "shift-uav-binding" ||
478 lowerword == "suavb") {
LoopDawg08a14422017-10-17 19:27:14 -0600479 ProcessBindingBase(argc, argv, glslang::EResUav);
John Kessenich6263fb12017-06-14 15:52:44 -0600480 } else if (lowerword == "shift-texture-bindings" || // synonyms
481 lowerword == "shift-texture-binding" ||
482 lowerword == "stb") {
LoopDawg08a14422017-10-17 19:27:14 -0600483 ProcessBindingBase(argc, argv, glslang::EResTexture);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600484 } else if (lowerword == "shift-ubo-bindings" || // synonyms
485 lowerword == "shift-ubo-binding" ||
steve-lunargbe283552017-04-18 12:18:01 -0600486 lowerword == "shift-cbuffer-bindings" ||
487 lowerword == "shift-cbuffer-binding" ||
488 lowerword == "sub" ||
489 lowerword == "scb") {
LoopDawg08a14422017-10-17 19:27:14 -0600490 ProcessBindingBase(argc, argv, glslang::EResUbo);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700491 } else if (lowerword == "shift-ssbo-bindings" || // synonyms
492 lowerword == "shift-ssbo-binding" ||
493 lowerword == "sbb") {
LoopDawg08a14422017-10-17 19:27:14 -0600494 ProcessBindingBase(argc, argv, glslang::EResSsbo);
John Kessenich6263fb12017-06-14 15:52:44 -0600495 } else if (lowerword == "source-entrypoint" || // synonyms
496 lowerword == "sep") {
John Kessenichc178f0a2017-06-23 10:58:31 -0600497 if (argc <= 1)
John Kessenich6263fb12017-06-14 15:52:44 -0600498 Error("no <entry-point> provided for --source-entrypoint");
John Kessenichc178f0a2017-06-23 10:58:31 -0600499 sourceEntryPointName = argv[1];
500 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600501 break;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200502 } else if (lowerword == "stdin") {
503 Options |= EOptionStdin;
504 shaderStageName = argv[1];
John Kessenich2a271162017-07-20 20:00:36 -0600505 } else if (lowerword == "suppress-warnings") {
506 Options |= EOptionSuppressWarnings;
John Kessenich6353d552017-06-23 11:11:09 -0600507 } else if (lowerword == "target-env") {
508 if (argc > 1) {
509 if (strcmp(argv[1], "vulkan1.0") == 0) {
510 setVulkanSpv();
511 VulkanClientVersion = 100;
512 } else if (strcmp(argv[1], "opengl") == 0) {
513 setOpenGlSpv();
514 OpenGLClientVersion = 450;
515 } else
516 Error("--target-env expected vulkan1.0 or opengl");
517 }
518 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800519 } else if (lowerword == "variable-name" || // synonyms
520 lowerword == "vn") {
521 Options |= EOptionOutputHexadecimal;
John Kessenichc178f0a2017-06-23 10:58:31 -0600522 if (argc <= 1)
Flavio15017db2017-02-15 14:29:33 -0800523 Error("no <C-variable-name> provided for --variable-name");
John Kessenichc178f0a2017-06-23 10:58:31 -0600524 variableName = argv[1];
525 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800526 break;
John Kessenichc6c80a62018-03-05 22:23:17 -0700527 } else if (lowerword == "version") {
528 Options |= EOptionDumpVersions;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600529 } else {
530 usage();
531 }
532 }
533 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600534 case 'C':
535 Options |= EOptionCascadingErrors;
536 break;
537 case 'D':
John Kessenicha9313662017-06-15 10:40:49 -0600538 if (argv[0][2] == 0)
539 Options |= EOptionReadHlsl;
540 else
541 UserPreamble.addDef(getStringOperand("-D<macro> macro name"));
John Kessenich6263fb12017-06-14 15:52:44 -0600542 break;
543 case 'E':
544 Options |= EOptionOutputPreprocessed;
545 break;
546 case 'G':
John Kessenich6353d552017-06-23 11:11:09 -0600547 // OpenGL Client
548 setOpenGlSpv();
549 if (argv[0][2] != 0)
550 ClientInputSemanticsVersion = getAttachedNumber("-G<num> client input semantics");
John Kessenich6263fb12017-06-14 15:52:44 -0600551 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000552 case 'H':
553 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600554 if ((Options & EOptionSpv) == 0) {
555 // default to Vulkan
John Kessenich6353d552017-06-23 11:11:09 -0600556 setVulkanSpv();
John Kessenich91e4aa52016-07-07 17:46:42 -0600557 }
558 break;
John Kessenich971a0a82017-06-07 15:06:58 -0600559 case 'I':
John Kessenicha9313662017-06-15 10:40:49 -0600560 IncludeDirectoryList.push_back(getStringOperand("-I<dir> include path"));
John Kessenich68d78fd2015-07-12 19:28:10 -0600561 break;
GregFcd1f1692017-09-21 18:40:22 -0600562 case 'O':
563 if (argv[0][2] == 'd')
564 Options |= EOptionOptimizeDisable;
565 else if (argv[0][2] == 's')
566#ifdef ENABLE_OPT
567 Options |= EOptionOptimizeSize;
568#else
569 Error("-Os not available; optimizer not linked");
570#endif
571 else
572 Error("unknown -O option");
573 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400574 case 'S':
John Kessenichc178f0a2017-06-23 10:58:31 -0600575 if (argc <= 1)
Dan Baker5afdd782016-08-11 17:53:57 -0400576 Error("no <stage> specified for -S");
John Kessenichc178f0a2017-06-23 10:58:31 -0600577 shaderStageName = argv[1];
578 bumpArg();
dankbaker45d49bc2016-08-08 21:43:07 -0400579 break;
John Kessenicha9313662017-06-15 10:40:49 -0600580 case 'U':
581 UserPreamble.addUndef(getStringOperand("-U<macro>: macro name"));
582 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600583 case 'V':
John Kessenich6353d552017-06-23 11:11:09 -0600584 setVulkanSpv();
585 if (argv[0][2] != 0)
David Neto506d2c22018-02-27 21:55:23 -0500586 ClientInputSemanticsVersion = getAttachedNumber("-V<num> client input semantics");
John Kessenichc555ddd2015-06-17 02:38:44 +0000587 break;
John Kessenich05a70632013-09-17 19:26:08 +0000588 case 'c':
589 Options |= EOptionDumpConfig;
590 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000591 case 'd':
John Kessenichc6c80a62018-03-05 22:23:17 -0700592 if (strncmp(&argv[0][1], "dumpversion", strlen(&argv[0][1]) + 1) == 0 ||
593 strncmp(&argv[0][1], "dumpfullversion", strlen(&argv[0][1]) + 1) == 0)
594 Options |= EOptionDumpBareVersion;
595 else
596 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000597 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700598 case 'e':
599 // HLSL todo: entry point handle needs much more sophistication.
600 // This is okay for one compilation unit with one entry point.
601 entryPointName = argv[1];
John Kessenichc178f0a2017-06-23 10:58:31 -0600602 if (argc <= 1)
John Kessenicha25530c2017-09-11 20:13:49 -0600603 Error("no <name> provided for -e");
John Kessenichc178f0a2017-06-23 10:58:31 -0600604 bumpArg();
John Kessenich4d65ee32016-03-12 18:17:47 -0700605 break;
John Kessenich121853f2017-05-31 17:11:16 -0600606 case 'g':
607 Options |= EOptionDebug;
608 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600609 case 'h':
610 usage();
611 break;
John Kessenich05a70632013-09-17 19:26:08 +0000612 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000613 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000614 break;
615 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000616 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000617 break;
618 case 'm':
619 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000620 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600621 case 'o':
John Kessenichc178f0a2017-06-23 10:58:31 -0600622 if (argc <= 1)
John Kessenich68d78fd2015-07-12 19:28:10 -0600623 Error("no <file> provided for -o");
John Kessenichc178f0a2017-06-23 10:58:31 -0600624 binaryFileName = argv[1];
625 bumpArg();
John Kessenich68d78fd2015-07-12 19:28:10 -0600626 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000627 case 'q':
628 Options |= EOptionDumpReflection;
629 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000630 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000631 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000632 break;
633 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000634 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000635 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000636 case 't':
Juan Lopeza558b262017-04-02 23:04:00 +0200637 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000638 break;
John Kessenich319de232013-12-04 04:43:40 +0000639 case 'v':
640 Options |= EOptionDumpVersions;
641 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000642 case 'w':
643 Options |= EOptionSuppressWarnings;
644 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500645 case 'x':
646 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500647 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000648 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600649 usage();
650 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000651 }
John Kessenich38f3b892013-09-06 19:52:57 +0000652 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000653 std::string name(argv[0]);
654 if (! SetConfigFile(name)) {
Juan Lopeza558b262017-04-02 23:04:00 +0200655 workItems.push_back(std::unique_ptr<glslang::TWorkItem>(new glslang::TWorkItem(name)));
John Kessenich05a70632013-09-17 19:26:08 +0000656 }
John Kessenich38f3b892013-09-06 19:52:57 +0000657 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000658 }
659
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200660 // Make sure that -S is always specified if --stdin is specified
661 if ((Options & EOptionStdin) && shaderStageName == nullptr)
662 Error("must provide -S when --stdin is given");
663
John Kessenich68d78fd2015-07-12 19:28:10 -0600664 // Make sure that -E is not specified alongside linking (which includes SPV generation)
665 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
666 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000667
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500668 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600669 if (binaryFileName && (Options & EOptionSpv) == 0)
670 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600671
672 if ((Options & EOptionFlattenUniformArrays) != 0 &&
673 (Options & EOptionReadHlsl) == 0)
674 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000675}
676
John Kessenich68d78fd2015-07-12 19:28:10 -0600677//
678// Translate the meaningful subset of command-line options to parser-behavior options.
679//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000680void SetMessageOptions(EShMessages& messages)
681{
682 if (Options & EOptionRelaxedErrors)
683 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
684 if (Options & EOptionIntermediate)
685 messages = (EShMessages)(messages | EShMsgAST);
686 if (Options & EOptionSuppressWarnings)
687 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600688 if (Options & EOptionSpv)
689 messages = (EShMessages)(messages | EShMsgSpvRules);
690 if (Options & EOptionVulkanRules)
691 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400692 if (Options & EOptionOutputPreprocessed)
693 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700694 if (Options & EOptionReadHlsl)
695 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600696 if (Options & EOptionCascadingErrors)
697 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenich906cc212016-12-09 19:22:20 -0700698 if (Options & EOptionKeepUncalled)
699 messages = (EShMessages)(messages | EShMsgKeepUncalled);
John Kessenich4f1403e2017-04-05 17:38:20 -0600700 if (Options & EOptionHlslOffsets)
701 messages = (EShMessages)(messages | EShMsgHlslOffsets);
John Kessenich121853f2017-05-31 17:11:16 -0600702 if (Options & EOptionDebug)
703 messages = (EShMessages)(messages | EShMsgDebugInfo);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000704}
705
John Kessenich68d78fd2015-07-12 19:28:10 -0600706//
John Kessenich69f4b512013-09-04 21:19:27 +0000707// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000708//
Juan Lopeza558b262017-04-02 23:04:00 +0200709void CompileShaders(glslang::TWorklist& worklist)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000710{
John Kessenich38f3b892013-09-06 19:52:57 +0000711 glslang::TWorkItem* workItem;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200712 if (Options & EOptionStdin) {
713 worklist.remove(workItem);
714 ShHandle compiler = ShConstructCompiler(FindLanguage("stdin"), Options);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000715 if (compiler == 0)
Juan Lopeza558b262017-04-02 23:04:00 +0200716 return;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000717
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200718 CompileFile("stdin", compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000719
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200720 if (! (Options & EOptionSuppressInfolog))
721 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000722
723 ShDestruct(compiler);
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200724 } else {
725 while (worklist.remove(workItem)) {
726 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
727 if (compiler == 0)
728 return;
729
730 CompileFile(workItem->name.c_str(), compiler);
731
732 if (! (Options & EOptionSuppressInfolog))
733 workItem->results = ShGetInfoLog(compiler);
734
735 ShDestruct(compiler);
736 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000737 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000738}
739
John Kessenich6626cad2015-06-19 05:14:19 +0000740// Outputs the given string, but only if it is non-null and non-empty.
741// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400742void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000743{
744 if (str && str[0]) {
745 puts(str);
746 }
747}
748
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400749// Outputs the given string to stderr, but only if it is non-null and non-empty.
750// This prevents erroneous newlines from appearing.
751void StderrIfNonEmpty(const char* str)
752{
John Kessenich04acb1b2017-06-14 17:36:50 -0600753 if (str && str[0])
754 fprintf(stderr, "%s\n", str);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400755}
756
John Kessenichc57b2a92016-01-16 15:30:03 -0700757// Simple bundling of what makes a compilation unit for ease in passing around,
758// and separation of handling file IO versus API (programmatic) compilation.
759struct ShaderCompUnit {
760 EShLanguage stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600761 static const int maxCount = 1;
762 int count; // live number of strings/names
John Kessenicha9313662017-06-15 10:40:49 -0600763 const char* text[maxCount]; // memory owned/managed externally
John Kessenich04acb1b2017-06-14 17:36:50 -0600764 std::string fileName[maxCount]; // hold's the memory, but...
765 const char* fileNameList[maxCount]; // downstream interface wants pointers
dankbakerafe6e9c2016-08-21 12:29:08 -0400766
John Kessenich04acb1b2017-06-14 17:36:50 -0600767 ShaderCompUnit(EShLanguage stage) : stage(stage), count(0) { }
dankbakerafe6e9c2016-08-21 12:29:08 -0400768
John Kessenich04acb1b2017-06-14 17:36:50 -0600769 ShaderCompUnit(const ShaderCompUnit& rhs)
dankbakerafe6e9c2016-08-21 12:29:08 -0400770 {
771 stage = rhs.stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600772 count = rhs.count;
773 for (int i = 0; i < count; ++i) {
774 fileName[i] = rhs.fileName[i];
775 text[i] = rhs.text[i];
776 fileNameList[i] = rhs.fileName[i].c_str();
777 }
dankbakerafe6e9c2016-08-21 12:29:08 -0400778 }
779
John Kessenicha9313662017-06-15 10:40:49 -0600780 void addString(std::string& ifileName, const char* itext)
John Kessenich04acb1b2017-06-14 17:36:50 -0600781 {
782 assert(count < maxCount);
783 fileName[count] = ifileName;
784 text[count] = itext;
785 fileNameList[count] = fileName[count].c_str();
786 ++count;
787 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700788};
789
John Kessenich69f4b512013-09-04 21:19:27 +0000790//
John Kessenichc57b2a92016-01-16 15:30:03 -0700791// For linking mode: Will independently parse each compilation unit, but then put them
792// in the same program and link them together, making at most one linked module per
793// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000794//
795// Uses the new C++ interface instead of the old handle-based interface.
796//
John Kessenichc57b2a92016-01-16 15:30:03 -0700797
798void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000799{
800 // keep track of what to free
801 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700802
John Kessenich69f4b512013-09-04 21:19:27 +0000803 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000804 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000805
John Kessenich69f4b512013-09-04 21:19:27 +0000806 //
807 // Per-shader processing...
808 //
809
John Kessenich5b0f13a2013-11-01 03:08:40 +0000810 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100811 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
812 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700813 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
John Kessenich04acb1b2017-06-14 17:36:50 -0600814 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, compUnit.count);
John Kessenich4d65ee32016-03-12 18:17:47 -0700815 if (entryPointName) // HLSL todo: this needs to be tracked per compUnits
816 shader->setEntryPoint(entryPointName);
John Kessenich3693e632017-09-29 17:51:52 -0600817 if (sourceEntryPointName) {
818 if (entryPointName == nullptr)
819 printf("Warning: Changing source entry point name without setting an entry-point name.\n"
820 "Use '-e <name>'.\n");
steve-lunargf1e0c872016-10-31 15:13:43 -0600821 shader->setSourceEntryPoint(sourceEntryPointName);
John Kessenich3693e632017-09-29 17:51:52 -0600822 }
John Kessenicha9313662017-06-15 10:40:49 -0600823 if (UserPreamble.isSet())
824 shader->setPreamble(UserPreamble.get());
John Kessenich2a271162017-07-20 20:00:36 -0600825 shader->addProcesses(Processes);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600826
LoopDawg08a14422017-10-17 19:27:14 -0600827 // Set IO mapper binding shift values
828 for (int r = 0; r < glslang::EResCount; ++r) {
829 const glslang::TResourceType res = glslang::TResourceType(r);
830
831 // Set base bindings
832 shader->setShiftBinding(res, baseBinding[res][compUnit.stage]);
833
834 // Set bindings for particular resource sets
835 // TODO: use a range based for loop here, when available in all environments.
836 for (auto i = baseBindingForSet[res][compUnit.stage].begin();
837 i != baseBindingForSet[res][compUnit.stage].end(); ++i)
LoopDawge5709552017-10-21 10:46:39 -0600838 shader->setShiftBindingForSet(res, i->second, i->first);
LoopDawg08a14422017-10-17 19:27:14 -0600839 }
840
steve-lunarge0b9deb2016-09-16 13:26:37 -0600841 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
steve-lunargcce8d482016-10-14 18:36:42 -0600842 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
Hyangran Park36dc8292017-05-02 16:27:29 +0900843 shader->setResourceSetBinding(baseResourceSetBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600844
steve-lunargbe283552017-04-18 12:18:01 -0600845 if (Options & EOptionHlslIoMapping)
846 shader->setHlslIoMapping(true);
847
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600848 if (Options & EOptionAutoMapBindings)
849 shader->setAutoMapBindings(true);
John Kessenichecba76f2017-01-06 00:34:48 -0700850
John Kessenich71facdf2017-05-17 18:28:19 -0600851 if (Options & EOptionAutoMapLocations)
852 shader->setAutoMapLocations(true);
853
LoopDawgb22c0692017-12-06 16:52:03 -0700854 if (Options & EOptionInvertY)
855 shader->setInvertY(true);
856
John Kessenich4be4aeb2017-06-23 10:50:22 -0600857 // Set up the environment, some subsettings take precedence over earlier
858 // ways of setting things.
859 if (Options & EOptionSpv) {
860 if (Options & EOptionVulkanRules) {
861 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
862 : glslang::EShSourceGlsl,
John Kessenich6353d552017-06-23 11:11:09 -0600863 compUnit.stage, glslang::EShClientVulkan, ClientInputSemanticsVersion);
864 shader->setEnvClient(glslang::EShClientVulkan, VulkanClientVersion);
John Kessenich22f02d02018-01-31 17:53:24 -0700865 shader->setEnvTarget(glslang::EShTargetSpv, TargetVersion);
John Kessenich4be4aeb2017-06-23 10:50:22 -0600866 } else {
867 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
868 : glslang::EShSourceGlsl,
John Kessenich6353d552017-06-23 11:11:09 -0600869 compUnit.stage, glslang::EShClientOpenGL, ClientInputSemanticsVersion);
870 shader->setEnvClient(glslang::EShClientOpenGL, OpenGLClientVersion);
871 shader->setEnvTarget(glslang::EshTargetSpv, TargetVersion);
John Kessenich4be4aeb2017-06-23 10:50:22 -0600872 }
873 }
874
John Kessenich69f4b512013-09-04 21:19:27 +0000875 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600876
John Kessenich4be4aeb2017-06-23 10:50:22 -0600877 const int defaultVersion = Options & EOptionDefaultDesktop ? 110 : 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000878
John Kessenich3494b4d2017-05-22 15:00:42 -0600879 DirStackFileIncluder includer;
John Kessenich971a0a82017-06-07 15:06:58 -0600880 std::for_each(IncludeDirectoryList.rbegin(), IncludeDirectoryList.rend(), [&includer](const std::string& dir) {
881 includer.pushExternalLocalDirectory(dir); });
John Kessenichc555ddd2015-06-17 02:38:44 +0000882 if (Options & EOptionOutputPreprocessed) {
883 std::string str;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400884 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500885 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400886 PutsIfNonEmpty(str.c_str());
887 } else {
888 CompileFailed = true;
889 }
890 StderrIfNonEmpty(shader->getInfoLog());
891 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000892 continue;
893 }
John Kessenich3494b4d2017-05-22 15:00:42 -0600894 if (! shader->parse(&Resources, defaultVersion, false, messages, includer))
John Kessenichc999ba22013-11-07 23:33:24 +0000895 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000896
John Kessenich69f4b512013-09-04 21:19:27 +0000897 program.addShader(shader);
898
John Kessenichc57b2a92016-01-16 15:30:03 -0700899 if (! (Options & EOptionSuppressInfolog) &&
900 ! (Options & EOptionMemoryLeakMode)) {
John Kessenich04acb1b2017-06-14 17:36:50 -0600901 PutsIfNonEmpty(compUnit.fileName[0].c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400902 PutsIfNonEmpty(shader->getInfoLog());
903 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000904 }
John Kessenich69f4b512013-09-04 21:19:27 +0000905 }
906
907 //
908 // Program-level processing...
909 //
910
John Kessenich4d65ee32016-03-12 18:17:47 -0700911 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600912 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000913 LinkFailed = true;
914
steve-lunarg9ae34742016-10-05 13:40:13 -0600915 // Map IO
916 if (Options & EOptionSpv) {
917 if (!program.mapIO())
918 LinkFailed = true;
919 }
John Kessenichecba76f2017-01-06 00:34:48 -0700920
John Kessenich4d65ee32016-03-12 18:17:47 -0700921 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700922 if (! (Options & EOptionSuppressInfolog) &&
923 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400924 PutsIfNonEmpty(program.getInfoLog());
925 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000926 }
927
John Kessenich4d65ee32016-03-12 18:17:47 -0700928 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000929 if (Options & EOptionDumpReflection) {
930 program.buildReflection();
931 program.dumpReflection();
932 }
933
John Kessenich4d65ee32016-03-12 18:17:47 -0700934 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000935 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000936 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600937 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000938 else {
939 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000940 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000941 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400942 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400943 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -0600944 glslang::SpvOptions spvOptions;
945 if (Options & EOptionDebug)
946 spvOptions.generateDebugInfo = true;
GregF52fe3d52017-09-28 10:08:32 -0600947 spvOptions.disableOptimizer = (Options & EOptionOptimizeDisable) != 0;
948 spvOptions.optimizeSize = (Options & EOptionOptimizeSize) != 0;
John Kessenich121853f2017-05-31 17:11:16 -0600949 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger, &spvOptions);
John Kessenichc57b2a92016-01-16 15:30:03 -0700950
951 // Dump the spv to a file or stdout, etc., but only if not doing
952 // memory/perf testing, as it's not internal to programmatic use.
953 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500954 printf("%s", logger.getAllMessages().c_str());
955 if (Options & EOptionOutputHexadecimal) {
John Kessenich8f674e82017-02-18 09:45:40 -0700956 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage), variableName);
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500957 } else {
958 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
959 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700960 if (Options & EOptionHumanReadableSpv) {
John Kessenichc57b2a92016-01-16 15:30:03 -0700961 spv::Disassemble(std::cout, spirv);
962 }
John Kessenichacba7722015-03-04 03:48:38 +0000963 }
John Kessenicha7a68a92014-08-24 18:21:00 +0000964 }
John Kessenich92f90382014-07-28 04:21:04 +0000965 }
966 }
967 }
968
John Kessenich5b0f13a2013-11-01 03:08:40 +0000969 // Free everything up, program has to go before the shaders
970 // because it might have merged stuff from the shaders, and
971 // the stuff from the shaders has to have its destructors called
972 // before the pools holding the memory in the shaders is freed.
973 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +0000974 while (shaders.size() > 0) {
975 delete shaders.back();
976 shaders.pop_back();
977 }
John Kessenich69f4b512013-09-04 21:19:27 +0000978}
979
John Kessenichc57b2a92016-01-16 15:30:03 -0700980//
981// Do file IO part of compile and link, handing off the pure
982// API/programmatic mode to CompileAndLinkShaderUnits(), which can
983// be put in a loop for testing memory footprint and performance.
984//
985// This is just for linking mode: meaning all the shaders will be put into the
986// the same program linked together.
987//
988// This means there are a limited number of work items (not multi-threading mode)
989// and that the point is testing at the linking level. Hence, to enable
990// performance and memory testing, the actual compile/link can be put in
991// a loop, independent of processing the work items and file IO.
992//
Juan Lopeza558b262017-04-02 23:04:00 +0200993void CompileAndLinkShaderFiles(glslang::TWorklist& Worklist)
John Kessenichc57b2a92016-01-16 15:30:03 -0700994{
995 std::vector<ShaderCompUnit> compUnits;
996
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200997 // If this is using stdin, we can't really detect multiple different file
998 // units by input type. We need to assume that we're just being given one
999 // file of a certain type.
1000 if ((Options & EOptionStdin) != 0) {
1001 ShaderCompUnit compUnit(FindLanguage("stdin"));
1002 std::istreambuf_iterator<char> begin(std::cin), end;
1003 std::string tempString(begin, end);
1004 char* fileText = strdup(tempString.c_str());
1005 std::string fileName = "stdin";
1006 compUnit.addString(fileName, fileText);
John Kessenichc57b2a92016-01-16 15:30:03 -07001007 compUnits.push_back(compUnit);
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001008 } else {
1009 // Transfer all the work items from to a simple list of
1010 // of compilation units. (We don't care about the thread
1011 // work-item distribution properties in this path, which
1012 // is okay due to the limited number of shaders, know since
1013 // they are all getting linked together.)
1014 glslang::TWorkItem* workItem;
1015 while (Worklist.remove(workItem)) {
1016 ShaderCompUnit compUnit(FindLanguage(workItem->name));
1017 char* fileText = ReadFileData(workItem->name.c_str());
1018 if (fileText == nullptr)
1019 usage();
1020 compUnit.addString(workItem->name, fileText);
1021 compUnits.push_back(compUnit);
1022 }
John Kessenichc57b2a92016-01-16 15:30:03 -07001023 }
1024
1025 // Actual call to programmatic processing of compile and link,
1026 // in a loop for testing memory and performance. This part contains
1027 // all the perf/memory that a programmatic consumer will care about.
1028 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1029 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
1030 CompileAndLinkShaderUnits(compUnits);
1031
1032 if (Options & EOptionMemoryLeakMode)
1033 glslang::OS_DumpMemoryCounters();
1034 }
1035
John Kessenicha9313662017-06-15 10:40:49 -06001036 // free memory from ReadFileData, which got stored in a const char*
1037 // as the first string above
rdb32084e82016-02-23 22:17:38 +01001038 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
John Kessenicha9313662017-06-15 10:40:49 -06001039 FreeFileData(const_cast<char*>(it->text[0]));
John Kessenichc57b2a92016-01-16 15:30:03 -07001040}
1041
John Kessenich94f28eb2017-11-13 01:32:06 -07001042int singleMain()
John Kessenicha0af4732012-12-12 21:15:54 +00001043{
Juan Lopeza558b262017-04-02 23:04:00 +02001044 glslang::TWorklist workList;
John Kessenich94f28eb2017-11-13 01:32:06 -07001045 std::for_each(WorkItems.begin(), WorkItems.end(), [&workList](std::unique_ptr<glslang::TWorkItem>& item) {
Juan Lopeza558b262017-04-02 23:04:00 +02001046 assert(item);
1047 workList.add(item.get());
1048 });
John Kessenich2b07c7e2013-07-31 18:44:13 +00001049
John Kessenich05a70632013-09-17 19:26:08 +00001050 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -05001051 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
Juan Lopeza558b262017-04-02 23:04:00 +02001052 if (workList.empty())
John Kessenich05a70632013-09-17 19:26:08 +00001053 return ESuccess;
1054 }
1055
John Kessenichc6c80a62018-03-05 22:23:17 -07001056 if (Options & EOptionDumpBareVersion) {
1057 printf("%d.%d.%d\n",
1058 glslang::GetSpirvGeneratorVersion(), GLSLANG_MINOR_VERSION, GLSLANG_PATCH_LEVEL);
1059 if (workList.empty())
1060 return ESuccess;
1061 } else if (Options & EOptionDumpVersions) {
1062 printf("Glslang Version: %d.%d.%d\n",
1063 glslang::GetSpirvGeneratorVersion(), GLSLANG_MINOR_VERSION, GLSLANG_PATCH_LEVEL);
John Kessenich319de232013-12-04 04:43:40 +00001064 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
1065 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -06001066 std::string spirvVersion;
1067 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -06001068 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -06001069 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -07001070 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenicha372a3e2017-11-02 22:32:14 -06001071 printf("SPIR-V Generator Version %d\n", glslang::GetSpirvGeneratorVersion());
John Kessenichb84313d2016-07-20 16:03:29 -06001072 printf("GL_KHR_vulkan_glsl version %d\n", 100);
1073 printf("ARB_GL_gl_spirv version %d\n", 100);
Juan Lopeza558b262017-04-02 23:04:00 +02001074 if (workList.empty())
John Kessenich319de232013-12-04 04:43:40 +00001075 return ESuccess;
1076 }
1077
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001078 if (workList.empty() && ((Options & EOptionStdin) == 0)) {
John Kessenich05a70632013-09-17 19:26:08 +00001079 usage();
John Kessenich05a70632013-09-17 19:26:08 +00001080 }
1081
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001082 if (Options & EOptionStdin) {
John Kessenich94f28eb2017-11-13 01:32:06 -07001083 WorkItems.push_back(std::unique_ptr<glslang::TWorkItem>{new glslang::TWorkItem("stdin")});
1084 workList.add(WorkItems.back().get());
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001085 }
1086
John Kessenich05a70632013-09-17 19:26:08 +00001087 ProcessConfigFile();
1088
John Kessenich69f4b512013-09-04 21:19:27 +00001089 //
1090 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +00001091 // 1) linking all arguments together, single-threaded, new C++ interface
1092 // 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 +00001093 //
John Kessenichc555ddd2015-06-17 02:38:44 +00001094 if (Options & EOptionLinkProgram ||
1095 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +00001096 glslang::InitializeProcess();
John Kesseniche2c15b42017-11-16 22:48:41 -07001097 glslang::InitializeProcess(); // also test reference counting of users
1098 glslang::InitializeProcess(); // also test reference counting of users
1099 glslang::FinalizeProcess(); // also test reference counting of users
1100 glslang::FinalizeProcess(); // also test reference counting of users
Juan Lopeza558b262017-04-02 23:04:00 +02001101 CompileAndLinkShaderFiles(workList);
John Kessenichc36e1d82013-11-01 17:41:52 +00001102 glslang::FinalizeProcess();
1103 } else {
1104 ShInitialize();
John Kesseniche2c15b42017-11-16 22:48:41 -07001105 ShInitialize(); // also test reference counting of users
1106 ShFinalize(); // also test reference counting of users
John Kessenichc36e1d82013-11-01 17:41:52 +00001107
Juan Lopeza558b262017-04-02 23:04:00 +02001108 bool printShaderNames = workList.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +00001109
John Kesseniche2c15b42017-11-16 22:48:41 -07001110 if (Options & EOptionMultiThreaded) {
Juan Lopeza558b262017-04-02 23:04:00 +02001111 std::array<std::thread, 16> threads;
John Kesseniche2c15b42017-11-16 22:48:41 -07001112 for (unsigned int t = 0; t < threads.size(); ++t) {
Juan Lopeza558b262017-04-02 23:04:00 +02001113 threads[t] = std::thread(CompileShaders, std::ref(workList));
John Kesseniche2c15b42017-11-16 22:48:41 -07001114 if (threads[t].get_id() == std::thread::id()) {
John Kessenichaf527992017-11-02 22:48:15 -06001115 fprintf(stderr, "Failed to create thread\n");
John Kessenich38f3b892013-09-06 19:52:57 +00001116 return EFailThreadCreate;
1117 }
John Kessenicha0af4732012-12-12 21:15:54 +00001118 }
Juan Lopeza558b262017-04-02 23:04:00 +02001119
1120 std::for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); });
John Kessenichc999ba22013-11-07 23:33:24 +00001121 } else
Juan Lopeza558b262017-04-02 23:04:00 +02001122 CompileShaders(workList);
John Kessenich38f3b892013-09-06 19:52:57 +00001123
1124 // Print out all the resulting infologs
John Kessenich94f28eb2017-11-13 01:32:06 -07001125 for (size_t w = 0; w < WorkItems.size(); ++w) {
1126 if (WorkItems[w]) {
1127 if (printShaderNames || WorkItems[w]->results.size() > 0)
1128 PutsIfNonEmpty(WorkItems[w]->name.c_str());
1129 PutsIfNonEmpty(WorkItems[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +00001130 }
1131 }
John Kessenichc36e1d82013-11-01 17:41:52 +00001132
1133 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +00001134 }
John Kessenich2b07c7e2013-07-31 18:44:13 +00001135
John Kessenichc999ba22013-11-07 23:33:24 +00001136 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001137 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +00001138 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001139 return EFailLink;
1140
1141 return 0;
1142}
1143
John Kessenich94f28eb2017-11-13 01:32:06 -07001144int C_DECL main(int argc, char* argv[])
1145{
1146 ProcessArguments(WorkItems, argc, argv);
1147
1148 int ret = 0;
1149
1150 // Loop over the entire init/finalize cycle to watch memory changes
1151 const int iterations = 1;
1152 if (iterations > 1)
1153 glslang::OS_DumpMemoryCounters();
1154 for (int i = 0; i < iterations; ++i) {
1155 ret = singleMain();
1156 if (iterations > 1)
1157 glslang::OS_DumpMemoryCounters();
1158 }
1159
1160 return ret;
1161}
1162
John Kessenicha0af4732012-12-12 21:15:54 +00001163//
1164// Deduce the language from the filename. Files must end in one of the
1165// following extensions:
1166//
John Kessenich2b07c7e2013-07-31 18:44:13 +00001167// .vert = vertex
1168// .tesc = tessellation control
1169// .tese = tessellation evaluation
1170// .geom = geometry
1171// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +00001172// .comp = compute
John Kessenicha0af4732012-12-12 21:15:54 +00001173//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001174EShLanguage FindLanguage(const std::string& name, bool parseSuffix)
John Kessenicha0af4732012-12-12 21:15:54 +00001175{
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001176 size_t ext = 0;
John Kesseniche751bca2017-03-16 11:20:38 -06001177 std::string suffix;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001178
Dan Bakerc6ede892016-08-11 14:06:06 -04001179 if (shaderStageName)
1180 suffix = shaderStageName;
John Kesseniche751bca2017-03-16 11:20:38 -06001181 else {
1182 // Search for a suffix on a filename: e.g, "myfile.frag". If given
1183 // the suffix directly, we skip looking for the '.'
1184 if (parseSuffix) {
1185 ext = name.rfind('.');
1186 if (ext == std::string::npos) {
1187 usage();
1188 return EShLangVertex;
1189 }
1190 ++ext;
1191 }
1192 suffix = name.substr(ext, std::string::npos);
1193 }
dankbaker45d49bc2016-08-08 21:43:07 -04001194
John Kessenich2b07c7e2013-07-31 18:44:13 +00001195 if (suffix == "vert")
1196 return EShLangVertex;
1197 else if (suffix == "tesc")
1198 return EShLangTessControl;
1199 else if (suffix == "tese")
1200 return EShLangTessEvaluation;
1201 else if (suffix == "geom")
1202 return EShLangGeometry;
1203 else if (suffix == "frag")
1204 return EShLangFragment;
John Kessenichc0275792013-08-09 17:14:49 +00001205 else if (suffix == "comp")
1206 return EShLangCompute;
John Kessenich2b07c7e2013-07-31 18:44:13 +00001207
1208 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +00001209 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +00001210}
1211
John Kessenicha0af4732012-12-12 21:15:54 +00001212//
John Kessenichecba76f2017-01-06 00:34:48 -07001213// Read a file's data into a string, and compile it using the old interface ShCompile,
John Kessenich69f4b512013-09-04 21:19:27 +00001214// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +00001215//
John Kessenich51cdd902014-02-18 23:37:57 +00001216void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +00001217{
John Kessenichca3457f2015-05-18 01:59:45 +00001218 int ret = 0;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001219 char* shaderString;
1220 if ((Options & EOptionStdin) != 0) {
1221 std::istreambuf_iterator<char> begin(std::cin), end;
1222 std::string tempString(begin, end);
1223 shaderString = strdup(tempString.c_str());
1224 } else {
1225 shaderString = ReadFileData(fileName);
1226 }
John Kessenich41cf6b52013-06-25 18:10:05 +00001227
1228 // move to length-based strings, rather than null-terminated strings
John Kessenich04acb1b2017-06-14 17:36:50 -06001229 int* lengths = new int[1];
1230 lengths[0] = (int)strlen(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001231
John Kessenich52ac67e2013-05-05 23:46:22 +00001232 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +00001233 SetMessageOptions(messages);
John Kessenichecba76f2017-01-06 00:34:48 -07001234
John Kessenicha9313662017-06-15 10:40:49 -06001235 if (UserPreamble.isSet())
1236 Error("-D and -U options require -l (linking)\n");
1237
John Kessenich94a81fb2013-08-31 02:41:30 +00001238 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1239 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich927608b2017-01-06 12:34:14 -07001240 // ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich04acb1b2017-06-14 17:36:50 -06001241 ret = ShCompile(compiler, &shaderString, 1, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich927608b2017-01-06 12:34:14 -07001242 // const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
John Kessenichecba76f2017-01-06 00:34:48 -07001243 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
John Kessenichea869fb2013-10-28 18:12:06 +00001244 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich927608b2017-01-06 12:34:14 -07001245 // const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
1246 // ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +00001247 }
John Kessenicha0af4732012-12-12 21:15:54 +00001248
John Kessenich94a81fb2013-08-31 02:41:30 +00001249 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +00001250 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +00001251 }
John Kessenicha0af4732012-12-12 21:15:54 +00001252
John Kessenich41cf6b52013-06-25 18:10:05 +00001253 delete [] lengths;
John Kessenich04acb1b2017-06-14 17:36:50 -06001254 FreeFileData(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001255
John Kessenichc999ba22013-11-07 23:33:24 +00001256 if (ret == 0)
1257 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +00001258}
1259
John Kessenicha0af4732012-12-12 21:15:54 +00001260//
1261// print usage to stdout
1262//
1263void usage()
1264{
John Kessenich319de232013-12-04 04:43:40 +00001265 printf("Usage: glslangValidator [option]... [file]...\n"
1266 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001267 "'file' can end in .<stage> for auto-stage classification, where <stage> is:\n"
1268 " .conf to provide a config file that replaces the default configuration\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001269 " (see -c option below for generating a template)\n"
1270 " .vert for a vertex shader\n"
1271 " .tesc for a tessellation control shader\n"
1272 " .tese for a tessellation evaluation shader\n"
1273 " .geom for a geometry shader\n"
1274 " .frag for a fragment shader\n"
1275 " .comp for a compute shader\n"
John Kessenich319de232013-12-04 04:43:40 +00001276 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001277 "Options:\n"
1278 " -C cascading errors; risk crash from accumulation of error recoveries\n"
1279 " -D input is HLSL\n"
John Kessenicha9313662017-06-15 10:40:49 -06001280 " -D<macro=def>\n"
1281 " -D<macro> define a pre-processor macro\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001282 " -E print pre-processed GLSL; cannot be used with -l;\n"
1283 " errors will appear on stderr.\n"
John Kessenich6353d552017-06-23 11:11:09 -06001284 " -G[ver] create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001285 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich6353d552017-06-23 11:11:09 -06001286 " 'ver', when present, is the version of the input semantics,\n"
1287 " which will appear in #define GL_SPIRV ver\n"
1288 " '--client opengl100' is the same as -G100\n"
1289 " a '--target-env' for OpenGL will also imply '-G'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001290 " -H print human readable form of SPIR-V; turns on -V\n"
John Kessenich971a0a82017-06-07 15:06:58 -06001291 " -I<dir> add dir to the include search path; includer's directory\n"
1292 " is searched first, followed by left-to-right order of -I\n"
GregFcd1f1692017-09-21 18:40:22 -06001293 " -Od disables optimization. May cause illegal SPIR-V for HLSL.\n"
1294 " -Os optimizes SPIR-V to minimize size.\n"
John Kesseniche751bca2017-03-16 11:20:38 -06001295 " -S <stage> uses specified stage rather than parsing the file extension\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001296 " choices for <stage> are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich6353d552017-06-23 11:11:09 -06001297 " -U<macro> undefine a pre-processor macro\n"
1298 " -V[ver] create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001299 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich6353d552017-06-23 11:11:09 -06001300 " 'ver', when present, is the version of the input semantics,\n"
1301 " which will appear in #define VULKAN ver\n"
1302 " '--client vulkan100' is the same as -V100\n"
1303 " a '--target-env' for Vulkan will also imply '-V'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001304 " -c configuration dump;\n"
1305 " creates the default configuration file (redirect to a .conf file)\n"
1306 " -d default to desktop (#version 110) when there is no shader #version\n"
1307 " (default is ES version 100)\n"
John Kessenicha25530c2017-09-11 20:13:49 -06001308 " -e <name> specify <name> as the entry-point name\n"
John Kessenich121853f2017-05-31 17:11:16 -06001309 " -g generate debug information\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001310 " -h print this usage message\n"
1311 " -i intermediate tree (glslang AST) is printed out\n"
1312 " -l link all input files together to form a single module\n"
1313 " -m memory leak mode\n"
John Kessenicha25530c2017-09-11 20:13:49 -06001314 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001315 " -q dump reflection query database\n"
John Kessenich2a271162017-07-20 20:00:36 -06001316 " -r synonym for --relaxed-errors\n"
John Kessenichb63f4a32017-11-16 22:32:20 -07001317 " -s silence syntax and semantic error reporting\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001318 " -t multi-threaded mode\n"
1319 " -v print version strings\n"
John Kessenich2a271162017-07-20 20:00:36 -06001320 " -w synonym for --suppress-warnings\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001321 " -x save binary output as text-based 32-bit hexadecimal numbers\n"
1322 " --auto-map-bindings automatically bind uniform variables\n"
1323 " without explicit bindings.\n"
1324 " --amb synonym for --auto-map-bindings\n"
1325 " --auto-map-locations automatically locate input/output lacking\n"
John Kessenichc178f0a2017-06-23 10:58:31 -06001326 " 'location' (fragile, not cross stage)\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001327 " --aml synonym for --auto-map-locations\n"
John Kessenich6353d552017-06-23 11:11:09 -06001328 " --client {vulkan<ver>|opengl<ver>} see -V and -G\n"
John Kessenichc6c80a62018-03-05 22:23:17 -07001329 " -dumpfullversion print bare major.minor.patchlevel\n"
1330 " -dumpversion same as -dumpfullversion\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001331 " --flatten-uniform-arrays flatten uniform texture/sampler arrays to\n"
1332 " scalars\n"
1333 " --fua synonym for --flatten-uniform-arrays\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001334 " --hlsl-offsets Allow block offsets to follow HLSL rules\n"
1335 " Works independently of source language\n"
1336 " --hlsl-iomap Perform IO mapping in HLSL register space\n"
John Kessenichc6c80a62018-03-05 22:23:17 -07001337 " --invert-y | --iy invert position.Y output in vertex shader\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001338 " --keep-uncalled don't eliminate uncalled functions\n"
1339 " --ku synonym for --keep-uncalled\n"
1340 " --no-storage-format use Unknown image format\n"
1341 " --nsf synonym for --no-storage-format\n"
John Kessenich2a271162017-07-20 20:00:36 -06001342 " --relaxed-errors relaxed GLSL semantic error-checking mode\n"
LoopDawg52017192017-07-14 15:15:47 -06001343 " --resource-set-binding [stage] name set binding\n"
1344 " Set descriptor set and binding for individual resources\n"
1345 " --resource-set-binding [stage] set\n"
1346 " Set descriptor set for all resources\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001347 " --rsb [stage] type set binding synonym for --resource-set-binding\n"
1348 " --shift-image-binding [stage] num base binding number for images (uav)\n"
LoopDawge5709552017-10-21 10:46:39 -06001349 " --shift-image-binding [stage] [num set]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001350 " --sib [stage] num synonym for --shift-image-binding\n"
1351 " --shift-sampler-binding [stage] num base binding number for samplers\n"
LoopDawge5709552017-10-21 10:46:39 -06001352 " --shift-sampler-binding [stage] [num set]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001353 " --ssb [stage] num synonym for --shift-sampler-binding\n"
1354 " --shift-ssbo-binding [stage] num base binding number for SSBOs\n"
LoopDawge5709552017-10-21 10:46:39 -06001355 " --shift-ssbo-binding [stage] [num set]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001356 " --sbb [stage] num synonym for --shift-ssbo-binding\n"
1357 " --shift-texture-binding [stage] num base binding number for textures\n"
LoopDawge5709552017-10-21 10:46:39 -06001358 " --shift-texture-binding [stage] [num set]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001359 " --stb [stage] num synonym for --shift-texture-binding\n"
1360 " --shift-uav-binding [stage] num base binding number for UAVs\n"
LoopDawge5709552017-10-21 10:46:39 -06001361 " --shift-uav-binding [stage] [num set]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001362 " --suavb [stage] num synonym for --shift-uav-binding\n"
1363 " --shift-UBO-binding [stage] num base binding number for UBOs\n"
LoopDawge5709552017-10-21 10:46:39 -06001364 " --shift-UBO-binding [stage] [num set]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001365 " --shift-cbuffer-binding [stage] num synonym for --shift-UBO-binding\n"
LoopDawge5709552017-10-21 10:46:39 -06001366 " --shift-cbuffer-binding [stage] [num set]... per-descriptor-set shift values\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001367 " --sub [stage] num synonym for --shift-UBO-binding\n"
John Kessenicha25530c2017-09-11 20:13:49 -06001368 " --source-entrypoint <name> the given shader source function is\n"
1369 " renamed to be the <name> given in -e\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001370 " --sep synonym for --source-entrypoint\n"
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001371 " --stdin Read from stdin instead of from a file.\n"
1372 " You'll have to provide the shader stage\n"
1373 " using -S.\n"
John Kessenich2a271162017-07-20 20:00:36 -06001374 " --suppress-warnings suppress GLSL warnings\n"
1375 " (except as required by #extension : warn)\n"
1376 " --target-env {vulkan1.0|opengl} set the execution environment code will\n"
1377 " execute in (as opposed to language\n"
1378 " semantics selected by --client) defaults:\n"
1379 " 'vulkan1.0' under '--client vulkan<ver>'\n"
1380 " 'opengl' under '--client opengl<ver>'\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001381 " --variable-name <name> Creates a C header file that contains a\n"
1382 " uint32_t array named <name>\n"
1383 " initialized with the shader binary code.\n"
John Kessenichc6c80a62018-03-05 22:23:17 -07001384 " --version synonym for -v\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001385 " --vn <name> synonym for --variable-name <name>\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +00001386 );
John Kessenich68d78fd2015-07-12 19:28:10 -06001387
1388 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +00001389}
1390
John Kessenich3ce4e592014-10-06 19:57:34 +00001391#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +00001392
1393#include <errno.h>
1394
1395int fopen_s(
1396 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +00001397 const char* filename,
1398 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +00001399)
1400{
1401 if (!pFile || !filename || !mode) {
1402 return EINVAL;
1403 }
1404
1405 FILE* f = fopen(filename, mode);
1406 if (! f) {
1407 if (errno != 0) {
1408 return errno;
1409 } else {
1410 return ENOENT;
1411 }
1412 }
1413 *pFile = f;
1414
1415 return 0;
1416}
1417
1418#endif
1419
John Kessenicha0af4732012-12-12 21:15:54 +00001420//
1421// Malloc a string of sufficient size and read a string into it.
1422//
John Kessenich04acb1b2017-06-14 17:36:50 -06001423char* ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +00001424{
John Kessenichb3297152015-07-11 18:01:03 -06001425 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +00001426 int errorCode = fopen_s(&in, fileName, "r");
John Kessenich68d78fd2015-07-12 19:28:10 -06001427 if (errorCode || in == nullptr)
1428 Error("unable to open input file");
John Kessenichecba76f2017-01-06 00:34:48 -07001429
John Kessenich04acb1b2017-06-14 17:36:50 -06001430 int count = 0;
John Kessenicha0af4732012-12-12 21:15:54 +00001431 while (fgetc(in) != EOF)
1432 count++;
1433
John Kessenichd6c72a42014-08-18 19:42:35 +00001434 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001435
John Kessenich04acb1b2017-06-14 17:36:50 -06001436 char* return_data = (char*)malloc(count + 1); // freed in FreeFileData()
1437 if ((int)fread(return_data, 1, count, in) != count) {
1438 free(return_data);
John Kessenich68d78fd2015-07-12 19:28:10 -06001439 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001440 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001441
John Kessenich04acb1b2017-06-14 17:36:50 -06001442 return_data[count] = '\0';
John Kessenicha0af4732012-12-12 21:15:54 +00001443 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001444
John Kessenicha0af4732012-12-12 21:15:54 +00001445 return return_data;
1446}
1447
John Kessenich04acb1b2017-06-14 17:36:50 -06001448void FreeFileData(char* data)
John Kessenicha0af4732012-12-12 21:15:54 +00001449{
John Kessenichb3297152015-07-11 18:01:03 -06001450 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001451}
1452
John Kessenich54d8cda2013-02-11 22:36:01 +00001453void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001454{
John Kessenichfae38ee2015-06-10 23:23:12 +00001455 if (num >= 0 )
1456 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1457 else
1458 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001459}