blob: fd14476c2d705a4925252c8853ea7dd30f712fc7 [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 Kessenich94a81fb2013-08-31 02:41:30 +0000107
John Kessenicha0af4732012-12-12 21:15:54 +0000108//
John Kessenich68d78fd2015-07-12 19:28:10 -0600109// Return codes from main/exit().
John Kessenicha0af4732012-12-12 21:15:54 +0000110//
111enum TFailCode {
112 ESuccess = 0,
113 EFailUsage,
114 EFailCompile,
115 EFailLink,
116 EFailCompilerCreate,
John Kessenich2b07c7e2013-07-31 18:44:13 +0000117 EFailThreadCreate,
John Kessenicha0af4732012-12-12 21:15:54 +0000118 EFailLinkerCreate
119};
120
121//
John Kessenich68d78fd2015-07-12 19:28:10 -0600122// Forward declarations.
John Kessenicha0af4732012-12-12 21:15:54 +0000123//
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600124EShLanguage FindLanguage(const std::string& name, bool parseSuffix=true);
John Kessenich51cdd902014-02-18 23:37:57 +0000125void CompileFile(const char* fileName, ShHandle);
John Kessenicha0af4732012-12-12 21:15:54 +0000126void usage();
John Kessenich04acb1b2017-06-14 17:36:50 -0600127char* ReadFileData(const char* fileName);
128void FreeFileData(char* data);
John Kessenich54d8cda2013-02-11 22:36:01 +0000129void InfoLogMsg(const char* msg, const char* name, const int num);
John Kessenich41cf6b52013-06-25 18:10:05 +0000130
John Kessenichc999ba22013-11-07 23:33:24 +0000131// Globally track if any compile or link failure.
132bool CompileFailed = false;
133bool LinkFailed = false;
134
John Kessenich94f28eb2017-11-13 01:32:06 -0700135// array of unique places to leave the shader names and infologs for the asynchronous compiles
136std::vector<std::unique_ptr<glslang::TWorkItem>> WorkItems;
137
John Kessenich05a70632013-09-17 19:26:08 +0000138TBuiltInResource Resources;
139std::string ConfigFile;
140
John Kessenicha0af4732012-12-12 21:15:54 +0000141//
John Kessenichf0bcb0a2016-04-02 13:09:14 -0600142// Parse either a .conf file provided by the user or the default from glslang::DefaultTBuiltInResource
John Kessenich05a70632013-09-17 19:26:08 +0000143//
144void ProcessConfigFile()
John Kessenichb51f62c2013-04-11 16:31:09 +0000145{
John Kessenich04acb1b2017-06-14 17:36:50 -0600146 if (ConfigFile.size() == 0)
Lei Zhang414eb602016-03-04 16:22:34 -0500147 Resources = glslang::DefaultTBuiltInResource;
John Kessenich04acb1b2017-06-14 17:36:50 -0600148 else {
149 char* configString = ReadFileData(ConfigFile.c_str());
150 glslang::DecodeResourceLimits(&Resources, configString);
151 FreeFileData(configString);
John Kessenich05a70632013-09-17 19:26:08 +0000152 }
John Kessenicha0af4732012-12-12 21:15:54 +0000153}
154
John Kessenich94a81fb2013-08-31 02:41:30 +0000155int Options = 0;
John Kessenich68d78fd2015-07-12 19:28:10 -0600156const char* ExecutableName = nullptr;
157const char* binaryFileName = nullptr;
John Kessenich4d65ee32016-03-12 18:17:47 -0700158const char* entryPointName = nullptr;
steve-lunargf1e0c872016-10-31 15:13:43 -0600159const char* sourceEntryPointName = nullptr;
Dan Bakerc6ede892016-08-11 14:06:06 -0400160const char* shaderStageName = nullptr;
Flavioaea3c892017-02-06 11:46:35 -0800161const char* variableName = nullptr;
Rex Xucb61eec2018-03-07 13:10:01 +0800162bool HlslEnable16BitTypes = false;
John Kessenich971a0a82017-06-07 15:06:58 -0600163std::vector<std::string> IncludeDirectoryList;
John Kessenich66011cb2018-03-06 16:12:04 -0700164int ClientInputSemanticsVersion = 100; // maps to, say, #define VULKAN 100
John Kessenich7cec64f2018-03-22 23:54:04 -0600165glslang::EShTargetClientVersion VulkanClientVersion =
John Kessenich66011cb2018-03-06 16:12:04 -0700166 glslang::EShTargetVulkan_1_0; // would map to, say, Vulkan 1.0
John Kessenich7cec64f2018-03-22 23:54:04 -0600167glslang::EShTargetClientVersion OpenGLClientVersion =
John Kessenich66011cb2018-03-06 16:12:04 -0700168 glslang::EShTargetOpenGL_450; // doesn't influence anything yet, but maps to OpenGL 4.50
169glslang::EShTargetLanguageVersion TargetVersion =
170 glslang::EShTargetSpv_1_0; // maps to, say, SPIR-V 1.0
171std::vector<std::string> Processes; // what should be recorded by OpModuleProcessed, or equivalent
John Kessenich68d78fd2015-07-12 19:28:10 -0600172
LoopDawg08a14422017-10-17 19:27:14 -0600173// Per descriptor-set binding base data
174typedef std::map<unsigned int, unsigned int> TPerSetBaseBinding;
175
176std::array<std::array<unsigned int, EShLangCount>, glslang::EResCount> baseBinding;
177std::array<std::array<TPerSetBaseBinding, EShLangCount>, glslang::EResCount> baseBindingForSet;
Hyangran Park36dc8292017-05-02 16:27:29 +0900178std::array<std::vector<std::string>, EShLangCount> baseResourceSetBinding;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600179
John Kessenicha9313662017-06-15 10:40:49 -0600180// Add things like "#define ..." to a preamble to use in the beginning of the shader.
181class TPreamble {
182public:
183 TPreamble() { }
184
185 bool isSet() const { return text.size() > 0; }
186 const char* get() const { return text.c_str(); }
187
188 // #define...
189 void addDef(std::string def)
190 {
191 text.append("#define ");
192 fixLine(def);
193
John Kessenich2a271162017-07-20 20:00:36 -0600194 Processes.push_back("D");
195 Processes.back().append(def);
196
John Kessenicha9313662017-06-15 10:40:49 -0600197 // The first "=" needs to turn into a space
LoopDawgb97b25e2017-07-12 09:04:39 -0600198 const size_t equal = def.find_first_of("=");
John Kessenicha9313662017-06-15 10:40:49 -0600199 if (equal != def.npos)
200 def[equal] = ' ';
201
202 text.append(def);
203 text.append("\n");
204 }
205
206 // #undef...
207 void addUndef(std::string undef)
208 {
209 text.append("#undef ");
210 fixLine(undef);
John Kessenich2a271162017-07-20 20:00:36 -0600211
212 Processes.push_back("U");
213 Processes.back().append(undef);
214
John Kessenicha9313662017-06-15 10:40:49 -0600215 text.append(undef);
216 text.append("\n");
217 }
218
219protected:
220 void fixLine(std::string& line)
221 {
222 // Can't go past a newline in the line
LoopDawgb97b25e2017-07-12 09:04:39 -0600223 const size_t end = line.find_first_of("\n");
John Kessenicha9313662017-06-15 10:40:49 -0600224 if (end != line.npos)
225 line = line.substr(0, end);
226 }
227
228 std::string text; // contents of preamble
229};
230
231TPreamble UserPreamble;
232
John Kessenich68d78fd2015-07-12 19:28:10 -0600233//
234// Create the default name for saving a binary if -o is not provided.
235//
236const char* GetBinaryName(EShLanguage stage)
237{
238 const char* name;
239 if (binaryFileName == nullptr) {
240 switch (stage) {
241 case EShLangVertex: name = "vert.spv"; break;
242 case EShLangTessControl: name = "tesc.spv"; break;
243 case EShLangTessEvaluation: name = "tese.spv"; break;
244 case EShLangGeometry: name = "geom.spv"; break;
245 case EShLangFragment: name = "frag.spv"; break;
246 case EShLangCompute: name = "comp.spv"; break;
Chao Chen3c366992018-09-19 11:41:59 -0700247#ifdef NV_EXTENSIONS
Chao Chenb50c02e2018-09-19 11:42:24 -0700248 case EShLangRayGenNV: name = "rgen.spv"; break;
249 case EShLangIntersectNV: name = "rint.spv"; break;
250 case EShLangAnyHitNV: name = "rahit.spv"; break;
251 case EShLangClosestHitNV: name = "rchit.spv"; break;
252 case EShLangMissNV: name = "rmiss.spv"; break;
253 case EShLangCallableNV: name = "rcall.spv"; break;
Chao Chen3c366992018-09-19 11:41:59 -0700254 case EShLangMeshNV: name = "mesh.spv"; break;
255 case EShLangTaskNV: name = "task.spv"; break;
256#endif
John Kessenich68d78fd2015-07-12 19:28:10 -0600257 default: name = "unknown"; break;
258 }
259 } else
260 name = binaryFileName;
261
262 return name;
263}
John Kessenich2b07c7e2013-07-31 18:44:13 +0000264
John Kessenich05a70632013-09-17 19:26:08 +0000265//
266// *.conf => this is a config file that can set limits/resources
267//
268bool SetConfigFile(const std::string& name)
269{
270 if (name.size() < 5)
271 return false;
272
John Kessenich4c706852013-10-11 16:28:43 +0000273 if (name.compare(name.size() - 5, 5, ".conf") == 0) {
John Kessenich05a70632013-09-17 19:26:08 +0000274 ConfigFile = name;
275 return true;
276 }
277
278 return false;
279}
280
John Kessenich68d78fd2015-07-12 19:28:10 -0600281//
282// Give error and exit with failure code.
283//
284void Error(const char* message)
285{
John Kessenichaf527992017-11-02 22:48:15 -0600286 fprintf(stderr, "%s: Error %s (use -h for usage)\n", ExecutableName, message);
John Kessenich68d78fd2015-07-12 19:28:10 -0600287 exit(EFailUsage);
288}
289
290//
LoopDawg08a14422017-10-17 19:27:14 -0600291// Process an optional binding base of one the forms:
292// --argname [stage] base // base for stage (if given) or all stages (if not)
LoopDawge5709552017-10-21 10:46:39 -0600293// --argname [stage] [base set]... // set/base pairs: set the base for given binding set.
LoopDawg08a14422017-10-17 19:27:14 -0600294
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600295// Where stage is one of the forms accepted by FindLanguage, and base is an integer
296//
LoopDawg08a14422017-10-17 19:27:14 -0600297void ProcessBindingBase(int& argc, char**& argv, glslang::TResourceType res)
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600298{
299 if (argc < 2)
300 usage();
301
LoopDawg08a14422017-10-17 19:27:14 -0600302 EShLanguage lang = EShLangCount;
303 int singleBase = 0;
304 TPerSetBaseBinding perSetBase;
305 int arg = 1;
306
307 // Parse stage, if given
308 if (!isdigit(argv[arg][0])) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600309 if (argc < 3) // this form needs one more argument
310 usage();
John Kessenichecba76f2017-01-06 00:34:48 -0700311
LoopDawg08a14422017-10-17 19:27:14 -0600312 lang = FindLanguage(argv[arg++], false);
313 }
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600314
LoopDawg08a14422017-10-17 19:27:14 -0600315 if ((argc - arg) > 2 && isdigit(argv[arg+0][0]) && isdigit(argv[arg+1][0])) {
316 // Parse a per-set binding base
317 while ((argc - arg) > 2 && isdigit(argv[arg+0][0]) && isdigit(argv[arg+1][0])) {
LoopDawg08a14422017-10-17 19:27:14 -0600318 const int baseNum = atoi(argv[arg++]);
LoopDawge5709552017-10-21 10:46:39 -0600319 const int setNum = atoi(argv[arg++]);
LoopDawg08a14422017-10-17 19:27:14 -0600320 perSetBase[setNum] = baseNum;
321 }
322 } else {
323 // Parse single binding base
324 singleBase = atoi(argv[arg++]);
325 }
326
327 argc -= (arg-1);
328 argv += (arg-1);
329
330 // Set one or all languages
331 const int langMin = (lang < EShLangCount) ? lang+0 : 0;
332 const int langMax = (lang < EShLangCount) ? lang+1 : EShLangCount;
333
334 for (int lang = langMin; lang < langMax; ++lang) {
335 if (!perSetBase.empty())
John Kessenich251901a2018-08-12 22:05:59 -0600336 baseBindingForSet[res][lang].insert(perSetBase.begin(), perSetBase.end());
LoopDawg08a14422017-10-17 19:27:14 -0600337 else
338 baseBinding[res][lang] = singleBase;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600339 }
340}
341
Hyangran Park36dc8292017-05-02 16:27:29 +0900342void ProcessResourceSetBindingBase(int& argc, char**& argv, std::array<std::vector<std::string>, EShLangCount>& base)
343{
344 if (argc < 2)
345 usage();
346
347 if (!isdigit(argv[1][0])) {
LoopDawg52017192017-07-14 15:15:47 -0600348 if (argc < 3) // this form needs one more argument
Hyangran Park36dc8292017-05-02 16:27:29 +0900349 usage();
350
LoopDawg52017192017-07-14 15:15:47 -0600351 // Parse form: --argname stage [regname set base...], or:
352 // --argname stage set
Hyangran Park36dc8292017-05-02 16:27:29 +0900353 const EShLanguage lang = FindLanguage(argv[1], false);
354
LoopDawg52017192017-07-14 15:15:47 -0600355 argc--;
356 argv++;
357
358 while (argc > 1 && argv[1] != nullptr && argv[1][0] != '-') {
359 base[lang].push_back(argv[1]);
360
361 argc--;
362 argv++;
Hyangran Park36dc8292017-05-02 16:27:29 +0900363 }
LoopDawg52017192017-07-14 15:15:47 -0600364
365 // Must have one arg, or a multiple of three (for [regname set binding] triples)
366 if (base[lang].size() != 1 && (base[lang].size() % 3) != 0)
367 usage();
368
Hyangran Park36dc8292017-05-02 16:27:29 +0900369 } else {
LoopDawg52017192017-07-14 15:15:47 -0600370 // Parse form: --argname set
Hyangran Park36dc8292017-05-02 16:27:29 +0900371 for (int lang=0; lang<EShLangCount; ++lang)
372 base[lang].push_back(argv[1]);
373
374 argc--;
375 argv++;
376 }
377}
378
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600379//
John Kessenich68d78fd2015-07-12 19:28:10 -0600380// Do all command-line argument parsing. This includes building up the work-items
381// to be processed later, and saving all the command-line options.
382//
383// Does not return (it exits) if command-line is fatally flawed.
384//
Juan Lopeza558b262017-04-02 23:04:00 +0200385void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItems, int argc, char* argv[])
John Kessenich2b07c7e2013-07-31 18:44:13 +0000386{
LoopDawg08a14422017-10-17 19:27:14 -0600387 for (int res = 0; res < glslang::EResCount; ++res)
388 baseBinding[res].fill(0);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600389
John Kessenich38f3b892013-09-06 19:52:57 +0000390 ExecutableName = argv[0];
Juan Lopeza558b262017-04-02 23:04:00 +0200391 workItems.reserve(argc);
John Kessenich38f3b892013-09-06 19:52:57 +0000392
John Kessenichc178f0a2017-06-23 10:58:31 -0600393 const auto bumpArg = [&]() {
394 if (argc > 0) {
395 argc--;
396 argv++;
397 }
398 };
399
400 // read a string directly attached to a single-letter option
John Kessenich6263fb12017-06-14 15:52:44 -0600401 const auto getStringOperand = [&](const char* desc) {
402 if (argv[0][2] == 0) {
403 printf("%s must immediately follow option (no spaces)\n", desc);
404 exit(EFailUsage);
405 }
406 return argv[0] + 2;
407 };
408
John Kessenich6353d552017-06-23 11:11:09 -0600409 // read a number attached to a single-letter option
410 const auto getAttachedNumber = [&](const char* desc) {
411 int num = atoi(argv[0] + 2);
412 if (num == 0) {
413 printf("%s: expected attached non-0 number\n", desc);
414 exit(EFailUsage);
415 }
416 return num;
417 };
418
419 // minimum needed (without overriding something else) to target Vulkan SPIR-V
420 const auto setVulkanSpv = []() {
421 Options |= EOptionSpv;
422 Options |= EOptionVulkanRules;
423 Options |= EOptionLinkProgram;
424 };
425
426 // minimum needed (without overriding something else) to target OpenGL SPIR-V
427 const auto setOpenGlSpv = []() {
428 Options |= EOptionSpv;
429 Options |= EOptionLinkProgram;
430 // undo a -H default to Vulkan
431 Options &= ~EOptionVulkanRules;
432 };
433
John Kessenichc178f0a2017-06-23 10:58:31 -0600434 for (bumpArg(); argc >= 1; bumpArg()) {
John Kessenich2b07c7e2013-07-31 18:44:13 +0000435 if (argv[0][0] == '-') {
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000436 switch (argv[0][1]) {
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600437 case '-':
438 {
439 std::string lowerword(argv[0]+2);
440 std::transform(lowerword.begin(), lowerword.end(), lowerword.begin(), ::tolower);
441
442 // handle --word style options
John Kessenich6263fb12017-06-14 15:52:44 -0600443 if (lowerword == "auto-map-bindings" || // synonyms
John Kessenich6353d552017-06-23 11:11:09 -0600444 lowerword == "auto-map-binding" ||
445 lowerword == "amb") {
John Kessenich6263fb12017-06-14 15:52:44 -0600446 Options |= EOptionAutoMapBindings;
447 } else if (lowerword == "auto-map-locations" || // synonyms
448 lowerword == "aml") {
449 Options |= EOptionAutoMapLocations;
John Kessenich6353d552017-06-23 11:11:09 -0600450 } else if (lowerword == "client") {
451 if (argc > 1) {
452 if (strcmp(argv[1], "vulkan100") == 0)
453 setVulkanSpv();
454 else if (strcmp(argv[1], "opengl100") == 0)
455 setOpenGlSpv();
456 else
457 Error("--client expects vulkan100 or opengl100");
458 }
459 bumpArg();
John Kessenich640bd092018-08-09 14:15:00 -0600460 } else if (lowerword == "entry-point") {
461 entryPointName = argv[1];
462 if (argc <= 1)
463 Error("no <name> provided for --entry-point");
464 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600465 } else if (lowerword == "flatten-uniform-arrays" || // synonyms
466 lowerword == "flatten-uniform-array" ||
467 lowerword == "fua") {
468 Options |= EOptionFlattenUniformArrays;
469 } else if (lowerword == "hlsl-offsets") {
470 Options |= EOptionHlslOffsets;
471 } else if (lowerword == "hlsl-iomap" ||
472 lowerword == "hlsl-iomapper" ||
473 lowerword == "hlsl-iomapping") {
474 Options |= EOptionHlslIoMapping;
Rex Xucb61eec2018-03-07 13:10:01 +0800475 } else if (lowerword == "hlsl-enable-16bit-types") {
476 HlslEnable16BitTypes = true;
John Kessenichc6c80a62018-03-05 22:23:17 -0700477 } else if (lowerword == "invert-y" || // synonyms
478 lowerword == "iy") {
479 Options |= EOptionInvertY;
John Kessenich6263fb12017-06-14 15:52:44 -0600480 } else if (lowerword == "keep-uncalled" || // synonyms
481 lowerword == "ku") {
482 Options |= EOptionKeepUncalled;
483 } else if (lowerword == "no-storage-format" || // synonyms
484 lowerword == "nsf") {
485 Options |= EOptionNoStorageFormat;
John Kessenich2a271162017-07-20 20:00:36 -0600486 } else if (lowerword == "relaxed-errors") {
487 Options |= EOptionRelaxedErrors;
John Kessenich6263fb12017-06-14 15:52:44 -0600488 } else if (lowerword == "resource-set-bindings" || // synonyms
489 lowerword == "resource-set-binding" ||
490 lowerword == "rsb") {
491 ProcessResourceSetBindingBase(argc, argv, baseResourceSetBinding);
steve-lunarg9088be42016-11-01 10:31:42 -0600492 } else if (lowerword == "shift-image-bindings" || // synonyms
493 lowerword == "shift-image-binding" ||
494 lowerword == "sib") {
LoopDawg08a14422017-10-17 19:27:14 -0600495 ProcessBindingBase(argc, argv, glslang::EResImage);
John Kessenich6263fb12017-06-14 15:52:44 -0600496 } else if (lowerword == "shift-sampler-bindings" || // synonyms
John Kessenichade8bbb2018-08-12 21:24:55 -0600497 lowerword == "shift-sampler-binding" ||
498 lowerword == "ssb") {
LoopDawg08a14422017-10-17 19:27:14 -0600499 ProcessBindingBase(argc, argv, glslang::EResSampler);
John Kessenich6263fb12017-06-14 15:52:44 -0600500 } else if (lowerword == "shift-uav-bindings" || // synonyms
501 lowerword == "shift-uav-binding" ||
502 lowerword == "suavb") {
LoopDawg08a14422017-10-17 19:27:14 -0600503 ProcessBindingBase(argc, argv, glslang::EResUav);
John Kessenich6263fb12017-06-14 15:52:44 -0600504 } else if (lowerword == "shift-texture-bindings" || // synonyms
505 lowerword == "shift-texture-binding" ||
506 lowerword == "stb") {
LoopDawg08a14422017-10-17 19:27:14 -0600507 ProcessBindingBase(argc, argv, glslang::EResTexture);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600508 } else if (lowerword == "shift-ubo-bindings" || // synonyms
509 lowerword == "shift-ubo-binding" ||
steve-lunargbe283552017-04-18 12:18:01 -0600510 lowerword == "shift-cbuffer-bindings" ||
511 lowerword == "shift-cbuffer-binding" ||
512 lowerword == "sub" ||
513 lowerword == "scb") {
LoopDawg08a14422017-10-17 19:27:14 -0600514 ProcessBindingBase(argc, argv, glslang::EResUbo);
steve-lunarg932bb5c2017-02-21 17:19:08 -0700515 } else if (lowerword == "shift-ssbo-bindings" || // synonyms
516 lowerword == "shift-ssbo-binding" ||
517 lowerword == "sbb") {
LoopDawg08a14422017-10-17 19:27:14 -0600518 ProcessBindingBase(argc, argv, glslang::EResSsbo);
John Kessenich6263fb12017-06-14 15:52:44 -0600519 } else if (lowerword == "source-entrypoint" || // synonyms
520 lowerword == "sep") {
John Kessenichc178f0a2017-06-23 10:58:31 -0600521 if (argc <= 1)
John Kessenich6263fb12017-06-14 15:52:44 -0600522 Error("no <entry-point> provided for --source-entrypoint");
John Kessenichc178f0a2017-06-23 10:58:31 -0600523 sourceEntryPointName = argv[1];
524 bumpArg();
John Kessenich6263fb12017-06-14 15:52:44 -0600525 break;
John Kesseniche2156222018-06-11 18:12:15 -0600526 } else if (lowerword == "spirv-dis") {
527 SpvToolsDisassembler = true;
John Kessenichc3404252018-08-23 15:29:08 -0600528 } else if (lowerword == "spirv-val") {
529 SpvToolsValidate = true;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200530 } else if (lowerword == "stdin") {
531 Options |= EOptionStdin;
532 shaderStageName = argv[1];
John Kessenich2a271162017-07-20 20:00:36 -0600533 } else if (lowerword == "suppress-warnings") {
534 Options |= EOptionSuppressWarnings;
John Kessenich6353d552017-06-23 11:11:09 -0600535 } else if (lowerword == "target-env") {
536 if (argc > 1) {
537 if (strcmp(argv[1], "vulkan1.0") == 0) {
538 setVulkanSpv();
John Kessenich66011cb2018-03-06 16:12:04 -0700539 VulkanClientVersion = glslang::EShTargetVulkan_1_0;
540 } else if (strcmp(argv[1], "vulkan1.1") == 0) {
541 setVulkanSpv();
542 TargetVersion = glslang::EShTargetSpv_1_3;
543 VulkanClientVersion = glslang::EShTargetVulkan_1_1;
John Kessenich6353d552017-06-23 11:11:09 -0600544 } else if (strcmp(argv[1], "opengl") == 0) {
545 setOpenGlSpv();
John Kessenich66011cb2018-03-06 16:12:04 -0700546 OpenGLClientVersion = glslang::EShTargetOpenGL_450;
John Kessenich6353d552017-06-23 11:11:09 -0600547 } else
John Kessenich5d610ee2018-03-07 18:05:55 -0700548 Error("--target-env expected vulkan1.0, vulkan1.1, or opengl");
John Kessenich6353d552017-06-23 11:11:09 -0600549 }
550 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800551 } else if (lowerword == "variable-name" || // synonyms
John Kessenich66011cb2018-03-06 16:12:04 -0700552 lowerword == "vn") {
Flavio15017db2017-02-15 14:29:33 -0800553 Options |= EOptionOutputHexadecimal;
John Kessenichc178f0a2017-06-23 10:58:31 -0600554 if (argc <= 1)
Flavio15017db2017-02-15 14:29:33 -0800555 Error("no <C-variable-name> provided for --variable-name");
John Kessenichc178f0a2017-06-23 10:58:31 -0600556 variableName = argv[1];
557 bumpArg();
Flavio15017db2017-02-15 14:29:33 -0800558 break;
John Kessenichc6c80a62018-03-05 22:23:17 -0700559 } else if (lowerword == "version") {
560 Options |= EOptionDumpVersions;
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600561 } else {
562 usage();
563 }
564 }
565 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600566 case 'C':
567 Options |= EOptionCascadingErrors;
568 break;
569 case 'D':
John Kessenicha9313662017-06-15 10:40:49 -0600570 if (argv[0][2] == 0)
571 Options |= EOptionReadHlsl;
572 else
573 UserPreamble.addDef(getStringOperand("-D<macro> macro name"));
John Kessenich6263fb12017-06-14 15:52:44 -0600574 break;
575 case 'E':
576 Options |= EOptionOutputPreprocessed;
577 break;
578 case 'G':
John Kessenich6353d552017-06-23 11:11:09 -0600579 // OpenGL Client
580 setOpenGlSpv();
581 if (argv[0][2] != 0)
582 ClientInputSemanticsVersion = getAttachedNumber("-G<num> client input semantics");
John Kessenich6263fb12017-06-14 15:52:44 -0600583 break;
John Kessenich2aa7f3a2015-05-15 16:02:07 +0000584 case 'H':
585 Options |= EOptionHumanReadableSpv;
John Kessenich91e4aa52016-07-07 17:46:42 -0600586 if ((Options & EOptionSpv) == 0) {
587 // default to Vulkan
John Kessenich6353d552017-06-23 11:11:09 -0600588 setVulkanSpv();
John Kessenich91e4aa52016-07-07 17:46:42 -0600589 }
590 break;
John Kessenich971a0a82017-06-07 15:06:58 -0600591 case 'I':
John Kessenicha9313662017-06-15 10:40:49 -0600592 IncludeDirectoryList.push_back(getStringOperand("-I<dir> include path"));
John Kessenich68d78fd2015-07-12 19:28:10 -0600593 break;
GregFcd1f1692017-09-21 18:40:22 -0600594 case 'O':
595 if (argv[0][2] == 'd')
596 Options |= EOptionOptimizeDisable;
597 else if (argv[0][2] == 's')
GregFfb03a552018-03-29 11:49:14 -0600598#if ENABLE_OPT
GregFcd1f1692017-09-21 18:40:22 -0600599 Options |= EOptionOptimizeSize;
600#else
601 Error("-Os not available; optimizer not linked");
602#endif
603 else
604 Error("unknown -O option");
605 break;
Dan Baker5afdd782016-08-11 17:53:57 -0400606 case 'S':
John Kessenichc178f0a2017-06-23 10:58:31 -0600607 if (argc <= 1)
Dan Baker5afdd782016-08-11 17:53:57 -0400608 Error("no <stage> specified for -S");
John Kessenichc178f0a2017-06-23 10:58:31 -0600609 shaderStageName = argv[1];
610 bumpArg();
dankbaker45d49bc2016-08-08 21:43:07 -0400611 break;
John Kessenicha9313662017-06-15 10:40:49 -0600612 case 'U':
613 UserPreamble.addUndef(getStringOperand("-U<macro>: macro name"));
614 break;
John Kessenich6263fb12017-06-14 15:52:44 -0600615 case 'V':
John Kessenich6353d552017-06-23 11:11:09 -0600616 setVulkanSpv();
617 if (argv[0][2] != 0)
David Neto506d2c22018-02-27 21:55:23 -0500618 ClientInputSemanticsVersion = getAttachedNumber("-V<num> client input semantics");
John Kessenichc555ddd2015-06-17 02:38:44 +0000619 break;
John Kessenich05a70632013-09-17 19:26:08 +0000620 case 'c':
621 Options |= EOptionDumpConfig;
622 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000623 case 'd':
John Kessenichc6c80a62018-03-05 22:23:17 -0700624 if (strncmp(&argv[0][1], "dumpversion", strlen(&argv[0][1]) + 1) == 0 ||
625 strncmp(&argv[0][1], "dumpfullversion", strlen(&argv[0][1]) + 1) == 0)
626 Options |= EOptionDumpBareVersion;
627 else
628 Options |= EOptionDefaultDesktop;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000629 break;
John Kessenich4d65ee32016-03-12 18:17:47 -0700630 case 'e':
John Kessenich4d65ee32016-03-12 18:17:47 -0700631 entryPointName = argv[1];
John Kessenichc178f0a2017-06-23 10:58:31 -0600632 if (argc <= 1)
John Kessenicha25530c2017-09-11 20:13:49 -0600633 Error("no <name> provided for -e");
John Kessenichc178f0a2017-06-23 10:58:31 -0600634 bumpArg();
John Kessenich4d65ee32016-03-12 18:17:47 -0700635 break;
John Kessenich5d610ee2018-03-07 18:05:55 -0700636 case 'f':
637 if (strcmp(&argv[0][2], "hlsl_functionality1") == 0)
638 targetHlslFunctionality1 = true;
639 else
640 Error("-f: expected hlsl_functionality1");
641 break;
John Kessenich121853f2017-05-31 17:11:16 -0600642 case 'g':
643 Options |= EOptionDebug;
644 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600645 case 'h':
646 usage();
647 break;
John Kessenich05a70632013-09-17 19:26:08 +0000648 case 'i':
John Kessenich94a81fb2013-08-31 02:41:30 +0000649 Options |= EOptionIntermediate;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000650 break;
651 case 'l':
John Kessenichd78e3512014-08-25 20:07:55 +0000652 Options |= EOptionLinkProgram;
John Kessenich94a81fb2013-08-31 02:41:30 +0000653 break;
654 case 'm':
655 Options |= EOptionMemoryLeakMode;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000656 break;
John Kessenich68d78fd2015-07-12 19:28:10 -0600657 case 'o':
John Kessenichc178f0a2017-06-23 10:58:31 -0600658 if (argc <= 1)
John Kessenich68d78fd2015-07-12 19:28:10 -0600659 Error("no <file> provided for -o");
John Kessenichc178f0a2017-06-23 10:58:31 -0600660 binaryFileName = argv[1];
661 bumpArg();
John Kessenich68d78fd2015-07-12 19:28:10 -0600662 break;
John Kessenich11f9fc72013-11-07 01:06:34 +0000663 case 'q':
664 Options |= EOptionDumpReflection;
665 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000666 case 'r':
John Kessenich94a81fb2013-08-31 02:41:30 +0000667 Options |= EOptionRelaxedErrors;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000668 break;
669 case 's':
John Kessenich94a81fb2013-08-31 02:41:30 +0000670 Options |= EOptionSuppressInfolog;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000671 break;
John Kessenich38f3b892013-09-06 19:52:57 +0000672 case 't':
Juan Lopeza558b262017-04-02 23:04:00 +0200673 Options |= EOptionMultiThreaded;
John Kessenich38f3b892013-09-06 19:52:57 +0000674 break;
John Kessenich319de232013-12-04 04:43:40 +0000675 case 'v':
676 Options |= EOptionDumpVersions;
677 break;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000678 case 'w':
679 Options |= EOptionSuppressWarnings;
680 break;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500681 case 'x':
682 Options |= EOptionOutputHexadecimal;
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500683 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000684 default:
John Kessenich68d78fd2015-07-12 19:28:10 -0600685 usage();
686 break;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000687 }
John Kessenich38f3b892013-09-06 19:52:57 +0000688 } else {
John Kessenich05a70632013-09-17 19:26:08 +0000689 std::string name(argv[0]);
690 if (! SetConfigFile(name)) {
Juan Lopeza558b262017-04-02 23:04:00 +0200691 workItems.push_back(std::unique_ptr<glslang::TWorkItem>(new glslang::TWorkItem(name)));
John Kessenich05a70632013-09-17 19:26:08 +0000692 }
John Kessenich38f3b892013-09-06 19:52:57 +0000693 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000694 }
695
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200696 // Make sure that -S is always specified if --stdin is specified
697 if ((Options & EOptionStdin) && shaderStageName == nullptr)
698 Error("must provide -S when --stdin is given");
699
John Kessenich68d78fd2015-07-12 19:28:10 -0600700 // Make sure that -E is not specified alongside linking (which includes SPV generation)
701 if ((Options & EOptionOutputPreprocessed) && (Options & EOptionLinkProgram))
702 Error("can't use -E when linking is selected");
John Kessenichc555ddd2015-06-17 02:38:44 +0000703
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -0500704 // -o or -x makes no sense if there is no target binary
John Kessenich68d78fd2015-07-12 19:28:10 -0600705 if (binaryFileName && (Options & EOptionSpv) == 0)
706 Error("no binary generation requested (e.g., -V)");
steve-lunarge0b9deb2016-09-16 13:26:37 -0600707
708 if ((Options & EOptionFlattenUniformArrays) != 0 &&
709 (Options & EOptionReadHlsl) == 0)
710 Error("uniform array flattening only valid when compiling HLSL source.");
John Kessenich2b07c7e2013-07-31 18:44:13 +0000711}
712
John Kessenich68d78fd2015-07-12 19:28:10 -0600713//
714// Translate the meaningful subset of command-line options to parser-behavior options.
715//
John Kessenichb0a7eb52013-11-07 17:44:20 +0000716void SetMessageOptions(EShMessages& messages)
717{
718 if (Options & EOptionRelaxedErrors)
719 messages = (EShMessages)(messages | EShMsgRelaxedErrors);
720 if (Options & EOptionIntermediate)
721 messages = (EShMessages)(messages | EShMsgAST);
722 if (Options & EOptionSuppressWarnings)
723 messages = (EShMessages)(messages | EShMsgSuppressWarnings);
John Kessenich68d78fd2015-07-12 19:28:10 -0600724 if (Options & EOptionSpv)
725 messages = (EShMessages)(messages | EShMsgSpvRules);
726 if (Options & EOptionVulkanRules)
727 messages = (EShMessages)(messages | EShMsgVulkanRules);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400728 if (Options & EOptionOutputPreprocessed)
729 messages = (EShMessages)(messages | EShMsgOnlyPreprocessor);
John Kessenich66e2faf2016-03-12 18:34:36 -0700730 if (Options & EOptionReadHlsl)
731 messages = (EShMessages)(messages | EShMsgReadHlsl);
John Kessenicha86836e2016-07-09 14:50:57 -0600732 if (Options & EOptionCascadingErrors)
733 messages = (EShMessages)(messages | EShMsgCascadingErrors);
John Kessenich906cc212016-12-09 19:22:20 -0700734 if (Options & EOptionKeepUncalled)
735 messages = (EShMessages)(messages | EShMsgKeepUncalled);
John Kessenich4f1403e2017-04-05 17:38:20 -0600736 if (Options & EOptionHlslOffsets)
737 messages = (EShMessages)(messages | EShMsgHlslOffsets);
John Kessenich121853f2017-05-31 17:11:16 -0600738 if (Options & EOptionDebug)
739 messages = (EShMessages)(messages | EShMsgDebugInfo);
Rex Xucb61eec2018-03-07 13:10:01 +0800740 if (HlslEnable16BitTypes)
741 messages = (EShMessages)(messages | EShMsgHlslEnable16BitTypes);
GregFfb03a552018-03-29 11:49:14 -0600742 if ((Options & EOptionOptimizeDisable) || !ENABLE_OPT)
743 messages = (EShMessages)(messages | EShMsgHlslLegalization);
John Kessenichb0a7eb52013-11-07 17:44:20 +0000744}
745
John Kessenich68d78fd2015-07-12 19:28:10 -0600746//
John Kessenich69f4b512013-09-04 21:19:27 +0000747// Thread entry point, for non-linking asynchronous mode.
John Kessenichc999ba22013-11-07 23:33:24 +0000748//
Juan Lopeza558b262017-04-02 23:04:00 +0200749void CompileShaders(glslang::TWorklist& worklist)
John Kessenich2b07c7e2013-07-31 18:44:13 +0000750{
John Kessenich7f0bcfd2018-04-05 19:00:01 -0600751 if (Options & EOptionDebug)
752 Error("cannot generate debug information unless linking to generate code");
753
John Kessenich38f3b892013-09-06 19:52:57 +0000754 glslang::TWorkItem* workItem;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200755 if (Options & EOptionStdin) {
John Kesseniche7f9cae2018-07-12 15:11:07 -0600756 if (worklist.remove(workItem)) {
757 ShHandle compiler = ShConstructCompiler(FindLanguage("stdin"), Options);
758 if (compiler == nullptr)
759 return;
John Kessenich2b07c7e2013-07-31 18:44:13 +0000760
John Kesseniche7f9cae2018-07-12 15:11:07 -0600761 CompileFile("stdin", compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000762
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200763 if (! (Options & EOptionSuppressInfolog))
764 workItem->results = ShGetInfoLog(compiler);
John Kessenich2b07c7e2013-07-31 18:44:13 +0000765
John Kesseniche7f9cae2018-07-12 15:11:07 -0600766 ShDestruct(compiler);
767 }
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +0200768 } else {
769 while (worklist.remove(workItem)) {
770 ShHandle compiler = ShConstructCompiler(FindLanguage(workItem->name), Options);
771 if (compiler == 0)
772 return;
773
774 CompileFile(workItem->name.c_str(), compiler);
775
776 if (! (Options & EOptionSuppressInfolog))
777 workItem->results = ShGetInfoLog(compiler);
778
779 ShDestruct(compiler);
780 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000781 }
John Kessenich2b07c7e2013-07-31 18:44:13 +0000782}
783
John Kessenich6626cad2015-06-19 05:14:19 +0000784// Outputs the given string, but only if it is non-null and non-empty.
785// This prevents erroneous newlines from appearing.
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400786void PutsIfNonEmpty(const char* str)
John Kessenich6626cad2015-06-19 05:14:19 +0000787{
788 if (str && str[0]) {
789 puts(str);
790 }
791}
792
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400793// Outputs the given string to stderr, but only if it is non-null and non-empty.
794// This prevents erroneous newlines from appearing.
795void StderrIfNonEmpty(const char* str)
796{
John Kessenich04acb1b2017-06-14 17:36:50 -0600797 if (str && str[0])
798 fprintf(stderr, "%s\n", str);
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400799}
800
John Kessenichc57b2a92016-01-16 15:30:03 -0700801// Simple bundling of what makes a compilation unit for ease in passing around,
802// and separation of handling file IO versus API (programmatic) compilation.
803struct ShaderCompUnit {
804 EShLanguage stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600805 static const int maxCount = 1;
806 int count; // live number of strings/names
John Kessenicha9313662017-06-15 10:40:49 -0600807 const char* text[maxCount]; // memory owned/managed externally
John Kessenich04acb1b2017-06-14 17:36:50 -0600808 std::string fileName[maxCount]; // hold's the memory, but...
809 const char* fileNameList[maxCount]; // downstream interface wants pointers
dankbakerafe6e9c2016-08-21 12:29:08 -0400810
John Kessenich04acb1b2017-06-14 17:36:50 -0600811 ShaderCompUnit(EShLanguage stage) : stage(stage), count(0) { }
dankbakerafe6e9c2016-08-21 12:29:08 -0400812
John Kessenich04acb1b2017-06-14 17:36:50 -0600813 ShaderCompUnit(const ShaderCompUnit& rhs)
dankbakerafe6e9c2016-08-21 12:29:08 -0400814 {
815 stage = rhs.stage;
John Kessenich04acb1b2017-06-14 17:36:50 -0600816 count = rhs.count;
817 for (int i = 0; i < count; ++i) {
818 fileName[i] = rhs.fileName[i];
819 text[i] = rhs.text[i];
820 fileNameList[i] = rhs.fileName[i].c_str();
821 }
dankbakerafe6e9c2016-08-21 12:29:08 -0400822 }
823
John Kessenicha9313662017-06-15 10:40:49 -0600824 void addString(std::string& ifileName, const char* itext)
John Kessenich04acb1b2017-06-14 17:36:50 -0600825 {
826 assert(count < maxCount);
827 fileName[count] = ifileName;
828 text[count] = itext;
829 fileNameList[count] = fileName[count].c_str();
830 ++count;
831 }
John Kessenichc57b2a92016-01-16 15:30:03 -0700832};
833
John Kessenich69f4b512013-09-04 21:19:27 +0000834//
John Kessenichc57b2a92016-01-16 15:30:03 -0700835// For linking mode: Will independently parse each compilation unit, but then put them
836// in the same program and link them together, making at most one linked module per
837// pipeline stage.
John Kessenich69f4b512013-09-04 21:19:27 +0000838//
839// Uses the new C++ interface instead of the old handle-based interface.
840//
John Kessenichc57b2a92016-01-16 15:30:03 -0700841
842void CompileAndLinkShaderUnits(std::vector<ShaderCompUnit> compUnits)
John Kessenich69f4b512013-09-04 21:19:27 +0000843{
844 // keep track of what to free
845 std::list<glslang::TShader*> shaders;
John Kessenichc57b2a92016-01-16 15:30:03 -0700846
John Kessenich69f4b512013-09-04 21:19:27 +0000847 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +0000848 SetMessageOptions(messages);
John Kessenich69f4b512013-09-04 21:19:27 +0000849
John Kessenich69f4b512013-09-04 21:19:27 +0000850 //
851 // Per-shader processing...
852 //
853
John Kessenich5b0f13a2013-11-01 03:08:40 +0000854 glslang::TProgram& program = *new glslang::TProgram;
rdb32084e82016-02-23 22:17:38 +0100855 for (auto it = compUnits.cbegin(); it != compUnits.cend(); ++it) {
856 const auto &compUnit = *it;
John Kessenichc57b2a92016-01-16 15:30:03 -0700857 glslang::TShader* shader = new glslang::TShader(compUnit.stage);
John Kessenich04acb1b2017-06-14 17:36:50 -0600858 shader->setStringsWithLengthsAndNames(compUnit.text, NULL, compUnit.fileNameList, compUnit.count);
John Kessenich640bd092018-08-09 14:15:00 -0600859 if (entryPointName)
John Kessenich4d65ee32016-03-12 18:17:47 -0700860 shader->setEntryPoint(entryPointName);
John Kessenich3693e632017-09-29 17:51:52 -0600861 if (sourceEntryPointName) {
862 if (entryPointName == nullptr)
863 printf("Warning: Changing source entry point name without setting an entry-point name.\n"
864 "Use '-e <name>'.\n");
steve-lunargf1e0c872016-10-31 15:13:43 -0600865 shader->setSourceEntryPoint(sourceEntryPointName);
John Kessenich3693e632017-09-29 17:51:52 -0600866 }
John Kessenicha9313662017-06-15 10:40:49 -0600867 if (UserPreamble.isSet())
868 shader->setPreamble(UserPreamble.get());
John Kessenich2a271162017-07-20 20:00:36 -0600869 shader->addProcesses(Processes);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600870
LoopDawg08a14422017-10-17 19:27:14 -0600871 // Set IO mapper binding shift values
872 for (int r = 0; r < glslang::EResCount; ++r) {
873 const glslang::TResourceType res = glslang::TResourceType(r);
874
875 // Set base bindings
876 shader->setShiftBinding(res, baseBinding[res][compUnit.stage]);
877
878 // Set bindings for particular resource sets
879 // TODO: use a range based for loop here, when available in all environments.
880 for (auto i = baseBindingForSet[res][compUnit.stage].begin();
881 i != baseBindingForSet[res][compUnit.stage].end(); ++i)
LoopDawge5709552017-10-21 10:46:39 -0600882 shader->setShiftBindingForSet(res, i->second, i->first);
LoopDawg08a14422017-10-17 19:27:14 -0600883 }
884
steve-lunarge0b9deb2016-09-16 13:26:37 -0600885 shader->setFlattenUniformArrays((Options & EOptionFlattenUniformArrays) != 0);
steve-lunargcce8d482016-10-14 18:36:42 -0600886 shader->setNoStorageFormat((Options & EOptionNoStorageFormat) != 0);
Hyangran Park36dc8292017-05-02 16:27:29 +0900887 shader->setResourceSetBinding(baseResourceSetBinding[compUnit.stage]);
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600888
steve-lunargbe283552017-04-18 12:18:01 -0600889 if (Options & EOptionHlslIoMapping)
890 shader->setHlslIoMapping(true);
891
steve-lunarg7f7c2ed2016-09-07 15:20:19 -0600892 if (Options & EOptionAutoMapBindings)
893 shader->setAutoMapBindings(true);
John Kessenichecba76f2017-01-06 00:34:48 -0700894
John Kessenich71facdf2017-05-17 18:28:19 -0600895 if (Options & EOptionAutoMapLocations)
896 shader->setAutoMapLocations(true);
897
LoopDawgb22c0692017-12-06 16:52:03 -0700898 if (Options & EOptionInvertY)
899 shader->setInvertY(true);
900
John Kessenich4be4aeb2017-06-23 10:50:22 -0600901 // Set up the environment, some subsettings take precedence over earlier
902 // ways of setting things.
903 if (Options & EOptionSpv) {
904 if (Options & EOptionVulkanRules) {
905 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
906 : glslang::EShSourceGlsl,
John Kessenich6353d552017-06-23 11:11:09 -0600907 compUnit.stage, glslang::EShClientVulkan, ClientInputSemanticsVersion);
908 shader->setEnvClient(glslang::EShClientVulkan, VulkanClientVersion);
John Kessenich4be4aeb2017-06-23 10:50:22 -0600909 } else {
910 shader->setEnvInput((Options & EOptionReadHlsl) ? glslang::EShSourceHlsl
911 : glslang::EShSourceGlsl,
John Kessenich6353d552017-06-23 11:11:09 -0600912 compUnit.stage, glslang::EShClientOpenGL, ClientInputSemanticsVersion);
913 shader->setEnvClient(glslang::EShClientOpenGL, OpenGLClientVersion);
John Kessenich4be4aeb2017-06-23 10:50:22 -0600914 }
John Kessenich5d610ee2018-03-07 18:05:55 -0700915 shader->setEnvTarget(glslang::EShTargetSpv, TargetVersion);
916 if (targetHlslFunctionality1)
917 shader->setEnvTargetHlslFunctionality1();
John Kessenich4be4aeb2017-06-23 10:50:22 -0600918 }
919
John Kessenich69f4b512013-09-04 21:19:27 +0000920 shaders.push_back(shader);
John Kessenichb3297152015-07-11 18:01:03 -0600921
John Kessenich4be4aeb2017-06-23 10:50:22 -0600922 const int defaultVersion = Options & EOptionDefaultDesktop ? 110 : 100;
John Kessenich69f4b512013-09-04 21:19:27 +0000923
John Kessenich3494b4d2017-05-22 15:00:42 -0600924 DirStackFileIncluder includer;
John Kessenich971a0a82017-06-07 15:06:58 -0600925 std::for_each(IncludeDirectoryList.rbegin(), IncludeDirectoryList.rend(), [&includer](const std::string& dir) {
926 includer.pushExternalLocalDirectory(dir); });
John Kessenichc555ddd2015-06-17 02:38:44 +0000927 if (Options & EOptionOutputPreprocessed) {
928 std::string str;
Dejan Mircevski7be4b822015-06-17 11:40:33 -0400929 if (shader->preprocess(&Resources, defaultVersion, ENoProfile, false, false,
Andrew Woloszyna132af52016-03-07 13:23:09 -0500930 messages, &str, includer)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400931 PutsIfNonEmpty(str.c_str());
932 } else {
933 CompileFailed = true;
934 }
935 StderrIfNonEmpty(shader->getInfoLog());
936 StderrIfNonEmpty(shader->getInfoDebugLog());
John Kessenichc555ddd2015-06-17 02:38:44 +0000937 continue;
938 }
John Kessenich3494b4d2017-05-22 15:00:42 -0600939 if (! shader->parse(&Resources, defaultVersion, false, messages, includer))
John Kessenichc999ba22013-11-07 23:33:24 +0000940 CompileFailed = true;
John Kessenichc555ddd2015-06-17 02:38:44 +0000941
John Kessenich69f4b512013-09-04 21:19:27 +0000942 program.addShader(shader);
943
John Kessenichc57b2a92016-01-16 15:30:03 -0700944 if (! (Options & EOptionSuppressInfolog) &&
945 ! (Options & EOptionMemoryLeakMode)) {
John Kessenich04acb1b2017-06-14 17:36:50 -0600946 PutsIfNonEmpty(compUnit.fileName[0].c_str());
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400947 PutsIfNonEmpty(shader->getInfoLog());
948 PutsIfNonEmpty(shader->getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000949 }
John Kessenich69f4b512013-09-04 21:19:27 +0000950 }
951
952 //
953 // Program-level processing...
954 //
955
John Kessenich4d65ee32016-03-12 18:17:47 -0700956 // Link
John Kessenich68d78fd2015-07-12 19:28:10 -0600957 if (! (Options & EOptionOutputPreprocessed) && ! program.link(messages))
John Kessenichc999ba22013-11-07 23:33:24 +0000958 LinkFailed = true;
959
steve-lunarg9ae34742016-10-05 13:40:13 -0600960 // Map IO
961 if (Options & EOptionSpv) {
962 if (!program.mapIO())
963 LinkFailed = true;
964 }
John Kessenichecba76f2017-01-06 00:34:48 -0700965
John Kessenich4d65ee32016-03-12 18:17:47 -0700966 // Report
John Kessenichc57b2a92016-01-16 15:30:03 -0700967 if (! (Options & EOptionSuppressInfolog) &&
968 ! (Options & EOptionMemoryLeakMode)) {
Andrew Woloszynaae1ad82015-06-24 17:00:46 -0400969 PutsIfNonEmpty(program.getInfoLog());
970 PutsIfNonEmpty(program.getInfoDebugLog());
John Kessenich69f4b512013-09-04 21:19:27 +0000971 }
972
John Kessenich4d65ee32016-03-12 18:17:47 -0700973 // Reflect
John Kessenich11f9fc72013-11-07 01:06:34 +0000974 if (Options & EOptionDumpReflection) {
975 program.buildReflection();
976 program.dumpReflection();
977 }
978
John Kessenich4d65ee32016-03-12 18:17:47 -0700979 // Dump SPIR-V
John Kessenich0df0cde2015-03-03 17:09:43 +0000980 if (Options & EOptionSpv) {
John Kessenich92f90382014-07-28 04:21:04 +0000981 if (CompileFailed || LinkFailed)
John Kessenich68d78fd2015-07-12 19:28:10 -0600982 printf("SPIR-V is not generated for failed compile or link\n");
John Kessenich92f90382014-07-28 04:21:04 +0000983 else {
984 for (int stage = 0; stage < EShLangCount; ++stage) {
John Kessenicha7a68a92014-08-24 18:21:00 +0000985 if (program.getIntermediate((EShLanguage)stage)) {
John Kessenich0df0cde2015-03-03 17:09:43 +0000986 std::vector<unsigned int> spirv;
Lei Zhang09caf122016-05-02 18:11:54 -0400987 std::string warningsErrors;
Lei Zhang17535f72016-05-04 15:55:59 -0400988 spv::SpvBuildLogger logger;
John Kessenich121853f2017-05-31 17:11:16 -0600989 glslang::SpvOptions spvOptions;
990 if (Options & EOptionDebug)
991 spvOptions.generateDebugInfo = true;
GregF52fe3d52017-09-28 10:08:32 -0600992 spvOptions.disableOptimizer = (Options & EOptionOptimizeDisable) != 0;
993 spvOptions.optimizeSize = (Options & EOptionOptimizeSize) != 0;
John Kessenich717c80a2018-08-23 15:17:10 -0600994 spvOptions.disassemble = SpvToolsDisassembler;
John Kessenichc3404252018-08-23 15:29:08 -0600995 spvOptions.validate = SpvToolsValidate;
John Kessenich121853f2017-05-31 17:11:16 -0600996 glslang::GlslangToSpv(*program.getIntermediate((EShLanguage)stage), spirv, &logger, &spvOptions);
John Kessenichc57b2a92016-01-16 15:30:03 -0700997
998 // Dump the spv to a file or stdout, etc., but only if not doing
999 // memory/perf testing, as it's not internal to programmatic use.
1000 if (! (Options & EOptionMemoryLeakMode)) {
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05001001 printf("%s", logger.getAllMessages().c_str());
1002 if (Options & EOptionOutputHexadecimal) {
John Kessenich8f674e82017-02-18 09:45:40 -07001003 glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage), variableName);
Johannes van Waverenecb0f3b2016-05-27 12:55:53 -05001004 } else {
1005 glslang::OutputSpvBin(spirv, GetBinaryName((EShLanguage)stage));
1006 }
John Kesseniche2156222018-06-11 18:12:15 -06001007 if (!SpvToolsDisassembler && (Options & EOptionHumanReadableSpv))
John Kessenichc57b2a92016-01-16 15:30:03 -07001008 spv::Disassemble(std::cout, spirv);
John Kessenichacba7722015-03-04 03:48:38 +00001009 }
John Kessenicha7a68a92014-08-24 18:21:00 +00001010 }
John Kessenich92f90382014-07-28 04:21:04 +00001011 }
1012 }
1013 }
1014
John Kessenich5b0f13a2013-11-01 03:08:40 +00001015 // Free everything up, program has to go before the shaders
1016 // because it might have merged stuff from the shaders, and
1017 // the stuff from the shaders has to have its destructors called
1018 // before the pools holding the memory in the shaders is freed.
1019 delete &program;
John Kessenich69f4b512013-09-04 21:19:27 +00001020 while (shaders.size() > 0) {
1021 delete shaders.back();
1022 shaders.pop_back();
1023 }
John Kessenich69f4b512013-09-04 21:19:27 +00001024}
1025
John Kessenichc57b2a92016-01-16 15:30:03 -07001026//
1027// Do file IO part of compile and link, handing off the pure
1028// API/programmatic mode to CompileAndLinkShaderUnits(), which can
1029// be put in a loop for testing memory footprint and performance.
1030//
1031// This is just for linking mode: meaning all the shaders will be put into the
1032// the same program linked together.
1033//
1034// This means there are a limited number of work items (not multi-threading mode)
1035// and that the point is testing at the linking level. Hence, to enable
1036// performance and memory testing, the actual compile/link can be put in
1037// a loop, independent of processing the work items and file IO.
1038//
Juan Lopeza558b262017-04-02 23:04:00 +02001039void CompileAndLinkShaderFiles(glslang::TWorklist& Worklist)
John Kessenichc57b2a92016-01-16 15:30:03 -07001040{
1041 std::vector<ShaderCompUnit> compUnits;
1042
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001043 // If this is using stdin, we can't really detect multiple different file
1044 // units by input type. We need to assume that we're just being given one
1045 // file of a certain type.
1046 if ((Options & EOptionStdin) != 0) {
1047 ShaderCompUnit compUnit(FindLanguage("stdin"));
1048 std::istreambuf_iterator<char> begin(std::cin), end;
1049 std::string tempString(begin, end);
1050 char* fileText = strdup(tempString.c_str());
1051 std::string fileName = "stdin";
1052 compUnit.addString(fileName, fileText);
John Kessenichc57b2a92016-01-16 15:30:03 -07001053 compUnits.push_back(compUnit);
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001054 } else {
1055 // Transfer all the work items from to a simple list of
1056 // of compilation units. (We don't care about the thread
1057 // work-item distribution properties in this path, which
1058 // is okay due to the limited number of shaders, know since
1059 // they are all getting linked together.)
1060 glslang::TWorkItem* workItem;
1061 while (Worklist.remove(workItem)) {
1062 ShaderCompUnit compUnit(FindLanguage(workItem->name));
1063 char* fileText = ReadFileData(workItem->name.c_str());
1064 if (fileText == nullptr)
1065 usage();
1066 compUnit.addString(workItem->name, fileText);
1067 compUnits.push_back(compUnit);
1068 }
John Kessenichc57b2a92016-01-16 15:30:03 -07001069 }
1070
1071 // Actual call to programmatic processing of compile and link,
1072 // in a loop for testing memory and performance. This part contains
1073 // all the perf/memory that a programmatic consumer will care about.
1074 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1075 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j)
1076 CompileAndLinkShaderUnits(compUnits);
1077
1078 if (Options & EOptionMemoryLeakMode)
1079 glslang::OS_DumpMemoryCounters();
1080 }
1081
John Kessenicha9313662017-06-15 10:40:49 -06001082 // free memory from ReadFileData, which got stored in a const char*
1083 // as the first string above
rdb32084e82016-02-23 22:17:38 +01001084 for (auto it = compUnits.begin(); it != compUnits.end(); ++it)
John Kessenicha9313662017-06-15 10:40:49 -06001085 FreeFileData(const_cast<char*>(it->text[0]));
John Kessenichc57b2a92016-01-16 15:30:03 -07001086}
1087
John Kessenich94f28eb2017-11-13 01:32:06 -07001088int singleMain()
John Kessenicha0af4732012-12-12 21:15:54 +00001089{
Juan Lopeza558b262017-04-02 23:04:00 +02001090 glslang::TWorklist workList;
John Kessenich94f28eb2017-11-13 01:32:06 -07001091 std::for_each(WorkItems.begin(), WorkItems.end(), [&workList](std::unique_ptr<glslang::TWorkItem>& item) {
Juan Lopeza558b262017-04-02 23:04:00 +02001092 assert(item);
1093 workList.add(item.get());
1094 });
John Kessenich2b07c7e2013-07-31 18:44:13 +00001095
John Kessenich05a70632013-09-17 19:26:08 +00001096 if (Options & EOptionDumpConfig) {
Lei Zhang414eb602016-03-04 16:22:34 -05001097 printf("%s", glslang::GetDefaultTBuiltInResourceString().c_str());
Juan Lopeza558b262017-04-02 23:04:00 +02001098 if (workList.empty())
John Kessenich05a70632013-09-17 19:26:08 +00001099 return ESuccess;
1100 }
1101
John Kessenichc6c80a62018-03-05 22:23:17 -07001102 if (Options & EOptionDumpBareVersion) {
1103 printf("%d.%d.%d\n",
1104 glslang::GetSpirvGeneratorVersion(), GLSLANG_MINOR_VERSION, GLSLANG_PATCH_LEVEL);
1105 if (workList.empty())
1106 return ESuccess;
1107 } else if (Options & EOptionDumpVersions) {
1108 printf("Glslang Version: %d.%d.%d\n",
1109 glslang::GetSpirvGeneratorVersion(), GLSLANG_MINOR_VERSION, GLSLANG_PATCH_LEVEL);
John Kessenich319de232013-12-04 04:43:40 +00001110 printf("ESSL Version: %s\n", glslang::GetEsslVersionString());
1111 printf("GLSL Version: %s\n", glslang::GetGlslVersionString());
John Kessenich68d78fd2015-07-12 19:28:10 -06001112 std::string spirvVersion;
1113 glslang::GetSpirvVersion(spirvVersion);
John Kessenich0da9eaa2015-08-01 17:10:02 -06001114 printf("SPIR-V Version %s\n", spirvVersion.c_str());
John Kessenich5e4b1242015-08-06 22:53:06 -06001115 printf("GLSL.std.450 Version %d, Revision %d\n", GLSLstd450Version, GLSLstd450Revision);
John Kessenich55e7d112015-11-15 21:33:39 -07001116 printf("Khronos Tool ID %d\n", glslang::GetKhronosToolId());
John Kessenicha372a3e2017-11-02 22:32:14 -06001117 printf("SPIR-V Generator Version %d\n", glslang::GetSpirvGeneratorVersion());
John Kessenichb84313d2016-07-20 16:03:29 -06001118 printf("GL_KHR_vulkan_glsl version %d\n", 100);
1119 printf("ARB_GL_gl_spirv version %d\n", 100);
Juan Lopeza558b262017-04-02 23:04:00 +02001120 if (workList.empty())
John Kessenich319de232013-12-04 04:43:40 +00001121 return ESuccess;
1122 }
1123
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001124 if (workList.empty() && ((Options & EOptionStdin) == 0)) {
John Kessenich05a70632013-09-17 19:26:08 +00001125 usage();
John Kessenich05a70632013-09-17 19:26:08 +00001126 }
1127
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001128 if (Options & EOptionStdin) {
John Kessenich94f28eb2017-11-13 01:32:06 -07001129 WorkItems.push_back(std::unique_ptr<glslang::TWorkItem>{new glslang::TWorkItem("stdin")});
1130 workList.add(WorkItems.back().get());
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001131 }
1132
John Kessenich05a70632013-09-17 19:26:08 +00001133 ProcessConfigFile();
1134
John Kessenich69f4b512013-09-04 21:19:27 +00001135 //
1136 // Two modes:
John Kessenich38f3b892013-09-06 19:52:57 +00001137 // 1) linking all arguments together, single-threaded, new C++ interface
1138 // 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 +00001139 //
John Kessenichc555ddd2015-06-17 02:38:44 +00001140 if (Options & EOptionLinkProgram ||
1141 Options & EOptionOutputPreprocessed) {
John Kessenichc36e1d82013-11-01 17:41:52 +00001142 glslang::InitializeProcess();
John Kesseniche2c15b42017-11-16 22:48:41 -07001143 glslang::InitializeProcess(); // also test reference counting of users
1144 glslang::InitializeProcess(); // also test reference counting of users
1145 glslang::FinalizeProcess(); // also test reference counting of users
1146 glslang::FinalizeProcess(); // also test reference counting of users
Juan Lopeza558b262017-04-02 23:04:00 +02001147 CompileAndLinkShaderFiles(workList);
John Kessenichc36e1d82013-11-01 17:41:52 +00001148 glslang::FinalizeProcess();
1149 } else {
1150 ShInitialize();
John Kesseniche2c15b42017-11-16 22:48:41 -07001151 ShInitialize(); // also test reference counting of users
1152 ShFinalize(); // also test reference counting of users
John Kessenichc36e1d82013-11-01 17:41:52 +00001153
Juan Lopeza558b262017-04-02 23:04:00 +02001154 bool printShaderNames = workList.size() > 1;
John Kessenich69f4b512013-09-04 21:19:27 +00001155
John Kesseniche2c15b42017-11-16 22:48:41 -07001156 if (Options & EOptionMultiThreaded) {
Juan Lopeza558b262017-04-02 23:04:00 +02001157 std::array<std::thread, 16> threads;
John Kesseniche2c15b42017-11-16 22:48:41 -07001158 for (unsigned int t = 0; t < threads.size(); ++t) {
Juan Lopeza558b262017-04-02 23:04:00 +02001159 threads[t] = std::thread(CompileShaders, std::ref(workList));
John Kesseniche2c15b42017-11-16 22:48:41 -07001160 if (threads[t].get_id() == std::thread::id()) {
John Kessenichaf527992017-11-02 22:48:15 -06001161 fprintf(stderr, "Failed to create thread\n");
John Kessenich38f3b892013-09-06 19:52:57 +00001162 return EFailThreadCreate;
1163 }
John Kessenicha0af4732012-12-12 21:15:54 +00001164 }
Juan Lopeza558b262017-04-02 23:04:00 +02001165
1166 std::for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); });
John Kessenichc999ba22013-11-07 23:33:24 +00001167 } else
Juan Lopeza558b262017-04-02 23:04:00 +02001168 CompileShaders(workList);
John Kessenich38f3b892013-09-06 19:52:57 +00001169
1170 // Print out all the resulting infologs
John Kessenich94f28eb2017-11-13 01:32:06 -07001171 for (size_t w = 0; w < WorkItems.size(); ++w) {
1172 if (WorkItems[w]) {
1173 if (printShaderNames || WorkItems[w]->results.size() > 0)
1174 PutsIfNonEmpty(WorkItems[w]->name.c_str());
1175 PutsIfNonEmpty(WorkItems[w]->results.c_str());
John Kessenich38f3b892013-09-06 19:52:57 +00001176 }
1177 }
John Kessenichc36e1d82013-11-01 17:41:52 +00001178
1179 ShFinalize();
John Kessenicha0af4732012-12-12 21:15:54 +00001180 }
John Kessenich2b07c7e2013-07-31 18:44:13 +00001181
John Kessenichc999ba22013-11-07 23:33:24 +00001182 if (CompileFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001183 return EFailCompile;
John Kessenichc999ba22013-11-07 23:33:24 +00001184 if (LinkFailed)
John Kessenicha0af4732012-12-12 21:15:54 +00001185 return EFailLink;
1186
1187 return 0;
1188}
1189
John Kessenich94f28eb2017-11-13 01:32:06 -07001190int C_DECL main(int argc, char* argv[])
1191{
1192 ProcessArguments(WorkItems, argc, argv);
1193
1194 int ret = 0;
1195
1196 // Loop over the entire init/finalize cycle to watch memory changes
1197 const int iterations = 1;
1198 if (iterations > 1)
1199 glslang::OS_DumpMemoryCounters();
1200 for (int i = 0; i < iterations; ++i) {
1201 ret = singleMain();
1202 if (iterations > 1)
1203 glslang::OS_DumpMemoryCounters();
1204 }
1205
1206 return ret;
1207}
1208
John Kessenicha0af4732012-12-12 21:15:54 +00001209//
1210// Deduce the language from the filename. Files must end in one of the
1211// following extensions:
1212//
John Kessenich2b07c7e2013-07-31 18:44:13 +00001213// .vert = vertex
1214// .tesc = tessellation control
1215// .tese = tessellation evaluation
1216// .geom = geometry
1217// .frag = fragment
John Kessenich94a81fb2013-08-31 02:41:30 +00001218// .comp = compute
Chao Chenb50c02e2018-09-19 11:42:24 -07001219// .rgen = ray generation
1220// .rint = ray intersection
1221// .rahit = ray any hit
1222// .rchit = ray closest hit
1223// .rmiss = ray miss
1224// .rcall = ray callable
Grigory Dzhavadyan33507412018-04-12 14:35:24 -07001225// Additionally, the file names may end in .<stage>.glsl and .<stage>.hlsl
1226// where <stage> is one of the stages listed above.
1227//
1228EShLanguage FindLanguage(const std::string& name, bool parseStageName)
John Kessenicha0af4732012-12-12 21:15:54 +00001229{
John Kessenichfccbb8b2018-04-17 17:24:03 -06001230 std::string stageName;
Dan Bakerc6ede892016-08-11 14:06:06 -04001231 if (shaderStageName)
John Kessenichfccbb8b2018-04-17 17:24:03 -06001232 stageName = shaderStageName;
1233 else if (parseStageName) {
Grigory Dzhavadyan33507412018-04-12 14:35:24 -07001234 // Note: "first" extension means "first from the end", i.e.
1235 // if the file is named foo.vert.glsl, then "glsl" is first,
1236 // "vert" is second.
John Kessenichfccbb8b2018-04-17 17:24:03 -06001237 size_t firstExtStart = name.find_last_of(".");
1238 bool hasFirstExt = firstExtStart != std::string::npos;
1239 size_t secondExtStart = hasFirstExt ? name.find_last_of(".", firstExtStart - 1) : std::string::npos;
1240 bool hasSecondExt = secondExtStart != std::string::npos;
1241 std::string firstExt = name.substr(firstExtStart + 1, std::string::npos);
1242 bool usesUnifiedExt = hasFirstExt && (firstExt == "glsl" || firstExt == "hlsl");
John Kessenich3beac942018-04-17 21:02:19 -06001243 if (usesUnifiedExt && firstExt == "hlsl")
1244 Options |= EOptionReadHlsl;
1245 if (hasFirstExt && !usesUnifiedExt)
John Kessenichfccbb8b2018-04-17 17:24:03 -06001246 stageName = firstExt;
John Kessenich3beac942018-04-17 21:02:19 -06001247 else if (usesUnifiedExt && hasSecondExt)
John Kessenichfccbb8b2018-04-17 17:24:03 -06001248 stageName = name.substr(secondExtStart + 1, firstExtStart - secondExtStart - 1);
John Kessenich3beac942018-04-17 21:02:19 -06001249 else {
Grigory Dzhavadyan33507412018-04-12 14:35:24 -07001250 usage();
1251 return EShLangVertex;
John Kesseniche751bca2017-03-16 11:20:38 -06001252 }
John Kessenichfccbb8b2018-04-17 17:24:03 -06001253 } else
1254 stageName = name;
dankbaker45d49bc2016-08-08 21:43:07 -04001255
John Kessenichfccbb8b2018-04-17 17:24:03 -06001256 if (stageName == "vert")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001257 return EShLangVertex;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001258 else if (stageName == "tesc")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001259 return EShLangTessControl;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001260 else if (stageName == "tese")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001261 return EShLangTessEvaluation;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001262 else if (stageName == "geom")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001263 return EShLangGeometry;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001264 else if (stageName == "frag")
John Kessenich2b07c7e2013-07-31 18:44:13 +00001265 return EShLangFragment;
John Kessenichfccbb8b2018-04-17 17:24:03 -06001266 else if (stageName == "comp")
John Kessenichc0275792013-08-09 17:14:49 +00001267 return EShLangCompute;
Chao Chen3c366992018-09-19 11:41:59 -07001268#ifdef NV_EXTENSIONS
Chao Chenb50c02e2018-09-19 11:42:24 -07001269 else if (stageName == "rgen")
1270 return EShLangRayGenNV;
1271 else if (stageName == "rint")
1272 return EShLangIntersectNV;
1273 else if (stageName == "rahit")
1274 return EShLangAnyHitNV;
1275 else if (stageName == "rchit")
1276 return EShLangClosestHitNV;
1277 else if (stageName == "rmiss")
1278 return EShLangMissNV;
1279 else if (stageName == "rcall")
1280 return EShLangCallableNV;
Chao Chen3c366992018-09-19 11:41:59 -07001281 else if (stageName == "mesh")
1282 return EShLangMeshNV;
1283 else if (stageName == "task")
1284 return EShLangTaskNV;
1285#endif
John Kessenich2b07c7e2013-07-31 18:44:13 +00001286
1287 usage();
John Kesseniche95ecc52012-12-12 21:34:14 +00001288 return EShLangVertex;
John Kessenicha0af4732012-12-12 21:15:54 +00001289}
1290
John Kessenicha0af4732012-12-12 21:15:54 +00001291//
John Kessenichecba76f2017-01-06 00:34:48 -07001292// Read a file's data into a string, and compile it using the old interface ShCompile,
John Kessenich69f4b512013-09-04 21:19:27 +00001293// for non-linkable results.
John Kessenicha0af4732012-12-12 21:15:54 +00001294//
John Kessenich51cdd902014-02-18 23:37:57 +00001295void CompileFile(const char* fileName, ShHandle compiler)
John Kessenicha0af4732012-12-12 21:15:54 +00001296{
John Kessenichca3457f2015-05-18 01:59:45 +00001297 int ret = 0;
Sven-Hendrik Haase0dd12852017-09-02 19:34:54 +02001298 char* shaderString;
1299 if ((Options & EOptionStdin) != 0) {
1300 std::istreambuf_iterator<char> begin(std::cin), end;
1301 std::string tempString(begin, end);
1302 shaderString = strdup(tempString.c_str());
1303 } else {
1304 shaderString = ReadFileData(fileName);
1305 }
John Kessenich41cf6b52013-06-25 18:10:05 +00001306
1307 // move to length-based strings, rather than null-terminated strings
John Kessenich04acb1b2017-06-14 17:36:50 -06001308 int* lengths = new int[1];
1309 lengths[0] = (int)strlen(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001310
John Kessenich52ac67e2013-05-05 23:46:22 +00001311 EShMessages messages = EShMsgDefault;
John Kessenichb0a7eb52013-11-07 17:44:20 +00001312 SetMessageOptions(messages);
John Kessenichecba76f2017-01-06 00:34:48 -07001313
John Kessenicha9313662017-06-15 10:40:49 -06001314 if (UserPreamble.isSet())
1315 Error("-D and -U options require -l (linking)\n");
1316
John Kessenich94a81fb2013-08-31 02:41:30 +00001317 for (int i = 0; i < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++i) {
1318 for (int j = 0; j < ((Options & EOptionMemoryLeakMode) ? 100 : 1); ++j) {
John Kessenich927608b2017-01-06 12:34:14 -07001319 // ret = ShCompile(compiler, shaderStrings, NumShaderStrings, lengths, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich04acb1b2017-06-14 17:36:50 -06001320 ret = ShCompile(compiler, &shaderString, 1, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich927608b2017-01-06 12:34:14 -07001321 // const char* multi[12] = { "# ve", "rsion", " 300 e", "s", "\n#err",
John Kessenichecba76f2017-01-06 00:34:48 -07001322 // "or should be l", "ine 1", "string 5\n", "float glo", "bal",
John Kessenichea869fb2013-10-28 18:12:06 +00001323 // ";\n#error should be line 2\n void main() {", "global = 2.3;}" };
John Kessenich927608b2017-01-06 12:34:14 -07001324 // const char* multi[7] = { "/", "/", "\\", "\n", "\n", "#", "version 300 es" };
1325 // ret = ShCompile(compiler, multi, 7, nullptr, EShOptNone, &Resources, Options, (Options & EOptionDefaultDesktop) ? 110 : 100, false, messages);
John Kessenich41cf6b52013-06-25 18:10:05 +00001326 }
John Kessenicha0af4732012-12-12 21:15:54 +00001327
John Kessenich94a81fb2013-08-31 02:41:30 +00001328 if (Options & EOptionMemoryLeakMode)
John Kessenich2b07c7e2013-07-31 18:44:13 +00001329 glslang::OS_DumpMemoryCounters();
John Kessenicha0af4732012-12-12 21:15:54 +00001330 }
John Kessenicha0af4732012-12-12 21:15:54 +00001331
John Kessenich41cf6b52013-06-25 18:10:05 +00001332 delete [] lengths;
John Kessenich04acb1b2017-06-14 17:36:50 -06001333 FreeFileData(shaderString);
John Kessenicha0af4732012-12-12 21:15:54 +00001334
John Kessenichc999ba22013-11-07 23:33:24 +00001335 if (ret == 0)
1336 CompileFailed = true;
John Kessenicha0af4732012-12-12 21:15:54 +00001337}
1338
John Kessenicha0af4732012-12-12 21:15:54 +00001339//
1340// print usage to stdout
1341//
1342void usage()
1343{
John Kessenich319de232013-12-04 04:43:40 +00001344 printf("Usage: glslangValidator [option]... [file]...\n"
1345 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001346 "'file' can end in .<stage> for auto-stage classification, where <stage> is:\n"
1347 " .conf to provide a config file that replaces the default configuration\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001348 " (see -c option below for generating a template)\n"
1349 " .vert for a vertex shader\n"
1350 " .tesc for a tessellation control shader\n"
1351 " .tese for a tessellation evaluation shader\n"
1352 " .geom for a geometry shader\n"
1353 " .frag for a fragment shader\n"
1354 " .comp for a compute shader\n"
Chao Chen3c366992018-09-19 11:41:59 -07001355#ifdef NV_EXTENSIONS
1356 " .mesh for a mesh shader\n"
1357 " .task for a task shader\n"
Chao Chenb50c02e2018-09-19 11:42:24 -07001358 " .rgen for a ray generation shader\n"
1359 " .rint for a ray intersection shader\n"
1360 " .rahit for a ray any hit shader\n"
1361 " .rchit for a ray closest hit shader\n"
1362 " .rmiss for a ray miss shader\n"
1363 " .rcall for a ray callable shader"
Chao Chen3c366992018-09-19 11:41:59 -07001364#endif
John Kessenich2ead40f2018-04-17 17:44:11 -06001365 " .glsl for .vert.glsl, .tesc.glsl, ..., .comp.glsl compound suffixes\n"
1366 " .hlsl for .vert.hlsl, .tesc.hlsl, ..., .comp.hlsl compound suffixes\n"
John Kessenich319de232013-12-04 04:43:40 +00001367 "\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001368 "Options:\n"
1369 " -C cascading errors; risk crash from accumulation of error recoveries\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001370 " -D input is HLSL (this is the default when any suffix is .hlsl)\n"
John Kessenicha9313662017-06-15 10:40:49 -06001371 " -D<macro=def>\n"
1372 " -D<macro> define a pre-processor macro\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001373 " -E print pre-processed GLSL; cannot be used with -l;\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001374 " errors will appear on stderr\n"
John Kessenich6353d552017-06-23 11:11:09 -06001375 " -G[ver] create SPIR-V binary, under OpenGL semantics; turns on -l;\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001376 " default file name is <stage>.spv (-o overrides this);\n"
John Kessenich6353d552017-06-23 11:11:09 -06001377 " 'ver', when present, is the version of the input semantics,\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001378 " which will appear in #define GL_SPIRV ver;\n"
1379 " '--client opengl100' is the same as -G100;\n"
John Kessenich6353d552017-06-23 11:11:09 -06001380 " a '--target-env' for OpenGL will also imply '-G'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001381 " -H print human readable form of SPIR-V; turns on -V\n"
John Kessenich971a0a82017-06-07 15:06:58 -06001382 " -I<dir> add dir to the include search path; includer's directory\n"
1383 " is searched first, followed by left-to-right order of -I\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001384 " -Od disables optimization; may cause illegal SPIR-V for HLSL\n"
1385 " -Os optimizes SPIR-V to minimize size\n"
John Kesseniche751bca2017-03-16 11:20:38 -06001386 " -S <stage> uses specified stage rather than parsing the file extension\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001387 " choices for <stage> are vert, tesc, tese, geom, frag, or comp\n"
John Kessenich6353d552017-06-23 11:11:09 -06001388 " -U<macro> undefine a pre-processor macro\n"
1389 " -V[ver] create SPIR-V binary, under Vulkan semantics; turns on -l;\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001390 " default file name is <stage>.spv (-o overrides this)\n"
John Kessenich6353d552017-06-23 11:11:09 -06001391 " 'ver', when present, is the version of the input semantics,\n"
1392 " which will appear in #define VULKAN ver\n"
1393 " '--client vulkan100' is the same as -V100\n"
1394 " a '--target-env' for Vulkan will also imply '-V'\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001395 " -c configuration dump;\n"
1396 " creates the default configuration file (redirect to a .conf file)\n"
1397 " -d default to desktop (#version 110) when there is no shader #version\n"
1398 " (default is ES version 100)\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001399 " -e <name> | --entry-point <name>\n"
1400 " specify <name> as the entry-point function name\n"
John Kessenich5d610ee2018-03-07 18:05:55 -07001401 " -f{hlsl_functionality1}\n"
1402 " 'hlsl_functionality1' enables use of the\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001403 " SPV_GOOGLE_hlsl_functionality1 extension\n"
John Kessenich121853f2017-05-31 17:11:16 -06001404 " -g generate debug information\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001405 " -h print this usage message\n"
1406 " -i intermediate tree (glslang AST) is printed out\n"
1407 " -l link all input files together to form a single module\n"
1408 " -m memory leak mode\n"
John Kessenicha25530c2017-09-11 20:13:49 -06001409 " -o <file> save binary to <file>, requires a binary option (e.g., -V)\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001410 " -q dump reflection query database\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001411 " -r | --relaxed-errors"
1412 " relaxed GLSL semantic error-checking mode\n"
John Kessenichb63f4a32017-11-16 22:32:20 -07001413 " -s silence syntax and semantic error reporting\n"
John Kessenich68d78fd2015-07-12 19:28:10 -06001414 " -t multi-threaded mode\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001415 " -v | --version\n"
1416 " print version strings\n"
1417 " -w | --suppress-warnings\n"
1418 " suppress GLSL warnings, except as required by \"#extension : warn\"\n"
John Kessenich6263fb12017-06-14 15:52:44 -06001419 " -x save binary output as text-based 32-bit hexadecimal numbers\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001420 " --auto-map-bindings | --amb automatically bind uniform variables\n"
1421 " without explicit bindings\n"
1422 " --auto-map-locations | --aml automatically locate input/output lacking\n"
1423 " 'location' (fragile, not cross stage)\n"
1424 " --client {vulkan<ver>|opengl<ver>} see -V and -G\n"
1425 " -dumpfullversion | -dumpversion print bare major.minor.patchlevel\n"
1426 " --flatten-uniform-arrays | --fua flatten uniform texture/sampler arrays to\n"
1427 " scalars\n"
1428 " --hlsl-offsets allow block offsets to follow HLSL rules\n"
1429 " works independently of source language\n"
1430 " --hlsl-iomap perform IO mapping in HLSL register space\n"
1431 " --hlsl-enable-16bit-types allow 16-bit types in SPIR-V for HLSL\n"
1432 " --invert-y | --iy invert position.Y output in vertex shader\n"
1433 " --keep-uncalled | --ku don't eliminate uncalled functions\n"
1434 " --no-storage-format | --nsf use Unknown image format\n"
LoopDawg52017192017-07-14 15:15:47 -06001435 " --resource-set-binding [stage] name set binding\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001436 " set descriptor set and binding for\n"
1437 " individual resources\n"
LoopDawg52017192017-07-14 15:15:47 -06001438 " --resource-set-binding [stage] set\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001439 " set descriptor set for all resources\n"
1440 " --rsb synonym for --resource-set-binding\n"
1441 " --shift-image-binding [stage] num\n"
1442 " base binding number for images (uav)\n"
1443 " --shift-image-binding [stage] [num set]...\n"
1444 " per-descriptor-set shift values\n"
1445 " --sib synonym for --shift-image-binding\n"
1446 " --shift-sampler-binding [stage] num\n"
1447 " base binding number for samplers\n"
1448 " --shift-sampler-binding [stage] [num set]...\n"
1449 " per-descriptor-set shift values\n"
1450 " --ssb synonym for --shift-sampler-binding\n"
1451 " --shift-ssbo-binding [stage] num base binding number for SSBOs\n"
1452 " --shift-ssbo-binding [stage] [num set]...\n"
1453 " per-descriptor-set shift values\n"
1454 " --sbb synonym for --shift-ssbo-binding\n"
1455 " --shift-texture-binding [stage] num\n"
1456 " base binding number for textures\n"
1457 " --shift-texture-binding [stage] [num set]...\n"
1458 " per-descriptor-set shift values\n"
1459 " --stb synonym for --shift-texture-binding\n"
1460 " --shift-uav-binding [stage] num base binding number for UAVs\n"
1461 " --shift-uav-binding [stage] [num set]...\n"
1462 " per-descriptor-set shift values\n"
1463 " --suavb synonym for --shift-uav-binding\n"
1464 " --shift-UBO-binding [stage] num base binding number for UBOs\n"
1465 " --shift-UBO-binding [stage] [num set]...\n"
1466 " per-descriptor-set shift values\n"
1467 " --sub synonym for --shift-UBO-binding\n"
1468 " --shift-cbuffer-binding | --scb synonyms for --shift-UBO-binding\n"
1469 " --spirv-dis output standard-form disassembly; works only\n"
1470 " when a SPIR-V generation option is also used\n"
John Kessenichc3404252018-08-23 15:29:08 -06001471 " --spirv-val execute the SPIRV-Tools validator\n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001472 " --source-entrypoint <name> the given shader source function is\n"
1473 " renamed to be the <name> given in -e\n"
1474 " --sep synonym for --source-entrypoint\n"
1475 " --stdin read from stdin instead of from a file;\n"
1476 " requires providing the shader stage using -S\n"
John Kessenich66011cb2018-03-06 16:12:04 -07001477 " --target-env {vulkan1.0 | vulkan1.1 | opengl} \n"
John Kessenichade8bbb2018-08-12 21:24:55 -06001478 " set execution environment that emitted code\n"
1479 " will execute in (as opposed to the language\n"
1480 " semantics selected by --client) defaults:\n"
1481 " * 'vulkan1.0' under '--client vulkan<ver>'\n"
1482 " * 'opengl' under '--client opengl<ver>'\n"
1483 " --variable-name <name>\n"
1484 " --vn <name> creates a C header file that contains a\n"
1485 " uint32_t array named <name>\n"
1486 " initialized with the shader binary code\n"
John Kessenichb0a7eb52013-11-07 17:44:20 +00001487 );
John Kessenich68d78fd2015-07-12 19:28:10 -06001488
1489 exit(EFailUsage);
John Kessenicha0af4732012-12-12 21:15:54 +00001490}
1491
John Kessenich3ce4e592014-10-06 19:57:34 +00001492#if !defined _MSC_VER && !defined MINGW_HAS_SECURE_API
John Kessenichcfd643e2013-03-08 23:14:42 +00001493
1494#include <errno.h>
1495
1496int fopen_s(
1497 FILE** pFile,
John Kessenich51cdd902014-02-18 23:37:57 +00001498 const char* filename,
1499 const char* mode
John Kessenichcfd643e2013-03-08 23:14:42 +00001500)
1501{
1502 if (!pFile || !filename || !mode) {
1503 return EINVAL;
1504 }
1505
1506 FILE* f = fopen(filename, mode);
1507 if (! f) {
1508 if (errno != 0) {
1509 return errno;
1510 } else {
1511 return ENOENT;
1512 }
1513 }
1514 *pFile = f;
1515
1516 return 0;
1517}
1518
1519#endif
1520
John Kessenicha0af4732012-12-12 21:15:54 +00001521//
1522// Malloc a string of sufficient size and read a string into it.
1523//
John Kessenich04acb1b2017-06-14 17:36:50 -06001524char* ReadFileData(const char* fileName)
John Kessenicha0af4732012-12-12 21:15:54 +00001525{
John Kessenichb3297152015-07-11 18:01:03 -06001526 FILE *in = nullptr;
John Kessenich3ce4e592014-10-06 19:57:34 +00001527 int errorCode = fopen_s(&in, fileName, "r");
John Kessenich68d78fd2015-07-12 19:28:10 -06001528 if (errorCode || in == nullptr)
1529 Error("unable to open input file");
John Kessenichecba76f2017-01-06 00:34:48 -07001530
John Kessenich04acb1b2017-06-14 17:36:50 -06001531 int count = 0;
John Kessenicha0af4732012-12-12 21:15:54 +00001532 while (fgetc(in) != EOF)
1533 count++;
1534
John Kessenichd6c72a42014-08-18 19:42:35 +00001535 fseek(in, 0, SEEK_SET);
John Kessenichca3457f2015-05-18 01:59:45 +00001536
John Kessenich04acb1b2017-06-14 17:36:50 -06001537 char* return_data = (char*)malloc(count + 1); // freed in FreeFileData()
1538 if ((int)fread(return_data, 1, count, in) != count) {
1539 free(return_data);
John Kessenich68d78fd2015-07-12 19:28:10 -06001540 Error("can't read input file");
John Kessenicha0af4732012-12-12 21:15:54 +00001541 }
John Kessenich68d78fd2015-07-12 19:28:10 -06001542
John Kessenich04acb1b2017-06-14 17:36:50 -06001543 return_data[count] = '\0';
John Kessenicha0af4732012-12-12 21:15:54 +00001544 fclose(in);
John Kessenichb3297152015-07-11 18:01:03 -06001545
John Kessenicha0af4732012-12-12 21:15:54 +00001546 return return_data;
1547}
1548
John Kessenich04acb1b2017-06-14 17:36:50 -06001549void FreeFileData(char* data)
John Kessenicha0af4732012-12-12 21:15:54 +00001550{
John Kessenichb3297152015-07-11 18:01:03 -06001551 free(data);
John Kessenicha0af4732012-12-12 21:15:54 +00001552}
1553
John Kessenich54d8cda2013-02-11 22:36:01 +00001554void InfoLogMsg(const char* msg, const char* name, const int num)
John Kessenicha0af4732012-12-12 21:15:54 +00001555{
John Kessenichfae38ee2015-06-10 23:23:12 +00001556 if (num >= 0 )
1557 printf("#### %s %s %d INFO LOG ####\n", msg, name, num);
1558 else
1559 printf("#### %s %s INFO LOG ####\n", msg, name);
John Kessenicha0af4732012-12-12 21:15:54 +00001560}