-
Notifications
You must be signed in to change notification settings - Fork 747
/
cpp.c
1014 lines (907 loc) · 28.3 KB
/
cpp.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
// Copyright 2012 Rui Ueyama. Released under the MIT license.
/*
* This implements Dave Prosser's C Preprocessing algorithm, described
* in this document: https://github.com/rui314/8cc/wiki/cpp.algo.pdf
*/
#include <ctype.h>
#include <libgen.h>
#include <locale.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "8cc.h"
static Map *macros = &EMPTY_MAP;
static Map *once = &EMPTY_MAP;
static Map *keywords = &EMPTY_MAP;
static Map *include_guard = &EMPTY_MAP;
static Vector *cond_incl_stack = &EMPTY_VECTOR;
static Vector *std_include_path = &EMPTY_VECTOR;
static struct tm now;
static Token *cpp_token_zero = &(Token){ .kind = TNUMBER, .sval = "0" };
static Token *cpp_token_one = &(Token){ .kind = TNUMBER, .sval = "1" };
typedef void SpecialMacroHandler(Token *tok);
typedef enum { IN_THEN, IN_ELIF, IN_ELSE } CondInclCtx;
typedef enum { MACRO_OBJ, MACRO_FUNC, MACRO_SPECIAL } MacroType;
typedef struct {
CondInclCtx ctx;
char *include_guard;
File *file;
bool wastrue;
} CondIncl;
typedef struct {
MacroType kind;
int nargs;
Vector *body;
bool is_varg;
SpecialMacroHandler *fn;
} Macro;
static Macro *make_obj_macro(Vector *body);
static Macro *make_func_macro(Vector *body, int nargs, bool is_varg);
static Macro *make_special_macro(SpecialMacroHandler *fn);
static void define_obj_macro(char *name, Token *value);
static void read_directive(Token *hash);
static Token *read_expand(void);
/*
* Constructors
*/
static CondIncl *make_cond_incl(bool wastrue) {
CondIncl *r = calloc(1, sizeof(CondIncl));
r->ctx = IN_THEN;
r->wastrue = wastrue;
return r;
}
static Macro *make_macro(Macro *tmpl) {
Macro *r = malloc(sizeof(Macro));
*r = *tmpl;
return r;
}
static Macro *make_obj_macro(Vector *body) {
return make_macro(&(Macro){ MACRO_OBJ, .body = body });
}
static Macro *make_func_macro(Vector *body, int nargs, bool is_varg) {
return make_macro(&(Macro){
MACRO_FUNC, .nargs = nargs, .body = body, .is_varg = is_varg });
}
static Macro *make_special_macro(SpecialMacroHandler *fn) {
return make_macro(&(Macro){ MACRO_SPECIAL, .fn = fn });
}
static Token *make_macro_token(int position, bool is_vararg) {
Token *r = malloc(sizeof(Token));
r->kind = TMACRO_PARAM;
r->is_vararg = is_vararg;
r->hideset = NULL;
r->position = position;
r->space = false;
r->bol = false;
return r;
}
static Token *copy_token(Token *tok) {
Token *r = malloc(sizeof(Token));
*r = *tok;
return r;
}
static void expect(char id) {
Token *tok = lex();
if (!is_keyword(tok, id))
errort(tok, "%c expected, but got %s", id, tok2s(tok));
}
/*
* Utility functions
*/
bool is_ident(Token *tok, char *s) {
return tok->kind == TIDENT && !strcmp(tok->sval, s);
}
static bool next(int id) {
Token *tok = lex();
if (is_keyword(tok, id))
return true;
unget_token(tok);
return false;
}
static void propagate_space(Vector *tokens, Token *tmpl) {
if (vec_len(tokens) == 0)
return;
Token *tok = copy_token(vec_head(tokens));
tok->space = tmpl->space;
vec_set(tokens, 0, tok);
}
/*
* Macro expander
*/
static Token *read_ident() {
Token *tok = lex();
if (tok->kind != TIDENT)
errort(tok, "identifier expected, but got %s", tok2s(tok));
return tok;
}
void expect_newline() {
Token *tok = lex();
if (tok->kind != TNEWLINE)
errort(tok, "newline expected, but got %s", tok2s(tok));
}
static Vector *read_one_arg(Token *ident, bool *end, bool readall) {
Vector *r = make_vector();
int level = 0;
for (;;) {
Token *tok = lex();
if (tok->kind == TEOF)
errort(ident, "unterminated macro argument list");
if (tok->kind == TNEWLINE)
continue;
if (tok->bol && is_keyword(tok, '#')) {
read_directive(tok);
continue;
}
if (level == 0 && is_keyword(tok, ')')) {
unget_token(tok);
*end = true;
return r;
}
if (level == 0 && is_keyword(tok, ',') && !readall)
return r;
if (is_keyword(tok, '('))
level++;
if (is_keyword(tok, ')'))
level--;
// C11 6.10.3p10: Within the macro argument list,
// newline is considered a normal whitespace character.
// I don't know why the standard specifies such a minor detail,
// but the difference of newline and space is observable
// if you stringize tokens using #.
if (tok->bol) {
tok = copy_token(tok);
tok->bol = false;
tok->space = true;
}
vec_push(r, tok);
}
}
static Vector *do_read_args(Token *ident, Macro *macro) {
Vector *r = make_vector();
bool end = false;
while (!end) {
bool in_ellipsis = (macro->is_varg && vec_len(r) + 1 == macro->nargs);
vec_push(r, read_one_arg(ident, &end, in_ellipsis));
}
if (macro->is_varg && vec_len(r) == macro->nargs - 1)
vec_push(r, make_vector());
return r;
}
static Vector *read_args(Token *tok, Macro *macro) {
if (macro->nargs == 0 && is_keyword(peek_token(), ')')) {
// If a macro M has no parameter, argument list of M()
// is an empty list. If it has one parameter,
// argument list of M() is a list containing an empty list.
return make_vector();
}
Vector *args = do_read_args(tok, macro);
if (vec_len(args) != macro->nargs)
errort(tok, "macro argument number does not match");
return args;
}
static Vector *add_hide_set(Vector *tokens, Set *hideset) {
Vector *r = make_vector();
for (int i = 0; i < vec_len(tokens); i++) {
Token *t = copy_token(vec_get(tokens, i));
t->hideset = set_union(t->hideset, hideset);
vec_push(r, t);
}
return r;
}
static Token *glue_tokens(Token *t, Token *u) {
Buffer *b = make_buffer();
buf_printf(b, "%s", tok2s(t));
buf_printf(b, "%s", tok2s(u));
Token *r = lex_string(buf_body(b));
return r;
}
static void glue_push(Vector *tokens, Token *tok) {
Token *last = vec_pop(tokens);
vec_push(tokens, glue_tokens(last, tok));
}
static Token *stringize(Token *tmpl, Vector *args) {
Buffer *b = make_buffer();
for (int i = 0; i < vec_len(args); i++) {
Token *tok = vec_get(args, i);
if (buf_len(b) && tok->space)
buf_printf(b, " ");
buf_printf(b, "%s", tok2s(tok));
}
buf_write(b, '\0');
Token *r = copy_token(tmpl);
r->kind = TSTRING;
r->sval = buf_body(b);
r->slen = buf_len(b);
r->enc = ENC_NONE;
return r;
}
static Vector *expand_all(Vector *tokens, Token *tmpl) {
token_buffer_stash(vec_reverse(tokens));
Vector *r = make_vector();
for (;;) {
Token *tok = read_expand();
if (tok->kind == TEOF)
break;
vec_push(r, tok);
}
propagate_space(r, tmpl);
token_buffer_unstash();
return r;
}
static Vector *subst(Macro *macro, Vector *args, Set *hideset) {
Vector *r = make_vector();
int len = vec_len(macro->body);
for (int i = 0; i < len; i++) {
Token *t0 = vec_get(macro->body, i);
Token *t1 = (i == len - 1) ? NULL : vec_get(macro->body, i + 1);
bool t0_param = (t0->kind == TMACRO_PARAM);
bool t1_param = (t1 && t1->kind == TMACRO_PARAM);
if (is_keyword(t0, '#') && t1_param) {
vec_push(r, stringize(t0, vec_get(args, t1->position)));
i++;
continue;
}
if (is_keyword(t0, KHASHHASH) && t1_param) {
Vector *arg = vec_get(args, t1->position);
// [GNU] [,##__VA_ARG__] is expanded to the empty token sequence
// if __VA_ARG__ is empty. Otherwise it's expanded to
// [,<tokens in __VA_ARG__>].
if (t1->is_vararg && vec_len(r) > 0 && is_keyword(vec_tail(r), ',')) {
if (vec_len(arg) > 0)
vec_append(r, arg);
else
vec_pop(r);
} else if (vec_len(arg) > 0) {
glue_push(r, vec_head(arg));
for (int i = 1; i < vec_len(arg); i++)
vec_push(r, vec_get(arg, i));
}
i++;
continue;
}
if (is_keyword(t0, KHASHHASH) && t1) {
hideset = t1->hideset;
glue_push(r, t1);
i++;
continue;
}
if (t0_param && t1 && is_keyword(t1, KHASHHASH)) {
hideset = t1->hideset;
Vector *arg = vec_get(args, t0->position);
if (vec_len(arg) == 0)
i++;
else
vec_append(r, arg);
continue;
}
if (t0_param) {
Vector *arg = vec_get(args, t0->position);
vec_append(r, expand_all(arg, t0));
continue;
}
vec_push(r, t0);
}
return add_hide_set(r, hideset);
}
static void unget_all(Vector *tokens) {
for (int i = vec_len(tokens) - 1; i >= 0; i--)
unget_token(vec_get(tokens, i));
}
// This is "expand" function in the Dave Prosser's document.
static Token *read_expand_newline() {
Token *tok = lex();
if (tok->kind != TIDENT)
return tok;
char *name = tok->sval;
Macro *macro = map_get(macros, name);
if (!macro || set_has(tok->hideset, name))
return tok;
switch (macro->kind) {
case MACRO_OBJ: {
Set *hideset = set_add(tok->hideset, name);
Vector *tokens = subst(macro, NULL, hideset);
propagate_space(tokens, tok);
unget_all(tokens);
return read_expand();
}
case MACRO_FUNC: {
if (!next('('))
return tok;
Vector *args = read_args(tok, macro);
Token *rparen = peek_token();
expect(')');
Set *hideset = set_add(set_intersection(tok->hideset, rparen->hideset), name);
Vector *tokens = subst(macro, args, hideset);
propagate_space(tokens, tok);
unget_all(tokens);
return read_expand();
}
case MACRO_SPECIAL:
macro->fn(tok);
return read_expand();
default:
error("internal error");
}
}
static Token *read_expand() {
for (;;) {
Token *tok = read_expand_newline();
if (tok->kind != TNEWLINE)
return tok;
}
}
static bool read_funclike_macro_params(Token *name, Map *param) {
int pos = 0;
for (;;) {
Token *tok = lex();
if (is_keyword(tok, ')'))
return false;
if (pos) {
if (!is_keyword(tok, ','))
errort(tok, ", expected, but got %s", tok2s(tok));
tok = lex();
}
if (tok->kind == TNEWLINE)
errort(name, "missing ')' in macro parameter list");
if (is_keyword(tok, KELLIPSIS)) {
map_put(param, "__VA_ARGS__", make_macro_token(pos++, true));
expect(')');
return true;
}
if (tok->kind != TIDENT)
errort(tok, "identifier expected, but got %s", tok2s(tok));
char *arg = tok->sval;
if (next(KELLIPSIS)) {
expect(')');
map_put(param, arg, make_macro_token(pos++, true));
return true;
}
map_put(param, arg, make_macro_token(pos++, false));
}
}
static void hashhash_check(Vector *v) {
if (vec_len(v) == 0)
return;
if (is_keyword(vec_head(v), KHASHHASH))
errort(vec_head(v), "'##' cannot appear at start of macro expansion");
if (is_keyword(vec_tail(v), KHASHHASH))
errort(vec_tail(v), "'##' cannot appear at end of macro expansion");
}
static Vector *read_funclike_macro_body(Map *param) {
Vector *r = make_vector();
for (;;) {
Token *tok = lex();
if (tok->kind == TNEWLINE)
return r;
if (tok->kind == TIDENT) {
Token *subst = map_get(param, tok->sval);
if (subst) {
subst = copy_token(subst);
subst->space = tok->space;
vec_push(r, subst);
continue;
}
}
vec_push(r, tok);
}
}
static void read_funclike_macro(Token *name) {
Map *param = make_map();
bool is_varg = read_funclike_macro_params(name, param);
Vector *body = read_funclike_macro_body(param);
hashhash_check(body);
Macro *macro = make_func_macro(body, map_len(param), is_varg);
map_put(macros, name->sval, macro);
}
static void read_obj_macro(char *name) {
Vector *body = make_vector();
for (;;) {
Token *tok = lex();
if (tok->kind == TNEWLINE)
break;
vec_push(body, tok);
}
hashhash_check(body);
map_put(macros, name, make_obj_macro(body));
}
/*
* #define
*/
static void read_define() {
Token *name = read_ident();
Token *tok = lex();
if (is_keyword(tok, '(') && !tok->space) {
read_funclike_macro(name);
return;
}
unget_token(tok);
read_obj_macro(name->sval);
}
/*
* #undef
*/
static void read_undef() {
Token *name = read_ident();
expect_newline();
map_remove(macros, name->sval);
}
/*
* #if and the like
*/
static Token *read_defined_op() {
Token *tok = lex();
if (is_keyword(tok, '(')) {
tok = lex();
expect(')');
}
if (tok->kind != TIDENT)
errort(tok, "identifier expected, but got %s", tok2s(tok));
return map_get(macros, tok->sval) ? cpp_token_one : cpp_token_zero;
}
static Vector *read_intexpr_line() {
Vector *r = make_vector();
for (;;) {
Token *tok = read_expand_newline();
if (tok->kind == TNEWLINE)
return r;
if (is_ident(tok, "defined")) {
vec_push(r, read_defined_op());
} else if (tok->kind == TIDENT) {
// C11 6.10.1.4 says that remaining identifiers
// should be replaced with pp-number 0.
vec_push(r, cpp_token_zero);
} else {
vec_push(r, tok);
}
}
}
static bool read_constexpr() {
token_buffer_stash(vec_reverse(read_intexpr_line()));
Node *expr = read_expr();
Token *tok = lex();
if (tok->kind != TEOF)
errort(tok, "stray token: %s", tok2s(tok));
token_buffer_unstash();
return eval_intexpr(expr, NULL);
}
static void do_read_if(bool istrue) {
vec_push(cond_incl_stack, make_cond_incl(istrue));
if (!istrue)
skip_cond_incl();
}
static void read_if() {
do_read_if(read_constexpr());
}
static void read_ifdef() {
Token *tok = lex();
if (tok->kind != TIDENT)
errort(tok, "identifier expected, but got %s", tok2s(tok));
expect_newline();
do_read_if(map_get(macros, tok->sval));
}
static void read_ifndef() {
Token *tok = lex();
if (tok->kind != TIDENT)
errort(tok, "identifier expected, but got %s", tok2s(tok));
expect_newline();
do_read_if(!map_get(macros, tok->sval));
if (tok->count == 2) {
// "ifndef" is the second token in this file.
// Prepare to detect an include guard.
CondIncl *ci = vec_tail(cond_incl_stack);
ci->include_guard = tok->sval;
ci->file = tok->file;
}
}
static void read_else(Token *hash) {
if (vec_len(cond_incl_stack) == 0)
errort(hash, "stray #else");
CondIncl *ci = vec_tail(cond_incl_stack);
if (ci->ctx == IN_ELSE)
errort(hash, "#else appears in #else");
expect_newline();
ci->ctx = IN_ELSE;
ci->include_guard = NULL;
if (ci->wastrue)
skip_cond_incl();
}
static void read_elif(Token *hash) {
if (vec_len(cond_incl_stack) == 0)
errort(hash, "stray #elif");
CondIncl *ci = vec_tail(cond_incl_stack);
if (ci->ctx == IN_ELSE)
errort(hash, "#elif after #else");
ci->ctx = IN_ELIF;
ci->include_guard = NULL;
if (ci->wastrue || !read_constexpr()) {
skip_cond_incl();
return;
}
ci->wastrue = true;
}
// Skips all newlines and returns the first non-newline token.
static Token *skip_newlines() {
Token *tok = lex();
while (tok->kind == TNEWLINE)
tok = lex();
unget_token(tok);
return tok;
}
static void read_endif(Token *hash) {
if (vec_len(cond_incl_stack) == 0)
errort(hash, "stray #endif");
CondIncl *ci = vec_pop(cond_incl_stack);
expect_newline();
// Detect an #ifndef and #endif pair that guards the entire
// header file. Remember the macro name guarding the file
// so that we can skip the file next time.
if (!ci->include_guard || ci->file != hash->file)
return;
Token *last = skip_newlines();
if (ci->file != last->file)
map_put(include_guard, ci->file->name, ci->include_guard);
}
/*
* #error and #warning
*/
static char *read_error_message() {
Buffer *b = make_buffer();
for (;;) {
Token *tok = lex();
if (tok->kind == TNEWLINE)
return buf_body(b);
if (buf_len(b) != 0 && tok->space)
buf_write(b, ' ');
buf_printf(b, "%s", tok2s(tok));
}
}
static void read_error(Token *hash) {
errort(hash, "#error: %s", read_error_message());
}
static void read_warning(Token *hash) {
warnt(hash, "#warning: %s", read_error_message());
}
/*
* #include
*/
static char *join_paths(Vector *args) {
Buffer *b = make_buffer();
for (int i = 0; i < vec_len(args); i++)
buf_printf(b, "%s", tok2s(vec_get(args, i)));
return buf_body(b);
}
static char *read_cpp_header_name(Token *hash, bool *std) {
// Try reading a filename using a special tokenizer for #include.
char *path = read_header_file_name(std);
if (path)
return path;
// If a token following #include does not start with < nor ",
// try to read the token as a regular token. Macro-expanded
// form may be a valid header file path.
Token *tok = read_expand_newline();
if (tok->kind == TNEWLINE)
errort(hash, "expected filename, but got newline");
if (tok->kind == TSTRING) {
*std = false;
return tok->sval;
}
if (!is_keyword(tok, '<'))
errort(tok, "< expected, but got %s", tok2s(tok));
Vector *tokens = make_vector();
for (;;) {
Token *tok = read_expand_newline();
if (tok->kind == TNEWLINE)
errort(hash, "premature end of header name");
if (is_keyword(tok, '>'))
break;
vec_push(tokens, tok);
}
*std = true;
return join_paths(tokens);
}
static bool guarded(char *path) {
char *guard = map_get(include_guard, path);
bool r = (guard && map_get(macros, guard));
define_obj_macro("__8cc_include_guard", r ? cpp_token_one : cpp_token_zero);
return r;
}
static bool try_include(char *dir, char *filename, bool isimport) {
char *path = fullpath(format("%s/%s", dir, filename));
if (map_get(once, path))
return true;
if (guarded(path))
return true;
FILE *fp = fopen(path, "r");
if (!fp)
return false;
if (isimport)
map_put(once, path, (void *)1);
stream_push(make_file(fp, path));
return true;
}
static void read_include(Token *hash, File *file, bool isimport) {
bool std;
char *filename = read_cpp_header_name(hash, &std);
expect_newline();
if (filename[0] == '/') {
if (try_include("/", filename, isimport))
return;
goto err;
}
if (!std) {
char *dir = file->name ? dirname(strdup(file->name)) : ".";
if (try_include(dir, filename, isimport))
return;
}
for (int i = 0; i < vec_len(std_include_path); i++)
if (try_include(vec_get(std_include_path, i), filename, isimport))
return;
err:
errort(hash, "cannot find header file: %s", filename);
}
static void read_include_next(Token *hash, File *file) {
// [GNU] #include_next is a directive to include the "next" file
// from the search path. This feature is used to override a
// header file without getting into infinite inclusion loop.
// This directive doesn't distinguish <> and "".
bool std;
char *filename = read_cpp_header_name(hash, &std);
expect_newline();
if (filename[0] == '/') {
if (try_include("/", filename, false))
return;
goto err;
}
char *cur = fullpath(file->name);
int i = 0;
for (; i < vec_len(std_include_path); i++) {
char *dir = vec_get(std_include_path, i);
if (!strcmp(cur, fullpath(format("%s/%s", dir, filename))))
break;
}
for (i++; i < vec_len(std_include_path); i++)
if (try_include(vec_get(std_include_path, i), filename, false))
return;
err:
errort(hash, "cannot find header file: %s", filename);
}
/*
* #pragma
*/
static void parse_pragma_operand(Token *tok) {
char *s = tok->sval;
if (!strcmp(s, "once")) {
char *path = fullpath(tok->file->name);
map_put(once, path, (void *)1);
} else if (!strcmp(s, "enable_warning")) {
enable_warning = true;
} else if (!strcmp(s, "disable_warning")) {
enable_warning = false;
} else {
errort(tok, "unknown #pragma: %s", s);
}
}
static void read_pragma() {
Token *tok = read_ident();
parse_pragma_operand(tok);
}
/*
* #line
*/
static bool is_digit_sequence(char *p) {
for (; *p; p++)
if (!isdigit(*p))
return false;
return true;
}
static void read_line() {
Token *tok = read_expand_newline();
if (tok->kind != TNUMBER || !is_digit_sequence(tok->sval))
errort(tok, "number expected after #line, but got %s", tok2s(tok));
int line = atoi(tok->sval);
tok = read_expand_newline();
char *filename = NULL;
if (tok->kind == TSTRING) {
filename = tok->sval;
expect_newline();
} else if (tok->kind != TNEWLINE) {
errort(tok, "newline or a source name are expected, but got %s", tok2s(tok));
}
File *f = current_file();
f->line = line;
if (filename)
f->name = filename;
}
// GNU CPP outputs "# linenum filename flags" to preserve original
// source file information. This function reads them. Flags are ignored.
static void read_linemarker(Token *tok) {
if (!is_digit_sequence(tok->sval))
errort(tok, "line number expected, but got %s", tok2s(tok));
int line = atoi(tok->sval);
tok = lex();
if (tok->kind != TSTRING)
errort(tok, "filename expected, but got %s", tok2s(tok));
char *filename = tok->sval;
do {
tok = lex();
} while (tok->kind != TNEWLINE);
File *file = current_file();
file->line = line;
file->name = filename;
}
/*
* #-directive
*/
static void read_directive(Token *hash) {
Token *tok = lex();
if (tok->kind == TNEWLINE)
return;
if (tok->kind == TNUMBER) {
read_linemarker(tok);
return;
}
if (tok->kind != TIDENT)
goto err;
char *s = tok->sval;
if (!strcmp(s, "define")) read_define();
else if (!strcmp(s, "elif")) read_elif(hash);
else if (!strcmp(s, "else")) read_else(hash);
else if (!strcmp(s, "endif")) read_endif(hash);
else if (!strcmp(s, "error")) read_error(hash);
else if (!strcmp(s, "if")) read_if();
else if (!strcmp(s, "ifdef")) read_ifdef();
else if (!strcmp(s, "ifndef")) read_ifndef();
else if (!strcmp(s, "import")) read_include(hash, tok->file, true);
else if (!strcmp(s, "include")) read_include(hash, tok->file, false);
else if (!strcmp(s, "include_next")) read_include_next(hash, tok->file);
else if (!strcmp(s, "line")) read_line();
else if (!strcmp(s, "pragma")) read_pragma();
else if (!strcmp(s, "undef")) read_undef();
else if (!strcmp(s, "warning")) read_warning(hash);
else goto err;
return;
err:
errort(hash, "unsupported preprocessor directive: %s", tok2s(tok));
}
/*
* Special macros
*/
static void make_token_pushback(Token *tmpl, int kind, char *sval) {
Token *tok = copy_token(tmpl);
tok->kind = kind;
tok->sval = sval;
tok->slen = strlen(sval) + 1;
tok->enc = ENC_NONE;
unget_token(tok);
}
static void handle_date_macro(Token *tmpl) {
char buf[20];
strftime(buf, sizeof(buf), "%b %e %Y", &now);
make_token_pushback(tmpl, TSTRING, strdup(buf));
}
static void handle_time_macro(Token *tmpl) {
char buf[10];
strftime(buf, sizeof(buf), "%T", &now);
make_token_pushback(tmpl, TSTRING, strdup(buf));
}
static void handle_timestamp_macro(Token *tmpl) {
// [GNU] __TIMESTAMP__ is expanded to a string that describes the date
// and time of the last modification time of the current source file.
char buf[30];
strftime(buf, sizeof(buf), "%a %b %e %T %Y", localtime(&tmpl->file->mtime));
make_token_pushback(tmpl, TSTRING, strdup(buf));
}
static void handle_file_macro(Token *tmpl) {
make_token_pushback(tmpl, TSTRING, tmpl->file->name);
}
static void handle_line_macro(Token *tmpl) {
make_token_pushback(tmpl, TNUMBER, format("%d", tmpl->file->line));
}
static void handle_pragma_macro(Token *tmpl) {
expect('(');
Token *operand = read_token();
if (operand->kind != TSTRING)
errort(operand, "_Pragma takes a string literal, but got %s", tok2s(operand));
expect(')');
parse_pragma_operand(operand);
make_token_pushback(tmpl, TNUMBER, "1");
}
static void handle_base_file_macro(Token *tmpl) {
make_token_pushback(tmpl, TSTRING, get_base_file());
}
static void handle_counter_macro(Token *tmpl) {
static int counter = 0;
make_token_pushback(tmpl, TNUMBER, format("%d", counter++));
}
static void handle_include_level_macro(Token *tmpl) {
make_token_pushback(tmpl, TNUMBER, format("%d", stream_depth() - 1));
}
/*
* Initializer
*/
void add_include_path(char *path) {
vec_push(std_include_path, path);
}
static void define_obj_macro(char *name, Token *value) {
map_put(macros, name, make_obj_macro(make_vector1(value)));
}
static void define_special_macro(char *name, SpecialMacroHandler *fn) {
map_put(macros, name, make_special_macro(fn));
}
static void init_keywords() {
#define op(id, str) map_put(keywords, str, (void *)id);
#define keyword(id, str, _) map_put(keywords, str, (void *)id);
#include "keyword.inc"
#undef keyword
#undef op
}
static void init_predefined_macros() {
vec_push(std_include_path, BUILD_DIR "/include");
vec_push(std_include_path, "/usr/local/lib/8cc/include");
vec_push(std_include_path, "/usr/local/include");
vec_push(std_include_path, "/usr/include");
vec_push(std_include_path, "/usr/include/linux");
vec_push(std_include_path, "/usr/include/x86_64-linux-gnu");
define_special_macro("__DATE__", handle_date_macro);
define_special_macro("__TIME__", handle_time_macro);
define_special_macro("__FILE__", handle_file_macro);
define_special_macro("__LINE__", handle_line_macro);
define_special_macro("_Pragma", handle_pragma_macro);
// [GNU] Non-standard macros
define_special_macro("__BASE_FILE__", handle_base_file_macro);
define_special_macro("__COUNTER__", handle_counter_macro);
define_special_macro("__INCLUDE_LEVEL__", handle_include_level_macro);
define_special_macro("__TIMESTAMP__", handle_timestamp_macro);
read_from_string("#include <" BUILD_DIR "/include/8cc.h>");
}
void init_now() {
time_t timet = time(NULL);
localtime_r(&timet, &now);
}
void cpp_init() {
setlocale(LC_ALL, "C");
init_keywords();
init_now();
init_predefined_macros();
}
/*
* Public intefaces
*/
static Token *maybe_convert_keyword(Token *tok) {
if (tok->kind != TIDENT)
return tok;
int id = (intptr_t)map_get(keywords, tok->sval);
if (!id)
return tok;
Token *r = copy_token(tok);
r->kind = TKEYWORD;
r->id = id;
return r;
}
// Reads from a string as if the string is a content of input file.
// Convenient for evaluating small string snippet contaiing preprocessor macros.
void read_from_string(char *buf) {
stream_stash(make_file_string(buf));
Vector *toplevels = read_toplevels();
for (int i = 0; i < vec_len(toplevels); i++)
emit_toplevel(vec_get(toplevels, i));
stream_unstash();
}
Token *peek_token() {
Token *r = read_token();
unget_token(r);
return r;