-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain.c
1046 lines (875 loc) · 23.9 KB
/
main.c
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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "slimcc.h"
typedef enum {
FILE_NONE, FILE_C, FILE_ASM, FILE_OBJ, FILE_AR, FILE_DSO, FILE_PP_ASM
} FileType;
StringArray include_paths;
bool opt_fcommon = true;
bool opt_fpic;
bool opt_optimize = true;
bool opt_g;
bool opt_func_sections;
bool opt_data_sections;
bool opt_werror;
bool opt_cc1_asm_pp;
char *opt_visibility;
StdVer opt_std;
static StringArray opt_include;
bool opt_E;
bool opt_enable_universal_char;
static bool opt_P;
static bool opt_M;
static bool opt_MD;
static bool opt_MMD;
static bool opt_MP;
static bool opt_S;
static bool opt_c;
static bool opt_cc1;
static bool opt_hash_hash_hash;
static bool opt_static;
static bool opt_shared;
static bool opt_nostdinc;
static bool opt_nostdlib;
static char *opt_MF;
static char *opt_MT;
static char *opt_o;
static StringArray ld_extra_args;
static StringArray std_include_paths;
char *base_file;
static char *output_file;
static StringArray input_paths;
static StringArray tmpfiles;
static StringArray as_args;
static void usage(int status) {
fprintf(stderr, "slimcc [ -o <path> ] <file>\n");
exit(status);
}
static char *take_arg(char **argv, int *i, char *opt) {
if (strcmp(argv[*i], opt))
return NULL;
if (!argv[++(*i)]) {
fprintf(stderr, "missing argument to %s\n", opt);
exit(1);
}
return argv[*i];
}
static void add_include_path(char *p) {
char *str = strdup(p);
for (int i = strlen(str) - 1; i >= 0 && str[i] == '/';)
str[i--] = '\0';
for (int i = 0; i < include_paths.len; i++) {
if (!strcmp(include_paths.data[i], str))
return;
}
strarray_push(&include_paths, str);
}
static void add_default_include_paths(char *argv0) {
if (opt_nostdinc)
return;
// We expect that compiler-provided include files are installed
// to ./include relative to argv[0].
strarray_push(&std_include_paths, format("%s/include", dirname(strdup(argv0))));
// Add standard include paths.
strarray_push(&std_include_paths, "/usr/local/include");
strarray_push(&std_include_paths, "/usr/include/x86_64-linux-gnu");
strarray_push(&std_include_paths, "/usr/include");
for (int i = 0; i < std_include_paths.len; i++)
strarray_push(&include_paths, std_include_paths.data[i]);
}
static void define(char *str) {
char *eq = strchr(str, '=');
if (eq)
define_macro(strndup(str, eq - str), eq + 1);
else
define_macro(str, "1");
}
static FileType parse_opt_x(char *s) {
if (!strcmp(s, "c"))
return FILE_C;
if (!strcmp(s, "assembler"))
return FILE_ASM;
if (!strcmp(s, "assembler-with-cpp"))
return FILE_PP_ASM;
if (!strcmp(s, "none"))
return FILE_NONE;
error("<command line>: unknown argument for -x: %s", s);
}
static void set_std(int val) {
if (val == 89 || val == 90)
opt_std = STD_C89;
else if (val == 99)
opt_std = STD_C99;
else if (val == 11)
opt_std = STD_C11;
else if (val == 17 || val == 18)
opt_std = STD_C17;
else if (val == 23)
opt_std = STD_C23;
else
error("unknown c standard");
}
static char *quote_makefile(char *s) {
char *buf = calloc(1, strlen(s) * 2 + 1);
for (int i = 0, j = 0; s[i]; i++) {
switch (s[i]) {
case '$':
buf[j++] = '$';
buf[j++] = '$';
break;
case '#':
buf[j++] = '\\';
buf[j++] = '#';
break;
case ' ':
case '\t':
for (int k = i - 1; k >= 0 && s[k] == '\\'; k--)
buf[j++] = '\\';
buf[j++] = '\\';
buf[j++] = s[i];
break;
default:
buf[j++] = s[i];
break;
}
}
return buf;
}
static void parse_args(int argc, char **argv) {
char *arg;
StringArray idirafter = {0};
for (int i = 1; i < argc; i++) {
if (*argv[i] == '\0')
continue;
if (!strcmp(argv[i], "-###")) {
opt_hash_hash_hash = true;
continue;
}
if (!strcmp(argv[i], "-cc1")) {
opt_cc1 = true;
continue;
}
if (!strcmp(argv[i], "--help"))
usage(0);
if ((arg = take_arg(argv, &i, "-o"))) {
opt_o = arg;
continue;
}
if (!strncmp(argv[i], "-o", 2)) {
opt_o = argv[i] + 2;
continue;
}
if (!strcmp(argv[i], "-S")) {
opt_S = true;
continue;
}
if (!strcmp(argv[i], "-fcommon")) {
opt_fcommon = true;
continue;
}
if (!strcmp(argv[i], "-fno-common")) {
opt_fcommon = false;
continue;
}
if (!strcmp(argv[i], "-c")) {
opt_c = true;
continue;
}
if (!strcmp(argv[i], "-E")) {
opt_E = true;
continue;
}
if (!strcmp(argv[i], "-P")) {
opt_P = true;
continue;
}
if ((arg = take_arg(argv, &i, "-I"))) {
add_include_path(arg);
continue;
}
if (!strncmp(argv[i], "-I", 2)) {
add_include_path(argv[i] + 2);
continue;
}
if ((arg = take_arg(argv, &i, "-D"))) {
define(arg);
continue;
}
if (!strncmp(argv[i], "-D", 2)) {
define(argv[i] + 2);
continue;
}
if ((arg = take_arg(argv, &i, "-U"))) {
undef_macro(arg);
continue;
}
if (!strncmp(argv[i], "-U", 2)) {
undef_macro(argv[i] + 2);
continue;
}
if ((arg = take_arg(argv, &i, "-include"))) {
strarray_push(&opt_include, arg);
continue;
}
if ((arg = take_arg(argv, &i, "-x"))) {
strarray_push(&input_paths, "-x");
strarray_push(&input_paths, arg);
continue;
}
if (!strncmp(argv[i], "-x", 2)) {
strarray_push(&input_paths, "-x");
strarray_push(&input_paths, argv[i] + 2);
continue;
}
if (!strncmp(argv[i], "-l", 2) || !strncmp(argv[i], "-Wl,", 4)) {
strarray_push(&input_paths, argv[i]);
continue;
}
if (!strncmp(argv[i], "-Wa,", 4)) {
char *s = strdup(&argv[i][4]);
char *arg = strtok(s, ",");
while (arg) {
strarray_push(&as_args, arg);
arg = strtok(NULL, ",");
}
continue;
}
if (!strcmp(argv[i], "-rdynamic")) {
strarray_push(&input_paths, "-Wl,--export-dynamic");
continue;
}
if ((arg = take_arg(argv, &i, "-Xlinker"))) {
strarray_push(&ld_extra_args, arg);
continue;
}
if (!strcmp(argv[i], "-s")) {
strarray_push(&ld_extra_args, "-s");
continue;
}
if (!strcmp(argv[i], "-M")) {
opt_M = true;
continue;
}
if ((arg = take_arg(argv, &i, "-MF"))) {
opt_MF = arg;
continue;
}
if (!strcmp(argv[i], "-MP")) {
opt_MP = true;
continue;
}
if ((arg = take_arg(argv, &i, "-MT"))) {
if (opt_MT == NULL)
opt_MT = arg;
else
opt_MT = format("%s %s", opt_MT, arg);
continue;
}
if (!strcmp(argv[i], "-MD")) {
opt_MD = true;
continue;
}
if ((arg = take_arg(argv, &i, "-MQ"))) {
if (opt_MT == NULL)
opt_MT = quote_makefile(arg);
else
opt_MT = format("%s %s", opt_MT, quote_makefile(arg));
continue;
}
if (!strcmp(argv[i], "-MMD")) {
opt_MD = opt_MMD = true;
continue;
}
if (!strcmp(argv[i], "-fpic") || !strcmp(argv[i], "-fPIC")) {
opt_fpic = true;
continue;
}
if ((arg = take_arg(argv, &i, "-cc1-input"))) {
base_file = arg;
continue;
}
if ((arg = take_arg(argv, &i, "-cc1-output"))) {
output_file = arg;
continue;
}
if (!strcmp(argv[i], "-cc1-asm-pp")) {
opt_E = true;
opt_cc1_asm_pp = true;
continue;
}
if ((arg = take_arg(argv, &i, "-idirafter"))) {
strarray_push(&idirafter, arg);
continue;
}
if (!strcmp(argv[i], "-pthread")) {
define("_REENTRANT");
strarray_push(&input_paths, "-lpthread");
continue;
}
if (!strcmp(argv[i], "-static")) {
opt_static = true;
strarray_push(&ld_extra_args, "-static");
continue;
}
if (!strcmp(argv[i], "-shared")) {
opt_shared = true;
strarray_push(&ld_extra_args, "-shared");
continue;
}
if ((arg = take_arg(argv, &i, "-L"))) {
strarray_push(&ld_extra_args, "-L");
strarray_push(&ld_extra_args, arg);
continue;
}
if (!strncmp(argv[i], "-L", 2)) {
strarray_push(&ld_extra_args, "-L");
strarray_push(&ld_extra_args, argv[i] + 2);
continue;
}
if (!strcmp(argv[i], "-hashmap-test")) {
hashmap_test();
exit(0);
}
if (!strncmp(argv[i], "-g", 2)) {
if (argv[i][2] == '0')
opt_g = false;
else
opt_g = true;
continue;
}
if (!strncmp(argv[i], "-O", 2)) {
if (argv[i][2] == '0')
opt_optimize = false;
else
opt_optimize = true;
continue;
}
if (!strcmp(argv[i], "-ansi")) {
set_std(89);
define("__STRICT_ANSI__");
continue;
} else if (!strncmp(argv[i], "-std=c", 6)) {
set_std(strtoul(argv[i] + 6, NULL, 10));
continue;
} else if (!strncmp(argv[i], "--std=c", 7)) {
set_std(strtoul(argv[i] + 7, NULL, 10));
continue;
} else if (!strcmp(argv[i], "--std")) {
if (*argv[++i] != 'c')
error("unknown c standard");
set_std(strtoul(argv[i] + 1, NULL, 10));
continue;
}
if (!strcmp(argv[i], "-fenable-universal-char")) {
opt_enable_universal_char = true;
continue;
}
if (!strncmp(argv[i], "-fstack-reuse=", 14)) {
if (strncmp(argv[i] + 14, "all\0", 4))
dont_reuse_stack = true;
continue;
}
if (!strcmp(argv[i], "-fsigned-char"))
continue;
if (!strcmp(argv[i], "-funsigned-char")) {
ty_pchar->is_unsigned = true;
continue;
}
if (!strcmp(argv[i], "-ffunction-sections")) {
opt_func_sections = true;
continue;
}
if (!strcmp(argv[i], "-fdata-sections")) {
opt_data_sections = true;
continue;
}
if (!strncmp(argv[i], "-fvisibility=", 13)) {
opt_visibility = strdup(&argv[i][13]);
continue;
}
if (!strcmp(argv[i], "-nostdinc")) {
opt_nostdinc = true;
continue;
}
if (!strcmp(argv[i], "-nostdlib")) {
opt_nostdlib = true;
continue;
}
if (!strcmp(argv[i], "-Werror")) {
opt_werror = true;
continue;
}
// These options are ignored for now.
if (!strncmp(argv[i], "-W", 2) ||
!strncmp(argv[i], "-std=", 5) ||
!strncmp(argv[i], "-march=", 7) ||
!strcmp(argv[i], "-ffreestanding") ||
!strcmp(argv[i], "-fno-builtin") ||
!strcmp(argv[i], "-fno-lto") ||
!strcmp(argv[i], "-fno-asynchronous-unwind-tables") ||
!strcmp(argv[i], "-fno-delete-null-pointer-checks") ||
!strcmp(argv[i], "-fno-omit-frame-pointer") ||
!strcmp(argv[i], "-fno-stack-protector") ||
!strcmp(argv[i], "-fno-strict-aliasing") ||
!strcmp(argv[i], "-fno-strict-overflow") ||
!strcmp(argv[i], "-fwrapv") ||
!strcmp(argv[i], "-m64") ||
!strcmp(argv[i], "-mfpmath=sse") ||
!strcmp(argv[i], "-mno-red-zone") ||
!strcmp(argv[i], "-no-pie") ||
!strcmp(argv[i], "-pedantic") ||
!strcmp(argv[i], "-w"))
continue;
if (argv[i][0] == '-' && argv[i][1] != '\0')
error("unknown argument: %s", argv[i]);
strarray_push(&input_paths, argv[i]);
}
for (int i = 0; i < idirafter.len; i++)
add_include_path(idirafter.data[i]);
if (input_paths.len == 0)
error("no input files");
}
static FILE *open_file(char *path) {
if (!path || strcmp(path, "-") == 0)
return stdout;
FILE *out = fopen(path, "w");
if (!out)
error("cannot open output file: %s: %s", path, strerror(errno));
return out;
}
static bool endswith(char *p, char *q) {
int len1 = strlen(p);
int len2 = strlen(q);
return (len1 >= len2) && !strcmp(p + len1 - len2, q);
}
// Replace file extension
static char *replace_extn(char *tmpl, char *extn) {
char *filename = basename(strdup(tmpl));
char *dot = strrchr(filename, '.');
if (dot)
*dot = '\0';
return format("%s%s", filename, extn);
}
static void cleanup(void) {
for (int i = 0; i < tmpfiles.len; i++)
unlink(tmpfiles.data[i]);
}
static char *create_tmpfile(void) {
char *path = strdup("/tmp/slimcc-XXXXXX");
int fd = mkstemp(path);
if (fd == -1)
error("mkstemp failed: %s", strerror(errno));
close(fd);
strarray_push(&tmpfiles, path);
return path;
}
static void run_subprocess(char **argv) {
// If -### is given, dump the subprocess's command line.
if (opt_hash_hash_hash) {
fprintf(stderr, "\"%s\"", argv[0]);
for (int i = 1; argv[i]; i++)
fprintf(stderr, " \"%s\"", argv[i]);
fprintf(stderr, "\n");
return;
}
if (fork() == 0) {
// Child process. Run a new command.
execvp(argv[0], argv);
fprintf(stderr, "exec failed: %s: %s\n", argv[0], strerror(errno));
_exit(1);
}
// Wait for the child process to finish.
int status;
if (wait(&status) <= 0 || status != 0)
exit(1);
}
static void run_cc1(int argc, char **argv, char *input, char *output, char *option) {
char **args = calloc(argc + 10, sizeof(char *));
memcpy(args, argv, argc * sizeof(char *));
args[argc++] = "-cc1";
if (input) {
args[argc++] = "-cc1-input";
args[argc++] = input;
}
if (output) {
args[argc++] = "-cc1-output";
args[argc++] = output;
}
if (option)
args[argc++] = option;
run_subprocess(args);
}
// Print tokens to stdout. Used for -E.
static void print_tokens(Token *tok, char *path) {
FILE *out = open_file(path);
int line = 1;
File *markerfile = NULL;
for (; tok->kind != TK_EOF; tok = tok->next) {
Token *orig = tok->origin ? tok->origin : tok;
if (!opt_P && markerfile != orig->file) {
markerfile = orig->file;
char *name = orig->file->name;
if (!strcmp(name, "-"))
name = "<stdin>";
fprintf(out, "\n# %d \"%s\"\n", orig->line_no, name);
}
if (line > 1 && tok->at_bol)
fprintf(out, "\n");
if (tok->has_space && !tok->at_bol)
fprintf(out, " ");
fprintf(out, "%.*s", tok->len, tok->loc);
line++;
}
fprintf(out, "\n");
}
static bool in_std_include_path(char *path) {
for (int i = 0; i < std_include_paths.len; i++) {
char *dir = std_include_paths.data[i];
int len = strlen(dir);
if (strncmp(dir, path, len) == 0 && path[len] == '/')
return true;
}
return false;
}
// If -M options is given, the compiler write a list of input files to
// stdout in a format that "make" command can read. This feature is
// used to automate file dependency management.
static void print_dependencies(void) {
char *path;
if (opt_MF)
path = opt_MF;
else if (opt_MD)
path = replace_extn(opt_o ? opt_o : base_file, ".d");
else if (opt_o)
path = opt_o;
else
path = "-";
FILE *out = open_file(path);
if (opt_MT)
fprintf(out, "%s:", opt_MT);
else
fprintf(out, "%s:", quote_makefile(replace_extn(base_file, ".o")));
File **files = get_input_files();
for (int i = 0; files[i]; i++) {
char *name = files[i]->name;
if ((opt_MMD && in_std_include_path(name)) || !files[i]->is_input)
continue;
fprintf(out, " \\\n %s", name);
}
fprintf(out, "\n\n");
if (opt_MP) {
for (int i = 1; files[i]; i++) {
char *name = files[i]->name;
if ((opt_MMD && in_std_include_path(name)) || !files[i]->is_input)
continue;
fprintf(out, "%s:\n\n", quote_makefile(name));
}
}
}
static Token *must_tokenize_file(char *path, Token **end) {
int incl_no = -1;
Token *tok = tokenize_file(path, end, &incl_no);
if (!tok)
error("%s: %s", path, strerror(errno));
return tok;
}
static void cc1(void) {
Token head = {0};
Token *cur = &head;
if (!opt_E) {
Token *end;
head.next = tokenize(add_input_file("slimcc_builtins",
"typedef struct {"
" unsigned int gp_offset;"
" unsigned int fp_offset;"
" void *overflow_arg_area;"
" void *reg_save_area;"
"} __builtin_va_list[1];", NULL), &end);
cur = end;
}
// Process -include option
for (int i = 0; i < opt_include.len; i++) {
char *incl = opt_include.data[i];
char *path;
if (file_exists(incl)) {
path = incl;
} else {
path = search_include_paths(incl);
if (!path)
error("-include: %s: %s", incl, strerror(errno));
}
Token *end = NULL;
cur->next = must_tokenize_file(path, &end);
if (end)
cur = end;
}
// Tokenize and parse.
cur->next = must_tokenize_file(base_file, NULL);
Token *tok = preprocess(head.next);
// If -M or -MD are given, print file dependencies.
if (opt_M || opt_MD) {
print_dependencies();
if (opt_M)
return;
}
// If -E is given, print out preprocessed C code as a result.
if (opt_E) {
print_tokens(tok, output_file);
return;
}
Obj *prog = parse(tok);
// Write the asembly text to a file.
FILE *out = open_file(output_file);
int failed = codegen(prog, out);
fclose(out);
if (failed)
unlink(output_file);
}
static void assemble(char *input, char *output) {
StringArray arr = {0};
strarray_push(&arr, "as");
strarray_push(&arr, input);
strarray_push(&arr, "-o");
strarray_push(&arr, output);
strarray_push(&arr, "--fatal-warnings");
for (int i = 0; i < as_args.len; i++)
strarray_push(&arr, as_args.data[i]);
strarray_push(&arr, NULL);
run_subprocess(arr.data);
}
static char *find_file(char *pattern) {
char *path = NULL;
glob_t buf = {0};
glob(pattern, 0, NULL, &buf);
if (buf.gl_pathc > 0)
path = strdup(buf.gl_pathv[buf.gl_pathc - 1]);
globfree(&buf);
return path;
}
// Returns true if a given file exists.
bool file_exists(char *path) {
struct stat st;
return !stat(path, &st);
}
static char *find_libpath(void) {
if (file_exists("/usr/lib/x86_64-linux-gnu/crti.o"))
return "/usr/lib/x86_64-linux-gnu";
if (file_exists("/usr/lib64/crti.o"))
return "/usr/lib64";
error("library path is not found");
}
static char *find_gcc_libpath(void) {
char *path = find_file("/usr/lib*/gcc/x86_64*-linux*/*/crtbegin.o");
if (path)
return dirname(path);
error("gcc library path is not found");
}
static void run_linker(StringArray *inputs, char *output) {
StringArray arr = {0};
strarray_push(&arr, "ld");
strarray_push(&arr, "-o");
strarray_push(&arr, output);
strarray_push(&arr, "-m");
strarray_push(&arr, "elf_x86_64");
if (opt_nostdlib) {
if (!opt_static) {
strarray_push(&arr, "-dynamic-linker");
strarray_push(&arr, "/lib64/ld-linux-x86-64.so.2");
}
for (int i = 0; i < ld_extra_args.len; i++)
strarray_push(&arr, ld_extra_args.data[i]);
for (int i = 0; i < inputs->len; i++)
strarray_push(&arr, inputs->data[i]);
strarray_push(&arr, NULL);
run_subprocess(arr.data);
return;
}
char *libpath = find_libpath();
char *gcc_libpath = find_gcc_libpath();
if (opt_shared) {
strarray_push(&arr, format("%s/crti.o", libpath));
strarray_push(&arr, format("%s/crtbeginS.o", gcc_libpath));
} else {
strarray_push(&arr, format("%s/crt1.o", libpath));
strarray_push(&arr, format("%s/crti.o", libpath));
strarray_push(&arr, format("%s/crtbegin.o", gcc_libpath));
}
for (int i = 0; i < ld_extra_args.len; i++)
strarray_push(&arr, ld_extra_args.data[i]);
strarray_push(&arr, format("-L%s", gcc_libpath));
strarray_push(&arr, "-L/usr/lib/x86_64-linux-gnu");
strarray_push(&arr, "-L/usr/lib64");
strarray_push(&arr, "-L/lib64");
strarray_push(&arr, "-L/usr/lib/x86_64-linux-gnu");
strarray_push(&arr, "-L/usr/lib/x86_64-pc-linux-gnu");
strarray_push(&arr, "-L/usr/lib/x86_64-redhat-linux");
strarray_push(&arr, "-L/usr/lib");
strarray_push(&arr, "-L/lib");
if (!opt_static) {
strarray_push(&arr, "-dynamic-linker");
strarray_push(&arr, "/lib64/ld-linux-x86-64.so.2");
}
for (int i = 0; i < inputs->len; i++)
strarray_push(&arr, inputs->data[i]);
if (opt_static) {
strarray_push(&arr, "--start-group");
strarray_push(&arr, "-lgcc");
strarray_push(&arr, "-lgcc_eh");
strarray_push(&arr, "-lc");
strarray_push(&arr, "--end-group");
} else {
strarray_push(&arr, "-lc");
strarray_push(&arr, "-lgcc");
strarray_push(&arr, "--as-needed");
strarray_push(&arr, "-lgcc_s");
strarray_push(&arr, "--no-as-needed");
}
if (opt_shared)
strarray_push(&arr, format("%s/crtendS.o", gcc_libpath));
else
strarray_push(&arr, format("%s/crtend.o", gcc_libpath));
strarray_push(&arr, format("%s/crtn.o", libpath));
strarray_push(&arr, NULL);
run_subprocess(arr.data);
}
static FileType get_file_type(char *filename) {
if (endswith(filename, ".a"))
return FILE_AR;
if (endswith(filename, ".so"))
return FILE_DSO;
if (endswith(filename, ".o") || endswith(filename, ".lo"))
return FILE_OBJ;
if (endswith(filename, ".c"))
return FILE_C;
if (endswith(filename, ".s"))
return FILE_ASM;
if (endswith(filename, ".S"))
return FILE_PP_ASM;
if (opt_E && (!strcmp(filename, "-") || endswith(filename, ".h")))
return FILE_C;
char *p = strstr(filename, ".so.");
if (p) {
p += 3;
while (Isdigit(*p) || (*p == '.' && Isdigit(p[1])))
p++;
if (!*p)
return FILE_DSO;
}
error("<command line>: unknown file extension: %s", filename);
}
int main(int argc, char **argv) {
atexit(cleanup);
init_macros();
parse_args(argc, argv);
if (opt_cc1) {
add_default_include_paths(argv[0]);
cc1();
return 0;
}
StringArray ld_args = {0};
int file_count = 0;
FileType opt_x = FILE_NONE;
bool run_ld = false;
for (int i = 0; i < input_paths.len; i++) {
if (!strcmp(input_paths.data[i], "-x")) {
opt_x = parse_opt_x(input_paths.data[++i]);
continue;
}
char *input = input_paths.data[i];
if (!strncmp(input, "-l", 2)) {
strarray_push(&ld_args, input);
continue;
}
if (!strncmp(input, "-Wl,", 4)) {
char *s = strdup(input + 4);
char *arg = strtok(s, ",");
while (arg) {
strarray_push(&ld_args, arg);
arg = strtok(NULL, ",");
}
continue;
}
if (opt_o && (opt_c || opt_S || opt_E))
if (++file_count > 1)
error("cannot specify '-o' with '-c,' '-S' or '-E' with multiple files");
char *output;
if (opt_o)
output = opt_o;
else if (opt_S)
output = replace_extn(input, ".s");
else
output = replace_extn(input, ".o");
FileType type;
if (opt_x != FILE_NONE)
type = opt_x;
else
type = get_file_type(input);
// Handle .o or .a
if (type == FILE_OBJ || type == FILE_AR || type == FILE_DSO) {
strarray_push(&ld_args, input);
run_ld = true;
continue;
}
// Handle .s
if (type == FILE_ASM) {
if (opt_S || opt_E || opt_M)
continue;
if (opt_c) {
assemble(input, output);
continue;
}
char *tmp = create_tmpfile();
assemble(input, tmp);
strarray_push(&ld_args, tmp);
run_ld = true;
continue;
}
// Handle .S
if (type == FILE_PP_ASM) {
if (opt_S || opt_E || opt_M) {
run_cc1(argc, argv, input, (opt_o ? opt_o : "-"), "-cc1-asm-pp");
continue;
}
if (opt_c) {
char *tmp = create_tmpfile();
run_cc1(argc, argv, input, tmp, "-cc1-asm-pp");
assemble(tmp, output);
continue;