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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// vconv.c - VC++ parameter conversion code
//
//============================================================
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
//============================================================
// CONSTANTS
//============================================================
#define PRINT_COMMAND_LINE 0
#define VS6 0x00060000
#define VS7 0x00070000
#define VS71 0x0007000a
#define VS2005 0x00080000
#define VS2008 0x00090000
#define VS2010 0x00100000
#define VS2012 0x00110000
//============================================================
// TYPE DEFINITIONS
//============================================================
typedef struct
{
DWORD vc_version;
const char *gcc_option;
const char *vc_option;
} translation_info;
//============================================================
// TRANSLATION TABLES
//============================================================
static const translation_info gcc_translate[] =
{
{ 0, "-D*", "/D*" },
{ 0, "-U*", "/U*" },
{ 0, "-I*", "/I*" },
{ 0, "-o*", "~*" },
{ 0, "-include*", "/FI*" },
{ 0, "-c", "/c~/Fo" },
{ 0, "-E", "/c~/E >" },
{ 0, "-S", "/c~/Fa" },
{ VS7, "-O0", "/Od /GS /Oi" },
{ 0, "-O0", "/Od" },
{ 0, "-O1", "/O2" },
{ 0, "-O2", "/O2" },
{ 0, "-O3", "/Ox" },
{ 0, "-Os", "/O1" },
{ 0, "-g*", "/Zi" },
{ VS2005, "-fno-strict-aliasing", "" }, // deprecated in VS2005
{ 0, "-fno-strict-aliasing", "/Oa" },
{ 0, "-fno-omit-frame-pointer", "" },
{ 0, "-fomit-frame-pointer", "" },
{ 0, "-Werror", "/WX" },
//{ VS7, "-Wall", "/Wall /W3 /wd4003 /wd4018 /wd4146 /wd4242 /wd4244 /wd4619 /wd4702 /wd4706 /wd4710 /wd4711 /wd4738 /wd4826" },
{ VS7, "-Wall", "/Wall /W4 /wd4003 /wd4018 /wd4146 /wd4242 /wd4244 /wd4619 /wd4702 /wd4706 /wd4710 /wd4711 /wd4738 /wd4826 /wd4820 /wd4514 /wd4668 /wd4127 /wd4625 /wd4626 /wd4512 /wd4100 /wd4310 /wd4571 /wd4061 /wd4131 /wd4255 /wd4510 /wd4610 /wd4505 /wd4324 /wd4611 /wd4201 /wd4189 /wd4296 /wd4986 /wd4347 /wd4987 /wd4250 /wd4435 /wd4150 /wd4805 /wd4141" },
{ 0, "-Wall", "/W0" },
{ VS7, "-Wno-unused", "/wd4100 /wd4101 /wd4102 /wd4505" },
{ 0, "-Wno-sign-compare", "/wd4365 /wd4389 /wd4245 /wd4388" },
{ 0, "-W*", "" },
{ VS2005, "-march=*", "" }, // deprecated in VS2005
{ 0, "-march=pentium", "/G5" },
{ 0, "-march=pentiumpro", "/G6" },
{ 0, "-march=pentium3", "/G6" },
{ 0, "-march=pentium-m", "/G6" },
{ 0, "-march=athlon", "/G7" },
{ 0, "-march=pentium4", "/G7" },
{ 0, "-march=athlon64", "/G7" },
// TODO: the x64 compiler doesn't have the /arch:SSE*
{ VS71, "-msse", "/arch:SSE" },
{ 0, "-msse", "" },
{ VS71, "-msse2", "/arch:SSE2" },
{ 0, "-msse2", "" },
{ 0, "-msse3", "" },
{ VS2010, "-mavx", "/arch:AVX" },
// TODO: introduced in Visual Studio 2013 Update 2, version 12.0.34567.1
//{ 0, "-mavx2", "/arch:AVX2" },
{ 0, "-mwindows", "" },
{ 0, "-mno-cygwin", "" },
{ 0, "-std=gnu89", "" },
{ 0, "-std=gnu++98", "/TP" },
{ 0, "-pipe", "" },
{ 0, "-x", "" },
{ 0, "c++", "" },
{ 0, "-flto", "/GL" },
{ 0, "-fno-optimize-sibling-calls", "" },
{ VS2005, "-fopenmp", "/openmp" },
{ 0 }
};
static const translation_info ld_translate[] =
{
{ VS2008, "-lbufferoverflowu", "" },
{ 0, "-l*", "*.lib" },
{ 0, "-o*", "/out:*" },
{ 0, "-Wl,-Map,*", "/map:*" },
{ 0, "-Wl,--allow-multiple-definition", "/force:multiple" },
{ 0, "-Wl,--warn-common", "" },
{ 0, "-mno-cygwin", "" },
{ 0, "-s", "" },
{ 0, "-WO", "" },
{ 0, "-mconsole", "/subsystem:console" },
{ 0, "-mwindows", "/subsystem:windows" },
{ 0, "-municode", "" },
{ 0, "-static-libgcc", "" },
{ 0, "-static-libstdc++", "" },
{ 0, "-shared", "/dll" },
{ 0, "-flto", "/LTCG" },
{ 0 }
};
static const translation_info ar_translate[] =
{
{ 0, "-cr", "" },
{ 0, "/LTCG", "/LTCG" },
{ 0 }
};
static const translation_info windres_translate[] =
{
{ 0, "-D*", "/D*" },
{ 0, "-U*", "/U*" },
{ 0, "-I*", "/I*" },
{ 0, "--include-dir*", "/I*" },
{ 0, "-o*", "/fo*" },
{ 0, "-O*", "" },
{ 0, "-i*", "*" },
{ 0 }
};
//============================================================
// GLOBALS
//============================================================
static char command_line[32768];
//============================================================
// get_exe_version
//============================================================
static DWORD get_exe_version(const char *executable)
{
char path[MAX_PATH];
void *version_info;
DWORD version_info_size, dummy;
void *sub_buffer;
UINT sub_buffer_size;
VS_FIXEDFILEINFO *info;
DWORD product_version;
char sub_block[2] = { '\\', '\0' };
// try to locate the executable
if (!SearchPath(NULL, executable, NULL, sizeof(path) / sizeof(path[0]), path, NULL))
{
fprintf(stderr, "Cannot find %s\n", executable);
exit(-100);
}
// determine the size of the version info
version_info_size = GetFileVersionInfoSize(path, &dummy);
if (version_info_size == 0)
{
switch(GetLastError())
{
case ERROR_RESOURCE_TYPE_NOT_FOUND:
fprintf(stderr, "\"%s\" does not contain version info; this is probably not a MSVC executable\n", path);
break;
default:
fprintf(stderr, "GetFileVersionInfoSize() failed\n");
break;
}
exit(-100);
}
// allocate the memory; using GlobalAlloc() so that we do not
// unintentionally uses malloc() overrides
version_info = GlobalAlloc(GMEM_FIXED, version_info_size);
if (!version_info)
{
fprintf(stderr, "Out of memory\n");
exit(-100);
}
// retrieve the version info
if (!GetFileVersionInfo(path, 0, version_info_size, version_info))
{
fprintf(stderr, "GetFileVersionInfo() failed\n");
exit(-100);
}
// extract the VS_FIXEDFILEINFO from the version info
if (!VerQueryValue(version_info, sub_block, &sub_buffer, &sub_buffer_size))
{
fprintf(stderr, "VerQueryValue() failed\n");
exit(-100);
}
info = (VS_FIXEDFILEINFO *) sub_buffer;
product_version = info->dwProductVersionMS;
GlobalFree(version_info);
return product_version;
}
//============================================================
// build_command_line
//============================================================
// TODO: VS2012 and up enable SSE2 instructions by default for x86 - we should make older versions consistent with this
static void build_command_line(int argc, char *argv[])
{
const translation_info *transtable;
const char *executable;
const char *outstring = "";
char *dst = command_line;
int output_is_first = 0;
int icl_compile = 0;
int parampos = 2;
int param;
DWORD exe_version = 0;
// if no parameters, show usage
if (argc < 2)
{
fprintf(stderr, "Usage:\n vconv {gcc|ar|ld} [-icl] [param [...]]\n");
exit(0);
}
if (!strcmp(argv[2], "-icl"))
{
icl_compile = 1;
parampos = 3;
}
// first parameter determines the type
if (!strcmp(argv[1], "gcc"))
{
transtable = gcc_translate;
if (!icl_compile)
{
executable = "cl.exe";
dst += sprintf(dst, "cl /nologo ");
}
else
{
executable = "icl.exe";
dst += sprintf(dst, "icl /nologo");
/* ICL 14.0 generates more warnings than MSVC, for now turn them off */
dst += sprintf(dst, " /Qwd9 "); /* remark #9: nested comment is not allowed */
dst += sprintf(dst, " /Qwd82 "); /* remark #82: storage class is not first */
dst += sprintf(dst, " /Qwd111 "); /* remark #111: statement is unreachable */
dst += sprintf(dst, " /Qwd128 "); /* remark #128: loop is not reachable */
dst += sprintf(dst, " /Qwd177 "); /* remark #177: function "xxx" was declared but never referenced */
dst += sprintf(dst, " /Qwd181 "); /* remark #181: argument of type "UINT32={unsigned int}" is incompatible with format "%d", expecting argument of type "int" */
dst += sprintf(dst, " /Qwd185 "); /* remark #185: dynamic initialization in unreachable code */
dst += sprintf(dst, " /Qwd280 "); /* remark #280: selector expression is constant */
dst += sprintf(dst, " /Qwd344 "); /* remark #344: typedef name has already been declared (with same type) */
dst += sprintf(dst, " /Qwd411 "); /* remark #411: class "xxx" defines no constructor to initialize the following */
dst += sprintf(dst, " /Qwd869 "); /* remark #869: parameter "xxx" was never referenced */
dst += sprintf(dst, " /Qwd2545 "); /* remark #2545: empty dependent statement in "else" clause of if - statement */
dst += sprintf(dst, " /Qwd2553 "); /* remark #2553: nonstandard second parameter "TCHAR={WCHAR = { __wchar_t } } **" of "main", expected "char *[]" or "char **" extern "C" int _tmain(int argc, TCHAR **argv) */
dst += sprintf(dst, " /Qwd2557 "); /* remark #2557: comparison between signed and unsigned operands */
dst += sprintf(dst, " /Qwd3280 "); /* remark #3280: declaration hides member "attotime::seconds" (declared at line 126) static attotime from_seconds(INT32 seconds) { return attotime(seconds, 0); } */
dst += sprintf(dst, " /Qwd170 "); /* error #170: pointer points outside of underlying object */
dst += sprintf(dst, " /Qwd188 "); /* error #188: enumerated type mixed with another type */
dst += sprintf(dst, " /Qwd63 "); /* warning #63: shift count is too large */
dst += sprintf(dst, " /Qwd177 "); /* warning #177: label "xxx" was declared but never referenced */
dst += sprintf(dst, " /Qwd186 "); /* warning #186: pointless comparison of unsigned integer with zero */
dst += sprintf(dst, " /Qwd488 "); /* warning #488: template parameter "_FunctionClass" is not used in declaring the parameter types of function template "device_delegate<_Signature>::device_delegate<_FunctionClass>(delegate<_Signature>: */
dst += sprintf(dst, " /Qwd1478 "); /* warning #1478: function "xxx" (declared at line yyy of "zzz") was declared deprecated */
dst += sprintf(dst, " /Qwd1879 "); /* warning #1879: unimplemented pragma ignored */
dst += sprintf(dst, " /Qwd3291 "); /* warning #3291: invalid narrowing conversion from "double" to "int" */
// icl: command line warning #10120: overriding '/O2' with '/Od'
}
}
else if (!strcmp(argv[1], "windres"))
{
transtable = windres_translate;
executable = "rc.exe";
dst += sprintf(dst, "rc ");
}
else if (!strcmp(argv[1], "ld"))
{
transtable = ld_translate;
if (!icl_compile)
{
executable = "link.exe";
dst += sprintf(dst, "link /nologo /debug ");
}
else
{
executable = "xilink.exe";
dst += sprintf(dst, "xilink /nologo /debug ");
}
}
else if (!strcmp(argv[1], "ar"))
{
transtable = ar_translate;
if (!icl_compile)
{
executable = "link.exe";
dst += sprintf(dst, "link /lib /nologo ");
outstring = "/out:";
output_is_first = 1;
}
else
{
executable = "xilink.exe";
dst += sprintf(dst, "xilink /lib /nologo ");
outstring = "/out:";
output_is_first = 1;
}
}
else
{
fprintf(stderr, "Error: unknown translation type '%s'\n", argv[1]);
exit(-100);
}
// identify the version number of the EXE
if (!icl_compile)
exe_version = get_exe_version(executable);
else
exe_version = 0x00110000; // assume this for ICL
// special cases
if (!icl_compile && !strcmp(executable, "cl.exe")) {
if (exe_version >= 0x00070000)
dst += sprintf(dst, "/wd4025 ");
// fixes -j compiles with VS2013
if (exe_version >= 0x000C0000)
dst += sprintf(dst, "/FS ");
}
// iterate over parameters
for (param = parampos; param < argc; param++)
{
const char *src = argv[param];
int firstchar = src[0];
int srclen = strlen(src);
int matched = FALSE;
int i;
// find a match
for (i = 0; !matched && transtable[i].gcc_option != NULL; i++)
{
const char *compare = transtable[i].gcc_option;
const char *replace;
int j;
// check version number
if (exe_version < transtable[i].vc_version)
continue;
// find a match
for (j = 0; j < srclen; j++)
if (src[j] != compare[j])
break;
// if we hit an asterisk, we're ok
if (compare[j] == '*')
{
// if this is the end of the parameter, use the next one
if (src[j] == 0)
src = argv[++param];
else
src += j;
// copy the replacement up to the asterisk
replace = transtable[i].vc_option;
while (*replace && *replace != '*')
{
if (*replace == '~')
{
dst += sprintf(dst, "%s", outstring);
replace++;
}
else
*dst++ = *replace++;
}
// if we have an asterisk in the replacement, copy the rest of the source
if (*replace == '*')
{
int addquote = (strchr(src, ' ') != NULL);
if (addquote)
*dst++ = '"';
while (*src)
{
*dst++ = (*src == '/') ? '\\' : *src;
src++;
}
if (addquote)
*dst++ = '"';
// if there's stuff after the asterisk, copy that
replace++;
while (*replace)
*dst++ = *replace++;
}
// append a final space
*dst++ = ' ';
matched = TRUE;
}
// if we hit the end, we're also ok
else if (compare[j] == 0 && j == srclen)
{
// copy the replacement up to the tilde
replace = transtable[i].vc_option;
while (*replace && *replace != '~')
*dst++ = *replace++;
// if we hit a tilde, set the new output
if (*replace == '~')
outstring = replace + 1;
// append a final space
*dst++ = ' ';
matched = TRUE;
}
// else keep looking
}
// if we didn't match, process
if (!matched)
{
// warn if we missed a parameter
if (transtable[i].gcc_option == NULL && firstchar == '-')
fprintf(stderr, "Unable to match parameter '%s'\n", src);
// otherwise, assume it's a filename and copy translating slashes
// it can also be a Windows-specific option which is passed through unscathed
else if (firstchar != '-')
{
int dotrans = (*src != '/');
// if the output filename is implicitly first, append the out parameter
if (output_is_first)
{
dst += sprintf(dst, "%s", outstring);
output_is_first = 0;
}
// now copy the rest of the string
while (*src)
{
*dst++ = (dotrans && *src == '/') ? '\\' : *src;
src++;
}
*dst++ = ' ';
}
}
}
// trim remaining spaces and NULL terminate
while (dst > command_line && dst[-1] == ' ')
dst--;
*dst = 0;
}
//============================================================
// main
//============================================================
int main(int argc, char *argv[])
{
PROCESS_INFORMATION pi;
STARTUPINFO si;
DWORD exitcode;
int uses_redirection, in_quotes, i;
static const char cmd_prefix[] = "cmd.exe /c ";
// build the new command line
build_command_line(argc, argv);
// do we use redirection? if so, use cmd.exe
uses_redirection = FALSE;
in_quotes = FALSE;
for (i = 0; command_line[i]; i++)
{
if (command_line[i] == '\"')
in_quotes = !in_quotes;
if (!in_quotes && strchr("|<>", command_line[i]))
uses_redirection = TRUE;
}
if (uses_redirection)
{
memmove(command_line + strlen(cmd_prefix), command_line, strlen(command_line) + 1);
memcpy(command_line, cmd_prefix, strlen(cmd_prefix));
}
if (PRINT_COMMAND_LINE)
printf("%s\n", command_line);
// create the process information structures
memset(&si, 0, sizeof(si));
si.cb = sizeof(si);
memset(&pi, 0, sizeof(pi));
// create and execute the process
if (!CreateProcess(NULL, command_line, NULL, NULL, TRUE, 0, NULL, NULL, &si, &pi) ||
pi.hProcess == INVALID_HANDLE_VALUE)
return -101;
// block until done and fetch the error code
WaitForSingleObject(pi.hProcess, INFINITE);
GetExitCodeProcess(pi.hProcess, &exitcode);
// clean up the handles
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
// return the child's error code
return exitcode;
}
|