tcc_set_linker: mimic all option forms as supported by GNU ld
[tinycc.git] / tccpp.c
blob2b735d111ea8e5af778020b109bf265ce533a810
1 /*
2 * TCC - Tiny C Compiler
3 *
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "tcc.h"
23 /********************************************************/
24 /* global variables */
26 ST_DATA int tok_flags;
27 /* additional informations about token */
28 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
29 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
30 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
31 #define TOK_FLAG_EOF 0x0008 /* end of file */
33 ST_DATA int parse_flags;
34 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
35 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
36 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
37 token. line feed is also
38 returned at eof */
39 #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */
40 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
42 ST_DATA struct BufferedFile *file;
43 ST_DATA int ch, tok;
44 ST_DATA CValue tokc;
45 ST_DATA const int *macro_ptr;
46 ST_DATA CString tokcstr; /* current parsed string, if any */
48 /* display benchmark infos */
49 ST_DATA int total_lines;
50 ST_DATA int total_bytes;
51 ST_DATA int tok_ident;
52 ST_DATA TokenSym **table_ident;
54 /* ------------------------------------------------------------------------- */
56 static int *macro_ptr_allocated;
57 static const int *unget_saved_macro_ptr;
58 static int unget_saved_buffer[TOK_MAX_SIZE + 1];
59 static int unget_buffer_enabled;
60 static TokenSym *hash_ident[TOK_HASH_SIZE];
61 static char token_buf[STRING_MAX_SIZE + 1];
62 /* true if isid(c) || isnum(c) */
63 static unsigned char isidnum_table[256-CH_EOF];
65 static const char tcc_keywords[] =
66 #define DEF(id, str) str "\0"
67 #include "tcctok.h"
68 #undef DEF
71 /* WARNING: the content of this string encodes token numbers */
72 static const unsigned char tok_two_chars[] =
73 "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253"
74 "-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
76 struct macro_level {
77 struct macro_level *prev;
78 const int *p;
81 ST_FUNC void next_nomacro(void);
82 static void next_nomacro_spc(void);
83 static void macro_subst(
84 TokenString *tok_str,
85 Sym **nested_list,
86 const int *macro_str,
87 struct macro_level **can_read_stream
90 ST_FUNC void skip(int c)
92 if (tok != c)
93 error("'%c' expected (got \"%s\")", c, get_tok_str(tok, NULL));
94 next();
97 /* ------------------------------------------------------------------------- */
98 /* CString handling */
99 static void cstr_realloc(CString *cstr, int new_size)
101 int size;
102 void *data;
104 size = cstr->size_allocated;
105 if (size == 0)
106 size = 8; /* no need to allocate a too small first string */
107 while (size < new_size)
108 size = size * 2;
109 data = tcc_realloc(cstr->data_allocated, size);
110 if (!data)
111 error("memory full");
112 cstr->data_allocated = data;
113 cstr->size_allocated = size;
114 cstr->data = data;
117 /* add a byte */
118 ST_INLN void cstr_ccat(CString *cstr, int ch)
120 int size;
121 size = cstr->size + 1;
122 if (size > cstr->size_allocated)
123 cstr_realloc(cstr, size);
124 ((unsigned char *)cstr->data)[size - 1] = ch;
125 cstr->size = size;
128 ST_FUNC void cstr_cat(CString *cstr, const char *str)
130 int c;
131 for(;;) {
132 c = *str;
133 if (c == '\0')
134 break;
135 cstr_ccat(cstr, c);
136 str++;
140 /* add a wide char */
141 ST_FUNC void cstr_wccat(CString *cstr, int ch)
143 int size;
144 size = cstr->size + sizeof(nwchar_t);
145 if (size > cstr->size_allocated)
146 cstr_realloc(cstr, size);
147 *(nwchar_t *)(((unsigned char *)cstr->data) + size - sizeof(nwchar_t)) = ch;
148 cstr->size = size;
151 ST_FUNC void cstr_new(CString *cstr)
153 memset(cstr, 0, sizeof(CString));
156 /* free string and reset it to NULL */
157 ST_FUNC void cstr_free(CString *cstr)
159 tcc_free(cstr->data_allocated);
160 cstr_new(cstr);
163 /* XXX: unicode ? */
164 ST_FUNC void add_char(CString *cstr, int c)
166 if (c == '\'' || c == '\"' || c == '\\') {
167 /* XXX: could be more precise if char or string */
168 cstr_ccat(cstr, '\\');
170 if (c >= 32 && c <= 126) {
171 cstr_ccat(cstr, c);
172 } else {
173 cstr_ccat(cstr, '\\');
174 if (c == '\n') {
175 cstr_ccat(cstr, 'n');
176 } else {
177 cstr_ccat(cstr, '0' + ((c >> 6) & 7));
178 cstr_ccat(cstr, '0' + ((c >> 3) & 7));
179 cstr_ccat(cstr, '0' + (c & 7));
184 /* ------------------------------------------------------------------------- */
185 /* allocate a new token */
186 static TokenSym *tok_alloc_new(TokenSym **pts, const char *str, int len)
188 TokenSym *ts, **ptable;
189 int i;
191 if (tok_ident >= SYM_FIRST_ANOM)
192 error("memory full");
194 /* expand token table if needed */
195 i = tok_ident - TOK_IDENT;
196 if ((i % TOK_ALLOC_INCR) == 0) {
197 ptable = tcc_realloc(table_ident, (i + TOK_ALLOC_INCR) * sizeof(TokenSym *));
198 if (!ptable)
199 error("memory full");
200 table_ident = ptable;
203 ts = tcc_malloc(sizeof(TokenSym) + len);
204 table_ident[i] = ts;
205 ts->tok = tok_ident++;
206 ts->sym_define = NULL;
207 ts->sym_label = NULL;
208 ts->sym_struct = NULL;
209 ts->sym_identifier = NULL;
210 ts->len = len;
211 ts->hash_next = NULL;
212 memcpy(ts->str, str, len);
213 ts->str[len] = '\0';
214 *pts = ts;
215 return ts;
218 #define TOK_HASH_INIT 1
219 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
221 /* find a token and add it if not found */
222 ST_FUNC TokenSym *tok_alloc(const char *str, int len)
224 TokenSym *ts, **pts;
225 int i;
226 unsigned int h;
228 h = TOK_HASH_INIT;
229 for(i=0;i<len;i++)
230 h = TOK_HASH_FUNC(h, ((unsigned char *)str)[i]);
231 h &= (TOK_HASH_SIZE - 1);
233 pts = &hash_ident[h];
234 for(;;) {
235 ts = *pts;
236 if (!ts)
237 break;
238 if (ts->len == len && !memcmp(ts->str, str, len))
239 return ts;
240 pts = &(ts->hash_next);
242 return tok_alloc_new(pts, str, len);
245 /* XXX: buffer overflow */
246 /* XXX: float tokens */
247 ST_FUNC char *get_tok_str(int v, CValue *cv)
249 static char buf[STRING_MAX_SIZE + 1];
250 static CString cstr_buf;
251 CString *cstr;
252 char *p;
253 int i, len;
255 /* NOTE: to go faster, we give a fixed buffer for small strings */
256 cstr_reset(&cstr_buf);
257 cstr_buf.data = buf;
258 cstr_buf.size_allocated = sizeof(buf);
259 p = buf;
261 switch(v) {
262 case TOK_CINT:
263 case TOK_CUINT:
264 /* XXX: not quite exact, but only useful for testing */
265 sprintf(p, "%u", cv->ui);
266 break;
267 case TOK_CLLONG:
268 case TOK_CULLONG:
269 /* XXX: not quite exact, but only useful for testing */
270 #ifdef _WIN32
271 sprintf(p, "%u", (unsigned)cv->ull);
272 #else
273 sprintf(p, "%Lu", cv->ull);
274 #endif
275 break;
276 case TOK_LCHAR:
277 cstr_ccat(&cstr_buf, 'L');
278 case TOK_CCHAR:
279 cstr_ccat(&cstr_buf, '\'');
280 add_char(&cstr_buf, cv->i);
281 cstr_ccat(&cstr_buf, '\'');
282 cstr_ccat(&cstr_buf, '\0');
283 break;
284 case TOK_PPNUM:
285 cstr = cv->cstr;
286 len = cstr->size - 1;
287 for(i=0;i<len;i++)
288 add_char(&cstr_buf, ((unsigned char *)cstr->data)[i]);
289 cstr_ccat(&cstr_buf, '\0');
290 break;
291 case TOK_LSTR:
292 cstr_ccat(&cstr_buf, 'L');
293 case TOK_STR:
294 cstr = cv->cstr;
295 cstr_ccat(&cstr_buf, '\"');
296 if (v == TOK_STR) {
297 len = cstr->size - 1;
298 for(i=0;i<len;i++)
299 add_char(&cstr_buf, ((unsigned char *)cstr->data)[i]);
300 } else {
301 len = (cstr->size / sizeof(nwchar_t)) - 1;
302 for(i=0;i<len;i++)
303 add_char(&cstr_buf, ((nwchar_t *)cstr->data)[i]);
305 cstr_ccat(&cstr_buf, '\"');
306 cstr_ccat(&cstr_buf, '\0');
307 break;
308 case TOK_LT:
309 v = '<';
310 goto addv;
311 case TOK_GT:
312 v = '>';
313 goto addv;
314 case TOK_DOTS:
315 return strcpy(p, "...");
316 case TOK_A_SHL:
317 return strcpy(p, "<<=");
318 case TOK_A_SAR:
319 return strcpy(p, ">>=");
320 default:
321 if (v < TOK_IDENT) {
322 /* search in two bytes table */
323 const unsigned char *q = tok_two_chars;
324 while (*q) {
325 if (q[2] == v) {
326 *p++ = q[0];
327 *p++ = q[1];
328 *p = '\0';
329 return buf;
331 q += 3;
333 addv:
334 *p++ = v;
335 *p = '\0';
336 } else if (v < tok_ident) {
337 return table_ident[v - TOK_IDENT]->str;
338 } else if (v >= SYM_FIRST_ANOM) {
339 /* special name for anonymous symbol */
340 sprintf(p, "L.%u", v - SYM_FIRST_ANOM);
341 } else {
342 /* should never happen */
343 return NULL;
345 break;
347 return cstr_buf.data;
350 /* fill input buffer and peek next char */
351 static int tcc_peekc_slow(BufferedFile *bf)
353 int len;
354 /* only tries to read if really end of buffer */
355 if (bf->buf_ptr >= bf->buf_end) {
356 if (bf->fd != -1) {
357 #if defined(PARSE_DEBUG)
358 len = 8;
359 #else
360 len = IO_BUF_SIZE;
361 #endif
362 len = read(bf->fd, bf->buffer, len);
363 if (len < 0)
364 len = 0;
365 } else {
366 len = 0;
368 total_bytes += len;
369 bf->buf_ptr = bf->buffer;
370 bf->buf_end = bf->buffer + len;
371 *bf->buf_end = CH_EOB;
373 if (bf->buf_ptr < bf->buf_end) {
374 return bf->buf_ptr[0];
375 } else {
376 bf->buf_ptr = bf->buf_end;
377 return CH_EOF;
381 /* return the current character, handling end of block if necessary
382 (but not stray) */
383 ST_FUNC int handle_eob(void)
385 return tcc_peekc_slow(file);
388 /* read next char from current input file and handle end of input buffer */
389 ST_INLN void inp(void)
391 ch = *(++(file->buf_ptr));
392 /* end of buffer/file handling */
393 if (ch == CH_EOB)
394 ch = handle_eob();
397 /* handle '\[\r]\n' */
398 static int handle_stray_noerror(void)
400 while (ch == '\\') {
401 inp();
402 if (ch == '\n') {
403 file->line_num++;
404 inp();
405 } else if (ch == '\r') {
406 inp();
407 if (ch != '\n')
408 goto fail;
409 file->line_num++;
410 inp();
411 } else {
412 fail:
413 return 1;
416 return 0;
419 static void handle_stray(void)
421 if (handle_stray_noerror())
422 error("stray '\\' in program");
425 /* skip the stray and handle the \\n case. Output an error if
426 incorrect char after the stray */
427 static int handle_stray1(uint8_t *p)
429 int c;
431 if (p >= file->buf_end) {
432 file->buf_ptr = p;
433 c = handle_eob();
434 p = file->buf_ptr;
435 if (c == '\\')
436 goto parse_stray;
437 } else {
438 parse_stray:
439 file->buf_ptr = p;
440 ch = *p;
441 handle_stray();
442 p = file->buf_ptr;
443 c = *p;
445 return c;
448 /* handle just the EOB case, but not stray */
449 #define PEEKC_EOB(c, p)\
451 p++;\
452 c = *p;\
453 if (c == '\\') {\
454 file->buf_ptr = p;\
455 c = handle_eob();\
456 p = file->buf_ptr;\
460 /* handle the complicated stray case */
461 #define PEEKC(c, p)\
463 p++;\
464 c = *p;\
465 if (c == '\\') {\
466 c = handle_stray1(p);\
467 p = file->buf_ptr;\
471 /* input with '\[\r]\n' handling. Note that this function cannot
472 handle other characters after '\', so you cannot call it inside
473 strings or comments */
474 ST_FUNC void minp(void)
476 inp();
477 if (ch == '\\')
478 handle_stray();
482 /* single line C++ comments */
483 static uint8_t *parse_line_comment(uint8_t *p)
485 int c;
487 p++;
488 for(;;) {
489 c = *p;
490 redo:
491 if (c == '\n' || c == CH_EOF) {
492 break;
493 } else if (c == '\\') {
494 file->buf_ptr = p;
495 c = handle_eob();
496 p = file->buf_ptr;
497 if (c == '\\') {
498 PEEKC_EOB(c, p);
499 if (c == '\n') {
500 file->line_num++;
501 PEEKC_EOB(c, p);
502 } else if (c == '\r') {
503 PEEKC_EOB(c, p);
504 if (c == '\n') {
505 file->line_num++;
506 PEEKC_EOB(c, p);
509 } else {
510 goto redo;
512 } else {
513 p++;
516 return p;
519 /* C comments */
520 ST_FUNC uint8_t *parse_comment(uint8_t *p)
522 int c;
524 p++;
525 for(;;) {
526 /* fast skip loop */
527 for(;;) {
528 c = *p;
529 if (c == '\n' || c == '*' || c == '\\')
530 break;
531 p++;
532 c = *p;
533 if (c == '\n' || c == '*' || c == '\\')
534 break;
535 p++;
537 /* now we can handle all the cases */
538 if (c == '\n') {
539 file->line_num++;
540 p++;
541 } else if (c == '*') {
542 p++;
543 for(;;) {
544 c = *p;
545 if (c == '*') {
546 p++;
547 } else if (c == '/') {
548 goto end_of_comment;
549 } else if (c == '\\') {
550 file->buf_ptr = p;
551 c = handle_eob();
552 p = file->buf_ptr;
553 if (c == '\\') {
554 /* skip '\[\r]\n', otherwise just skip the stray */
555 while (c == '\\') {
556 PEEKC_EOB(c, p);
557 if (c == '\n') {
558 file->line_num++;
559 PEEKC_EOB(c, p);
560 } else if (c == '\r') {
561 PEEKC_EOB(c, p);
562 if (c == '\n') {
563 file->line_num++;
564 PEEKC_EOB(c, p);
566 } else {
567 goto after_star;
571 } else {
572 break;
575 after_star: ;
576 } else {
577 /* stray, eob or eof */
578 file->buf_ptr = p;
579 c = handle_eob();
580 p = file->buf_ptr;
581 if (c == CH_EOF) {
582 error("unexpected end of file in comment");
583 } else if (c == '\\') {
584 p++;
588 end_of_comment:
589 p++;
590 return p;
593 #define cinp minp
595 static inline void skip_spaces(void)
597 while (is_space(ch))
598 cinp();
601 static inline int check_space(int t, int *spc)
603 if (is_space(t)) {
604 if (*spc)
605 return 1;
606 *spc = 1;
607 } else
608 *spc = 0;
609 return 0;
612 /* parse a string without interpreting escapes */
613 static uint8_t *parse_pp_string(uint8_t *p,
614 int sep, CString *str)
616 int c;
617 p++;
618 for(;;) {
619 c = *p;
620 if (c == sep) {
621 break;
622 } else if (c == '\\') {
623 file->buf_ptr = p;
624 c = handle_eob();
625 p = file->buf_ptr;
626 if (c == CH_EOF) {
627 unterminated_string:
628 /* XXX: indicate line number of start of string */
629 error("missing terminating %c character", sep);
630 } else if (c == '\\') {
631 /* escape : just skip \[\r]\n */
632 PEEKC_EOB(c, p);
633 if (c == '\n') {
634 file->line_num++;
635 p++;
636 } else if (c == '\r') {
637 PEEKC_EOB(c, p);
638 if (c != '\n')
639 expect("'\n' after '\r'");
640 file->line_num++;
641 p++;
642 } else if (c == CH_EOF) {
643 goto unterminated_string;
644 } else {
645 if (str) {
646 cstr_ccat(str, '\\');
647 cstr_ccat(str, c);
649 p++;
652 } else if (c == '\n') {
653 file->line_num++;
654 goto add_char;
655 } else if (c == '\r') {
656 PEEKC_EOB(c, p);
657 if (c != '\n') {
658 if (str)
659 cstr_ccat(str, '\r');
660 } else {
661 file->line_num++;
662 goto add_char;
664 } else {
665 add_char:
666 if (str)
667 cstr_ccat(str, c);
668 p++;
671 p++;
672 return p;
675 /* skip block of text until #else, #elif or #endif. skip also pairs of
676 #if/#endif */
677 static void preprocess_skip(void)
679 int a, start_of_line, c, in_warn_or_error;
680 uint8_t *p;
682 p = file->buf_ptr;
683 a = 0;
684 redo_start:
685 start_of_line = 1;
686 in_warn_or_error = 0;
687 for(;;) {
688 redo_no_start:
689 c = *p;
690 switch(c) {
691 case ' ':
692 case '\t':
693 case '\f':
694 case '\v':
695 case '\r':
696 p++;
697 goto redo_no_start;
698 case '\n':
699 file->line_num++;
700 p++;
701 goto redo_start;
702 case '\\':
703 file->buf_ptr = p;
704 c = handle_eob();
705 if (c == CH_EOF) {
706 expect("#endif");
707 } else if (c == '\\') {
708 ch = file->buf_ptr[0];
709 handle_stray_noerror();
711 p = file->buf_ptr;
712 goto redo_no_start;
713 /* skip strings */
714 case '\"':
715 case '\'':
716 if (in_warn_or_error)
717 goto _default;
718 p = parse_pp_string(p, c, NULL);
719 break;
720 /* skip comments */
721 case '/':
722 if (in_warn_or_error)
723 goto _default;
724 file->buf_ptr = p;
725 ch = *p;
726 minp();
727 p = file->buf_ptr;
728 if (ch == '*') {
729 p = parse_comment(p);
730 } else if (ch == '/') {
731 p = parse_line_comment(p);
733 break;
734 case '#':
735 p++;
736 if (start_of_line) {
737 file->buf_ptr = p;
738 next_nomacro();
739 p = file->buf_ptr;
740 if (a == 0 &&
741 (tok == TOK_ELSE || tok == TOK_ELIF || tok == TOK_ENDIF))
742 goto the_end;
743 if (tok == TOK_IF || tok == TOK_IFDEF || tok == TOK_IFNDEF)
744 a++;
745 else if (tok == TOK_ENDIF)
746 a--;
747 else if( tok == TOK_ERROR || tok == TOK_WARNING)
748 in_warn_or_error = 1;
750 break;
751 _default:
752 default:
753 p++;
754 break;
756 start_of_line = 0;
758 the_end: ;
759 file->buf_ptr = p;
762 /* ParseState handling */
764 /* XXX: currently, no include file info is stored. Thus, we cannot display
765 accurate messages if the function or data definition spans multiple
766 files */
768 /* save current parse state in 's' */
769 ST_FUNC void save_parse_state(ParseState *s)
771 s->line_num = file->line_num;
772 s->macro_ptr = macro_ptr;
773 s->tok = tok;
774 s->tokc = tokc;
777 /* restore parse state from 's' */
778 ST_FUNC void restore_parse_state(ParseState *s)
780 file->line_num = s->line_num;
781 macro_ptr = s->macro_ptr;
782 tok = s->tok;
783 tokc = s->tokc;
786 /* return the number of additional 'ints' necessary to store the
787 token */
788 static inline int tok_ext_size(int t)
790 switch(t) {
791 /* 4 bytes */
792 case TOK_CINT:
793 case TOK_CUINT:
794 case TOK_CCHAR:
795 case TOK_LCHAR:
796 case TOK_CFLOAT:
797 case TOK_LINENUM:
798 return 1;
799 case TOK_STR:
800 case TOK_LSTR:
801 case TOK_PPNUM:
802 error("unsupported token");
803 return 1;
804 case TOK_CDOUBLE:
805 case TOK_CLLONG:
806 case TOK_CULLONG:
807 return 2;
808 case TOK_CLDOUBLE:
809 return LDOUBLE_SIZE / 4;
810 default:
811 return 0;
815 /* token string handling */
817 ST_INLN void tok_str_new(TokenString *s)
819 s->str = NULL;
820 s->len = 0;
821 s->allocated_len = 0;
822 s->last_line_num = -1;
825 ST_FUNC void tok_str_free(int *str)
827 tcc_free(str);
830 static int *tok_str_realloc(TokenString *s)
832 int *str, len;
834 if (s->allocated_len == 0) {
835 len = 8;
836 } else {
837 len = s->allocated_len * 2;
839 str = tcc_realloc(s->str, len * sizeof(int));
840 if (!str)
841 error("memory full");
842 s->allocated_len = len;
843 s->str = str;
844 return str;
847 ST_FUNC void tok_str_add(TokenString *s, int t)
849 int len, *str;
851 len = s->len;
852 str = s->str;
853 if (len >= s->allocated_len)
854 str = tok_str_realloc(s);
855 str[len++] = t;
856 s->len = len;
859 static void tok_str_add2(TokenString *s, int t, CValue *cv)
861 int len, *str;
863 len = s->len;
864 str = s->str;
866 /* allocate space for worst case */
867 if (len + TOK_MAX_SIZE > s->allocated_len)
868 str = tok_str_realloc(s);
869 str[len++] = t;
870 switch(t) {
871 case TOK_CINT:
872 case TOK_CUINT:
873 case TOK_CCHAR:
874 case TOK_LCHAR:
875 case TOK_CFLOAT:
876 case TOK_LINENUM:
877 str[len++] = cv->tab[0];
878 break;
879 case TOK_PPNUM:
880 case TOK_STR:
881 case TOK_LSTR:
883 int nb_words;
884 CString *cstr;
886 nb_words = (sizeof(CString) + cv->cstr->size + 3) >> 2;
887 while ((len + nb_words) > s->allocated_len)
888 str = tok_str_realloc(s);
889 cstr = (CString *)(str + len);
890 cstr->data = NULL;
891 cstr->size = cv->cstr->size;
892 cstr->data_allocated = NULL;
893 cstr->size_allocated = cstr->size;
894 memcpy((char *)cstr + sizeof(CString),
895 cv->cstr->data, cstr->size);
896 len += nb_words;
898 break;
899 case TOK_CDOUBLE:
900 case TOK_CLLONG:
901 case TOK_CULLONG:
902 #if LDOUBLE_SIZE == 8
903 case TOK_CLDOUBLE:
904 #endif
905 str[len++] = cv->tab[0];
906 str[len++] = cv->tab[1];
907 break;
908 #if LDOUBLE_SIZE == 12
909 case TOK_CLDOUBLE:
910 str[len++] = cv->tab[0];
911 str[len++] = cv->tab[1];
912 str[len++] = cv->tab[2];
913 #elif LDOUBLE_SIZE == 16
914 case TOK_CLDOUBLE:
915 str[len++] = cv->tab[0];
916 str[len++] = cv->tab[1];
917 str[len++] = cv->tab[2];
918 str[len++] = cv->tab[3];
919 #elif LDOUBLE_SIZE != 8
920 #error add long double size support
921 #endif
922 break;
923 default:
924 break;
926 s->len = len;
929 /* add the current parse token in token string 's' */
930 ST_FUNC void tok_str_add_tok(TokenString *s)
932 CValue cval;
934 /* save line number info */
935 if (file->line_num != s->last_line_num) {
936 s->last_line_num = file->line_num;
937 cval.i = s->last_line_num;
938 tok_str_add2(s, TOK_LINENUM, &cval);
940 tok_str_add2(s, tok, &tokc);
943 /* get a token from an integer array and increment pointer
944 accordingly. we code it as a macro to avoid pointer aliasing. */
945 static inline void TOK_GET(int *t, const int **pp, CValue *cv)
947 const int *p = *pp;
948 int n, *tab;
950 tab = cv->tab;
951 switch(*t = *p++) {
952 case TOK_CINT:
953 case TOK_CUINT:
954 case TOK_CCHAR:
955 case TOK_LCHAR:
956 case TOK_CFLOAT:
957 case TOK_LINENUM:
958 tab[0] = *p++;
959 break;
960 case TOK_STR:
961 case TOK_LSTR:
962 case TOK_PPNUM:
963 cv->cstr = (CString *)p;
964 cv->cstr->data = (char *)p + sizeof(CString);
965 p += (sizeof(CString) + cv->cstr->size + 3) >> 2;
966 break;
967 case TOK_CDOUBLE:
968 case TOK_CLLONG:
969 case TOK_CULLONG:
970 n = 2;
971 goto copy;
972 case TOK_CLDOUBLE:
973 #if LDOUBLE_SIZE == 16
974 n = 4;
975 #elif LDOUBLE_SIZE == 12
976 n = 3;
977 #elif LDOUBLE_SIZE == 8
978 n = 2;
979 #else
980 # error add long double size support
981 #endif
982 copy:
984 *tab++ = *p++;
985 while (--n);
986 break;
987 default:
988 break;
990 *pp = p;
993 static int macro_is_equal(const int *a, const int *b)
995 char buf[STRING_MAX_SIZE + 1];
996 CValue cv;
997 int t;
998 while (*a && *b) {
999 TOK_GET(&t, &a, &cv);
1000 pstrcpy(buf, sizeof buf, get_tok_str(t, &cv));
1001 TOK_GET(&t, &b, &cv);
1002 if (strcmp(buf, get_tok_str(t, &cv)))
1003 return 0;
1005 return !(*a || *b);
1008 /* defines handling */
1009 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg)
1011 Sym *s;
1013 s = define_find(v);
1014 if (s && !macro_is_equal(s->d, str))
1015 warning("%s redefined", get_tok_str(v, NULL));
1017 s = sym_push2(&define_stack, v, macro_type, 0);
1018 s->d = str;
1019 s->next = first_arg;
1020 table_ident[v - TOK_IDENT]->sym_define = s;
1023 /* undefined a define symbol. Its name is just set to zero */
1024 ST_FUNC void define_undef(Sym *s)
1026 int v;
1027 v = s->v;
1028 if (v >= TOK_IDENT && v < tok_ident)
1029 table_ident[v - TOK_IDENT]->sym_define = NULL;
1030 s->v = 0;
1033 ST_INLN Sym *define_find(int v)
1035 v -= TOK_IDENT;
1036 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
1037 return NULL;
1038 return table_ident[v]->sym_define;
1041 /* free define stack until top reaches 'b' */
1042 ST_FUNC void free_defines(Sym *b)
1044 Sym *top, *top1;
1045 int v;
1047 top = define_stack;
1048 while (top != b) {
1049 top1 = top->prev;
1050 /* do not free args or predefined defines */
1051 if (top->d)
1052 tok_str_free(top->d);
1053 v = top->v;
1054 if (v >= TOK_IDENT && v < tok_ident)
1055 table_ident[v - TOK_IDENT]->sym_define = NULL;
1056 sym_free(top);
1057 top = top1;
1059 define_stack = b;
1062 /* label lookup */
1063 ST_FUNC Sym *label_find(int v)
1065 v -= TOK_IDENT;
1066 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
1067 return NULL;
1068 return table_ident[v]->sym_label;
1071 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags)
1073 Sym *s, **ps;
1074 s = sym_push2(ptop, v, 0, 0);
1075 s->r = flags;
1076 ps = &table_ident[v - TOK_IDENT]->sym_label;
1077 if (ptop == &global_label_stack) {
1078 /* modify the top most local identifier, so that
1079 sym_identifier will point to 's' when popped */
1080 while (*ps != NULL)
1081 ps = &(*ps)->prev_tok;
1083 s->prev_tok = *ps;
1084 *ps = s;
1085 return s;
1088 /* pop labels until element last is reached. Look if any labels are
1089 undefined. Define symbols if '&&label' was used. */
1090 ST_FUNC void label_pop(Sym **ptop, Sym *slast)
1092 Sym *s, *s1;
1093 for(s = *ptop; s != slast; s = s1) {
1094 s1 = s->prev;
1095 if (s->r == LABEL_DECLARED) {
1096 warning("label '%s' declared but not used", get_tok_str(s->v, NULL));
1097 } else if (s->r == LABEL_FORWARD) {
1098 error("label '%s' used but not defined",
1099 get_tok_str(s->v, NULL));
1100 } else {
1101 if (s->c) {
1102 /* define corresponding symbol. A size of
1103 1 is put. */
1104 put_extern_sym(s, cur_text_section, s->jnext, 1);
1107 /* remove label */
1108 table_ident[s->v - TOK_IDENT]->sym_label = s->prev_tok;
1109 sym_free(s);
1111 *ptop = slast;
1114 /* eval an expression for #if/#elif */
1115 static int expr_preprocess(void)
1117 int c, t;
1118 TokenString str;
1120 tok_str_new(&str);
1121 while (tok != TOK_LINEFEED && tok != TOK_EOF) {
1122 next(); /* do macro subst */
1123 if (tok == TOK_DEFINED) {
1124 next_nomacro();
1125 t = tok;
1126 if (t == '(')
1127 next_nomacro();
1128 c = define_find(tok) != 0;
1129 if (t == '(')
1130 next_nomacro();
1131 tok = TOK_CINT;
1132 tokc.i = c;
1133 } else if (tok >= TOK_IDENT) {
1134 /* if undefined macro */
1135 tok = TOK_CINT;
1136 tokc.i = 0;
1138 tok_str_add_tok(&str);
1140 tok_str_add(&str, -1); /* simulate end of file */
1141 tok_str_add(&str, 0);
1142 /* now evaluate C constant expression */
1143 macro_ptr = str.str;
1144 next();
1145 c = expr_const();
1146 macro_ptr = NULL;
1147 tok_str_free(str.str);
1148 return c != 0;
1151 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
1152 static void tok_print(int *str)
1154 int t;
1155 CValue cval;
1157 printf("<");
1158 while (1) {
1159 TOK_GET(&t, &str, &cval);
1160 if (!t)
1161 break;
1162 printf("%s", get_tok_str(t, &cval));
1164 printf(">\n");
1166 #endif
1168 /* parse after #define */
1169 ST_FUNC void parse_define(void)
1171 Sym *s, *first, **ps;
1172 int v, t, varg, is_vaargs, spc;
1173 TokenString str;
1175 v = tok;
1176 if (v < TOK_IDENT)
1177 error("invalid macro name '%s'", get_tok_str(tok, &tokc));
1178 /* XXX: should check if same macro (ANSI) */
1179 first = NULL;
1180 t = MACRO_OBJ;
1181 /* '(' must be just after macro definition for MACRO_FUNC */
1182 next_nomacro_spc();
1183 if (tok == '(') {
1184 next_nomacro();
1185 ps = &first;
1186 while (tok != ')') {
1187 varg = tok;
1188 next_nomacro();
1189 is_vaargs = 0;
1190 if (varg == TOK_DOTS) {
1191 varg = TOK___VA_ARGS__;
1192 is_vaargs = 1;
1193 } else if (tok == TOK_DOTS && gnu_ext) {
1194 is_vaargs = 1;
1195 next_nomacro();
1197 if (varg < TOK_IDENT)
1198 error("badly punctuated parameter list");
1199 s = sym_push2(&define_stack, varg | SYM_FIELD, is_vaargs, 0);
1200 *ps = s;
1201 ps = &s->next;
1202 if (tok != ',')
1203 break;
1204 next_nomacro();
1206 if (tok == ')')
1207 next_nomacro_spc();
1208 t = MACRO_FUNC;
1210 tok_str_new(&str);
1211 spc = 2;
1212 /* EOF testing necessary for '-D' handling */
1213 while (tok != TOK_LINEFEED && tok != TOK_EOF) {
1214 /* remove spaces around ## and after '#' */
1215 if (TOK_TWOSHARPS == tok) {
1216 if (1 == spc)
1217 --str.len;
1218 spc = 2;
1219 } else if ('#' == tok) {
1220 spc = 2;
1221 } else if (check_space(tok, &spc)) {
1222 goto skip;
1224 tok_str_add2(&str, tok, &tokc);
1225 skip:
1226 next_nomacro_spc();
1228 if (spc == 1)
1229 --str.len; /* remove trailing space */
1230 tok_str_add(&str, 0);
1231 #ifdef PP_DEBUG
1232 printf("define %s %d: ", get_tok_str(v, NULL), t);
1233 tok_print(str.str);
1234 #endif
1235 define_push(v, t, str.str, first);
1238 static inline int hash_cached_include(int type, const char *filename)
1240 const unsigned char *s;
1241 unsigned int h;
1243 h = TOK_HASH_INIT;
1244 h = TOK_HASH_FUNC(h, type);
1245 s = filename;
1246 while (*s) {
1247 h = TOK_HASH_FUNC(h, *s);
1248 s++;
1250 h &= (CACHED_INCLUDES_HASH_SIZE - 1);
1251 return h;
1254 /* XXX: use a token or a hash table to accelerate matching ? */
1255 static CachedInclude *search_cached_include(TCCState *s1,
1256 int type, const char *filename)
1258 CachedInclude *e;
1259 int i, h;
1260 h = hash_cached_include(type, filename);
1261 i = s1->cached_includes_hash[h];
1262 for(;;) {
1263 if (i == 0)
1264 break;
1265 e = s1->cached_includes[i - 1];
1266 if (e->type == type && !PATHCMP(e->filename, filename))
1267 return e;
1268 i = e->hash_next;
1270 return NULL;
1273 static inline void add_cached_include(TCCState *s1, int type,
1274 const char *filename, int ifndef_macro)
1276 CachedInclude *e;
1277 int h;
1279 if (search_cached_include(s1, type, filename))
1280 return;
1281 #ifdef INC_DEBUG
1282 printf("adding cached '%s' %s\n", filename, get_tok_str(ifndef_macro, NULL));
1283 #endif
1284 e = tcc_malloc(sizeof(CachedInclude) + strlen(filename));
1285 if (!e)
1286 return;
1287 e->type = type;
1288 strcpy(e->filename, filename);
1289 e->ifndef_macro = ifndef_macro;
1290 dynarray_add((void ***)&s1->cached_includes, &s1->nb_cached_includes, e);
1291 /* add in hash table */
1292 h = hash_cached_include(type, filename);
1293 e->hash_next = s1->cached_includes_hash[h];
1294 s1->cached_includes_hash[h] = s1->nb_cached_includes;
1297 static void pragma_parse(TCCState *s1)
1299 int val;
1301 next();
1302 if (tok == TOK_pack) {
1304 This may be:
1305 #pragma pack(1) // set
1306 #pragma pack() // reset to default
1307 #pragma pack(push,1) // push & set
1308 #pragma pack(pop) // restore previous
1310 next();
1311 skip('(');
1312 if (tok == TOK_ASM_pop) {
1313 next();
1314 if (s1->pack_stack_ptr <= s1->pack_stack) {
1315 stk_error:
1316 error("out of pack stack");
1318 s1->pack_stack_ptr--;
1319 } else {
1320 val = 0;
1321 if (tok != ')') {
1322 if (tok == TOK_ASM_push) {
1323 next();
1324 if (s1->pack_stack_ptr >= s1->pack_stack + PACK_STACK_SIZE - 1)
1325 goto stk_error;
1326 s1->pack_stack_ptr++;
1327 skip(',');
1329 if (tok != TOK_CINT) {
1330 pack_error:
1331 error("invalid pack pragma");
1333 val = tokc.i;
1334 if (val < 1 || val > 16 || (val & (val - 1)) != 0)
1335 goto pack_error;
1336 next();
1338 *s1->pack_stack_ptr = val;
1339 skip(')');
1344 /* is_bof is true if first non space token at beginning of file */
1345 ST_FUNC void preprocess(int is_bof)
1347 TCCState *s1 = tcc_state;
1348 int i, c, n, saved_parse_flags;
1349 char buf[1024], *q;
1350 Sym *s;
1352 saved_parse_flags = parse_flags;
1353 parse_flags = PARSE_FLAG_PREPROCESS | PARSE_FLAG_TOK_NUM |
1354 PARSE_FLAG_LINEFEED;
1355 next_nomacro();
1356 redo:
1357 switch(tok) {
1358 case TOK_DEFINE:
1359 next_nomacro();
1360 parse_define();
1361 break;
1362 case TOK_UNDEF:
1363 next_nomacro();
1364 s = define_find(tok);
1365 /* undefine symbol by putting an invalid name */
1366 if (s)
1367 define_undef(s);
1368 break;
1369 case TOK_INCLUDE:
1370 case TOK_INCLUDE_NEXT:
1371 ch = file->buf_ptr[0];
1372 /* XXX: incorrect if comments : use next_nomacro with a special mode */
1373 skip_spaces();
1374 if (ch == '<') {
1375 c = '>';
1376 goto read_name;
1377 } else if (ch == '\"') {
1378 c = ch;
1379 read_name:
1380 inp();
1381 q = buf;
1382 while (ch != c && ch != '\n' && ch != CH_EOF) {
1383 if ((q - buf) < sizeof(buf) - 1)
1384 *q++ = ch;
1385 if (ch == '\\') {
1386 if (handle_stray_noerror() == 0)
1387 --q;
1388 } else
1389 inp();
1391 *q = '\0';
1392 minp();
1393 #if 0
1394 /* eat all spaces and comments after include */
1395 /* XXX: slightly incorrect */
1396 while (ch1 != '\n' && ch1 != CH_EOF)
1397 inp();
1398 #endif
1399 } else {
1400 /* computed #include : either we have only strings or
1401 we have anything enclosed in '<>' */
1402 next();
1403 buf[0] = '\0';
1404 if (tok == TOK_STR) {
1405 while (tok != TOK_LINEFEED) {
1406 if (tok != TOK_STR) {
1407 include_syntax:
1408 error("'#include' expects \"FILENAME\" or <FILENAME>");
1410 pstrcat(buf, sizeof(buf), (char *)tokc.cstr->data);
1411 next();
1413 c = '\"';
1414 } else {
1415 int len;
1416 while (tok != TOK_LINEFEED) {
1417 pstrcat(buf, sizeof(buf), get_tok_str(tok, &tokc));
1418 next();
1420 len = strlen(buf);
1421 /* check syntax and remove '<>' */
1422 if (len < 2 || buf[0] != '<' || buf[len - 1] != '>')
1423 goto include_syntax;
1424 memmove(buf, buf + 1, len - 2);
1425 buf[len - 2] = '\0';
1426 c = '>';
1430 if (s1->include_stack_ptr >= s1->include_stack + INCLUDE_STACK_SIZE)
1431 error("#include recursion too deep");
1433 n = s1->nb_include_paths + s1->nb_sysinclude_paths;
1434 for (i = -2; i < n; ++i) {
1435 char buf1[sizeof file->filename];
1436 BufferedFile *f;
1437 CachedInclude *e;
1438 const char *path;
1439 int size;
1441 if (i == -2) {
1442 /* check absolute include path */
1443 if (!IS_ABSPATH(buf))
1444 continue;
1445 buf1[0] = 0;
1447 } else if (i == -1) {
1448 /* search in current dir if "header.h" */
1449 if (c != '\"')
1450 continue;
1451 size = tcc_basename(file->filename) - file->filename;
1452 memcpy(buf1, file->filename, size);
1453 buf1[size] = '\0';
1455 } else {
1456 /* search in all the include paths */
1457 if (i < s1->nb_include_paths)
1458 path = s1->include_paths[i];
1459 else
1460 path = s1->sysinclude_paths[i - s1->nb_include_paths];
1461 pstrcpy(buf1, sizeof(buf1), path);
1462 pstrcat(buf1, sizeof(buf1), "/");
1465 pstrcat(buf1, sizeof(buf1), buf);
1467 e = search_cached_include(s1, c, buf1);
1468 if (e && define_find(e->ifndef_macro)) {
1469 /* no need to parse the include because the 'ifndef macro'
1470 is defined */
1471 #ifdef INC_DEBUG
1472 printf("%s: skipping %s\n", file->filename, buf);
1473 #endif
1474 f = NULL;
1475 } else {
1476 f = tcc_open(s1, buf1);
1477 if (!f)
1478 continue;
1481 if (tok == TOK_INCLUDE_NEXT) {
1482 tok = TOK_INCLUDE;
1483 if (f)
1484 tcc_close(f);
1485 continue;
1488 if (!f)
1489 goto include_done;
1491 #ifdef INC_DEBUG
1492 printf("%s: including %s\n", file->filename, buf1);
1493 #endif
1494 /* update target deps */
1495 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1496 tcc_strdup(buf1));
1498 /* XXX: fix current line init */
1499 /* push current file in stack */
1500 *s1->include_stack_ptr++ = file;
1501 f->inc_type = c;
1502 pstrcpy(f->inc_filename, sizeof(f->inc_filename), buf1);
1503 file = f;
1504 /* add include file debug info */
1505 if (s1->do_debug) {
1506 put_stabs(file->filename, N_BINCL, 0, 0, 0);
1508 tok_flags |= TOK_FLAG_BOF | TOK_FLAG_BOL;
1509 ch = file->buf_ptr[0];
1510 goto the_end;
1512 error("include file '%s' not found", buf);
1513 include_done:
1514 break;
1515 case TOK_IFNDEF:
1516 c = 1;
1517 goto do_ifdef;
1518 case TOK_IF:
1519 c = expr_preprocess();
1520 goto do_if;
1521 case TOK_IFDEF:
1522 c = 0;
1523 do_ifdef:
1524 next_nomacro();
1525 if (tok < TOK_IDENT)
1526 error("invalid argument for '#if%sdef'", c ? "n" : "");
1527 if (is_bof) {
1528 if (c) {
1529 #ifdef INC_DEBUG
1530 printf("#ifndef %s\n", get_tok_str(tok, NULL));
1531 #endif
1532 file->ifndef_macro = tok;
1535 c = (define_find(tok) != 0) ^ c;
1536 do_if:
1537 if (s1->ifdef_stack_ptr >= s1->ifdef_stack + IFDEF_STACK_SIZE)
1538 error("memory full");
1539 *s1->ifdef_stack_ptr++ = c;
1540 goto test_skip;
1541 case TOK_ELSE:
1542 if (s1->ifdef_stack_ptr == s1->ifdef_stack)
1543 error("#else without matching #if");
1544 if (s1->ifdef_stack_ptr[-1] & 2)
1545 error("#else after #else");
1546 c = (s1->ifdef_stack_ptr[-1] ^= 3);
1547 goto test_else;
1548 case TOK_ELIF:
1549 if (s1->ifdef_stack_ptr == s1->ifdef_stack)
1550 error("#elif without matching #if");
1551 c = s1->ifdef_stack_ptr[-1];
1552 if (c > 1)
1553 error("#elif after #else");
1554 /* last #if/#elif expression was true: we skip */
1555 if (c == 1)
1556 goto skip;
1557 c = expr_preprocess();
1558 s1->ifdef_stack_ptr[-1] = c;
1559 test_else:
1560 if (s1->ifdef_stack_ptr == file->ifdef_stack_ptr + 1)
1561 file->ifndef_macro = 0;
1562 test_skip:
1563 if (!(c & 1)) {
1564 skip:
1565 preprocess_skip();
1566 is_bof = 0;
1567 goto redo;
1569 break;
1570 case TOK_ENDIF:
1571 if (s1->ifdef_stack_ptr <= file->ifdef_stack_ptr)
1572 error("#endif without matching #if");
1573 s1->ifdef_stack_ptr--;
1574 /* '#ifndef macro' was at the start of file. Now we check if
1575 an '#endif' is exactly at the end of file */
1576 if (file->ifndef_macro &&
1577 s1->ifdef_stack_ptr == file->ifdef_stack_ptr) {
1578 file->ifndef_macro_saved = file->ifndef_macro;
1579 /* need to set to zero to avoid false matches if another
1580 #ifndef at middle of file */
1581 file->ifndef_macro = 0;
1582 while (tok != TOK_LINEFEED)
1583 next_nomacro();
1584 tok_flags |= TOK_FLAG_ENDIF;
1585 goto the_end;
1587 break;
1588 case TOK_LINE:
1589 next();
1590 if (tok != TOK_CINT)
1591 error("#line");
1592 file->line_num = tokc.i - 1; /* the line number will be incremented after */
1593 next();
1594 if (tok != TOK_LINEFEED) {
1595 if (tok != TOK_STR)
1596 error("#line");
1597 pstrcpy(file->filename, sizeof(file->filename),
1598 (char *)tokc.cstr->data);
1600 break;
1601 case TOK_ERROR:
1602 case TOK_WARNING:
1603 c = tok;
1604 ch = file->buf_ptr[0];
1605 skip_spaces();
1606 q = buf;
1607 while (ch != '\n' && ch != CH_EOF) {
1608 if ((q - buf) < sizeof(buf) - 1)
1609 *q++ = ch;
1610 if (ch == '\\') {
1611 if (handle_stray_noerror() == 0)
1612 --q;
1613 } else
1614 inp();
1616 *q = '\0';
1617 if (c == TOK_ERROR)
1618 error("#error %s", buf);
1619 else
1620 warning("#warning %s", buf);
1621 break;
1622 case TOK_PRAGMA:
1623 pragma_parse(s1);
1624 break;
1625 default:
1626 if (tok == TOK_LINEFEED || tok == '!' || tok == TOK_PPNUM) {
1627 /* '!' is ignored to allow C scripts. numbers are ignored
1628 to emulate cpp behaviour */
1629 } else {
1630 if (!(saved_parse_flags & PARSE_FLAG_ASM_COMMENTS))
1631 warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok, &tokc));
1633 break;
1635 /* ignore other preprocess commands or #! for C scripts */
1636 while (tok != TOK_LINEFEED)
1637 next_nomacro();
1638 the_end:
1639 parse_flags = saved_parse_flags;
1642 /* evaluate escape codes in a string. */
1643 static void parse_escape_string(CString *outstr, const uint8_t *buf, int is_long)
1645 int c, n;
1646 const uint8_t *p;
1648 p = buf;
1649 for(;;) {
1650 c = *p;
1651 if (c == '\0')
1652 break;
1653 if (c == '\\') {
1654 p++;
1655 /* escape */
1656 c = *p;
1657 switch(c) {
1658 case '0': case '1': case '2': case '3':
1659 case '4': case '5': case '6': case '7':
1660 /* at most three octal digits */
1661 n = c - '0';
1662 p++;
1663 c = *p;
1664 if (isoct(c)) {
1665 n = n * 8 + c - '0';
1666 p++;
1667 c = *p;
1668 if (isoct(c)) {
1669 n = n * 8 + c - '0';
1670 p++;
1673 c = n;
1674 goto add_char_nonext;
1675 case 'x':
1676 case 'u':
1677 case 'U':
1678 p++;
1679 n = 0;
1680 for(;;) {
1681 c = *p;
1682 if (c >= 'a' && c <= 'f')
1683 c = c - 'a' + 10;
1684 else if (c >= 'A' && c <= 'F')
1685 c = c - 'A' + 10;
1686 else if (isnum(c))
1687 c = c - '0';
1688 else
1689 break;
1690 n = n * 16 + c;
1691 p++;
1693 c = n;
1694 goto add_char_nonext;
1695 case 'a':
1696 c = '\a';
1697 break;
1698 case 'b':
1699 c = '\b';
1700 break;
1701 case 'f':
1702 c = '\f';
1703 break;
1704 case 'n':
1705 c = '\n';
1706 break;
1707 case 'r':
1708 c = '\r';
1709 break;
1710 case 't':
1711 c = '\t';
1712 break;
1713 case 'v':
1714 c = '\v';
1715 break;
1716 case 'e':
1717 if (!gnu_ext)
1718 goto invalid_escape;
1719 c = 27;
1720 break;
1721 case '\'':
1722 case '\"':
1723 case '\\':
1724 case '?':
1725 break;
1726 default:
1727 invalid_escape:
1728 if (c >= '!' && c <= '~')
1729 warning("unknown escape sequence: \'\\%c\'", c);
1730 else
1731 warning("unknown escape sequence: \'\\x%x\'", c);
1732 break;
1735 p++;
1736 add_char_nonext:
1737 if (!is_long)
1738 cstr_ccat(outstr, c);
1739 else
1740 cstr_wccat(outstr, c);
1742 /* add a trailing '\0' */
1743 if (!is_long)
1744 cstr_ccat(outstr, '\0');
1745 else
1746 cstr_wccat(outstr, '\0');
1749 /* we use 64 bit numbers */
1750 #define BN_SIZE 2
1752 /* bn = (bn << shift) | or_val */
1753 static void bn_lshift(unsigned int *bn, int shift, int or_val)
1755 int i;
1756 unsigned int v;
1757 for(i=0;i<BN_SIZE;i++) {
1758 v = bn[i];
1759 bn[i] = (v << shift) | or_val;
1760 or_val = v >> (32 - shift);
1764 static void bn_zero(unsigned int *bn)
1766 int i;
1767 for(i=0;i<BN_SIZE;i++) {
1768 bn[i] = 0;
1772 /* parse number in null terminated string 'p' and return it in the
1773 current token */
1774 static void parse_number(const char *p)
1776 int b, t, shift, frac_bits, s, exp_val, ch;
1777 char *q;
1778 unsigned int bn[BN_SIZE];
1779 double d;
1781 /* number */
1782 q = token_buf;
1783 ch = *p++;
1784 t = ch;
1785 ch = *p++;
1786 *q++ = t;
1787 b = 10;
1788 if (t == '.') {
1789 goto float_frac_parse;
1790 } else if (t == '0') {
1791 if (ch == 'x' || ch == 'X') {
1792 q--;
1793 ch = *p++;
1794 b = 16;
1795 } else if (tcc_ext && (ch == 'b' || ch == 'B')) {
1796 q--;
1797 ch = *p++;
1798 b = 2;
1801 /* parse all digits. cannot check octal numbers at this stage
1802 because of floating point constants */
1803 while (1) {
1804 if (ch >= 'a' && ch <= 'f')
1805 t = ch - 'a' + 10;
1806 else if (ch >= 'A' && ch <= 'F')
1807 t = ch - 'A' + 10;
1808 else if (isnum(ch))
1809 t = ch - '0';
1810 else
1811 break;
1812 if (t >= b)
1813 break;
1814 if (q >= token_buf + STRING_MAX_SIZE) {
1815 num_too_long:
1816 error("number too long");
1818 *q++ = ch;
1819 ch = *p++;
1821 if (ch == '.' ||
1822 ((ch == 'e' || ch == 'E') && b == 10) ||
1823 ((ch == 'p' || ch == 'P') && (b == 16 || b == 2))) {
1824 if (b != 10) {
1825 /* NOTE: strtox should support that for hexa numbers, but
1826 non ISOC99 libcs do not support it, so we prefer to do
1827 it by hand */
1828 /* hexadecimal or binary floats */
1829 /* XXX: handle overflows */
1830 *q = '\0';
1831 if (b == 16)
1832 shift = 4;
1833 else
1834 shift = 2;
1835 bn_zero(bn);
1836 q = token_buf;
1837 while (1) {
1838 t = *q++;
1839 if (t == '\0') {
1840 break;
1841 } else if (t >= 'a') {
1842 t = t - 'a' + 10;
1843 } else if (t >= 'A') {
1844 t = t - 'A' + 10;
1845 } else {
1846 t = t - '0';
1848 bn_lshift(bn, shift, t);
1850 frac_bits = 0;
1851 if (ch == '.') {
1852 ch = *p++;
1853 while (1) {
1854 t = ch;
1855 if (t >= 'a' && t <= 'f') {
1856 t = t - 'a' + 10;
1857 } else if (t >= 'A' && t <= 'F') {
1858 t = t - 'A' + 10;
1859 } else if (t >= '0' && t <= '9') {
1860 t = t - '0';
1861 } else {
1862 break;
1864 if (t >= b)
1865 error("invalid digit");
1866 bn_lshift(bn, shift, t);
1867 frac_bits += shift;
1868 ch = *p++;
1871 if (ch != 'p' && ch != 'P')
1872 expect("exponent");
1873 ch = *p++;
1874 s = 1;
1875 exp_val = 0;
1876 if (ch == '+') {
1877 ch = *p++;
1878 } else if (ch == '-') {
1879 s = -1;
1880 ch = *p++;
1882 if (ch < '0' || ch > '9')
1883 expect("exponent digits");
1884 while (ch >= '0' && ch <= '9') {
1885 exp_val = exp_val * 10 + ch - '0';
1886 ch = *p++;
1888 exp_val = exp_val * s;
1890 /* now we can generate the number */
1891 /* XXX: should patch directly float number */
1892 d = (double)bn[1] * 4294967296.0 + (double)bn[0];
1893 d = ldexp(d, exp_val - frac_bits);
1894 t = toup(ch);
1895 if (t == 'F') {
1896 ch = *p++;
1897 tok = TOK_CFLOAT;
1898 /* float : should handle overflow */
1899 tokc.f = (float)d;
1900 } else if (t == 'L') {
1901 ch = *p++;
1902 #ifdef TCC_TARGET_PE
1903 tok = TOK_CDOUBLE;
1904 tokc.d = d;
1905 #else
1906 tok = TOK_CLDOUBLE;
1907 /* XXX: not large enough */
1908 tokc.ld = (long double)d;
1909 #endif
1910 } else {
1911 tok = TOK_CDOUBLE;
1912 tokc.d = d;
1914 } else {
1915 /* decimal floats */
1916 if (ch == '.') {
1917 if (q >= token_buf + STRING_MAX_SIZE)
1918 goto num_too_long;
1919 *q++ = ch;
1920 ch = *p++;
1921 float_frac_parse:
1922 while (ch >= '0' && ch <= '9') {
1923 if (q >= token_buf + STRING_MAX_SIZE)
1924 goto num_too_long;
1925 *q++ = ch;
1926 ch = *p++;
1929 if (ch == 'e' || ch == 'E') {
1930 if (q >= token_buf + STRING_MAX_SIZE)
1931 goto num_too_long;
1932 *q++ = ch;
1933 ch = *p++;
1934 if (ch == '-' || ch == '+') {
1935 if (q >= token_buf + STRING_MAX_SIZE)
1936 goto num_too_long;
1937 *q++ = ch;
1938 ch = *p++;
1940 if (ch < '0' || ch > '9')
1941 expect("exponent digits");
1942 while (ch >= '0' && ch <= '9') {
1943 if (q >= token_buf + STRING_MAX_SIZE)
1944 goto num_too_long;
1945 *q++ = ch;
1946 ch = *p++;
1949 *q = '\0';
1950 t = toup(ch);
1951 errno = 0;
1952 if (t == 'F') {
1953 ch = *p++;
1954 tok = TOK_CFLOAT;
1955 tokc.f = strtof(token_buf, NULL);
1956 } else if (t == 'L') {
1957 ch = *p++;
1958 #ifdef TCC_TARGET_PE
1959 tok = TOK_CDOUBLE;
1960 tokc.d = strtod(token_buf, NULL);
1961 #else
1962 tok = TOK_CLDOUBLE;
1963 tokc.ld = strtold(token_buf, NULL);
1964 #endif
1965 } else {
1966 tok = TOK_CDOUBLE;
1967 tokc.d = strtod(token_buf, NULL);
1970 } else {
1971 unsigned long long n, n1;
1972 int lcount, ucount;
1974 /* integer number */
1975 *q = '\0';
1976 q = token_buf;
1977 if (b == 10 && *q == '0') {
1978 b = 8;
1979 q++;
1981 n = 0;
1982 while(1) {
1983 t = *q++;
1984 /* no need for checks except for base 10 / 8 errors */
1985 if (t == '\0') {
1986 break;
1987 } else if (t >= 'a') {
1988 t = t - 'a' + 10;
1989 } else if (t >= 'A') {
1990 t = t - 'A' + 10;
1991 } else {
1992 t = t - '0';
1993 if (t >= b)
1994 error("invalid digit");
1996 n1 = n;
1997 n = n * b + t;
1998 /* detect overflow */
1999 /* XXX: this test is not reliable */
2000 if (n < n1)
2001 error("integer constant overflow");
2004 /* XXX: not exactly ANSI compliant */
2005 if ((n & 0xffffffff00000000LL) != 0) {
2006 if ((n >> 63) != 0)
2007 tok = TOK_CULLONG;
2008 else
2009 tok = TOK_CLLONG;
2010 } else if (n > 0x7fffffff) {
2011 tok = TOK_CUINT;
2012 } else {
2013 tok = TOK_CINT;
2015 lcount = 0;
2016 ucount = 0;
2017 for(;;) {
2018 t = toup(ch);
2019 if (t == 'L') {
2020 if (lcount >= 2)
2021 error("three 'l's in integer constant");
2022 lcount++;
2023 if (lcount == 2) {
2024 if (tok == TOK_CINT)
2025 tok = TOK_CLLONG;
2026 else if (tok == TOK_CUINT)
2027 tok = TOK_CULLONG;
2029 ch = *p++;
2030 } else if (t == 'U') {
2031 if (ucount >= 1)
2032 error("two 'u's in integer constant");
2033 ucount++;
2034 if (tok == TOK_CINT)
2035 tok = TOK_CUINT;
2036 else if (tok == TOK_CLLONG)
2037 tok = TOK_CULLONG;
2038 ch = *p++;
2039 } else {
2040 break;
2043 if (tok == TOK_CINT || tok == TOK_CUINT)
2044 tokc.ui = n;
2045 else
2046 tokc.ull = n;
2048 if (ch)
2049 error("invalid number\n");
2053 #define PARSE2(c1, tok1, c2, tok2) \
2054 case c1: \
2055 PEEKC(c, p); \
2056 if (c == c2) { \
2057 p++; \
2058 tok = tok2; \
2059 } else { \
2060 tok = tok1; \
2062 break;
2064 /* return next token without macro substitution */
2065 static inline void next_nomacro1(void)
2067 int t, c, is_long;
2068 TokenSym *ts;
2069 uint8_t *p, *p1;
2070 unsigned int h;
2072 p = file->buf_ptr;
2073 redo_no_start:
2074 c = *p;
2075 switch(c) {
2076 case ' ':
2077 case '\t':
2078 tok = c;
2079 p++;
2080 goto keep_tok_flags;
2081 case '\f':
2082 case '\v':
2083 case '\r':
2084 p++;
2085 goto redo_no_start;
2086 case '\\':
2087 /* first look if it is in fact an end of buffer */
2088 if (p >= file->buf_end) {
2089 file->buf_ptr = p;
2090 handle_eob();
2091 p = file->buf_ptr;
2092 if (p >= file->buf_end)
2093 goto parse_eof;
2094 else
2095 goto redo_no_start;
2096 } else {
2097 file->buf_ptr = p;
2098 ch = *p;
2099 handle_stray();
2100 p = file->buf_ptr;
2101 goto redo_no_start;
2103 parse_eof:
2105 TCCState *s1 = tcc_state;
2106 if ((parse_flags & PARSE_FLAG_LINEFEED)
2107 && !(tok_flags & TOK_FLAG_EOF)) {
2108 tok_flags |= TOK_FLAG_EOF;
2109 tok = TOK_LINEFEED;
2110 goto keep_tok_flags;
2111 } else if (!(parse_flags & PARSE_FLAG_PREPROCESS)) {
2112 tok = TOK_EOF;
2113 } else if (s1->ifdef_stack_ptr != file->ifdef_stack_ptr) {
2114 error("missing #endif");
2115 } else if (s1->include_stack_ptr == s1->include_stack) {
2116 /* no include left : end of file. */
2117 tok = TOK_EOF;
2118 } else {
2119 tok_flags &= ~TOK_FLAG_EOF;
2120 /* pop include file */
2122 /* test if previous '#endif' was after a #ifdef at
2123 start of file */
2124 if (tok_flags & TOK_FLAG_ENDIF) {
2125 #ifdef INC_DEBUG
2126 printf("#endif %s\n", get_tok_str(file->ifndef_macro_saved, NULL));
2127 #endif
2128 add_cached_include(s1, file->inc_type, file->inc_filename,
2129 file->ifndef_macro_saved);
2132 /* add end of include file debug info */
2133 if (tcc_state->do_debug) {
2134 put_stabd(N_EINCL, 0, 0);
2136 /* pop include stack */
2137 tcc_close(file);
2138 s1->include_stack_ptr--;
2139 file = *s1->include_stack_ptr;
2140 p = file->buf_ptr;
2141 goto redo_no_start;
2144 break;
2146 case '\n':
2147 file->line_num++;
2148 tok_flags |= TOK_FLAG_BOL;
2149 p++;
2150 maybe_newline:
2151 if (0 == (parse_flags & PARSE_FLAG_LINEFEED))
2152 goto redo_no_start;
2153 tok = TOK_LINEFEED;
2154 goto keep_tok_flags;
2156 case '#':
2157 /* XXX: simplify */
2158 PEEKC(c, p);
2159 if ((tok_flags & TOK_FLAG_BOL) &&
2160 (parse_flags & PARSE_FLAG_PREPROCESS)) {
2161 file->buf_ptr = p;
2162 preprocess(tok_flags & TOK_FLAG_BOF);
2163 p = file->buf_ptr;
2164 goto maybe_newline;
2165 } else {
2166 if (c == '#') {
2167 p++;
2168 tok = TOK_TWOSHARPS;
2169 } else {
2170 if (parse_flags & PARSE_FLAG_ASM_COMMENTS) {
2171 p = parse_line_comment(p - 1);
2172 goto redo_no_start;
2173 } else {
2174 tok = '#';
2178 break;
2180 case 'a': case 'b': case 'c': case 'd':
2181 case 'e': case 'f': case 'g': case 'h':
2182 case 'i': case 'j': case 'k': case 'l':
2183 case 'm': case 'n': case 'o': case 'p':
2184 case 'q': case 'r': case 's': case 't':
2185 case 'u': case 'v': case 'w': case 'x':
2186 case 'y': case 'z':
2187 case 'A': case 'B': case 'C': case 'D':
2188 case 'E': case 'F': case 'G': case 'H':
2189 case 'I': case 'J': case 'K':
2190 case 'M': case 'N': case 'O': case 'P':
2191 case 'Q': case 'R': case 'S': case 'T':
2192 case 'U': case 'V': case 'W': case 'X':
2193 case 'Y': case 'Z':
2194 case '_':
2195 parse_ident_fast:
2196 p1 = p;
2197 h = TOK_HASH_INIT;
2198 h = TOK_HASH_FUNC(h, c);
2199 p++;
2200 for(;;) {
2201 c = *p;
2202 if (!isidnum_table[c-CH_EOF])
2203 break;
2204 h = TOK_HASH_FUNC(h, c);
2205 p++;
2207 if (c != '\\') {
2208 TokenSym **pts;
2209 int len;
2211 /* fast case : no stray found, so we have the full token
2212 and we have already hashed it */
2213 len = p - p1;
2214 h &= (TOK_HASH_SIZE - 1);
2215 pts = &hash_ident[h];
2216 for(;;) {
2217 ts = *pts;
2218 if (!ts)
2219 break;
2220 if (ts->len == len && !memcmp(ts->str, p1, len))
2221 goto token_found;
2222 pts = &(ts->hash_next);
2224 ts = tok_alloc_new(pts, p1, len);
2225 token_found: ;
2226 } else {
2227 /* slower case */
2228 cstr_reset(&tokcstr);
2230 while (p1 < p) {
2231 cstr_ccat(&tokcstr, *p1);
2232 p1++;
2234 p--;
2235 PEEKC(c, p);
2236 parse_ident_slow:
2237 while (isidnum_table[c-CH_EOF]) {
2238 cstr_ccat(&tokcstr, c);
2239 PEEKC(c, p);
2241 ts = tok_alloc(tokcstr.data, tokcstr.size);
2243 tok = ts->tok;
2244 break;
2245 case 'L':
2246 t = p[1];
2247 if (t != '\\' && t != '\'' && t != '\"') {
2248 /* fast case */
2249 goto parse_ident_fast;
2250 } else {
2251 PEEKC(c, p);
2252 if (c == '\'' || c == '\"') {
2253 is_long = 1;
2254 goto str_const;
2255 } else {
2256 cstr_reset(&tokcstr);
2257 cstr_ccat(&tokcstr, 'L');
2258 goto parse_ident_slow;
2261 break;
2262 case '0': case '1': case '2': case '3':
2263 case '4': case '5': case '6': case '7':
2264 case '8': case '9':
2266 cstr_reset(&tokcstr);
2267 /* after the first digit, accept digits, alpha, '.' or sign if
2268 prefixed by 'eEpP' */
2269 parse_num:
2270 for(;;) {
2271 t = c;
2272 cstr_ccat(&tokcstr, c);
2273 PEEKC(c, p);
2274 if (!(isnum(c) || isid(c) || c == '.' ||
2275 ((c == '+' || c == '-') &&
2276 (t == 'e' || t == 'E' || t == 'p' || t == 'P'))))
2277 break;
2279 /* We add a trailing '\0' to ease parsing */
2280 cstr_ccat(&tokcstr, '\0');
2281 tokc.cstr = &tokcstr;
2282 tok = TOK_PPNUM;
2283 break;
2284 case '.':
2285 /* special dot handling because it can also start a number */
2286 PEEKC(c, p);
2287 if (isnum(c)) {
2288 cstr_reset(&tokcstr);
2289 cstr_ccat(&tokcstr, '.');
2290 goto parse_num;
2291 } else if (c == '.') {
2292 PEEKC(c, p);
2293 if (c != '.')
2294 expect("'.'");
2295 PEEKC(c, p);
2296 tok = TOK_DOTS;
2297 } else {
2298 tok = '.';
2300 break;
2301 case '\'':
2302 case '\"':
2303 is_long = 0;
2304 str_const:
2306 CString str;
2307 int sep;
2309 sep = c;
2311 /* parse the string */
2312 cstr_new(&str);
2313 p = parse_pp_string(p, sep, &str);
2314 cstr_ccat(&str, '\0');
2316 /* eval the escape (should be done as TOK_PPNUM) */
2317 cstr_reset(&tokcstr);
2318 parse_escape_string(&tokcstr, str.data, is_long);
2319 cstr_free(&str);
2321 if (sep == '\'') {
2322 int char_size;
2323 /* XXX: make it portable */
2324 if (!is_long)
2325 char_size = 1;
2326 else
2327 char_size = sizeof(nwchar_t);
2328 if (tokcstr.size <= char_size)
2329 error("empty character constant");
2330 if (tokcstr.size > 2 * char_size)
2331 warning("multi-character character constant");
2332 if (!is_long) {
2333 tokc.i = *(int8_t *)tokcstr.data;
2334 tok = TOK_CCHAR;
2335 } else {
2336 tokc.i = *(nwchar_t *)tokcstr.data;
2337 tok = TOK_LCHAR;
2339 } else {
2340 tokc.cstr = &tokcstr;
2341 if (!is_long)
2342 tok = TOK_STR;
2343 else
2344 tok = TOK_LSTR;
2347 break;
2349 case '<':
2350 PEEKC(c, p);
2351 if (c == '=') {
2352 p++;
2353 tok = TOK_LE;
2354 } else if (c == '<') {
2355 PEEKC(c, p);
2356 if (c == '=') {
2357 p++;
2358 tok = TOK_A_SHL;
2359 } else {
2360 tok = TOK_SHL;
2362 } else {
2363 tok = TOK_LT;
2365 break;
2367 case '>':
2368 PEEKC(c, p);
2369 if (c == '=') {
2370 p++;
2371 tok = TOK_GE;
2372 } else if (c == '>') {
2373 PEEKC(c, p);
2374 if (c == '=') {
2375 p++;
2376 tok = TOK_A_SAR;
2377 } else {
2378 tok = TOK_SAR;
2380 } else {
2381 tok = TOK_GT;
2383 break;
2385 case '&':
2386 PEEKC(c, p);
2387 if (c == '&') {
2388 p++;
2389 tok = TOK_LAND;
2390 } else if (c == '=') {
2391 p++;
2392 tok = TOK_A_AND;
2393 } else {
2394 tok = '&';
2396 break;
2398 case '|':
2399 PEEKC(c, p);
2400 if (c == '|') {
2401 p++;
2402 tok = TOK_LOR;
2403 } else if (c == '=') {
2404 p++;
2405 tok = TOK_A_OR;
2406 } else {
2407 tok = '|';
2409 break;
2411 case '+':
2412 PEEKC(c, p);
2413 if (c == '+') {
2414 p++;
2415 tok = TOK_INC;
2416 } else if (c == '=') {
2417 p++;
2418 tok = TOK_A_ADD;
2419 } else {
2420 tok = '+';
2422 break;
2424 case '-':
2425 PEEKC(c, p);
2426 if (c == '-') {
2427 p++;
2428 tok = TOK_DEC;
2429 } else if (c == '=') {
2430 p++;
2431 tok = TOK_A_SUB;
2432 } else if (c == '>') {
2433 p++;
2434 tok = TOK_ARROW;
2435 } else {
2436 tok = '-';
2438 break;
2440 PARSE2('!', '!', '=', TOK_NE)
2441 PARSE2('=', '=', '=', TOK_EQ)
2442 PARSE2('*', '*', '=', TOK_A_MUL)
2443 PARSE2('%', '%', '=', TOK_A_MOD)
2444 PARSE2('^', '^', '=', TOK_A_XOR)
2446 /* comments or operator */
2447 case '/':
2448 PEEKC(c, p);
2449 if (c == '*') {
2450 p = parse_comment(p);
2451 goto redo_no_start;
2452 } else if (c == '/') {
2453 p = parse_line_comment(p);
2454 goto redo_no_start;
2455 } else if (c == '=') {
2456 p++;
2457 tok = TOK_A_DIV;
2458 } else {
2459 tok = '/';
2461 break;
2463 /* simple tokens */
2464 case '(':
2465 case ')':
2466 case '[':
2467 case ']':
2468 case '{':
2469 case '}':
2470 case ',':
2471 case ';':
2472 case ':':
2473 case '?':
2474 case '~':
2475 case '$': /* only used in assembler */
2476 case '@': /* dito */
2477 tok = c;
2478 p++;
2479 break;
2480 default:
2481 error("unrecognized character \\x%02x", c);
2482 break;
2484 tok_flags = 0;
2485 keep_tok_flags:
2486 file->buf_ptr = p;
2487 #if defined(PARSE_DEBUG)
2488 printf("token = %s\n", get_tok_str(tok, &tokc));
2489 #endif
2492 /* return next token without macro substitution. Can read input from
2493 macro_ptr buffer */
2494 static void next_nomacro_spc(void)
2496 if (macro_ptr) {
2497 redo:
2498 tok = *macro_ptr;
2499 if (tok) {
2500 TOK_GET(&tok, &macro_ptr, &tokc);
2501 if (tok == TOK_LINENUM) {
2502 file->line_num = tokc.i;
2503 goto redo;
2506 } else {
2507 next_nomacro1();
2511 ST_FUNC void next_nomacro(void)
2513 do {
2514 next_nomacro_spc();
2515 } while (is_space(tok));
2518 /* substitute args in macro_str and return allocated string */
2519 static int *macro_arg_subst(Sym **nested_list, const int *macro_str, Sym *args)
2521 int last_tok, t, spc;
2522 const int *st;
2523 Sym *s;
2524 CValue cval;
2525 TokenString str;
2526 CString cstr;
2528 tok_str_new(&str);
2529 last_tok = 0;
2530 while(1) {
2531 TOK_GET(&t, &macro_str, &cval);
2532 if (!t)
2533 break;
2534 if (t == '#') {
2535 /* stringize */
2536 TOK_GET(&t, &macro_str, &cval);
2537 if (!t)
2538 break;
2539 s = sym_find2(args, t);
2540 if (s) {
2541 cstr_new(&cstr);
2542 st = s->d;
2543 spc = 0;
2544 while (*st) {
2545 TOK_GET(&t, &st, &cval);
2546 if (!check_space(t, &spc))
2547 cstr_cat(&cstr, get_tok_str(t, &cval));
2549 cstr.size -= spc;
2550 cstr_ccat(&cstr, '\0');
2551 #ifdef PP_DEBUG
2552 printf("stringize: %s\n", (char *)cstr.data);
2553 #endif
2554 /* add string */
2555 cval.cstr = &cstr;
2556 tok_str_add2(&str, TOK_STR, &cval);
2557 cstr_free(&cstr);
2558 } else {
2559 tok_str_add2(&str, t, &cval);
2561 } else if (t >= TOK_IDENT) {
2562 s = sym_find2(args, t);
2563 if (s) {
2564 st = s->d;
2565 /* if '##' is present before or after, no arg substitution */
2566 if (*macro_str == TOK_TWOSHARPS || last_tok == TOK_TWOSHARPS) {
2567 /* special case for var arg macros : ## eats the
2568 ',' if empty VA_ARGS variable. */
2569 /* XXX: test of the ',' is not 100%
2570 reliable. should fix it to avoid security
2571 problems */
2572 if (gnu_ext && s->type.t &&
2573 last_tok == TOK_TWOSHARPS &&
2574 str.len >= 2 && str.str[str.len - 2] == ',') {
2575 if (*st == 0) {
2576 /* suppress ',' '##' */
2577 str.len -= 2;
2578 } else {
2579 /* suppress '##' and add variable */
2580 str.len--;
2581 goto add_var;
2583 } else {
2584 int t1;
2585 add_var:
2586 for(;;) {
2587 TOK_GET(&t1, &st, &cval);
2588 if (!t1)
2589 break;
2590 tok_str_add2(&str, t1, &cval);
2593 } else {
2594 /* NOTE: the stream cannot be read when macro
2595 substituing an argument */
2596 macro_subst(&str, nested_list, st, NULL);
2598 } else {
2599 tok_str_add(&str, t);
2601 } else {
2602 tok_str_add2(&str, t, &cval);
2604 last_tok = t;
2606 tok_str_add(&str, 0);
2607 return str.str;
2610 static char const ab_month_name[12][4] =
2612 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2613 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2616 /* do macro substitution of current token with macro 's' and add
2617 result to (tok_str,tok_len). 'nested_list' is the list of all
2618 macros we got inside to avoid recursing. Return non zero if no
2619 substitution needs to be done */
2620 static int macro_subst_tok(TokenString *tok_str,
2621 Sym **nested_list, Sym *s, struct macro_level **can_read_stream)
2623 Sym *args, *sa, *sa1;
2624 int mstr_allocated, parlevel, *mstr, t, t1, spc;
2625 const int *p;
2626 TokenString str;
2627 char *cstrval;
2628 CValue cval;
2629 CString cstr;
2630 char buf[32];
2632 /* if symbol is a macro, prepare substitution */
2633 /* special macros */
2634 if (tok == TOK___LINE__) {
2635 snprintf(buf, sizeof(buf), "%d", file->line_num);
2636 cstrval = buf;
2637 t1 = TOK_PPNUM;
2638 goto add_cstr1;
2639 } else if (tok == TOK___FILE__) {
2640 cstrval = file->filename;
2641 goto add_cstr;
2642 } else if (tok == TOK___DATE__ || tok == TOK___TIME__) {
2643 time_t ti;
2644 struct tm *tm;
2646 time(&ti);
2647 tm = localtime(&ti);
2648 if (tok == TOK___DATE__) {
2649 snprintf(buf, sizeof(buf), "%s %2d %d",
2650 ab_month_name[tm->tm_mon], tm->tm_mday, tm->tm_year + 1900);
2651 } else {
2652 snprintf(buf, sizeof(buf), "%02d:%02d:%02d",
2653 tm->tm_hour, tm->tm_min, tm->tm_sec);
2655 cstrval = buf;
2656 add_cstr:
2657 t1 = TOK_STR;
2658 add_cstr1:
2659 cstr_new(&cstr);
2660 cstr_cat(&cstr, cstrval);
2661 cstr_ccat(&cstr, '\0');
2662 cval.cstr = &cstr;
2663 tok_str_add2(tok_str, t1, &cval);
2664 cstr_free(&cstr);
2665 } else {
2666 mstr = s->d;
2667 mstr_allocated = 0;
2668 if (s->type.t == MACRO_FUNC) {
2669 /* NOTE: we do not use next_nomacro to avoid eating the
2670 next token. XXX: find better solution */
2671 redo:
2672 if (macro_ptr) {
2673 p = macro_ptr;
2674 while (is_space(t = *p) || TOK_LINEFEED == t)
2675 ++p;
2676 if (t == 0 && can_read_stream) {
2677 /* end of macro stream: we must look at the token
2678 after in the file */
2679 struct macro_level *ml = *can_read_stream;
2680 macro_ptr = NULL;
2681 if (ml)
2683 macro_ptr = ml->p;
2684 ml->p = NULL;
2685 *can_read_stream = ml -> prev;
2687 goto redo;
2689 } else {
2690 /* XXX: incorrect with comments */
2691 ch = file->buf_ptr[0];
2692 while (is_space(ch) || ch == '\n')
2693 cinp();
2694 t = ch;
2696 if (t != '(') /* no macro subst */
2697 return -1;
2699 /* argument macro */
2700 next_nomacro();
2701 next_nomacro();
2702 args = NULL;
2703 sa = s->next;
2704 /* NOTE: empty args are allowed, except if no args */
2705 for(;;) {
2706 /* handle '()' case */
2707 if (!args && !sa && tok == ')')
2708 break;
2709 if (!sa)
2710 error("macro '%s' used with too many args",
2711 get_tok_str(s->v, 0));
2712 tok_str_new(&str);
2713 parlevel = spc = 0;
2714 /* NOTE: non zero sa->t indicates VA_ARGS */
2715 while ((parlevel > 0 ||
2716 (tok != ')' &&
2717 (tok != ',' || sa->type.t))) &&
2718 tok != -1) {
2719 if (tok == '(')
2720 parlevel++;
2721 else if (tok == ')')
2722 parlevel--;
2723 if (tok == TOK_LINEFEED)
2724 tok = ' ';
2725 if (!check_space(tok, &spc))
2726 tok_str_add2(&str, tok, &tokc);
2727 next_nomacro_spc();
2729 str.len -= spc;
2730 tok_str_add(&str, 0);
2731 sa1 = sym_push2(&args, sa->v & ~SYM_FIELD, sa->type.t, 0);
2732 sa1->d = str.str;
2733 sa = sa->next;
2734 if (tok == ')') {
2735 /* special case for gcc var args: add an empty
2736 var arg argument if it is omitted */
2737 if (sa && sa->type.t && gnu_ext)
2738 continue;
2739 else
2740 break;
2742 if (tok != ',')
2743 expect(",");
2744 next_nomacro();
2746 if (sa) {
2747 error("macro '%s' used with too few args",
2748 get_tok_str(s->v, 0));
2751 /* now subst each arg */
2752 mstr = macro_arg_subst(nested_list, mstr, args);
2753 /* free memory */
2754 sa = args;
2755 while (sa) {
2756 sa1 = sa->prev;
2757 tok_str_free(sa->d);
2758 sym_free(sa);
2759 sa = sa1;
2761 mstr_allocated = 1;
2763 sym_push2(nested_list, s->v, 0, 0);
2764 macro_subst(tok_str, nested_list, mstr, can_read_stream);
2765 /* pop nested defined symbol */
2766 sa1 = *nested_list;
2767 *nested_list = sa1->prev;
2768 sym_free(sa1);
2769 if (mstr_allocated)
2770 tok_str_free(mstr);
2772 return 0;
2775 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
2776 return the resulting string (which must be freed). */
2777 static inline int *macro_twosharps(const int *macro_str)
2779 const int *ptr;
2780 int t;
2781 CValue cval;
2782 TokenString macro_str1;
2783 CString cstr;
2784 char *p;
2785 int n;
2787 /* we search the first '##' */
2788 for(ptr = macro_str;;) {
2789 TOK_GET(&t, &ptr, &cval);
2790 if (t == TOK_TWOSHARPS)
2791 break;
2792 /* nothing more to do if end of string */
2793 if (t == 0)
2794 return NULL;
2797 /* we saw '##', so we need more processing to handle it */
2798 tok_str_new(&macro_str1);
2799 for(ptr = macro_str;;) {
2800 TOK_GET(&tok, &ptr, &tokc);
2801 if (tok == 0)
2802 break;
2803 if (tok == TOK_TWOSHARPS)
2804 continue;
2805 while (*ptr == TOK_TWOSHARPS) {
2806 t = *++ptr;
2807 if (t && t != TOK_TWOSHARPS) {
2808 TOK_GET(&t, &ptr, &cval);
2810 /* We concatenate the two tokens */
2811 cstr_new(&cstr);
2812 cstr_cat(&cstr, get_tok_str(tok, &tokc));
2813 n = cstr.size;
2814 cstr_cat(&cstr, get_tok_str(t, &cval));
2815 cstr_ccat(&cstr, '\0');
2817 p = file->buf_ptr;
2818 file->buf_ptr = cstr.data;
2819 for (;;) {
2820 next_nomacro1();
2821 if (0 == *file->buf_ptr)
2822 break;
2823 tok_str_add2(&macro_str1, tok, &tokc);
2825 warning("pasting \"%.*s\" and \"%s\" does not give a valid preprocessing token",
2826 n, cstr.data, (char*)cstr.data + n);
2828 file->buf_ptr = p;
2829 cstr_reset(&cstr);
2832 tok_str_add2(&macro_str1, tok, &tokc);
2834 tok_str_add(&macro_str1, 0);
2835 return macro_str1.str;
2839 /* do macro substitution of macro_str and add result to
2840 (tok_str,tok_len). 'nested_list' is the list of all macros we got
2841 inside to avoid recursing. */
2842 static void macro_subst(TokenString *tok_str, Sym **nested_list,
2843 const int *macro_str, struct macro_level ** can_read_stream)
2845 Sym *s;
2846 int *macro_str1;
2847 const int *ptr;
2848 int t, ret, spc;
2849 CValue cval;
2850 struct macro_level ml;
2852 /* first scan for '##' operator handling */
2853 ptr = macro_str;
2854 macro_str1 = macro_twosharps(ptr);
2855 if (macro_str1)
2856 ptr = macro_str1;
2857 spc = 0;
2858 while (1) {
2859 /* NOTE: ptr == NULL can only happen if tokens are read from
2860 file stream due to a macro function call */
2861 if (ptr == NULL)
2862 break;
2863 TOK_GET(&t, &ptr, &cval);
2864 if (t == 0)
2865 break;
2866 s = define_find(t);
2867 if (s != NULL) {
2868 /* if nested substitution, do nothing */
2869 if (sym_find2(*nested_list, t))
2870 goto no_subst;
2871 ml.p = macro_ptr;
2872 if (can_read_stream)
2873 ml.prev = *can_read_stream, *can_read_stream = &ml;
2874 macro_ptr = (int *)ptr;
2875 tok = t;
2876 ret = macro_subst_tok(tok_str, nested_list, s, can_read_stream);
2877 ptr = (int *)macro_ptr;
2878 macro_ptr = ml.p;
2879 if (can_read_stream && *can_read_stream == &ml)
2880 *can_read_stream = ml.prev;
2881 if (ret != 0)
2882 goto no_subst;
2883 } else {
2884 no_subst:
2885 if (!check_space(t, &spc))
2886 tok_str_add2(tok_str, t, &cval);
2889 if (macro_str1)
2890 tok_str_free(macro_str1);
2893 /* return next token with macro substitution */
2894 ST_FUNC void next(void)
2896 Sym *nested_list, *s;
2897 TokenString str;
2898 struct macro_level *ml;
2900 redo:
2901 if (parse_flags & PARSE_FLAG_SPACES)
2902 next_nomacro_spc();
2903 else
2904 next_nomacro();
2905 if (!macro_ptr) {
2906 /* if not reading from macro substituted string, then try
2907 to substitute macros */
2908 if (tok >= TOK_IDENT &&
2909 (parse_flags & PARSE_FLAG_PREPROCESS)) {
2910 s = define_find(tok);
2911 if (s) {
2912 /* we have a macro: we try to substitute */
2913 tok_str_new(&str);
2914 nested_list = NULL;
2915 ml = NULL;
2916 if (macro_subst_tok(&str, &nested_list, s, &ml) == 0) {
2917 /* substitution done, NOTE: maybe empty */
2918 tok_str_add(&str, 0);
2919 macro_ptr = str.str;
2920 macro_ptr_allocated = str.str;
2921 goto redo;
2925 } else {
2926 if (tok == 0) {
2927 /* end of macro or end of unget buffer */
2928 if (unget_buffer_enabled) {
2929 macro_ptr = unget_saved_macro_ptr;
2930 unget_buffer_enabled = 0;
2931 } else {
2932 /* end of macro string: free it */
2933 tok_str_free(macro_ptr_allocated);
2934 macro_ptr_allocated = NULL;
2935 macro_ptr = NULL;
2937 goto redo;
2941 /* convert preprocessor tokens into C tokens */
2942 if (tok == TOK_PPNUM &&
2943 (parse_flags & PARSE_FLAG_TOK_NUM)) {
2944 parse_number((char *)tokc.cstr->data);
2948 /* push back current token and set current token to 'last_tok'. Only
2949 identifier case handled for labels. */
2950 ST_INLN void unget_tok(int last_tok)
2952 int i, n;
2953 int *q;
2954 unget_saved_macro_ptr = macro_ptr;
2955 unget_buffer_enabled = 1;
2956 q = unget_saved_buffer;
2957 macro_ptr = q;
2958 *q++ = tok;
2959 n = tok_ext_size(tok) - 1;
2960 for(i=0;i<n;i++)
2961 *q++ = tokc.tab[i];
2962 *q = 0; /* end of token string */
2963 tok = last_tok;
2967 /* better than nothing, but needs extension to handle '-E' option
2968 correctly too */
2969 ST_FUNC void preprocess_init(TCCState *s1)
2971 s1->include_stack_ptr = s1->include_stack;
2972 /* XXX: move that before to avoid having to initialize
2973 file->ifdef_stack_ptr ? */
2974 s1->ifdef_stack_ptr = s1->ifdef_stack;
2975 file->ifdef_stack_ptr = s1->ifdef_stack_ptr;
2977 /* XXX: not ANSI compliant: bound checking says error */
2978 vtop = vstack - 1;
2979 s1->pack_stack[0] = 0;
2980 s1->pack_stack_ptr = s1->pack_stack;
2983 ST_FUNC void preprocess_new()
2985 int i, c;
2986 const char *p, *r;
2987 TokenSym *ts;
2989 /* init isid table */
2990 for(i=CH_EOF;i<256;i++)
2991 isidnum_table[i-CH_EOF] = isid(i) || isnum(i);
2993 /* add all tokens */
2994 table_ident = NULL;
2995 memset(hash_ident, 0, TOK_HASH_SIZE * sizeof(TokenSym *));
2997 tok_ident = TOK_IDENT;
2998 p = tcc_keywords;
2999 while (*p) {
3000 r = p;
3001 for(;;) {
3002 c = *r++;
3003 if (c == '\0')
3004 break;
3006 ts = tok_alloc(p, r - p - 1);
3007 p = r;
3011 /* Preprocess the current file */
3012 ST_FUNC int tcc_preprocess(TCCState *s1)
3014 Sym *define_start;
3016 BufferedFile *file_ref, **iptr, **iptr_new;
3017 int token_seen, line_ref, d;
3018 const char *s;
3020 preprocess_init(s1);
3021 define_start = define_stack;
3022 ch = file->buf_ptr[0];
3023 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
3024 parse_flags = PARSE_FLAG_ASM_COMMENTS | PARSE_FLAG_PREPROCESS |
3025 PARSE_FLAG_LINEFEED | PARSE_FLAG_SPACES;
3026 token_seen = 0;
3027 line_ref = 0;
3028 file_ref = NULL;
3029 iptr = s1->include_stack_ptr;
3031 for (;;) {
3032 next();
3033 if (tok == TOK_EOF) {
3034 break;
3035 } else if (file != file_ref) {
3036 goto print_line;
3037 } else if (tok == TOK_LINEFEED) {
3038 if (!token_seen)
3039 continue;
3040 ++line_ref;
3041 token_seen = 0;
3042 } else if (!token_seen) {
3043 d = file->line_num - line_ref;
3044 if (file != file_ref || d < 0 || d >= 8) {
3045 print_line:
3046 iptr_new = s1->include_stack_ptr;
3047 s = iptr_new > iptr ? " 1"
3048 : iptr_new < iptr ? " 2"
3049 : iptr_new > s1->include_stack ? " 3"
3050 : ""
3052 iptr = iptr_new;
3053 fprintf(s1->outfile, "# %d \"%s\"%s\n", file->line_num, file->filename, s);
3054 } else {
3055 while (d)
3056 fputs("\n", s1->outfile), --d;
3058 line_ref = (file_ref = file)->line_num;
3059 token_seen = tok != TOK_LINEFEED;
3060 if (!token_seen)
3061 continue;
3063 fputs(get_tok_str(tok, &tokc), s1->outfile);
3065 free_defines(define_start);
3066 return 0;