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
|
// slang-cpp-compiler.cpp
#include "slang-cpp-compiler.h"
#include "slang-common.h"
#include "../../slang-com-helper.h"
#include "slang-string-util.h"
#if SLANG_VC
# include "windows/slang-win-visual-studio-util.h"
#else
# include "unix/slang-unix-cpp-compiler-util.h"
#endif
namespace Slang
{
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! GenericCPPCompiler !!!!!!!!!!!!!!!!!!!!!!*/
SlangResult GenericCPPCompiler::compile(const CompileOptions& options, ExecuteResult& outResult)
{
CommandLine cmdLine;
// Calculate the command line options
m_func(options, cmdLine);
// Set the executable
cmdLine.setExecutableFilename(m_exeName);
#if 0
// Test
{
String line = ProcessUtil::getCommandLineString(cmdLine);
printf("%s", line.getBuffer());
}
#endif
return ProcessUtil::execute(cmdLine, outResult);
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CPPCompilerUtil !!!!!!!!!!!!!!!!!!!!!!*/
static bool _isDigit(char c)
{
return c >= '0' && c <= '9';
}
static bool _isWhiteSpace(char c)
{
return c == ' ' || c == '\t' || c == '\n' || c == '\r';
}
/* static */SlangResult CPPCompilerUtil::parseGccFamilyVersion(const UnownedStringSlice& text, const UnownedStringSlice& versionPrefix, CPPCompiler::Desc& outDesc)
{
List<UnownedStringSlice> lines;
StringUtil::calcLines(text, lines);
for (auto line : lines)
{
if (String(line).startsWith(versionPrefix))
{
UnownedStringSlice versionSlice(line.begin() + versionPrefix.size(), line.end());
List<Int> digits;
const char* cur = versionSlice.begin();
const char* end = versionSlice.end();
// Consume white space
while (cur < end && _isWhiteSpace(*cur)) cur++;
// Version is in format 0.0.0
while (true)
{
Int value = 0;
const char* start = cur;
while (cur < end && _isDigit(*cur))
{
value = value * 10 + (*cur - '0');
cur++;
}
if (cur <= start)
{
break;
}
digits.add(value);
if (cur < end && *cur == '.')
{
cur++;
}
}
if (digits.getCount() < 2)
{
return SLANG_FAIL;
}
outDesc.majorVersion = digits[0];
outDesc.minorVersion = digits[1];
return SLANG_OK;
}
}
return SLANG_FAIL;
}
SlangResult CPPCompilerUtil::calcGccFamilyVersion(const String& exeName, const UnownedStringSlice& versionPrefix, CPPCompiler::Desc& outDesc)
{
CommandLine cmdLine;
cmdLine.setExecutableFilename(exeName);
cmdLine.addArg("-v");
ExecuteResult exeRes;
SLANG_RETURN_ON_FAIL(ProcessUtil::execute(cmdLine, exeRes));
return parseGccFamilyVersion(exeRes.standardError.getUnownedSlice(), versionPrefix, outDesc);
}
static CPPCompiler::Desc _calcCompiledWithDesc()
{
CPPCompiler::Desc desc = {};
#if SLANG_VC
desc = WinVisualStudioUtil::getDesc(WinVisualStudioUtil::getCompiledVersion());
#elif SLANG_CLANG
desc.type = CPPCompiler::Type::Clang;
#elif SLANG_SNC
desc.type = CPPCompiler::Type::SNC;
#elif SLANG_GHS
desc.type = CPPCompiler::Type::GHS;
#elif SLANG_GCC
desc.type = CPPCompiler::Type::GCC;
#else
desc.type = CPPCompiler::Type::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::Type 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::Type::GCC || desc.type == CPPCompiler::Type::Clang)
{
CPPCompiler::Desc compatible = desc;
compatible.type = (compatible.type == CPPCompiler::Type::Clang) ? CPPCompiler::Type::GCC : CPPCompiler::Type::Clang;
compiler = findCompiler(compilers, MatchType::MinGreaterEqual, compatible);
if (compiler)
{
return compiler;
}
compiler = findCompiler(compilers, MatchType::MinAbsolute, compatible);
if (compiler)
{
return compiler;
}
}
return nullptr;
}
/* 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(CPPCompilerSet* set)
{
#if SLANG_WINDOWS_FAMILY
WinVisualStudioUtil::find(set);
#else
{
CPPCompiler::Desc desc(CPPCompiler::Type::Clang);
if (SLANG_SUCCEEDED(calcGccFamilyVersion("clang", UnownedStringSlice::fromLiteral("clang version"), desc)))
{
RefPtr<CPPCompiler> compiler(new GenericCPPCompiler(desc, "clang", &UnixCPPCompilerUtil::calcArgs));
set->addCompiler(compiler);
}
}
{
CPPCompiler::Desc desc(CPPCompiler::Type::GCC);
if (SLANG_SUCCEEDED(calcGccFamilyVersion("g++", UnownedStringSlice::fromLiteral("gcc version"), desc)))
{
RefPtr<CPPCompiler> compiler(new GenericCPPCompiler(desc, "g++", &UnixCPPCompilerUtil::calcArgs));
set->addCompiler(compiler);
}
}
#endif
// 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());
}
void CPPCompilerSet::addCompiler(CPPCompiler* compiler)
{
const Index index = _findIndex(compiler->getDesc());
if (index >= 0)
{
m_compilers[index] = compiler;
}
else
{
m_compilers.add(compiler);
}
}
}
|