blob: c0dd50ba56e03b921bd8016285c51605edeb3e08 [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};
John Kessenich5d610ee2018-03-07 18:05:55 -0700104bool targetHlslFunctionality1 = false;
John Kesseniche2156222018-06-11 18:12:15 -0600105bool SpvToolsDisassembler = false;
John Kessenichc3404252018-08-23 15:29:08 -0600106bool SpvToolsValidate = false;
John Kessenich605afc72019-06-17 23:33:09 -0600107bool NaNClamp = false;
John Kessenich94a81fb2013-08-31 02:41:30 +0000108
John Kessenicha0af4732012-12-12 21:15:54 +0000109//
John Kessenich68d78fd2015-07-12 19:28:10 -0600110// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +0000111//
112enum TFailCode {
113 ESuccess = 0,
114 EFailUsage,
115 EFailCompile,
116 EFailLink,
117 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +0000118 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +0000119 EFailLinkerCreate
120};
121
122//
John Kessenich68d78fd2015-07-12 19:28:10 -0600123// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +0000124//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600125EShLanguage FindLanguage(const std::string& name, bool parseSuffix=true);
John Kessenich51cdd902014-02-18 23:37:57 +0000126void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000127void usage();
John Kessenich04acb1b2017-06-14 17:36:50 -0600128char* ReadFileData(const char* fileName);
129void FreeFileData(char* data);
John Kessenich54d8cda2013-02-11 22:36:01 +0000130void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000131
John Kessenichc999ba22013-11-07 23:33:24 +0000132// Globally track if any compile or link failure.
133bool CompileFailed = false;
134bool LinkFailed = false;
135
John Kessenich94f28eb2017-11-13 01:32:06 -0700136// array of unique places to leave the shader names and infologs for the asynchronous compiles
137std::vector<std::unique_ptr<glslang::TWorkItem>> WorkItems;
138
John Kessenich05a70632013-09-17 19:26:08 +0000139TBuiltInResource Resources;
140std::string ConfigFile;
141
John Kessenicha0af4732012-12-12 21:15:54 +0000142//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600143// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000144//
145void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000146{
John Kessenich04acb1b2017-06-14 17:36:50 -0600147 if (ConfigFile.size() == 0)
Lei Zhang414eb602016-03-04 16:22:34 -0500148 Resources = glslang::DefaultTBuiltInResource;
John Kessenich23d27752019-07-28 02:12:10 -0600149#ifndef GLSLANG_WEB
John Kessenich04acb1b2017-06-14 17:36:50 -0600150 else {
151 char* configString = ReadFileData(ConfigFile.c_str());
152 glslang::DecodeResourceLimits(&Resources, configString);
153 FreeFileData(configString);
John Kessenich05a70632013-09-17 19:26:08 +0000154 }
John Kessenich23d27752019-07-28 02:12:10 -0600155#endif
John Kessenicha0af4732012-12-12 21:15:54 +0000156}
157
baldurk6d477852019-01-29 15:45:56 +0000158int ReflectOptions = EShReflectionDefault;
John Kessenich94a81fb2013-08-31 02:41:30 +0000159int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600160const char* ExecutableName = nullptr;
161const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700162const char* entryPointName = nullptr;
steve-lunargf1e0c872016-10-31 15:13:43 -0600163const char* sourceEntryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400164const char* shaderStageName = nullptr;
Flavioaea3c892017-02-06 11:46:35 -0800165const char* variableName = nullptr;
Rex Xucb61eec2018-03-07 13:10:01 +0800166bool HlslEnable16BitTypes = false;
John Kessenichbd1c1832018-12-07 18:38:26 -0700167bool HlslDX9compatible = false;
Christoph Kubisch55ba3ea2019-04-13 22:18:16 +0200168bool DumpBuiltinSymbols = false;
John Kessenich971a0a82017-06-07 15:06:58 -0600169std::vector<std::string> IncludeDirectoryList;
John Kessenich8717a5d2018-10-26 10:12:32 -0600170
171// Source environment
172// (source 'Client' is currently the same as target 'Client')
173int ClientInputSemanticsVersion = 100;
174
175// Target environment
176glslang::EShClient Client = glslang::EShClientNone; // will stay EShClientNone if only validating
177glslang::EShTargetClientVersion ClientVersion; // not valid until Client is set
178glslang::EShTargetLanguage TargetLanguage = glslang::EShTargetNone;
179glslang::EShTargetLanguageVersion TargetVersion; // not valid until TargetLanguage is set
180
John Kessenich66011cb2018-03-06 16:12:04 -0700181std::vector<std::string> Processes; // what should be recorded by OpModuleProcessed, or equivalent
John Kessenich68d78fd2015-07-12 19:28:10 -0600182
LoopDawg08a14422017-10-17 19:27:14 -0600183// Per descriptor-set binding base data
184typedef std::map<unsigned int, unsigned int> TPerSetBaseBinding;
185
Neil Roberts16f53472018-03-20 17:30:53 +0100186std::vector<std::pair<std::string, int>> uniformLocationOverrides;
Neil Robertsb0f3d792018-03-20 17:41:05 +0100187int uniformBase = 0;
Neil Roberts16f53472018-03-20 17:30:53 +0100188
LoopDawg08a14422017-10-17 19:27:14 -0600189std::array<std::array<unsigned int, EShLangCount>, glslang::EResCount> baseBinding;
190std::array<std::array<TPerSetBaseBinding, EShLangCount>, glslang::EResCount> baseBindingForSet;
Hyangran Park36dc8292017-05-02 16:27:29 +0900191std::array<std::vector<std::string>, EShLangCount> baseResourceSetBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600192
John Kessenicha9313662017-06-15 10:40:49 -0600193// Add things like "#define ..." to a preamble to use in the beginning of the shader.
194class TPreamble {
195public:
196 TPreamble() { }
197
198 bool isSet() const { return text.size() > 0; }
199 const char* get() const { return text.c_str(); }
200
201 // #define...
202 void addDef(std::string def)
203 {
204 text.append("#define ");
205 fixLine(def);
206
John Kessenich6f988922020-01-07 07:03:11 -0700207 Processes.push_back("define-macro ");
John Kessenich2a271162017-07-20 20:00:36 -0600208 Processes.back().append(def);
209
John Kessenicha9313662017-06-15 10:40:49 -0600210 // The first "=" needs to turn into a space
LoopDawgb97b25e2017-07-12 09:04:39 -0600211 const size_t equal = def.find_first_of("=");
John Kessenicha9313662017-06-15 10:40:49 -0600212 if (equal != def.npos)
213 def[equal] = ' ';
214
215 text.append(def);
216 text.append("\n");
217 }
218
219 // #undef...
220 void addUndef(std::string undef)
221 {
222 text.append("#undef ");
223 fixLine(undef);
John Kessenich2a271162017-07-20 20:00:36 -0600224
John Kessenich6f988922020-01-07 07:03:11 -0700225 Processes.push_back("undef-macro ");
John Kessenich2a271162017-07-20 20:00:36 -0600226 Processes.back().append(undef);
227
John Kessenicha9313662017-06-15 10:40:49 -0600228 text.append(undef);
229 text.append("\n");
230 }
231
232protected:
233 void fixLine(std::string& line)
234 {
235 // Can't go past a newline in the line
LoopDawgb97b25e2017-07-12 09:04:39 -0600236 const size_t end = line.find_first_of("\n");
John Kessenicha9313662017-06-15 10:40:49 -0600237 if (end != line.npos)
238 line = line.substr(0, end);
239 }
240
241 std::string text; // contents of preamble
242};
243
244TPreamble UserPreamble;
245
John Kessenich68d78fd2015-07-12 19:28:10 -0600246//
247// Create the default name for saving a binary if -o is not provided.
248//
249const char* GetBinaryName(EShLanguage stage)
250{
251 const char* name;
252 if (binaryFileName == nullptr) {
253 switch (stage) {
254 case EShLangVertex: name = "vert.spv"; break;
255 case EShLangTessControl: name = "tesc.spv"; break;
256 case EShLangTessEvaluation: name = "tese.spv"; break;
257 case EShLangGeometry: name = "geom.spv"; break;
258 case EShLangFragment: name = "frag.spv"; break;
259 case EShLangCompute: name = "comp.spv"; break;
Chao Chenb50c02e2018-09-19 11:42:24 -0700260 case EShLangRayGenNV: name = "rgen.spv"; break;
261 case EShLangIntersectNV: name = "rint.spv"; break;
262 case EShLangAnyHitNV: name = "rahit.spv"; break;
263 case EShLangClosestHitNV: name = "rchit.spv"; break;
264 case EShLangMissNV: name = "rmiss.spv"; break;
265 case EShLangCallableNV: name = "rcall.spv"; break;
Chao Chen3c366992018-09-19 11:41:59 -0700266 case EShLangMeshNV: name = "mesh.spv"; break;
267 case EShLangTaskNV: name = "task.spv"; break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600268 default: name = "unknown"; break;
269 }
270 } else
271 name = binaryFileName;
272
273 return name;
274}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000275
John Kessenich05a70632013-09-17 19:26:08 +0000276//
277// *.conf => this is a config file that can set limits/resources
278//
279bool SetConfigFile(const std::string& name)
280{
281 if (name.size() < 5)
282 return false;
283
John Kessenich4c706852013-10-11 16:28:43 +0000284 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000285 ConfigFile = name;
286 return true;
287 }
288
289 return false;
290}
291
John Kessenich68d78fd2015-07-12 19:28:10 -0600292//
293// Give error and exit with failure code.
294//
John Kessenichbd97b6f2019-12-20 10:33:13 -0700295void Error(const char* message, const char* detail = nullptr)
John Kessenich68d78fd2015-07-12 19:28:10 -0600296{
John Kessenichbd97b6f2019-12-20 10:33:13 -0700297 fprintf(stderr, "%s: Error: ", ExecutableName);
298 if (detail != nullptr)
299 fprintf(stderr, "%s: ", detail);
300 fprintf(stderr, "%s (use -h for usage)\n", message);
John Kessenich68d78fd2015-07-12 19:28:10 -0600301 exit(EFailUsage);
302}
303
304//
LoopDawg08a14422017-10-17 19:27:14 -0600305// Process an optional binding base of one the forms:
306// --argname [stage] base // base for stage (if given) or all stages (if not)
LoopDawge5709552017-10-21 10:46:39 -0600307// --argname [stage] [base set]... // set/base pairs: set the base for given binding set.
LoopDawg08a14422017-10-17 19:27:14 -0600308
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600309// Where stage is one of the forms accepted by FindLanguage, and base is an integer
310//
LoopDawg08a14422017-10-17 19:27:14 -0600311void ProcessBindingBase(int& argc, char**& argv, glslang::TResourceType res)
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600312{
313 if (argc < 2)
314 usage();
315
LoopDawg08a14422017-10-17 19:27:14 -0600316 EShLanguage lang = EShLangCount;
317 int singleBase = 0;
318 TPerSetBaseBinding perSetBase;
319 int arg = 1;
320
321 // Parse stage, if given
322 if (!isdigit(argv[arg][0])) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600323 if (argc < 3) // this form needs one more argument
324 usage();
John Kessenichecba76f2017-01-06 00:34:48 -0700325
LoopDawg08a14422017-10-17 19:27:14 -0600326 lang = FindLanguage(argv[arg++], false);
327 }
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600328
LoopDawg08a14422017-10-17 19:27:14 -0600329 if ((argc - arg) > 2 && isdigit(argv[arg+0][0]) && isdigit(argv[arg+1][0])) {
330 // Parse a per-set binding base
331 while ((argc - arg) > 2 && isdigit(argv[arg+0][0]) && isdigit(argv[arg+1][0])) {
LoopDawg08a14422017-10-17 19:27:14 -0600332 const int baseNum = atoi(argv[arg++]);
LoopDawge5709552017-10-21 10:46:39 -0600333 const int setNum = atoi(argv[arg++]);
LoopDawg08a14422017-10-17 19:27:14 -0600334 perSetBase[setNum] = baseNum;
335 }
336 } else {
337 // Parse single binding base
338 singleBase = atoi(argv[arg++]);
339 }
340
341 argc -= (arg-1);
342 argv += (arg-1);
343
344 // Set one or all languages
345 const int langMin = (lang < EShLangCount) ? lang+0 : 0;
346 const int langMax = (lang < EShLangCount) ? lang+1 : EShLangCount;
347
348 for (int lang = langMin; lang < langMax; ++lang) {
349 if (!perSetBase.empty())
John Kessenich251901a2018-08-12 22:05:59 -0600350 baseBindingForSet[res][lang].insert(perSetBase.begin(), perSetBase.end());
LoopDawg08a14422017-10-17 19:27:14 -0600351 else
352 baseBinding[res][lang] = singleBase;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600353 }
354}
355
Hyangran Park36dc8292017-05-02 16:27:29 +0900356void ProcessResourceSetBindingBase(int& argc, char**& argv, std::array<std::vector<std::string>, EShLangCount>& base)
357{
358 if (argc < 2)
359 usage();
360
361 if (!isdigit(argv[1][0])) {
LoopDawg52017192017-07-14 15:15:47 -0600362 if (argc < 3) // this form needs one more argument
Hyangran Park36dc8292017-05-02 16:27:29 +0900363 usage();
364
LoopDawg52017192017-07-14 15:15:47 -0600365 // Parse form: --argname stage [regname set base...], or:
366 // --argname stage set
Hyangran Park36dc8292017-05-02 16:27:29 +0900367 const EShLanguage lang = FindLanguage(argv[1], false);
368
LoopDawg52017192017-07-14 15:15:47 -0600369 argc--;
370 argv++;
371
372 while (argc > 1 && argv[1] != nullptr && argv[1][0] != '-') {
373 base[lang].push_back(argv[1]);
374
375 argc--;
376 argv++;
Hyangran Park36dc8292017-05-02 16:27:29 +0900377 }
LoopDawg52017192017-07-14 15:15:47 -0600378
379 // Must have one arg, or a multiple of three (for [regname set binding] triples)
380 if (base[lang].size() != 1 && (base[lang].size() % 3) != 0)
381 usage();
382
Hyangran Park36dc8292017-05-02 16:27:29 +0900383 } else {
LoopDawg52017192017-07-14 15:15:47 -0600384 // Parse form: --argname set
Hyangran Park36dc8292017-05-02 16:27:29 +0900385 for (int lang=0; lang<EShLangCount; ++lang)
386 base[lang].push_back(argv[1]);
387
388 argc--;
389 argv++;
390 }
391}
392
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600393//
John Kessenich68d78fd2015-07-12 19:28:10 -0600394// Do all command-line argument parsing. This includes building up the work-items
395// to be processed later, and saving all the command-line options.
396//
397// Does not return (it exits) if command-line is fatally flawed.
398//
Juan Lopeza558b262017-04-02 23:04:00 +0200399void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItems, int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000400{
LoopDawg08a14422017-10-17 19:27:14 -0600401 for (int res = 0; res < glslang::EResCount; ++res)
402 baseBinding[res].fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600403
John Kessenich38f3b892013-09-06 19:52:57 +0000404 ExecutableName = argv[0];
Juan Lopeza558b262017-04-02 23:04:00 +0200405 workItems.reserve(argc);
John Kessenich38f3b892013-09-06 19:52:57 +0000406
John Kessenichc178f0a2017-06-23 10:58:31 -0600407 const auto bumpArg = [&]() {
408 if (argc > 0) {
409 argc--;
410 argv++;
411 }
412 };
413
414 // read a string directly attached to a single-letter option
John Kessenich6263fb12017-06-14 15:52:44 -0600415 const auto getStringOperand = [&](const char* desc) {
416 if (argv[0][2] == 0) {
417 printf("%s must immediately follow option (no spaces)\n", desc);
418 exit(EFailUsage);
419 }
420 return argv[0] + 2;
421 };
422
John Kessenich6353d552017-06-23 11:11:09 -0600423 // read a number attached to a single-letter option
424 const auto getAttachedNumber = [&](const char* desc) {
425 int num = atoi(argv[0] + 2);
426 if (num == 0) {
427 printf("%s: expected attached non-0 number\n", desc);
428 exit(EFailUsage);
429 }
430 return num;
431 };
432
433 // minimum needed (without overriding something else) to target Vulkan SPIR-V
434 const auto setVulkanSpv = []() {
John Kessenich8717a5d2018-10-26 10:12:32 -0600435 if (Client == glslang::EShClientNone)
436 ClientVersion = glslang::EShTargetVulkan_1_0;
437 Client = glslang::EShClientVulkan;
John Kessenich6353d552017-06-23 11:11:09 -0600438 Options |= EOptionSpv;
439 Options |= EOptionVulkanRules;
440 Options |= EOptionLinkProgram;
441 };
442
443 // minimum needed (without overriding something else) to target OpenGL SPIR-V
444 const auto setOpenGlSpv = []() {
John Kessenich8717a5d2018-10-26 10:12:32 -0600445 if (Client == glslang::EShClientNone)
446 ClientVersion = glslang::EShTargetOpenGL_450;
447 Client = glslang::EShClientOpenGL;
John Kessenich6353d552017-06-23 11:11:09 -0600448 Options |= EOptionSpv;
449 Options |= EOptionLinkProgram;
450 // undo a -H default to Vulkan
451 Options &= ~EOptionVulkanRules;
452 };
453
Neil Roberts16f53472018-03-20 17:30:53 +0100454 const auto getUniformOverride = [getStringOperand]() {
455 const char *arg = getStringOperand("-u<name>:<location>");
456 const char *split = strchr(arg, ':');
457 if (split == NULL) {
458 printf("%s: missing location\n", arg);
459 exit(EFailUsage);
460 }
461 errno = 0;
462 int location = ::strtol(split + 1, NULL, 10);
463 if (errno) {
464 printf("%s: invalid location\n", arg);
465 exit(EFailUsage);
466 }
467 return std::make_pair(std::string(arg, split - arg), location);
468 };
469
John Kessenichc178f0a2017-06-23 10:58:31 -0600470 for (bumpArg(); argc >= 1; bumpArg()) {
John Kessenich2b07c7e2013-07-31 18:44:13 +0000471 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000472 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600473 case '-':
474 {
475 std::string lowerword(argv[0]+2);
476 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
477
478 // handle --word style options
John Kessenich6263fb12017-06-14 15:52:44 -0600479 if (lowerword == "auto-map-bindings" || // synonyms
John Kessenich6353d552017-06-23 11:11:09 -0600480 lowerword == "auto-map-binding" ||
481 lowerword == "amb") {
John Kessenich6263fb12017-06-14 15:52:44 -0600482 Options |= EOptionAutoMapBindings;
483 } else if (lowerword == "auto-map-locations" || // synonyms
484 lowerword == "aml") {
485 Options |= EOptionAutoMapLocations;
Neil Robertsb0f3d792018-03-20 17:41:05 +0100486 } else if (lowerword == "uniform-base") {
487 if (argc <= 1)
John Kessenichbd97b6f2019-12-20 10:33:13 -0700488 Error("no <base> provided", lowerword.c_str());
Neil Robertsb0f3d792018-03-20 17:41:05 +0100489 uniformBase = ::strtol(argv[1], NULL, 10);
490 bumpArg();
491 break;
John Kessenich6353d552017-06-23 11:11:09 -0600492 } else if (lowerword == "client") {
493 if (argc > 1) {
494 if (strcmp(argv[1], "vulkan100") == 0)
495 setVulkanSpv();
496 else if (strcmp(argv[1], "opengl100") == 0)
497 setOpenGlSpv();
498 else
John Kessenichbd97b6f2019-12-20 10:33:13 -0700499 Error("expects vulkan100 or opengl100", lowerword.c_str());
500 } else
501 Error("expects vulkan100 or opengl100", lowerword.c_str());
John Kessenich6353d552017-06-23 11:11:09 -0600502 bumpArg();
John Kessenich6f988922020-01-07 07:03:11 -0700503 } else if (lowerword == "define-macro" ||
504 lowerword == "d") {
505 if (argc > 1)
506 UserPreamble.addDef(argv[1]);
507 else
508 Error("expects <name[=def]>", argv[0]);
509 bumpArg();
Christoph Kubisch55ba3ea2019-04-13 22:18:16 +0200510 } else if (lowerword == "dump-builtin-symbols") {
511 DumpBuiltinSymbols = true;
John Kessenich640bd092018-08-09 14:15:00 -0600512 } else if (lowerword == "entry-point") {
513 entryPointName = argv[1];
514 if (argc <= 1)
John Kessenichbd97b6f2019-12-20 10:33:13 -0700515 Error("no <name> provided", lowerword.c_str());
John Kessenich640bd092018-08-09 14:15:00 -0600516 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600517 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
518 lowerword == "flatten-uniform-array" ||
519 lowerword == "fua") {
520 Options |= EOptionFlattenUniformArrays;
521 } else if (lowerword == "hlsl-offsets") {
522 Options |= EOptionHlslOffsets;
523 } else if (lowerword == "hlsl-iomap" ||
524 lowerword == "hlsl-iomapper" ||
525 lowerword == "hlsl-iomapping") {
526 Options |= EOptionHlslIoMapping;
Rex Xucb61eec2018-03-07 13:10:01 +0800527 } else if (lowerword == "hlsl-enable-16bit-types") {
528 HlslEnable16BitTypes = true;
John Kessenichbd1c1832018-12-07 18:38:26 -0700529 } else if (lowerword == "hlsl-dx9-compatible") {
530 HlslDX9compatible = true;
John Kessenichc6c80a62018-03-05 22:23:17 -0700531 } else if (lowerword == "invert-y" || // synonyms
532 lowerword == "iy") {
533 Options |= EOptionInvertY;
John Kessenich6263fb12017-06-14 15:52:44 -0600534 } else if (lowerword == "keep-uncalled" || // synonyms
535 lowerword == "ku") {
536 Options |= EOptionKeepUncalled;
John Kessenich605afc72019-06-17 23:33:09 -0600537 } else if (lowerword == "nan-clamp") {
538 NaNClamp = true;
John Kessenich6263fb12017-06-14 15:52:44 -0600539 } else if (lowerword == "no-storage-format" || // synonyms
540 lowerword == "nsf") {
541 Options |= EOptionNoStorageFormat;
John Kessenich2a271162017-07-20 20:00:36 -0600542 } else if (lowerword == "relaxed-errors") {
543 Options |= EOptionRelaxedErrors;
baldurk15c37f72019-01-29 12:12:59 +0000544 } else if (lowerword == "reflect-strict-array-suffix") {
545 ReflectOptions |= EShReflectionStrictArraySuffix;
baldurkedf82122019-01-29 15:49:00 +0000546 } else if (lowerword == "reflect-basic-array-suffix") {
547 ReflectOptions |= EShReflectionBasicArraySuffix;
baldurk0af5e3e2019-01-29 16:04:44 +0000548 } else if (lowerword == "reflect-intermediate-io") {
549 ReflectOptions |= EShReflectionIntermediateIO;
baldurk657acc02019-01-30 14:18:43 +0000550 } else if (lowerword == "reflect-separate-buffers") {
551 ReflectOptions |= EShReflectionSeparateBuffers;
baldurka972e732019-01-30 15:34:02 +0000552 } else if (lowerword == "reflect-all-block-variables") {
553 ReflectOptions |= EShReflectionAllBlockVariables;
baldurk19050692019-02-11 11:50:24 +0000554 } else if (lowerword == "reflect-unwrap-io-blocks") {
555 ReflectOptions |= EShReflectionUnwrapIOBlocks;
John Kessenich6263fb12017-06-14 15:52:44 -0600556 } else if (lowerword == "resource-set-bindings" || // synonyms
557 lowerword == "resource-set-binding" ||
558 lowerword == "rsb") {
559 ProcessResourceSetBindingBase(argc, argv, baseResourceSetBinding);
steve-lunarg9088be42016-11-01 10:31:42 -0600560 } else if (lowerword == "shift-image-bindings" || // synonyms
561 lowerword == "shift-image-binding" ||
562 lowerword == "sib") {
LoopDawg08a14422017-10-17 19:27:14 -0600563 ProcessBindingBase(argc, argv, glslang::EResImage);
John Kessenich6263fb12017-06-14 15:52:44 -0600564 } else if (lowerword == "shift-sampler-bindings" || // synonyms
John Kessenichade8bbb2018-08-12 21:24:55 -0600565 lowerword == "shift-sampler-binding" ||
566 lowerword == "ssb") {
LoopDawg08a14422017-10-17 19:27:14 -0600567 ProcessBindingBase(argc, argv, glslang::EResSampler);
John Kessenich6263fb12017-06-14 15:52:44 -0600568 } else if (lowerword == "shift-uav-bindings" || // synonyms
569 lowerword == "shift-uav-binding" ||
570 lowerword == "suavb") {
LoopDawg08a14422017-10-17 19:27:14 -0600571 ProcessBindingBase(argc, argv, glslang::EResUav);
John Kessenich6263fb12017-06-14 15:52:44 -0600572 } else if (lowerword == "shift-texture-bindings" || // synonyms
573 lowerword == "shift-texture-binding" ||
574 lowerword == "stb") {
LoopDawg08a14422017-10-17 19:27:14 -0600575 ProcessBindingBase(argc, argv, glslang::EResTexture);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600576 } else if (lowerword == "shift-ubo-bindings" || // synonyms
577 lowerword == "shift-ubo-binding" ||
steve-lunargbe283552017-04-18 12:18:01 -0600578 lowerword == "shift-cbuffer-bindings" ||
579 lowerword == "shift-cbuffer-binding" ||
580 lowerword == "sub" ||
581 lowerword == "scb") {
LoopDawg08a14422017-10-17 19:27:14 -0600582 ProcessBindingBase(argc, argv, glslang::EResUbo);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700583 } else if (lowerword == "shift-ssbo-bindings" || // synonyms
584 lowerword == "shift-ssbo-binding" ||
585 lowerword == "sbb") {
LoopDawg08a14422017-10-17 19:27:14 -0600586 ProcessBindingBase(argc, argv, glslang::EResSsbo);
John Kessenich6263fb12017-06-14 15:52:44 -0600587 } else if (lowerword == "source-entrypoint" || // synonyms
588 lowerword == "sep") {
John Kessenichc178f0a2017-06-23 10:58:31 -0600589 if (argc <= 1)
John Kessenichbd97b6f2019-12-20 10:33:13 -0700590 Error("no <entry-point> provided", lowerword.c_str());
John Kessenichc178f0a2017-06-23 10:58:31 -0600591 sourceEntryPointName = argv[1];
592 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600593 break;
John Kesseniche2156222018-06-11 18:12:15 -0600594 } else if (lowerword == "spirv-dis") {
595 SpvToolsDisassembler = true;
John Kessenichc3404252018-08-23 15:29:08 -0600596 } else if (lowerword == "spirv-val") {
597 SpvToolsValidate = true;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200598 } else if (lowerword == "stdin") {
599 Options |= EOptionStdin;
600 shaderStageName = argv[1];
John Kessenich2a271162017-07-20 20:00:36 -0600601 } else if (lowerword == "suppress-warnings") {
602 Options |= EOptionSuppressWarnings;
John Kessenich6353d552017-06-23 11:11:09 -0600603 } else if (lowerword == "target-env") {
604 if (argc > 1) {
605 if (strcmp(argv[1], "vulkan1.0") == 0) {
606 setVulkanSpv();
John Kessenich8717a5d2018-10-26 10:12:32 -0600607 ClientVersion = glslang::EShTargetVulkan_1_0;
John Kessenich66011cb2018-03-06 16:12:04 -0700608 } else if (strcmp(argv[1], "vulkan1.1") == 0) {
609 setVulkanSpv();
John Kessenich8717a5d2018-10-26 10:12:32 -0600610 ClientVersion = glslang::EShTargetVulkan_1_1;
John Kessenich273d3a52020-01-15 00:10:41 -0700611 } else if (strcmp(argv[1], "vulkan1.2") == 0) {
612 setVulkanSpv();
613 ClientVersion = glslang::EShTargetVulkan_1_2;
John Kessenich6353d552017-06-23 11:11:09 -0600614 } else if (strcmp(argv[1], "opengl") == 0) {
615 setOpenGlSpv();
John Kessenich8717a5d2018-10-26 10:12:32 -0600616 ClientVersion = glslang::EShTargetOpenGL_450;
617 } else if (strcmp(argv[1], "spirv1.0") == 0) {
618 TargetLanguage = glslang::EShTargetSpv;
619 TargetVersion = glslang::EShTargetSpv_1_0;
620 } else if (strcmp(argv[1], "spirv1.1") == 0) {
621 TargetLanguage = glslang::EShTargetSpv;
622 TargetVersion = glslang::EShTargetSpv_1_1;
623 } else if (strcmp(argv[1], "spirv1.2") == 0) {
624 TargetLanguage = glslang::EShTargetSpv;
625 TargetVersion = glslang::EShTargetSpv_1_2;
626 } else if (strcmp(argv[1], "spirv1.3") == 0) {
627 TargetLanguage = glslang::EShTargetSpv;
628 TargetVersion = glslang::EShTargetSpv_1_3;
629 } else if (strcmp(argv[1], "spirv1.4") == 0) {
630 TargetLanguage = glslang::EShTargetSpv;
631 TargetVersion = glslang::EShTargetSpv_1_4;
John Kessenich8317e6c2019-08-18 23:58:08 -0600632 } else if (strcmp(argv[1], "spirv1.5") == 0) {
633 TargetLanguage = glslang::EShTargetSpv;
634 TargetVersion = glslang::EShTargetSpv_1_5;
John Kessenich6353d552017-06-23 11:11:09 -0600635 } else
John Kessenich273d3a52020-01-15 00:10:41 -0700636 Error("--target-env expected one of: vulkan1.0, vulkan1.1, vulkan1.2, opengl,\n"
John Kessenich8317e6c2019-08-18 23:58:08 -0600637 "spirv1.0, spirv1.1, spirv1.2, spirv1.3, spirv1.4, or spirv1.5");
John Kessenich6353d552017-06-23 11:11:09 -0600638 }
639 bumpArg();
John Kessenich6f988922020-01-07 07:03:11 -0700640 } else if (lowerword == "undef-macro" ||
641 lowerword == "u") {
642 if (argc > 1)
643 UserPreamble.addUndef(argv[1]);
644 else
645 Error("expects <name>", argv[0]);
646 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800647 } else if (lowerword == "variable-name" || // synonyms
John Kessenich66011cb2018-03-06 16:12:04 -0700648 lowerword == "vn") {
Flavio15017db2017-02-15 14:29:33 -0800649 Options |= EOptionOutputHexadecimal;
John Kessenichc178f0a2017-06-23 10:58:31 -0600650 if (argc <= 1)
John Kessenichbd97b6f2019-12-20 10:33:13 -0700651 Error("no <C-variable-name> provided", lowerword.c_str());
John Kessenichc178f0a2017-06-23 10:58:31 -0600652 variableName = argv[1];
653 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800654 break;
John Kessenichc6c80a62018-03-05 22:23:17 -0700655 } else if (lowerword == "version") {
656 Options |= EOptionDumpVersions;
Jordan Justen6ad120e2020-01-28 12:18:12 -0800657 } else if (lowerword == "help") {
658 usage();
659 break;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600660 } else {
John Kessenichbd97b6f2019-12-20 10:33:13 -0700661 Error("unrecognized command-line option", argv[0]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600662 }
663 }
664 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600665 case 'C':
666 Options |= EOptionCascadingErrors;
667 break;
668 case 'D':
John Kessenicha9313662017-06-15 10:40:49 -0600669 if (argv[0][2] == 0)
670 Options |= EOptionReadHlsl;
671 else
John Kessenich6f988922020-01-07 07:03:11 -0700672 UserPreamble.addDef(getStringOperand("-D<name[=def]>"));
John Kessenich6263fb12017-06-14 15:52:44 -0600673 break;
Neil Roberts16f53472018-03-20 17:30:53 +0100674 case 'u':
675 uniformLocationOverrides.push_back(getUniformOverride());
676 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600677 case 'E':
678 Options |= EOptionOutputPreprocessed;
679 break;
680 case 'G':
John Kessenich8717a5d2018-10-26 10:12:32 -0600681 // OpenGL client
John Kessenich6353d552017-06-23 11:11:09 -0600682 setOpenGlSpv();
683 if (argv[0][2] != 0)
684 ClientInputSemanticsVersion = getAttachedNumber("-G<num> client input semantics");
John Kessenich6263fb12017-06-14 15:52:44 -0600685 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000686 case 'H':
687 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600688 if ((Options & EOptionSpv) == 0) {
689 // default to Vulkan
John Kessenich6353d552017-06-23 11:11:09 -0600690 setVulkanSpv();
John Kessenich91e4aa52016-07-07 17:46:42 -0600691 }
692 break;
John Kessenich971a0a82017-06-07 15:06:58 -0600693 case 'I':
John Kessenicha9313662017-06-15 10:40:49 -0600694 IncludeDirectoryList.push_back(getStringOperand("-I<dir> include path"));
John Kessenich68d78fd2015-07-12 19:28:10 -0600695 break;
GregFcd1f1692017-09-21 18:40:22 -0600696 case 'O':
697 if (argv[0][2] == 'd')
698 Options |= EOptionOptimizeDisable;
699 else if (argv[0][2] == 's')
GregFfb03a552018-03-29 11:49:14 -0600700#if ENABLE_OPT
GregFcd1f1692017-09-21 18:40:22 -0600701 Options |= EOptionOptimizeSize;
702#else
703 Error("-Os not available; optimizer not linked");
704#endif
705 else
706 Error("unknown -O option");
707 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400708 case 'S':
John Kessenichc178f0a2017-06-23 10:58:31 -0600709 if (argc <= 1)
Dan Baker5afdd782016-08-11 17:53:57 -0400710 Error("no <stage> specified for -S");
John Kessenichc178f0a2017-06-23 10:58:31 -0600711 shaderStageName = argv[1];
712 bumpArg();
dankbaker45d49bc2016-08-08 21:43:07 -0400713 break;
John Kessenicha9313662017-06-15 10:40:49 -0600714 case 'U':
John Kessenich6f988922020-01-07 07:03:11 -0700715 UserPreamble.addUndef(getStringOperand("-U<name>"));
John Kessenicha9313662017-06-15 10:40:49 -0600716 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600717 case 'V':
John Kessenich6353d552017-06-23 11:11:09 -0600718 setVulkanSpv();
719 if (argv[0][2] != 0)
David Neto506d2c22018-02-27 21:55:23 -0500720 ClientInputSemanticsVersion = getAttachedNumber("-V<num> client input semantics");
John Kessenichc555ddd2015-06-17 02:38:44 +0000721 break;
John Kessenich05a70632013-09-17 19:26:08 +0000722 case 'c':
723 Options |= EOptionDumpConfig;
724 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000725 case 'd':
John Kessenichc6c80a62018-03-05 22:23:17 -0700726 if (strncmp(&argv[0][1], "dumpversion", strlen(&argv[0][1]) + 1) == 0 ||
727 strncmp(&argv[0][1], "dumpfullversion", strlen(&argv[0][1]) + 1) == 0)
728 Options |= EOptionDumpBareVersion;
729 else
730 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000731 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700732 case 'e':
John Kessenich4d65ee32016-03-12 18:17:47 -0700733 entryPointName = argv[1];
John Kessenichc178f0a2017-06-23 10:58:31 -0600734 if (argc <= 1)
John Kessenicha25530c2017-09-11 20:13:49 -0600735 Error("no <name> provided for -e");
John Kessenichc178f0a2017-06-23 10:58:31 -0600736 bumpArg();
John Kessenich4d65ee32016-03-12 18:17:47 -0700737 break;
John Kessenich5d610ee2018-03-07 18:05:55 -0700738 case 'f':
739 if (strcmp(&argv[0][2], "hlsl_functionality1") == 0)
740 targetHlslFunctionality1 = true;
741 else
742 Error("-f: expected hlsl_functionality1");
743 break;
John Kessenich121853f2017-05-31 17:11:16 -0600744 case 'g':
745 Options |= EOptionDebug;
746 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600747 case 'h':
748 usage();
749 break;
John Kessenich05a70632013-09-17 19:26:08 +0000750 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000751 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000752 break;
753 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000754 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000755 break;
756 case 'm':
757 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000758 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600759 case 'o':
John Kessenichc178f0a2017-06-23 10:58:31 -0600760 if (argc <= 1)
John Kessenich68d78fd2015-07-12 19:28:10 -0600761 Error("no <file> provided for -o");
John Kessenichc178f0a2017-06-23 10:58:31 -0600762 binaryFileName = argv[1];
763 bumpArg();
John Kessenich68d78fd2015-07-12 19:28:10 -0600764 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000765 case 'q':
766 Options |= EOptionDumpReflection;
767 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000768 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000769 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000770 break;
771 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000772 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000773 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000774 case 't':
Juan Lopeza558b262017-04-02 23:04:00 +0200775 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000776 break;
John Kessenich319de232013-12-04 04:43:40 +0000777 case 'v':
778 Options |= EOptionDumpVersions;
779 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000780 case 'w':
781 Options |= EOptionSuppressWarnings;
782 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500783 case 'x':
784 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500785 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000786 default:
John Kessenichbd97b6f2019-12-20 10:33:13 -0700787 Error("unrecognized command-line option", argv[0]);
John Kessenich68d78fd2015-07-12 19:28:10 -0600788 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000789 }
John Kessenich38f3b892013-09-06 19:52:57 +0000790 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000791 std::string name(argv[0]);
792 if (! SetConfigFile(name)) {
Juan Lopeza558b262017-04-02 23:04:00 +0200793 workItems.push_back(std::unique_ptr<glslang::TWorkItem>(new glslang::TWorkItem(name)));
John Kessenich05a70632013-09-17 19:26:08 +0000794 }
John Kessenich38f3b892013-09-06 19:52:57 +0000795 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000796 }
797
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200798 // Make sure that -S is always specified if --stdin is specified
799 if ((Options & EOptionStdin) && shaderStageName == nullptr)
800 Error("must provide -S when --stdin is given");
801
John Kessenich68d78fd2015-07-12 19:28:10 -0600802 // Make sure that -E is not specified alongside linking (which includes SPV generation)
John Kesseniche5c394b2019-07-02 09:32:48 -0600803 // Or things that require linking
804 if (Options & EOptionOutputPreprocessed) {
805 if (Options & EOptionLinkProgram)
806 Error("can't use -E when linking is selected");
807 if (Options & EOptionDumpReflection)
808 Error("reflection requires linking, which can't be used when -E when is selected");
809 }
810
811 // reflection requires linking
812 if ((Options & EOptionDumpReflection) && !(Options & EOptionLinkProgram))
813 Error("reflection requires -l for linking");
John Kessenichc555ddd2015-06-17 02:38:44 +0000814
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500815 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600816 if (binaryFileName && (Options & EOptionSpv) == 0)
817 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600818
819 if ((Options & EOptionFlattenUniformArrays) != 0 &&
820 (Options & EOptionReadHlsl) == 0)
821 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich8717a5d2018-10-26 10:12:32 -0600822
823 // rationalize client and target language
824 if (TargetLanguage == glslang::EShTargetNone) {
825 switch (ClientVersion) {
826 case glslang::EShTargetVulkan_1_0:
827 TargetLanguage = glslang::EShTargetSpv;
828 TargetVersion = glslang::EShTargetSpv_1_0;
829 break;
830 case glslang::EShTargetVulkan_1_1:
831 TargetLanguage = glslang::EShTargetSpv;
832 TargetVersion = glslang::EShTargetSpv_1_3;
833 break;
John Kessenich273d3a52020-01-15 00:10:41 -0700834 case glslang::EShTargetVulkan_1_2:
835 TargetLanguage = glslang::EShTargetSpv;
836 TargetVersion = glslang::EShTargetSpv_1_5;
837 break;
John Kessenich8717a5d2018-10-26 10:12:32 -0600838 case glslang::EShTargetOpenGL_450:
839 TargetLanguage = glslang::EShTargetSpv;
840 TargetVersion = glslang::EShTargetSpv_1_0;
841 break;
842 default:
843 break;
844 }
845 }
846 if (TargetLanguage != glslang::EShTargetNone && Client == glslang::EShClientNone)
847 Error("To generate SPIR-V, also specify client semantics. See -G and -V.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000848}
849
John Kessenich68d78fd2015-07-12 19:28:10 -0600850//
851// Translate the meaningful subset of command-line options to parser-behavior options.
852//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000853void SetMessageOptions(EShMessages& messages)
854{
855 if (Options & EOptionRelaxedErrors)
856 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
857 if (Options & EOptionIntermediate)
858 messages = (EShMessages)(messages | EShMsgAST);
859 if (Options & EOptionSuppressWarnings)
860 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600861 if (Options & EOptionSpv)
862 messages = (EShMessages)(messages | EShMsgSpvRules);
863 if (Options & EOptionVulkanRules)
864 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400865 if (Options & EOptionOutputPreprocessed)
866 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700867 if (Options & EOptionReadHlsl)
868 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600869 if (Options & EOptionCascadingErrors)
870 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenich906cc212016-12-09 19:22:20 -0700871 if (Options & EOptionKeepUncalled)
872 messages = (EShMessages)(messages | EShMsgKeepUncalled);
John Kessenich4f1403e2017-04-05 17:38:20 -0600873 if (Options & EOptionHlslOffsets)
874 messages = (EShMessages)(messages | EShMsgHlslOffsets);
John Kessenich121853f2017-05-31 17:11:16 -0600875 if (Options & EOptionDebug)
876 messages = (EShMessages)(messages | EShMsgDebugInfo);
Rex Xucb61eec2018-03-07 13:10:01 +0800877 if (HlslEnable16BitTypes)
878 messages = (EShMessages)(messages | EShMsgHlslEnable16BitTypes);
GregFfb03a552018-03-29 11:49:14 -0600879 if ((Options & EOptionOptimizeDisable) || !ENABLE_OPT)
880 messages = (EShMessages)(messages | EShMsgHlslLegalization);
John Kessenichbd1c1832018-12-07 18:38:26 -0700881 if (HlslDX9compatible)
882 messages = (EShMessages)(messages | EShMsgHlslDX9Compatible);
Christoph Kubisch55ba3ea2019-04-13 22:18:16 +0200883 if (DumpBuiltinSymbols)
884 messages = (EShMessages)(messages | EShMsgBuiltinSymbolTable);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000885}
886
John Kessenich68d78fd2015-07-12 19:28:10 -0600887//
John Kessenich69f4b512013-09-04 21:19:27 +0000888// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000889//
Juan Lopeza558b262017-04-02 23:04:00 +0200890void CompileShaders(glslang::TWorklist& worklist)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000891{
John Kessenich7f0bcfd2018-04-05 19:00:01 -0600892 if (Options & EOptionDebug)
893 Error("cannot generate debug information unless linking to generate code");
894
John Kessenich38f3b892013-09-06 19:52:57 +0000895 glslang::TWorkItem* workItem;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200896 if (Options & EOptionStdin) {
John Kesseniche7f9cae2018-07-12 15:11:07 -0600897 if (worklist.remove(workItem)) {
898 ShHandle compiler = ShConstructCompiler(FindLanguage("stdin"), Options);
899 if (compiler == nullptr)
900 return;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000901
John Kesseniche7f9cae2018-07-12 15:11:07 -0600902 CompileFile("stdin", compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000903
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200904 if (! (Options & EOptionSuppressInfolog))
905 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000906
John Kesseniche7f9cae2018-07-12 15:11:07 -0600907 ShDestruct(compiler);
908 }
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200909 } else {
910 while (worklist.remove(workItem)) {
911 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
912 if (compiler == 0)
913 return;
914
915 CompileFile(workItem->name.c_str(), compiler);
916
917 if (! (Options & EOptionSuppressInfolog))
918 workItem->results = ShGetInfoLog(compiler);
919
920 ShDestruct(compiler);
921 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000922 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000923}
924
John Kessenich6626cad2015-06-19 05:14:19 +0000925// Outputs the given string, but only if it is non-null and non-empty.
926// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400927void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000928{
929 if (str && str[0]) {
930 puts(str);
931 }
932}
933
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400934// Outputs the given string to stderr, but only if it is non-null and non-empty.
935// This prevents erroneous newlines from appearing.
936void StderrIfNonEmpty(const char* str)
937{
John Kessenich04acb1b2017-06-14 17:36:50 -0600938 if (str && str[0])
939 fprintf(stderr, "%s\n", str);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400940}
941
John Kessenichc57b2a92016-01-16 15:30:03 -0700942// Simple bundling of what makes a compilation unit for ease in passing around,
943// and separation of handling file IO versus API (programmatic) compilation.
944struct ShaderCompUnit {
945 EShLanguage stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600946 static const int maxCount = 1;
947 int count; // live number of strings/names
John Kessenicha9313662017-06-15 10:40:49 -0600948 const char* text[maxCount]; // memory owned/managed externally
John Kessenich04acb1b2017-06-14 17:36:50 -0600949 std::string fileName[maxCount]; // hold's the memory, but...
950 const char* fileNameList[maxCount]; // downstream interface wants pointers
dankbakerafe6e9c2016-08-21 12:29:08 -0400951
John Kessenich04acb1b2017-06-14 17:36:50 -0600952 ShaderCompUnit(EShLanguage stage) : stage(stage), count(0) { }
dankbakerafe6e9c2016-08-21 12:29:08 -0400953
John Kessenich04acb1b2017-06-14 17:36:50 -0600954 ShaderCompUnit(const ShaderCompUnit& rhs)
dankbakerafe6e9c2016-08-21 12:29:08 -0400955 {
956 stage = rhs.stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600957 count = rhs.count;
958 for (int i = 0; i < count; ++i) {
959 fileName[i] = rhs.fileName[i];
960 text[i] = rhs.text[i];
961 fileNameList[i] = rhs.fileName[i].c_str();
962 }
dankbakerafe6e9c2016-08-21 12:29:08 -0400963 }
964
John Kessenicha9313662017-06-15 10:40:49 -0600965 void addString(std::string& ifileName, const char* itext)
John Kessenich04acb1b2017-06-14 17:36:50 -0600966 {
967 assert(count < maxCount);
968 fileName[count] = ifileName;
969 text[count] = itext;
970 fileNameList[count] = fileName[count].c_str();
971 ++count;
972 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700973};
974
John Kessenich69f4b512013-09-04 21:19:27 +0000975//
John Kessenichc57b2a92016-01-16 15:30:03 -0700976// For linking mode: Will independently parse each compilation unit, but then put them
977// in the same program and link them together, making at most one linked module per
978// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000979//
980// Uses the new C++ interface instead of the old handle-based interface.
981//
John Kessenichc57b2a92016-01-16 15:30:03 -0700982
983void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000984{
985 // keep track of what to free
986 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700987
John Kessenich69f4b512013-09-04 21:19:27 +0000988 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000989 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000990
John Kessenich69f4b512013-09-04 21:19:27 +0000991 //
992 // Per-shader processing...
993 //
994
John Kessenich5b0f13a2013-11-01 03:08:40 +0000995 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100996 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
997 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700998 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
John Kessenich04acb1b2017-06-14 17:36:50 -0600999 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, compUnit.count);
John Kessenich640bd092018-08-09 14:15:00 -06001000 if (entryPointName)
John Kessenich4d65ee32016-03-12 18:17:47 -07001001 shader->setEntryPoint(entryPointName);
John Kessenich3693e632017-09-29 17:51:52 -06001002 if (sourceEntryPointName) {
1003 if (entryPointName == nullptr)
1004 printf("Warning: Changing source entry point name without setting an entry-point name.\n"
1005 "Use '-e <name>'.\n");
steve-lunargf1e0c872016-10-31 15:13:43 -06001006 shader->setSourceEntryPoint(sourceEntryPointName);
John Kessenich3693e632017-09-29 17:51:52 -06001007 }
John Kessenicha9313662017-06-15 10:40:49 -06001008 if (UserPreamble.isSet())
1009 shader->setPreamble(UserPreamble.get());
John Kessenich2a271162017-07-20 20:00:36 -06001010 shader->addProcesses(Processes);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001011
John Kessenich155d3512019-08-08 23:29:20 -06001012#ifndef GLSLANG_WEB
LoopDawg08a14422017-10-17 19:27:14 -06001013 // Set IO mapper binding shift values
1014 for (int r = 0; r < glslang::EResCount; ++r) {
1015 const glslang::TResourceType res = glslang::TResourceType(r);
1016
1017 // Set base bindings
1018 shader->setShiftBinding(res, baseBinding[res][compUnit.stage]);
David Neto8c3d5b42019-10-21 14:50:31 -04001019
LoopDawg08a14422017-10-17 19:27:14 -06001020 // Set bindings for particular resource sets
1021 // TODO: use a range based for loop here, when available in all environments.
1022 for (auto i = baseBindingForSet[res][compUnit.stage].begin();
1023 i != baseBindingForSet[res][compUnit.stage].end(); ++i)
LoopDawge5709552017-10-21 10:46:39 -06001024 shader->setShiftBindingForSet(res, i->second, i->first);
LoopDawg08a14422017-10-17 19:27:14 -06001025 }
steve-lunargcce8d482016-10-14 18:36:42 -06001026 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
Hyangran Park36dc8292017-05-02 16:27:29 +09001027 shader->setResourceSetBinding(baseResourceSetBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -06001028
1029 if (Options & EOptionAutoMapBindings)
1030 shader->setAutoMapBindings(true);
John Kessenichecba76f2017-01-06 00:34:48 -07001031
John Kessenich71facdf2017-05-17 18:28:19 -06001032 if (Options & EOptionAutoMapLocations)
1033 shader->setAutoMapLocations(true);
1034
Neil Roberts16f53472018-03-20 17:30:53 +01001035 for (auto& uniOverride : uniformLocationOverrides) {
1036 shader->addUniformLocationOverride(uniOverride.first.c_str(),
1037 uniOverride.second);
1038 }
1039
Neil Robertsb0f3d792018-03-20 17:41:05 +01001040 shader->setUniformLocationBase(uniformBase);
John Kessenich155d3512019-08-08 23:29:20 -06001041#endif
1042
1043 shader->setNanMinMaxClamp(NaNClamp);
1044
1045#ifdef ENABLE_HLSL
1046 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
1047 if (Options & EOptionHlslIoMapping)
1048 shader->setHlslIoMapping(true);
1049#endif
1050
1051 if (Options & EOptionInvertY)
1052 shader->setInvertY(true);
Neil Robertsb0f3d792018-03-20 17:41:05 +01001053
John Kessenich4be4aeb2017-06-23 10:50:22 -06001054 // Set up the environment, some subsettings take precedence over earlier
1055 // ways of setting things.
1056 if (Options & EOptionSpv) {
John Kessenich8717a5d2018-10-26 10:12:32 -06001057 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
1058 : glslang::EShSourceGlsl,
1059 compUnit.stage, Client, ClientInputSemanticsVersion);
1060 shader->setEnvClient(Client, ClientVersion);
1061 shader->setEnvTarget(TargetLanguage, TargetVersion);
John Kessenichd4ed5152019-07-27 05:22:30 -06001062#ifdef ENABLE_HLSL
John Kessenich5d610ee2018-03-07 18:05:55 -07001063 if (targetHlslFunctionality1)
1064 shader->setEnvTargetHlslFunctionality1();
John Kessenichd4ed5152019-07-27 05:22:30 -06001065#endif
John Kessenich4be4aeb2017-06-23 10:50:22 -06001066 }
1067
John Kessenich69f4b512013-09-04 21:19:27 +00001068 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -06001069
John Kessenich4be4aeb2017-06-23 10:50:22 -06001070 const int defaultVersion = Options & EOptionDefaultDesktop ? 110 : 100;
John Kessenich69f4b512013-09-04 21:19:27 +00001071
John Kessenich3494b4d2017-05-22 15:00:42 -06001072 DirStackFileIncluder includer;
John Kessenich971a0a82017-06-07 15:06:58 -06001073 std::for_each(IncludeDirectoryList.rbegin(), IncludeDirectoryList.rend(), [&includer](const std::string& dir) {
1074 includer.pushExternalLocalDirectory(dir); });
John Kessenichdeec1932019-08-13 08:00:30 -06001075#ifndef GLSLANG_WEB
John Kessenichc555ddd2015-06-17 02:38:44 +00001076 if (Options & EOptionOutputPreprocessed) {
1077 std::string str;
John Kessenich086febc2018-10-25 12:43:02 -06001078 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false, messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -04001079 PutsIfNonEmpty(str.c_str());
1080 } else {
1081 CompileFailed = true;
1082 }
1083 StderrIfNonEmpty(shader->getInfoLog());
1084 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +00001085 continue;
1086 }
John Kessenichdeec1932019-08-13 08:00:30 -06001087#endif
John Kessenich086febc2018-10-25 12:43:02 -06001088
John Kessenich3494b4d2017-05-22 15:00:42 -06001089 if (! shader->parse(&Resources, defaultVersion, false, messages, includer))
John Kessenichc999ba22013-11-07 23:33:24 +00001090 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +00001091
John Kessenich69f4b512013-09-04 21:19:27 +00001092 program.addShader(shader);
1093
John Kessenichc57b2a92016-01-16 15:30:03 -07001094 if (! (Options & EOptionSuppressInfolog) &&
1095 ! (Options & EOptionMemoryLeakMode)) {
John Kessenich04acb1b2017-06-14 17:36:50 -06001096 PutsIfNonEmpty(compUnit.fileName[0].c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -04001097 PutsIfNonEmpty(shader->getInfoLog());
1098 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +00001099 }
John Kessenich69f4b512013-09-04 21:19:27 +00001100 }
1101
1102 //
1103 // Program-level processing...
1104 //
1105
John Kessenich4d65ee32016-03-12 18:17:47 -07001106 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -06001107 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +00001108 LinkFailed = true;
1109
John Kessenichb6d3ee52019-08-06 02:20:45 -06001110#ifndef GLSLANG_WEB
steve-lunarg9ae34742016-10-05 13:40:13 -06001111 // Map IO
1112 if (Options & EOptionSpv) {
1113 if (!program.mapIO())
1114 LinkFailed = true;
1115 }
John Kessenichb6d3ee52019-08-06 02:20:45 -06001116#endif
John Kessenichecba76f2017-01-06 00:34:48 -07001117
John Kessenich4d65ee32016-03-12 18:17:47 -07001118 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -07001119 if (! (Options & EOptionSuppressInfolog) &&
1120 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -04001121 PutsIfNonEmpty(program.getInfoLog());
1122 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +00001123 }
1124
John Kessenichb6d3ee52019-08-06 02:20:45 -06001125#ifndef GLSLANG_WEB
John Kessenich4d65ee32016-03-12 18:17:47 -07001126 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +00001127 if (Options & EOptionDumpReflection) {
baldurk6d477852019-01-29 15:45:56 +00001128 program.buildReflection(ReflectOptions);
John Kessenich11f9fc72013-11-07 01:06:34 +00001129 program.dumpReflection();
1130 }
John Kessenichb6d3ee52019-08-06 02:20:45 -06001131#endif
John Kessenich11f9fc72013-11-07 01:06:34 +00001132
John Kessenich4d65ee32016-03-12 18:17:47 -07001133 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +00001134 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +00001135 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -06001136 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +00001137 else {
1138 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +00001139 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +00001140 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -04001141 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -04001142 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -06001143 glslang::SpvOptions spvOptions;
1144 if (Options & EOptionDebug)
1145 spvOptions.generateDebugInfo = true;
GregF52fe3d52017-09-28 10:08:32 -06001146 spvOptions.disableOptimizer = (Options & EOptionOptimizeDisable) != 0;
1147 spvOptions.optimizeSize = (Options & EOptionOptimizeSize) != 0;
John Kessenich717c80a2018-08-23 15:17:10 -06001148 spvOptions.disassemble = SpvToolsDisassembler;
John Kessenichc3404252018-08-23 15:29:08 -06001149 spvOptions.validate = SpvToolsValidate;
John Kessenich121853f2017-05-31 17:11:16 -06001150 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger, &spvOptions);
John Kessenichc57b2a92016-01-16 15:30:03 -07001151
1152 // Dump the spv to a file or stdout, etc., but only if not doing
1153 // memory/perf testing, as it's not internal to programmatic use.
1154 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05001155 printf("%s", logger.getAllMessages().c_str());
1156 if (Options & EOptionOutputHexadecimal) {
John Kessenich8f674e82017-02-18 09:45:40 -07001157 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage), variableName);
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05001158 } else {
1159 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
1160 }
John Kessenich23d27752019-07-28 02:12:10 -06001161#ifndef GLSLANG_WEB
John Kesseniche2156222018-06-11 18:12:15 -06001162 if (!SpvToolsDisassembler && (Options & EOptionHumanReadableSpv))
John Kessenichc57b2a92016-01-16 15:30:03 -07001163 spv::Disassemble(std::cout, spirv);
John Kessenich23d27752019-07-28 02:12:10 -06001164#endif
John Kessenichacba7722015-03-04 03:48:38 +00001165 }
John Kessenicha7a68a92014-08-24 18:21:00 +00001166 }
John Kessenich92f90382014-07-28 04:21:04 +00001167 }
1168 }
1169 }
1170
John Kessenich5b0f13a2013-11-01 03:08:40 +00001171 // Free everything up, program has to go before the shaders
1172 // because it might have merged stuff from the shaders, and
1173 // the stuff from the shaders has to have its destructors called
1174 // before the pools holding the memory in the shaders is freed.
1175 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +00001176 while (shaders.size() > 0) {
1177 delete shaders.back();
1178 shaders.pop_back();
1179 }
John Kessenich69f4b512013-09-04 21:19:27 +00001180}
1181
John Kessenichc57b2a92016-01-16 15:30:03 -07001182//
1183// Do file IO part of compile and link, handing off the pure
1184// API/programmatic mode to CompileAndLinkShaderUnits(), which can
1185// be put in a loop for testing memory footprint and performance.
1186//
1187// This is just for linking mode: meaning all the shaders will be put into the
1188// the same program linked together.
1189//
1190// This means there are a limited number of work items (not multi-threading mode)
1191// and that the point is testing at the linking level. Hence, to enable
1192// performance and memory testing, the actual compile/link can be put in
1193// a loop, independent of processing the work items and file IO.
1194//
Juan Lopeza558b262017-04-02 23:04:00 +02001195void CompileAndLinkShaderFiles(glslang::TWorklist& Worklist)
John Kessenichc57b2a92016-01-16 15:30:03 -07001196{
1197 std::vector<ShaderCompUnit> compUnits;
1198
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001199 // If this is using stdin, we can't really detect multiple different file
1200 // units by input type. We need to assume that we're just being given one
1201 // file of a certain type.
1202 if ((Options & EOptionStdin) != 0) {
1203 ShaderCompUnit compUnit(FindLanguage("stdin"));
1204 std::istreambuf_iterator<char> begin(std::cin), end;
1205 std::string tempString(begin, end);
1206 char* fileText = strdup(tempString.c_str());
1207 std::string fileName = "stdin";
1208 compUnit.addString(fileName, fileText);
John Kessenichc57b2a92016-01-16 15:30:03 -07001209 compUnits.push_back(compUnit);
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001210 } else {
1211 // Transfer all the work items from to a simple list of
1212 // of compilation units. (We don't care about the thread
1213 // work-item distribution properties in this path, which
1214 // is okay due to the limited number of shaders, know since
1215 // they are all getting linked together.)
1216 glslang::TWorkItem* workItem;
1217 while (Worklist.remove(workItem)) {
1218 ShaderCompUnit compUnit(FindLanguage(workItem->name));
1219 char* fileText = ReadFileData(workItem->name.c_str());
1220 if (fileText == nullptr)
1221 usage();
1222 compUnit.addString(workItem->name, fileText);
1223 compUnits.push_back(compUnit);
1224 }
John Kessenichc57b2a92016-01-16 15:30:03 -07001225 }
1226
1227 // Actual call to programmatic processing of compile and link,
1228 // in a loop for testing memory and performance. This part contains
1229 // all the perf/memory that a programmatic consumer will care about.
1230 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1231 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
1232 CompileAndLinkShaderUnits(compUnits);
1233
1234 if (Options & EOptionMemoryLeakMode)
1235 glslang::OS_DumpMemoryCounters();
1236 }
1237
John Kessenicha9313662017-06-15 10:40:49 -06001238 // free memory from ReadFileData, which got stored in a const char*
1239 // as the first string above
rdb32084e82016-02-23 22:17:38 +01001240 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
John Kessenicha9313662017-06-15 10:40:49 -06001241 FreeFileData(const_cast<char*>(it->text[0]));
John Kessenichc57b2a92016-01-16 15:30:03 -07001242}
1243
John Kessenich94f28eb2017-11-13 01:32:06 -07001244int singleMain()
John Kessenicha0af4732012-12-12 21:15:54 +00001245{
Juan Lopeza558b262017-04-02 23:04:00 +02001246 glslang::TWorklist workList;
John Kessenich94f28eb2017-11-13 01:32:06 -07001247 std::for_each(WorkItems.begin(), WorkItems.end(), [&workList](std::unique_ptr<glslang::TWorkItem>& item) {
Juan Lopeza558b262017-04-02 23:04:00 +02001248 assert(item);
1249 workList.add(item.get());
1250 });
John Kessenich2b07c7e2013-07-31 18:44:13 +00001251
John Kessenich23d27752019-07-28 02:12:10 -06001252#ifndef GLSLANG_WEB
John Kessenich05a70632013-09-17 19:26:08 +00001253 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -05001254 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
Juan Lopeza558b262017-04-02 23:04:00 +02001255 if (workList.empty())
John Kessenich05a70632013-09-17 19:26:08 +00001256 return ESuccess;
1257 }
John Kessenich23d27752019-07-28 02:12:10 -06001258#endif
John Kessenich05a70632013-09-17 19:26:08 +00001259
John Kessenichc6c80a62018-03-05 22:23:17 -07001260 if (Options & EOptionDumpBareVersion) {
1261 printf("%d.%d.%d\n",
1262 glslang::GetSpirvGeneratorVersion(), GLSLANG_MINOR_VERSION, GLSLANG_PATCH_LEVEL);
1263 if (workList.empty())
1264 return ESuccess;
1265 } else if (Options & EOptionDumpVersions) {
1266 printf("Glslang Version: %d.%d.%d\n",
1267 glslang::GetSpirvGeneratorVersion(), GLSLANG_MINOR_VERSION, GLSLANG_PATCH_LEVEL);
John Kessenich319de232013-12-04 04:43:40 +00001268 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
1269 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -06001270 std::string spirvVersion;
1271 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -06001272 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -06001273 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -07001274 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenicha372a3e2017-11-02 22:32:14 -06001275 printf("SPIR-V Generator Version %d\n", glslang::GetSpirvGeneratorVersion());
John Kessenichb84313d2016-07-20 16:03:29 -06001276 printf("GL_KHR_vulkan_glsl version %d\n", 100);
1277 printf("ARB_GL_gl_spirv version %d\n", 100);
Juan Lopeza558b262017-04-02 23:04:00 +02001278 if (workList.empty())
John Kessenich319de232013-12-04 04:43:40 +00001279 return ESuccess;
1280 }
1281
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001282 if (workList.empty() && ((Options & EOptionStdin) == 0)) {
John Kessenich05a70632013-09-17 19:26:08 +00001283 usage();
John Kessenich05a70632013-09-17 19:26:08 +00001284 }
1285
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001286 if (Options & EOptionStdin) {
John Kessenich94f28eb2017-11-13 01:32:06 -07001287 WorkItems.push_back(std::unique_ptr<glslang::TWorkItem>{new glslang::TWorkItem("stdin")});
1288 workList.add(WorkItems.back().get());
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001289 }
1290
John Kessenich05a70632013-09-17 19:26:08 +00001291 ProcessConfigFile();
1292
John Kessenich086febc2018-10-25 12:43:02 -06001293 if ((Options & EOptionReadHlsl) && !((Options & EOptionOutputPreprocessed) || (Options & EOptionSpv)))
John Kessenichbd97b6f2019-12-20 10:33:13 -07001294 Error("HLSL requires SPIR-V code generation (or preprocessing only)");
John Kessenich086febc2018-10-25 12:43:02 -06001295
John Kessenich69f4b512013-09-04 21:19:27 +00001296 //
1297 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +00001298 // 1) linking all arguments together, single-threaded, new C++ interface
1299 // 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 +00001300 //
John Kessenich086febc2018-10-25 12:43:02 -06001301 if (Options & (EOptionLinkProgram | EOptionOutputPreprocessed)) {
John Kessenichc36e1d82013-11-01 17:41:52 +00001302 glslang::InitializeProcess();
John Kesseniche2c15b42017-11-16 22:48:41 -07001303 glslang::InitializeProcess(); // also test reference counting of users
1304 glslang::InitializeProcess(); // also test reference counting of users
1305 glslang::FinalizeProcess(); // also test reference counting of users
1306 glslang::FinalizeProcess(); // also test reference counting of users
Juan Lopeza558b262017-04-02 23:04:00 +02001307 CompileAndLinkShaderFiles(workList);
John Kessenichc36e1d82013-11-01 17:41:52 +00001308 glslang::FinalizeProcess();
1309 } else {
1310 ShInitialize();
John Kesseniche2c15b42017-11-16 22:48:41 -07001311 ShInitialize(); // also test reference counting of users
1312 ShFinalize(); // also test reference counting of users
John Kessenichc36e1d82013-11-01 17:41:52 +00001313
Juan Lopeza558b262017-04-02 23:04:00 +02001314 bool printShaderNames = workList.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +00001315
John Kesseniche2c15b42017-11-16 22:48:41 -07001316 if (Options & EOptionMultiThreaded) {
Juan Lopeza558b262017-04-02 23:04:00 +02001317 std::array<std::thread, 16> threads;
John Kesseniche2c15b42017-11-16 22:48:41 -07001318 for (unsigned int t = 0; t < threads.size(); ++t) {
Juan Lopeza558b262017-04-02 23:04:00 +02001319 threads[t] = std::thread(CompileShaders, std::ref(workList));
John Kesseniche2c15b42017-11-16 22:48:41 -07001320 if (threads[t].get_id() == std::thread::id()) {
John Kessenichaf527992017-11-02 22:48:15 -06001321 fprintf(stderr, "Failed to create thread\n");
John Kessenich38f3b892013-09-06 19:52:57 +00001322 return EFailThreadCreate;
1323 }
John Kessenicha0af4732012-12-12 21:15:54 +00001324 }
Juan Lopeza558b262017-04-02 23:04:00 +02001325
1326 std::for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); });
John Kessenichc999ba22013-11-07 23:33:24 +00001327 } else
Juan Lopeza558b262017-04-02 23:04:00 +02001328 CompileShaders(workList);
John Kessenich38f3b892013-09-06 19:52:57 +00001329
1330 // Print out all the resulting infologs
John Kessenich94f28eb2017-11-13 01:32:06 -07001331 for (size_t w = 0; w < WorkItems.size(); ++w) {
1332 if (WorkItems[w]) {
1333 if (printShaderNames || WorkItems[w]->results.size() > 0)
1334 PutsIfNonEmpty(WorkItems[w]->name.c_str());
1335 PutsIfNonEmpty(WorkItems[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +00001336 }
1337 }
John Kessenichc36e1d82013-11-01 17:41:52 +00001338
1339 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +00001340 }
John Kessenich2b07c7e2013-07-31 18:44:13 +00001341
John Kessenichc999ba22013-11-07 23:33:24 +00001342 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001343 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +00001344 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001345 return EFailLink;
1346
1347 return 0;
1348}
1349
John Kessenich94f28eb2017-11-13 01:32:06 -07001350int C_DECL main(int argc, char* argv[])
1351{
1352 ProcessArguments(WorkItems, argc, argv);
1353
1354 int ret = 0;
1355
1356 // Loop over the entire init/finalize cycle to watch memory changes
1357 const int iterations = 1;
1358 if (iterations > 1)
1359 glslang::OS_DumpMemoryCounters();
1360 for (int i = 0; i < iterations; ++i) {
1361 ret = singleMain();
1362 if (iterations > 1)
1363 glslang::OS_DumpMemoryCounters();
1364 }
1365
1366 return ret;
1367}
1368
John Kessenicha0af4732012-12-12 21:15:54 +00001369//
1370// Deduce the language from the filename. Files must end in one of the
1371// following extensions:
1372//
John Kessenich2b07c7e2013-07-31 18:44:13 +00001373// .vert = vertex
1374// .tesc = tessellation control
1375// .tese = tessellation evaluation
1376// .geom = geometry
1377// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +00001378// .comp = compute
Chao Chenb50c02e2018-09-19 11:42:24 -07001379// .rgen = ray generation
1380// .rint = ray intersection
1381// .rahit = ray any hit
1382// .rchit = ray closest hit
1383// .rmiss = ray miss
1384// .rcall = ray callable
Sahil Parmar035cbbe2018-10-04 16:39:18 -07001385// .mesh = mesh
1386// .task = task
Grigory Dzhavadyan33507412018-04-12 14:35:24 -07001387// Additionally, the file names may end in .<stage>.glsl and .<stage>.hlsl
1388// where <stage> is one of the stages listed above.
1389//
1390EShLanguage FindLanguage(const std::string& name, bool parseStageName)
John Kessenicha0af4732012-12-12 21:15:54 +00001391{
John Kessenichfccbb8b2018-04-17 17:24:03 -06001392 std::string stageName;
Dan Bakerc6ede892016-08-11 14:06:06 -04001393 if (shaderStageName)
John Kessenichfccbb8b2018-04-17 17:24:03 -06001394 stageName = shaderStageName;
1395 else if (parseStageName) {
Grigory Dzhavadyan33507412018-04-12 14:35:24 -07001396 // Note: "first" extension means "first from the end", i.e.
1397 // if the file is named foo.vert.glsl, then "glsl" is first,
1398 // "vert" is second.
John Kessenichfccbb8b2018-04-17 17:24:03 -06001399 size_t firstExtStart = name.find_last_of(".");
1400 bool hasFirstExt = firstExtStart != std::string::npos;
1401 size_t secondExtStart = hasFirstExt ? name.find_last_of(".", firstExtStart - 1) : std::string::npos;
1402 bool hasSecondExt = secondExtStart != std::string::npos;
1403 std::string firstExt = name.substr(firstExtStart + 1, std::string::npos);
1404 bool usesUnifiedExt = hasFirstExt && (firstExt == "glsl" || firstExt == "hlsl");
John Kessenich3beac942018-04-17 21:02:19 -06001405 if (usesUnifiedExt && firstExt == "hlsl")
1406 Options |= EOptionReadHlsl;
1407 if (hasFirstExt && !usesUnifiedExt)
John Kessenichfccbb8b2018-04-17 17:24:03 -06001408 stageName = firstExt;
John Kessenich3beac942018-04-17 21:02:19 -06001409 else if (usesUnifiedExt && hasSecondExt)
John Kessenichfccbb8b2018-04-17 17:24:03 -06001410 stageName = name.substr(secondExtStart + 1, firstExtStart - secondExtStart - 1);
John Kessenich3beac942018-04-17 21:02:19 -06001411 else {
Grigory Dzhavadyan33507412018-04-12 14:35:24 -07001412 usage();
1413 return EShLangVertex;
John Kesseniche751bca2017-03-16 11:20:38 -06001414 }
John Kessenichfccbb8b2018-04-17 17:24:03 -06001415 } else
1416 stageName = name;
dankbaker45d49bc2016-08-08 21:43:07 -04001417
John Kessenichfccbb8b2018-04-17 17:24:03 -06001418 if (stageName == "vert")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001419 return EShLangVertex;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001420 else if (stageName == "tesc")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001421 return EShLangTessControl;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001422 else if (stageName == "tese")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001423 return EShLangTessEvaluation;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001424 else if (stageName == "geom")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001425 return EShLangGeometry;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001426 else if (stageName == "frag")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001427 return EShLangFragment;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001428 else if (stageName == "comp")
John Kessenichc0275792013-08-09 17:14:49 +00001429 return EShLangCompute;
Chao Chenb50c02e2018-09-19 11:42:24 -07001430 else if (stageName == "rgen")
1431 return EShLangRayGenNV;
1432 else if (stageName == "rint")
1433 return EShLangIntersectNV;
1434 else if (stageName == "rahit")
1435 return EShLangAnyHitNV;
1436 else if (stageName == "rchit")
1437 return EShLangClosestHitNV;
1438 else if (stageName == "rmiss")
1439 return EShLangMissNV;
1440 else if (stageName == "rcall")
1441 return EShLangCallableNV;
Chao Chen3c366992018-09-19 11:41:59 -07001442 else if (stageName == "mesh")
1443 return EShLangMeshNV;
1444 else if (stageName == "task")
1445 return EShLangTaskNV;
John Kessenich2b07c7e2013-07-31 18:44:13 +00001446
1447 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +00001448 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +00001449}
1450
John Kessenicha0af4732012-12-12 21:15:54 +00001451//
John Kessenichecba76f2017-01-06 00:34:48 -07001452// Read a file's data into a string, and compile it using the old interface ShCompile,
John Kessenich69f4b512013-09-04 21:19:27 +00001453// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +00001454//
John Kessenich51cdd902014-02-18 23:37:57 +00001455void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +00001456{
John Kessenichca3457f2015-05-18 01:59:45 +00001457 int ret = 0;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001458 char* shaderString;
1459 if ((Options & EOptionStdin) != 0) {
1460 std::istreambuf_iterator<char> begin(std::cin), end;
1461 std::string tempString(begin, end);
1462 shaderString = strdup(tempString.c_str());
1463 } else {
1464 shaderString = ReadFileData(fileName);
1465 }
John Kessenich41cf6b52013-06-25 18:10:05 +00001466
1467 // move to length-based strings, rather than null-terminated strings
John Kessenich04acb1b2017-06-14 17:36:50 -06001468 int* lengths = new int[1];
1469 lengths[0] = (int)strlen(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001470
John Kessenich52ac67e2013-05-05 23:46:22 +00001471 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +00001472 SetMessageOptions(messages);
John Kessenichecba76f2017-01-06 00:34:48 -07001473
John Kessenicha9313662017-06-15 10:40:49 -06001474 if (UserPreamble.isSet())
1475 Error("-D and -U options require -l (linking)\n");
1476
John Kessenich94a81fb2013-08-31 02:41:30 +00001477 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1478 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich927608b2017-01-06 12:34:14 -07001479 // ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich04acb1b2017-06-14 17:36:50 -06001480 ret = ShCompile(compiler, &shaderString, 1, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich927608b2017-01-06 12:34:14 -07001481 // const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
John Kessenichecba76f2017-01-06 00:34:48 -07001482 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
John Kessenichea869fb2013-10-28 18:12:06 +00001483 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich927608b2017-01-06 12:34:14 -07001484 // const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
1485 // ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +00001486 }
John Kessenicha0af4732012-12-12 21:15:54 +00001487
John Kessenich94a81fb2013-08-31 02:41:30 +00001488 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +00001489 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +00001490 }
John Kessenicha0af4732012-12-12 21:15:54 +00001491
John Kessenich41cf6b52013-06-25 18:10:05 +00001492 delete [] lengths;
John Kessenich04acb1b2017-06-14 17:36:50 -06001493 FreeFileData(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001494
John Kessenichc999ba22013-11-07 23:33:24 +00001495 if (ret == 0)
1496 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +00001497}
1498
John Kessenicha0af4732012-12-12 21:15:54 +00001499//
1500// print usage to stdout
1501//
1502void usage()
1503{
John Kessenich319de232013-12-04 04:43:40 +00001504 printf("Usage: glslangValidator [option]... [file]...\n"
1505 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001506 "'file' can end in .<stage> for auto-stage classification, where <stage> is:\n"
1507 " .conf to provide a config file that replaces the default configuration\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001508 " (see -c option below for generating a template)\n"
1509 " .vert for a vertex shader\n"
1510 " .tesc for a tessellation control shader\n"
1511 " .tese for a tessellation evaluation shader\n"
1512 " .geom for a geometry shader\n"
1513 " .frag for a fragment shader\n"
1514 " .comp for a compute shader\n"
Chao Chen3c366992018-09-19 11:41:59 -07001515 " .mesh for a mesh shader\n"
1516 " .task for a task shader\n"
Chao Chenb50c02e2018-09-19 11:42:24 -07001517 " .rgen for a ray generation shader\n"
1518 " .rint for a ray intersection shader\n"
1519 " .rahit for a ray any hit shader\n"
1520 " .rchit for a ray closest hit shader\n"
1521 " .rmiss for a ray miss shader\n"
Sahil Parmar035cbbe2018-10-04 16:39:18 -07001522 " .rcall for a ray callable shader\n"
John Kessenich2ead40f2018-04-17 17:44:11 -06001523 " .glsl for .vert.glsl, .tesc.glsl, ..., .comp.glsl compound suffixes\n"
1524 " .hlsl for .vert.hlsl, .tesc.hlsl, ..., .comp.hlsl compound suffixes\n"
John Kessenich319de232013-12-04 04:43:40 +00001525 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001526 "Options:\n"
1527 " -C cascading errors; risk crash from accumulation of error recoveries\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001528 " -D input is HLSL (this is the default when any suffix is .hlsl)\n"
John Kessenich6f988922020-01-07 07:03:11 -07001529 " -D<name[=def]> | --define-macro <name[=def]> | --D <name[=def]>\n"
1530 " define a pre-processor macro\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001531 " -E print pre-processed GLSL; cannot be used with -l;\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001532 " errors will appear on stderr\n"
John Kessenich6353d552017-06-23 11:11:09 -06001533 " -G[ver] create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001534 " default file name is <stage>.spv (-o overrides this);\n"
John Kessenich6353d552017-06-23 11:11:09 -06001535 " 'ver', when present, is the version of the input semantics,\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001536 " which will appear in #define GL_SPIRV ver;\n"
1537 " '--client opengl100' is the same as -G100;\n"
John Kessenich6353d552017-06-23 11:11:09 -06001538 " a '--target-env' for OpenGL will also imply '-G'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001539 " -H print human readable form of SPIR-V; turns on -V\n"
John Kessenich971a0a82017-06-07 15:06:58 -06001540 " -I<dir> add dir to the include search path; includer's directory\n"
1541 " is searched first, followed by left-to-right order of -I\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001542 " -Od disables optimization; may cause illegal SPIR-V for HLSL\n"
1543 " -Os optimizes SPIR-V to minimize size\n"
John Kesseniche751bca2017-03-16 11:20:38 -06001544 " -S <stage> uses specified stage rather than parsing the file extension\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001545 " choices for <stage> are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich6f988922020-01-07 07:03:11 -07001546 " -U<name> | --undef-macro <name> | --U <name>\n"
1547 " undefine a pre-processor macro\n"
John Kessenich6353d552017-06-23 11:11:09 -06001548 " -V[ver] create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001549 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich6353d552017-06-23 11:11:09 -06001550 " 'ver', when present, is the version of the input semantics,\n"
1551 " which will appear in #define VULKAN ver\n"
1552 " '--client vulkan100' is the same as -V100\n"
1553 " a '--target-env' for Vulkan will also imply '-V'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001554 " -c configuration dump;\n"
1555 " creates the default configuration file (redirect to a .conf file)\n"
1556 " -d default to desktop (#version 110) when there is no shader #version\n"
1557 " (default is ES version 100)\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001558 " -e <name> | --entry-point <name>\n"
1559 " specify <name> as the entry-point function name\n"
John Kessenich5d610ee2018-03-07 18:05:55 -07001560 " -f{hlsl_functionality1}\n"
1561 " 'hlsl_functionality1' enables use of the\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001562 " SPV_GOOGLE_hlsl_functionality1 extension\n"
John Kessenich121853f2017-05-31 17:11:16 -06001563 " -g generate debug information\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001564 " -h print this usage message\n"
1565 " -i intermediate tree (glslang AST) is printed out\n"
1566 " -l link all input files together to form a single module\n"
1567 " -m memory leak mode\n"
John Kessenicha25530c2017-09-11 20:13:49 -06001568 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kesseniche5c394b2019-07-02 09:32:48 -06001569 " -q dump reflection query database; requires -l for linking\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001570 " -r | --relaxed-errors"
1571 " relaxed GLSL semantic error-checking mode\n"
John Kessenichb63f4a32017-11-16 22:32:20 -07001572 " -s silence syntax and semantic error reporting\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001573 " -t multi-threaded mode\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001574 " -v | --version\n"
1575 " print version strings\n"
1576 " -w | --suppress-warnings\n"
1577 " suppress GLSL warnings, except as required by \"#extension : warn\"\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001578 " -x save binary output as text-based 32-bit hexadecimal numbers\n"
Neil Roberts16f53472018-03-20 17:30:53 +01001579 " -u<name>:<loc> specify a uniform location override for --aml\n"
Neil Robertsb0f3d792018-03-20 17:41:05 +01001580 " --uniform-base <base> set a base to use for generated uniform locations\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001581 " --auto-map-bindings | --amb automatically bind uniform variables\n"
1582 " without explicit bindings\n"
1583 " --auto-map-locations | --aml automatically locate input/output lacking\n"
1584 " 'location' (fragile, not cross stage)\n"
1585 " --client {vulkan<ver>|opengl<ver>} see -V and -G\n"
Christoph Kubisch412ff6e2019-04-13 22:57:33 +02001586 " --dump-builtin-symbols prints builtin symbol table prior each compile\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001587 " -dumpfullversion | -dumpversion print bare major.minor.patchlevel\n"
1588 " --flatten-uniform-arrays | --fua flatten uniform texture/sampler arrays to\n"
1589 " scalars\n"
1590 " --hlsl-offsets allow block offsets to follow HLSL rules\n"
1591 " works independently of source language\n"
1592 " --hlsl-iomap perform IO mapping in HLSL register space\n"
1593 " --hlsl-enable-16bit-types allow 16-bit types in SPIR-V for HLSL\n"
John Kessenich605afc72019-06-17 23:33:09 -06001594 " --hlsl-dx9-compatible interprets sampler declarations as a\n"
1595 " texture/sampler combo like DirectX9 would.\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001596 " --invert-y | --iy invert position.Y output in vertex shader\n"
1597 " --keep-uncalled | --ku don't eliminate uncalled functions\n"
John Kessenich605afc72019-06-17 23:33:09 -06001598 " --nan-clamp favor non-NaN operand in min, max, and clamp\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001599 " --no-storage-format | --nsf use Unknown image format\n"
baldurk4513df92019-02-08 10:48:48 +00001600 " --reflect-strict-array-suffix use strict array suffix rules when\n"
1601 " reflecting\n"
baldurkedf82122019-01-29 15:49:00 +00001602 " --reflect-basic-array-suffix arrays of basic types will have trailing [0]\n"
baldurk4513df92019-02-08 10:48:48 +00001603 " --reflect-intermediate-io reflection includes inputs/outputs of linked\n"
1604 " shaders rather than just vertex/fragment\n"
1605 " --reflect-separate-buffers reflect buffer variables and blocks\n"
1606 " separately to uniforms\n"
1607 " --reflect-all-block-variables reflect all variables in blocks, whether\n"
1608 " inactive or active\n"
baldurk19050692019-02-11 11:50:24 +00001609 " --reflect-unwrap-io-blocks unwrap input/output blocks the same as\n"
1610 " uniform blocks\n"
LoopDawg52017192017-07-14 15:15:47 -06001611 " --resource-set-binding [stage] name set binding\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001612 " set descriptor set and binding for\n"
1613 " individual resources\n"
LoopDawg52017192017-07-14 15:15:47 -06001614 " --resource-set-binding [stage] set\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001615 " set descriptor set for all resources\n"
1616 " --rsb synonym for --resource-set-binding\n"
1617 " --shift-image-binding [stage] num\n"
1618 " base binding number for images (uav)\n"
1619 " --shift-image-binding [stage] [num set]...\n"
1620 " per-descriptor-set shift values\n"
1621 " --sib synonym for --shift-image-binding\n"
1622 " --shift-sampler-binding [stage] num\n"
1623 " base binding number for samplers\n"
1624 " --shift-sampler-binding [stage] [num set]...\n"
1625 " per-descriptor-set shift values\n"
1626 " --ssb synonym for --shift-sampler-binding\n"
1627 " --shift-ssbo-binding [stage] num base binding number for SSBOs\n"
1628 " --shift-ssbo-binding [stage] [num set]...\n"
1629 " per-descriptor-set shift values\n"
1630 " --sbb synonym for --shift-ssbo-binding\n"
1631 " --shift-texture-binding [stage] num\n"
1632 " base binding number for textures\n"
1633 " --shift-texture-binding [stage] [num set]...\n"
1634 " per-descriptor-set shift values\n"
1635 " --stb synonym for --shift-texture-binding\n"
1636 " --shift-uav-binding [stage] num base binding number for UAVs\n"
1637 " --shift-uav-binding [stage] [num set]...\n"
1638 " per-descriptor-set shift values\n"
1639 " --suavb synonym for --shift-uav-binding\n"
1640 " --shift-UBO-binding [stage] num base binding number for UBOs\n"
1641 " --shift-UBO-binding [stage] [num set]...\n"
1642 " per-descriptor-set shift values\n"
1643 " --sub synonym for --shift-UBO-binding\n"
1644 " --shift-cbuffer-binding | --scb synonyms for --shift-UBO-binding\n"
1645 " --spirv-dis output standard-form disassembly; works only\n"
1646 " when a SPIR-V generation option is also used\n"
John Kessenichc3404252018-08-23 15:29:08 -06001647 " --spirv-val execute the SPIRV-Tools validator\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001648 " --source-entrypoint <name> the given shader source function is\n"
1649 " renamed to be the <name> given in -e\n"
1650 " --sep synonym for --source-entrypoint\n"
1651 " --stdin read from stdin instead of from a file;\n"
1652 " requires providing the shader stage using -S\n"
John Kessenich273d3a52020-01-15 00:10:41 -07001653 " --target-env {vulkan1.0 | vulkan1.1 | vulkan1.2 | opengl | \n"
John Kessenich8317e6c2019-08-18 23:58:08 -06001654 " spirv1.0 | spirv1.1 | spirv1.2 | spirv1.3 | spirv1.4 | spirv1.5}\n"
John Kessenich273d3a52020-01-15 00:10:41 -07001655 " Set the execution environment that the\n"
1656 " generated code will be executed in.\n"
1657 " Defaults to:\n"
1658 " * vulkan1.0 under --client vulkan<ver>\n"
1659 " * opengl under --client opengl<ver>\n"
1660 " * spirv1.0 under --target-env vulkan1.0\n"
1661 " * spirv1.3 under --target-env vulkan1.1\n"
1662 " * spirv1.5 under --target-env vulkan1.2\n"
1663 " Multiple --target-env can be specified.\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001664 " --variable-name <name>\n"
1665 " --vn <name> creates a C header file that contains a\n"
1666 " uint32_t array named <name>\n"
1667 " initialized with the shader binary code\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +00001668 );
John Kessenich68d78fd2015-07-12 19:28:10 -06001669
1670 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +00001671}
1672
John Kessenich3ce4e592014-10-06 19:57:34 +00001673#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +00001674
1675#include <errno.h>
1676
1677int fopen_s(
1678 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +00001679 const char* filename,
1680 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +00001681)
1682{
1683 if (!pFile || !filename || !mode) {
1684 return EINVAL;
1685 }
1686
1687 FILE* f = fopen(filename, mode);
1688 if (! f) {
1689 if (errno != 0) {
1690 return errno;
1691 } else {
1692 return ENOENT;
1693 }
1694 }
1695 *pFile = f;
1696
1697 return 0;
1698}
1699
1700#endif
1701
John Kessenicha0af4732012-12-12 21:15:54 +00001702//
1703// Malloc a string of sufficient size and read a string into it.
1704//
John Kessenich04acb1b2017-06-14 17:36:50 -06001705char* ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +00001706{
John Kessenichb3297152015-07-11 18:01:03 -06001707 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +00001708 int errorCode = fopen_s(&in, fileName, "r");
John Kessenich68d78fd2015-07-12 19:28:10 -06001709 if (errorCode || in == nullptr)
1710 Error("unable to open input file");
John Kessenichecba76f2017-01-06 00:34:48 -07001711
John Kessenich04acb1b2017-06-14 17:36:50 -06001712 int count = 0;
John Kessenicha0af4732012-12-12 21:15:54 +00001713 while (fgetc(in) != EOF)
1714 count++;
1715
John Kessenichd6c72a42014-08-18 19:42:35 +00001716 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001717
John Kessenich04acb1b2017-06-14 17:36:50 -06001718 char* return_data = (char*)malloc(count + 1); // freed in FreeFileData()
1719 if ((int)fread(return_data, 1, count, in) != count) {
1720 free(return_data);
John Kessenich68d78fd2015-07-12 19:28:10 -06001721 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001722 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001723
John Kessenich04acb1b2017-06-14 17:36:50 -06001724 return_data[count] = '\0';
John Kessenicha0af4732012-12-12 21:15:54 +00001725 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001726
John Kessenicha0af4732012-12-12 21:15:54 +00001727 return return_data;
1728}
1729
John Kessenich04acb1b2017-06-14 17:36:50 -06001730void FreeFileData(char* data)
John Kessenicha0af4732012-12-12 21:15:54 +00001731{
John Kessenichb3297152015-07-11 18:01:03 -06001732 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001733}
1734
John Kessenich54d8cda2013-02-11 22:36:01 +00001735void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001736{
John Kessenichfae38ee2015-06-10 23:23:12 +00001737 if (num >= 0 )
1738 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1739 else
1740 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001741}