1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
|
// slang-cpp-compiler.cpp
#include "slang-cpp-compiler.h"
#include "slang-common.h"
#include "../../slang-com-helper.h"
#include "slang-string-util.h"
#include "slang-io.h"
#include "slang-shared-library.h"
// if Visual Studio import the visual studio platform specific header
#if SLANG_VC
# include "windows/slang-win-visual-studio-util.h"
#endif
#include "slang-visual-studio-compiler-util.h"
#include "slang-gcc-compiler-util.h"
namespace Slang
{
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CPPCompiler::Desc !!!!!!!!!!!!!!!!!!!!!!*/
void CPPCompiler::Desc::appendAsText(StringBuilder& out) const
{
out << getCompilerTypeAsText(type);
out << " ";
out << majorVersion;
out << ".";
out << minorVersion;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CPPCompiler::OutputMessage !!!!!!!!!!!!!!!!!!!!!!*/
/* static */UnownedStringSlice CPPCompiler::Diagnostic::getTypeText(Diagnostic::Type type)
{
typedef Diagnostic::Type Type;
switch (type)
{
default: return UnownedStringSlice::fromLiteral("Unknown");
case Type::Info: return UnownedStringSlice::fromLiteral("Info");
case Type::Warning: return UnownedStringSlice::fromLiteral("Warning");
case Type::Error: return UnownedStringSlice::fromLiteral("Error");
}
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CPPCompiler !!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/* static */UnownedStringSlice CPPCompiler::getCompilerTypeAsText(CompilerType type)
{
switch (type)
{
default:
case CompilerType::Unknown: return UnownedStringSlice::fromLiteral("Unknown");
case CompilerType::VisualStudio:return UnownedStringSlice::fromLiteral("Visual Studio");
case CompilerType::GCC: return UnownedStringSlice::fromLiteral("GCC");
case CompilerType::Clang: return UnownedStringSlice::fromLiteral("Clang");
case CompilerType::SNC: return UnownedStringSlice::fromLiteral("SNC");
case CompilerType::GHS: return UnownedStringSlice::fromLiteral("GHS");
}
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CPPCompiler::Output !!!!!!!!!!!!!!!!!!!!!!*/
Index CPPCompiler::Output::getCountByType(Diagnostic::Type type) const
{
Index count = 0;
for (const auto& msg : diagnostics)
{
count += Index(msg.type == type);
}
return count;
}
Int CPPCompiler::Output::countByStage(Diagnostic::Stage stage, Index counts[Int(Diagnostic::Type::CountOf)]) const
{
Int count = 0;
::memset(counts, 0, sizeof(Index) * Int(Diagnostic::Type::CountOf));
for (const auto& diagnostic : diagnostics)
{
if (diagnostic.stage == stage)
{
count++;
counts[Index(diagnostic.type)]++;
}
}
return count++;
}
static void _appendCounts(const Index counts[Int(CPPCompiler::Diagnostic::Type::CountOf)], StringBuilder& out)
{
typedef CPPCompiler::Diagnostic::Type Type;
for (Index i = 0; i < Int(Type::CountOf); i++)
{
if (counts[i] > 0)
{
out << CPPCompiler::Diagnostic::getTypeText(Type(i)) << "(" << counts[i] << ") ";
}
}
}
static void _appendSimplified(const Index counts[Int(CPPCompiler::Diagnostic::Type::CountOf)], StringBuilder& out)
{
typedef CPPCompiler::Diagnostic::Type Type;
for (Index i = 0; i < Int(Type::CountOf); i++)
{
if (counts[i] > 0)
{
out << CPPCompiler::Diagnostic::getTypeText(Type(i)) << " ";
}
}
}
void CPPCompiler::Output::appendSummary(StringBuilder& out) const
{
Index counts[Int(Diagnostic::Type::CountOf)];
if (countByStage(Diagnostic::Stage::Compile, counts) > 0)
{
out << "Compile: ";
_appendCounts(counts, out);
out << "\n";
}
if (countByStage(Diagnostic::Stage::Link, counts) > 0)
{
out << "Link: ";
_appendCounts(counts, out);
out << "\n";
}
}
void CPPCompiler::Output::appendSimplifiedSummary(StringBuilder& out) const
{
Index counts[Int(Diagnostic::Type::CountOf)];
if (countByStage(Diagnostic::Stage::Compile, counts) > 0)
{
out << "Compile: ";
_appendSimplified(counts, out);
out << "\n";
}
if (countByStage(Diagnostic::Stage::Link, counts) > 0)
{
out << "Link: ";
_appendSimplified(counts, out);
out << "\n";
}
}
void CPPCompiler::Output::removeByType(Diagnostic::Type type)
{
Index count = diagnostics.getCount();
for (Index i = 0; i < count; ++i)
{
if (diagnostics[i].type == type)
{
diagnostics.removeAt(i);
i--;
count--;
}
}
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CommandLineCPPCompiler !!!!!!!!!!!!!!!!!!!!!!*/
SlangResult CommandLineCPPCompiler::compile(const CompileOptions& options, Output& outOutput)
{
outOutput.reset();
// Copy the command line options
CommandLine cmdLine(m_cmdLine);
// Append command line args to the end of cmdLine using the target specific function for the specified options
SLANG_RETURN_ON_FAIL(calcArgs(options, cmdLine));
ExecuteResult exeRes;
#if 0
// Test
{
String line = ProcessUtil::getCommandLineString(cmdLine);
printf("%s", line.getBuffer());
}
#endif
SLANG_RETURN_ON_FAIL(ProcessUtil::execute(cmdLine, exeRes));
#if 0
{
printf("stdout=\"%s\"\nstderr=\"%s\"\nret=%d\n", exeRes.standardOutput.getBuffer(), exeRes.standardError.getBuffer(), int(exeRes.resultCode));
}
#endif
return parseOutput(exeRes, outOutput);
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CPPCompilerUtil !!!!!!!!!!!!!!!!!!!!!!*/
static CPPCompiler::Desc _calcCompiledWithDesc()
{
CPPCompiler::Desc desc = {};
#if SLANG_VC
desc = WinVisualStudioUtil::getDesc(WinVisualStudioUtil::getCompiledVersion());
#elif SLANG_CLANG
desc.type = CPPCompiler::CompilerType::Clang;
desc.majorVersion = Int(__clang_major__);
desc.minorVersion = Int(__clang_minor__);
#elif SLANG_SNC
desc.type = CPPCompiler::CompilerType::SNC;
#elif SLANG_GHS
desc.type = CPPCompiler::CompilerType::GHS;
#elif SLANG_GCC
desc.type = CPPCompiler::CompilerType::GCC;
desc.majorVersion = Int(__GNUC__);
desc.minorVersion = Int(__GNUC_MINOR__);
#else
desc.type = CPPCompiler::CompilerType::Unknown;
#endif
return desc;
}
const CPPCompiler::Desc& CPPCompilerUtil::getCompiledWithDesc()
{
static CPPCompiler::Desc s_desc = _calcCompiledWithDesc();
return s_desc;
}
/* static */CPPCompiler* CPPCompilerUtil::findCompiler(const CPPCompilerSet* set, MatchType matchType, const CPPCompiler::Desc& desc)
{
List<CPPCompiler*> compilers;
set->getCompilers(compilers);
return findCompiler(compilers, matchType, desc);
}
/* static */CPPCompiler* CPPCompilerUtil::findCompiler(const List<CPPCompiler*>& compilers, MatchType matchType, const CPPCompiler::Desc& desc)
{
Int bestIndex = -1;
const CPPCompiler::CompilerType type = desc.type;
Int maxVersionValue = 0;
Int minVersionDiff = 0x7fffffff;
const auto descVersionValue = desc.getVersionValue();
for (Index i = 0; i < compilers.getCount(); ++i)
{
CPPCompiler* compiler = compilers[i];
auto compilerDesc = compiler->getDesc();
if (type == compilerDesc.type)
{
const Int versionValue = compilerDesc.getVersionValue();
switch (matchType)
{
case MatchType::MinGreaterEqual:
{
auto diff = descVersionValue - versionValue;
if (diff >= 0 && diff < minVersionDiff)
{
bestIndex = i;
minVersionDiff = diff;
}
break;
}
case MatchType::MinAbsolute:
{
auto diff = descVersionValue - versionValue;
diff = (diff >= 0) ? diff : -diff;
if (diff < minVersionDiff)
{
bestIndex = i;
minVersionDiff = diff;
}
break;
}
case MatchType::Newest:
{
if (versionValue > maxVersionValue)
{
maxVersionValue = versionValue;
bestIndex = i;
}
break;
}
}
}
}
return (bestIndex >= 0) ? compilers[bestIndex] : nullptr;
}
/* static */CPPCompiler* CPPCompilerUtil::findClosestCompiler(const List<CPPCompiler*>& compilers, const CPPCompiler::Desc& desc)
{
CPPCompiler* compiler;
compiler = findCompiler(compilers, MatchType::MinGreaterEqual, desc);
if (compiler)
{
return compiler;
}
compiler = findCompiler(compilers, MatchType::MinAbsolute, desc);
if (compiler)
{
return compiler;
}
// If we are gcc, we can try clang and vice versa
if (desc.type == CPPCompiler::CompilerType::GCC || desc.type == CPPCompiler::CompilerType::Clang)
{
CPPCompiler::Desc compatible = desc;
compatible.type = (compatible.type == CPPCompiler::CompilerType::Clang) ? CPPCompiler::CompilerType::GCC : CPPCompiler::CompilerType::Clang;
compiler = findCompiler(compilers, MatchType::MinGreaterEqual, compatible);
if (compiler)
{
return compiler;
}
compiler = findCompiler(compilers, MatchType::MinAbsolute, compatible);
if (compiler)
{
return compiler;
}
}
return nullptr;
}
static void _addGCCFamilyCompiler(const String& path, const String& inExeName, CPPCompilerSet* compilerSet)
{
String exeName(inExeName);
if (path.getLength() > 0)
{
exeName = Path::combine(path, inExeName);
}
CPPCompiler::Desc desc;
if (SLANG_SUCCEEDED(GCCCompilerUtil::calcVersion(exeName, desc)))
{
RefPtr<CommandLineCPPCompiler> compiler(new GCCCPPCompiler(desc));
compiler->m_cmdLine.setExecutableFilename(exeName);
compilerSet->addCompiler(compiler);
}
}
/* static */CPPCompiler* CPPCompilerUtil::findClosestCompiler(const CPPCompilerSet* set, const CPPCompiler::Desc& desc)
{
CPPCompiler* compiler = set->getCompiler(desc);
if (compiler)
{
return compiler;
}
List<CPPCompiler*> compilers;
set->getCompilers(compilers);
return findClosestCompiler(compilers, desc);
}
/* static */SlangResult CPPCompilerUtil::initializeSet(const InitializeSetDesc& desc, CPPCompilerSet* set)
{
#if SLANG_WINDOWS_FAMILY
WinVisualStudioUtil::find(set);
#endif
_addGCCFamilyCompiler(desc.getPath(CompilerType::Clang), "clang", set);
_addGCCFamilyCompiler(desc.getPath(CompilerType::GCC), "g++", set);
// Set the default to the compiler closest to how this source was compiled
set->setDefaultCompiler(findClosestCompiler(set, getCompiledWithDesc()));
return SLANG_OK;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CPPCompilerFactory !!!!!!!!!!!!!!!!!!!!!!*/
void CPPCompilerSet::getCompilerDescs(List<CPPCompiler::Desc>& outCompilerDescs) const
{
outCompilerDescs.clear();
for (CPPCompiler* compiler : m_compilers)
{
outCompilerDescs.add(compiler->getDesc());
}
}
Index CPPCompilerSet::_findIndex(const CPPCompiler::Desc& desc) const
{
const Index count = m_compilers.getCount();
for (Index i = 0; i < count; ++i)
{
if (m_compilers[i]->getDesc() == desc)
{
return i;
}
}
return -1;
}
CPPCompiler* CPPCompilerSet::getCompiler(const CPPCompiler::Desc& compilerDesc) const
{
const Index index = _findIndex(compilerDesc);
return index >= 0 ? m_compilers[index] : nullptr;
}
void CPPCompilerSet::getCompilers(List<CPPCompiler*>& outCompilers) const
{
outCompilers.clear();
outCompilers.addRange((CPPCompiler*const*)m_compilers.begin(), m_compilers.getCount());
}
bool CPPCompilerSet::hasCompiler(CPPCompiler::CompilerType compilerType) const
{
for (CPPCompiler* compiler : m_compilers)
{
const auto& desc = compiler->getDesc();
if (desc.type == compilerType)
{
return true;
}
}
return false;
}
void CPPCompilerSet::addCompiler(CPPCompiler* compiler)
{
const Index index = _findIndex(compiler->getDesc());
if (index >= 0)
{
m_compilers[index] = compiler;
}
else
{
m_compilers.add(compiler);
}
}
}
|