tccgen: asm_label cleanup
[tinycc.git] / tccpp.c
blobd2e0e9305a3e53dcb39798a1a05247f3e02da453
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 ST_DATA int parse_flags;
29 ST_DATA struct BufferedFile *file;
30 ST_DATA int ch, tok;
31 ST_DATA CValue tokc;
32 ST_DATA const int *macro_ptr;
33 ST_DATA CString tokcstr; /* current parsed string, if any */
35 /* display benchmark infos */
36 ST_DATA int total_lines;
37 ST_DATA int total_bytes;
38 ST_DATA int tok_ident;
39 ST_DATA TokenSym **table_ident;
41 /* ------------------------------------------------------------------------- */
43 static TokenSym *hash_ident[TOK_HASH_SIZE];
44 static char token_buf[STRING_MAX_SIZE + 1];
45 static unsigned char isidnum_table[256 - CH_EOF];
46 /* isidnum_table flags: */
47 #define IS_SPC 1
48 #define IS_ID 2
49 #define IS_NUM 4
51 static TokenString *macro_stack;
53 static const char tcc_keywords[] =
54 #define DEF(id, str) str "\0"
55 #include "tcctok.h"
56 #undef DEF
59 /* WARNING: the content of this string encodes token numbers */
60 static const unsigned char tok_two_chars[] =
61 /* outdated -- gr
62 "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253"
63 "-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
64 */{
65 '<','=', TOK_LE,
66 '>','=', TOK_GE,
67 '!','=', TOK_NE,
68 '&','&', TOK_LAND,
69 '|','|', TOK_LOR,
70 '+','+', TOK_INC,
71 '-','-', TOK_DEC,
72 '=','=', TOK_EQ,
73 '<','<', TOK_SHL,
74 '>','>', TOK_SAR,
75 '+','=', TOK_A_ADD,
76 '-','=', TOK_A_SUB,
77 '*','=', TOK_A_MUL,
78 '/','=', TOK_A_DIV,
79 '%','=', TOK_A_MOD,
80 '&','=', TOK_A_AND,
81 '^','=', TOK_A_XOR,
82 '|','=', TOK_A_OR,
83 '-','>', TOK_ARROW,
84 '.','.', 0xa8, // C++ token ?
85 '#','#', TOK_TWOSHARPS,
89 static void next_nomacro_spc(void);
91 ST_FUNC void skip(int c)
93 if (tok != c)
94 tcc_error("'%c' expected (got \"%s\")", c, get_tok_str(tok, &tokc));
95 next();
98 ST_FUNC void expect(const char *msg)
100 tcc_error("%s expected", msg);
103 ST_FUNC void begin_macro(TokenString *str, int alloc)
105 str->alloc = alloc;
106 str->prev = macro_stack;
107 str->prev_ptr = macro_ptr;
108 macro_ptr = str->str;
109 macro_stack = str;
112 ST_FUNC void end_macro(void)
114 TokenString *str = macro_stack;
115 macro_stack = str->prev;
116 macro_ptr = str->prev_ptr;
117 if (str->alloc == 2) {
118 str->alloc = 3; /* just mark as finished */
119 } else {
120 tok_str_free(str->str);
121 if (str->alloc == 1)
122 tcc_free(str);
126 /* ------------------------------------------------------------------------- */
127 /* CString handling */
128 static void cstr_realloc(CString *cstr, int new_size)
130 int size;
131 void *data;
133 size = cstr->size_allocated;
134 if (size == 0)
135 size = 8; /* no need to allocate a too small first string */
136 while (size < new_size)
137 size = size * 2;
138 data = tcc_realloc(cstr->data_allocated, size);
139 cstr->data_allocated = data;
140 cstr->size_allocated = size;
141 cstr->data = data;
144 /* add a byte */
145 ST_FUNC void cstr_ccat(CString *cstr, int ch)
147 int size;
148 size = cstr->size + 1;
149 if (size > cstr->size_allocated)
150 cstr_realloc(cstr, size);
151 ((unsigned char *)cstr->data)[size - 1] = ch;
152 cstr->size = size;
155 ST_FUNC void cstr_cat(CString *cstr, const char *str)
157 int c;
158 for(;;) {
159 c = *str;
160 if (c == '\0')
161 break;
162 cstr_ccat(cstr, c);
163 str++;
167 /* add a wide char */
168 ST_FUNC void cstr_wccat(CString *cstr, int ch)
170 int size;
171 size = cstr->size + sizeof(nwchar_t);
172 if (size > cstr->size_allocated)
173 cstr_realloc(cstr, size);
174 *(nwchar_t *)(((unsigned char *)cstr->data) + size - sizeof(nwchar_t)) = ch;
175 cstr->size = size;
178 ST_FUNC void cstr_new(CString *cstr)
180 memset(cstr, 0, sizeof(CString));
183 /* free string and reset it to NULL */
184 ST_FUNC void cstr_free(CString *cstr)
186 tcc_free(cstr->data_allocated);
187 cstr_new(cstr);
190 /* reset string to empty */
191 ST_FUNC void cstr_reset(CString *cstr)
193 cstr->size = 0;
196 /* XXX: unicode ? */
197 static void add_char(CString *cstr, int c)
199 if (c == '\'' || c == '\"' || c == '\\') {
200 /* XXX: could be more precise if char or string */
201 cstr_ccat(cstr, '\\');
203 if (c >= 32 && c <= 126) {
204 cstr_ccat(cstr, c);
205 } else {
206 cstr_ccat(cstr, '\\');
207 if (c == '\n') {
208 cstr_ccat(cstr, 'n');
209 } else {
210 cstr_ccat(cstr, '0' + ((c >> 6) & 7));
211 cstr_ccat(cstr, '0' + ((c >> 3) & 7));
212 cstr_ccat(cstr, '0' + (c & 7));
217 /* ------------------------------------------------------------------------- */
218 /* allocate a new token */
219 static TokenSym *tok_alloc_new(TokenSym **pts, const char *str, int len)
221 TokenSym *ts, **ptable;
222 int i;
224 if (tok_ident >= SYM_FIRST_ANOM)
225 tcc_error("memory full (symbols)");
227 /* expand token table if needed */
228 i = tok_ident - TOK_IDENT;
229 if ((i % TOK_ALLOC_INCR) == 0) {
230 ptable = tcc_realloc(table_ident, (i + TOK_ALLOC_INCR) * sizeof(TokenSym *));
231 table_ident = ptable;
234 ts = tcc_malloc(sizeof(TokenSym) + len);
235 table_ident[i] = ts;
236 ts->tok = tok_ident++;
237 ts->sym_define = NULL;
238 ts->sym_label = NULL;
239 ts->sym_struct = NULL;
240 ts->sym_identifier = NULL;
241 ts->len = len;
242 ts->hash_next = NULL;
243 memcpy(ts->str, str, len);
244 ts->str[len] = '\0';
245 *pts = ts;
246 return ts;
249 #define TOK_HASH_INIT 1
250 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
252 /* find a token and add it if not found */
253 ST_FUNC TokenSym *tok_alloc(const char *str, int len)
255 TokenSym *ts, **pts;
256 int i;
257 unsigned int h;
259 h = TOK_HASH_INIT;
260 for(i=0;i<len;i++)
261 h = TOK_HASH_FUNC(h, ((unsigned char *)str)[i]);
262 h &= (TOK_HASH_SIZE - 1);
264 pts = &hash_ident[h];
265 for(;;) {
266 ts = *pts;
267 if (!ts)
268 break;
269 if (ts->len == len && !memcmp(ts->str, str, len))
270 return ts;
271 pts = &(ts->hash_next);
273 return tok_alloc_new(pts, str, len);
276 /* XXX: buffer overflow */
277 /* XXX: float tokens */
278 ST_FUNC const char *get_tok_str(int v, CValue *cv)
280 static char buf[STRING_MAX_SIZE + 1];
281 static CString cstr_buf;
282 CString *cstr;
283 char *p;
284 int i, len;
286 /* NOTE: to go faster, we give a fixed buffer for small strings */
287 cstr_reset(&cstr_buf);
288 cstr_buf.data = buf;
289 cstr_buf.size_allocated = sizeof(buf);
290 p = buf;
292 switch(v) {
293 case TOK_CINT:
294 case TOK_CUINT:
295 /* XXX: not quite exact, but only useful for testing */
296 sprintf(p, "%llu", (unsigned long long)cv->i);
297 break;
298 case TOK_CLLONG:
299 case TOK_CULLONG:
300 /* XXX: not quite exact, but only useful for testing */
301 #ifdef _WIN32
302 sprintf(p, "%u", (unsigned)cv->i);
303 #else
304 sprintf(p, "%llu", (unsigned long long)cv->i);
305 #endif
306 break;
307 case TOK_LCHAR:
308 cstr_ccat(&cstr_buf, 'L');
309 case TOK_CCHAR:
310 cstr_ccat(&cstr_buf, '\'');
311 add_char(&cstr_buf, cv->i);
312 cstr_ccat(&cstr_buf, '\'');
313 cstr_ccat(&cstr_buf, '\0');
314 break;
315 case TOK_PPNUM:
316 case TOK_PPSTR:
317 return (char*)cv->cstr->data;
318 case TOK_LSTR:
319 cstr_ccat(&cstr_buf, 'L');
320 case TOK_STR:
321 cstr = cv->cstr;
322 cstr_ccat(&cstr_buf, '\"');
323 if (v == TOK_STR) {
324 len = cstr->size - 1;
325 for(i=0;i<len;i++)
326 add_char(&cstr_buf, ((unsigned char *)cstr->data)[i]);
327 } else {
328 len = (cstr->size / sizeof(nwchar_t)) - 1;
329 for(i=0;i<len;i++)
330 add_char(&cstr_buf, ((nwchar_t *)cstr->data)[i]);
332 cstr_ccat(&cstr_buf, '\"');
333 cstr_ccat(&cstr_buf, '\0');
334 break;
336 case TOK_CFLOAT:
337 cstr_cat(&cstr_buf, "<float>");
338 break;
339 case TOK_CDOUBLE:
340 cstr_cat(&cstr_buf, "<double>");
341 break;
342 case TOK_CLDOUBLE:
343 cstr_cat(&cstr_buf, "<long double>");
344 break;
345 case TOK_LINENUM:
346 cstr_cat(&cstr_buf, "<linenumber>");
347 break;
348 //return NULL; /* should not happen */
350 /* above tokens have value, the ones below don't */
352 case TOK_LT:
353 v = '<';
354 goto addv;
355 case TOK_GT:
356 v = '>';
357 goto addv;
358 case TOK_DOTS:
359 return strcpy(p, "...");
360 case TOK_A_SHL:
361 return strcpy(p, "<<=");
362 case TOK_A_SAR:
363 return strcpy(p, ">>=");
364 default:
365 if (v < TOK_IDENT) {
366 /* search in two bytes table */
367 const unsigned char *q = tok_two_chars;
368 while (*q) {
369 if (q[2] == v) {
370 *p++ = q[0];
371 *p++ = q[1];
372 *p = '\0';
373 return buf;
375 q += 3;
377 if (v >= 127) {
378 sprintf(buf, "<%02x>", v);
379 return buf;
381 addv:
382 *p++ = v;
383 *p = '\0';
384 } else if (v < tok_ident) {
385 return table_ident[v - TOK_IDENT]->str;
386 } else if (v >= SYM_FIRST_ANOM) {
387 /* special name for anonymous symbol */
388 sprintf(p, "L.%u", v - SYM_FIRST_ANOM);
389 } else {
390 /* should never happen */
391 return NULL;
393 break;
395 return cstr_buf.data;
398 /* return the current character, handling end of block if necessary
399 (but not stray) */
400 ST_FUNC int handle_eob(void)
402 BufferedFile *bf = file;
403 int len;
405 /* only tries to read if really end of buffer */
406 if (bf->buf_ptr >= bf->buf_end) {
407 if (bf->fd != -1) {
408 #if defined(PARSE_DEBUG)
409 len = 1;
410 #else
411 len = IO_BUF_SIZE;
412 #endif
413 len = read(bf->fd, bf->buffer, len);
414 if (len < 0)
415 len = 0;
416 } else {
417 len = 0;
419 total_bytes += len;
420 bf->buf_ptr = bf->buffer;
421 bf->buf_end = bf->buffer + len;
422 *bf->buf_end = CH_EOB;
424 if (bf->buf_ptr < bf->buf_end) {
425 return bf->buf_ptr[0];
426 } else {
427 bf->buf_ptr = bf->buf_end;
428 return CH_EOF;
432 /* read next char from current input file and handle end of input buffer */
433 ST_INLN void inp(void)
435 ch = *(++(file->buf_ptr));
436 /* end of buffer/file handling */
437 if (ch == CH_EOB)
438 ch = handle_eob();
441 /* handle '\[\r]\n' */
442 static int handle_stray_noerror(void)
444 while (ch == '\\') {
445 inp();
446 if (ch == '\n') {
447 file->line_num++;
448 inp();
449 } else if (ch == '\r') {
450 inp();
451 if (ch != '\n')
452 goto fail;
453 file->line_num++;
454 inp();
455 } else {
456 fail:
457 return 1;
460 return 0;
463 static void handle_stray(void)
465 if (handle_stray_noerror())
466 tcc_error("stray '\\' in program");
469 /* skip the stray and handle the \\n case. Output an error if
470 incorrect char after the stray */
471 static int handle_stray1(uint8_t *p)
473 int c;
475 file->buf_ptr = p;
476 if (p >= file->buf_end) {
477 c = handle_eob();
478 if (c != '\\')
479 return c;
480 p = file->buf_ptr;
482 ch = *p;
483 if (handle_stray_noerror()) {
484 if (!(parse_flags & PARSE_FLAG_ACCEPT_STRAYS))
485 tcc_error("stray '\\' in program");
486 *--file->buf_ptr = '\\';
488 p = file->buf_ptr;
489 c = *p;
490 return c;
493 /* handle just the EOB case, but not stray */
494 #define PEEKC_EOB(c, p)\
496 p++;\
497 c = *p;\
498 if (c == '\\') {\
499 file->buf_ptr = p;\
500 c = handle_eob();\
501 p = file->buf_ptr;\
505 /* handle the complicated stray case */
506 #define PEEKC(c, p)\
508 p++;\
509 c = *p;\
510 if (c == '\\') {\
511 c = handle_stray1(p);\
512 p = file->buf_ptr;\
516 /* input with '\[\r]\n' handling. Note that this function cannot
517 handle other characters after '\', so you cannot call it inside
518 strings or comments */
519 ST_FUNC void minp(void)
521 inp();
522 if (ch == '\\')
523 handle_stray();
527 /* single line C++ comments */
528 static uint8_t *parse_line_comment(uint8_t *p)
530 int c;
532 p++;
533 for(;;) {
534 c = *p;
535 redo:
536 if (c == '\n' || c == CH_EOF) {
537 break;
538 } else if (c == '\\') {
539 file->buf_ptr = p;
540 c = handle_eob();
541 p = file->buf_ptr;
542 if (c == '\\') {
543 PEEKC_EOB(c, p);
544 if (c == '\n') {
545 file->line_num++;
546 PEEKC_EOB(c, p);
547 } else if (c == '\r') {
548 PEEKC_EOB(c, p);
549 if (c == '\n') {
550 file->line_num++;
551 PEEKC_EOB(c, p);
554 } else {
555 goto redo;
557 } else {
558 p++;
561 return p;
564 /* C comments */
565 ST_FUNC uint8_t *parse_comment(uint8_t *p)
567 int c;
569 p++;
570 for(;;) {
571 /* fast skip loop */
572 for(;;) {
573 c = *p;
574 if (c == '\n' || c == '*' || c == '\\')
575 break;
576 p++;
577 c = *p;
578 if (c == '\n' || c == '*' || c == '\\')
579 break;
580 p++;
582 /* now we can handle all the cases */
583 if (c == '\n') {
584 file->line_num++;
585 p++;
586 } else if (c == '*') {
587 p++;
588 for(;;) {
589 c = *p;
590 if (c == '*') {
591 p++;
592 } else if (c == '/') {
593 goto end_of_comment;
594 } else if (c == '\\') {
595 file->buf_ptr = p;
596 c = handle_eob();
597 p = file->buf_ptr;
598 if (c == CH_EOF)
599 tcc_error("unexpected end of file in comment");
600 if (c == '\\') {
601 /* skip '\[\r]\n', otherwise just skip the stray */
602 while (c == '\\') {
603 PEEKC_EOB(c, p);
604 if (c == '\n') {
605 file->line_num++;
606 PEEKC_EOB(c, p);
607 } else if (c == '\r') {
608 PEEKC_EOB(c, p);
609 if (c == '\n') {
610 file->line_num++;
611 PEEKC_EOB(c, p);
613 } else {
614 goto after_star;
618 } else {
619 break;
622 after_star: ;
623 } else {
624 /* stray, eob or eof */
625 file->buf_ptr = p;
626 c = handle_eob();
627 p = file->buf_ptr;
628 if (c == CH_EOF) {
629 tcc_error("unexpected end of file in comment");
630 } else if (c == '\\') {
631 p++;
635 end_of_comment:
636 p++;
637 return p;
640 #define cinp minp
642 static inline void skip_spaces(void)
644 while (isidnum_table[ch - CH_EOF] & IS_SPC)
645 cinp();
648 static inline int check_space(int t, int *spc)
650 if (t < 256 && (isidnum_table[t - CH_EOF] & IS_SPC)) {
651 if (*spc)
652 return 1;
653 *spc = 1;
654 } else
655 *spc = 0;
656 return 0;
659 /* parse a string without interpreting escapes */
660 static uint8_t *parse_pp_string(uint8_t *p,
661 int sep, CString *str)
663 int c;
664 p++;
665 for(;;) {
666 c = *p;
667 if (c == sep) {
668 break;
669 } else if (c == '\\') {
670 file->buf_ptr = p;
671 c = handle_eob();
672 p = file->buf_ptr;
673 if (c == CH_EOF) {
674 unterminated_string:
675 /* XXX: indicate line number of start of string */
676 tcc_error("missing terminating %c character", sep);
677 } else if (c == '\\') {
678 /* escape : just skip \[\r]\n */
679 PEEKC_EOB(c, p);
680 if (c == '\n') {
681 file->line_num++;
682 p++;
683 } else if (c == '\r') {
684 PEEKC_EOB(c, p);
685 if (c != '\n')
686 expect("'\n' after '\r'");
687 file->line_num++;
688 p++;
689 } else if (c == CH_EOF) {
690 goto unterminated_string;
691 } else {
692 if (str) {
693 cstr_ccat(str, '\\');
694 cstr_ccat(str, c);
696 p++;
699 } else if (c == '\n') {
700 file->line_num++;
701 goto add_char;
702 } else if (c == '\r') {
703 PEEKC_EOB(c, p);
704 if (c != '\n') {
705 if (str)
706 cstr_ccat(str, '\r');
707 } else {
708 file->line_num++;
709 goto add_char;
711 } else {
712 add_char:
713 if (str)
714 cstr_ccat(str, c);
715 p++;
718 p++;
719 return p;
722 /* skip block of text until #else, #elif or #endif. skip also pairs of
723 #if/#endif */
724 static void preprocess_skip(void)
726 int a, start_of_line, c, in_warn_or_error;
727 uint8_t *p;
729 p = file->buf_ptr;
730 a = 0;
731 redo_start:
732 start_of_line = 1;
733 in_warn_or_error = 0;
734 for(;;) {
735 redo_no_start:
736 c = *p;
737 switch(c) {
738 case ' ':
739 case '\t':
740 case '\f':
741 case '\v':
742 case '\r':
743 p++;
744 goto redo_no_start;
745 case '\n':
746 file->line_num++;
747 p++;
748 goto redo_start;
749 case '\\':
750 file->buf_ptr = p;
751 c = handle_eob();
752 if (c == CH_EOF) {
753 expect("#endif");
754 } else if (c == '\\') {
755 ch = file->buf_ptr[0];
756 handle_stray_noerror();
758 p = file->buf_ptr;
759 goto redo_no_start;
760 /* skip strings */
761 case '\"':
762 case '\'':
763 if (in_warn_or_error)
764 goto _default;
765 p = parse_pp_string(p, c, NULL);
766 break;
767 /* skip comments */
768 case '/':
769 if (in_warn_or_error)
770 goto _default;
771 file->buf_ptr = p;
772 ch = *p;
773 minp();
774 p = file->buf_ptr;
775 if (ch == '*') {
776 p = parse_comment(p);
777 } else if (ch == '/') {
778 p = parse_line_comment(p);
780 break;
781 case '#':
782 p++;
783 if (start_of_line) {
784 file->buf_ptr = p;
785 next_nomacro();
786 p = file->buf_ptr;
787 if (a == 0 &&
788 (tok == TOK_ELSE || tok == TOK_ELIF || tok == TOK_ENDIF))
789 goto the_end;
790 if (tok == TOK_IF || tok == TOK_IFDEF || tok == TOK_IFNDEF)
791 a++;
792 else if (tok == TOK_ENDIF)
793 a--;
794 else if( tok == TOK_ERROR || tok == TOK_WARNING)
795 in_warn_or_error = 1;
796 else if (tok == TOK_LINEFEED)
797 goto redo_start;
798 } else if (parse_flags & PARSE_FLAG_ASM_FILE)
799 p = parse_line_comment(p);
800 break;
801 _default:
802 default:
803 p++;
804 break;
806 start_of_line = 0;
808 the_end: ;
809 file->buf_ptr = p;
812 /* ParseState handling */
814 /* XXX: currently, no include file info is stored. Thus, we cannot display
815 accurate messages if the function or data definition spans multiple
816 files */
818 /* save current parse state in 's' */
819 ST_FUNC void save_parse_state(ParseState *s)
821 s->line_num = file->line_num;
822 s->macro_ptr = macro_ptr;
823 s->tok = tok;
824 s->tokc = tokc;
827 /* restore parse state from 's' */
828 ST_FUNC void restore_parse_state(ParseState *s)
830 file->line_num = s->line_num;
831 macro_ptr = s->macro_ptr;
832 tok = s->tok;
833 tokc = s->tokc;
836 /* return the number of additional 'ints' necessary to store the
837 token */
838 static inline int tok_size(const int *p)
840 switch(*p) {
841 /* 4 bytes */
842 case TOK_CINT:
843 case TOK_CUINT:
844 case TOK_CCHAR:
845 case TOK_LCHAR:
846 case TOK_CFLOAT:
847 case TOK_LINENUM:
848 return 1 + 1;
849 case TOK_STR:
850 case TOK_LSTR:
851 case TOK_PPNUM:
852 case TOK_PPSTR:
853 return 1 + ((sizeof(CString) + ((CString *)(p+1))->size + 3) >> 2);
854 case TOK_CDOUBLE:
855 case TOK_CLLONG:
856 case TOK_CULLONG:
857 return 1 + 2;
858 case TOK_CLDOUBLE:
859 return 1 + LDOUBLE_SIZE / 4;
860 default:
861 return 1 + 0;
865 /* token string handling */
867 ST_INLN void tok_str_new(TokenString *s)
869 s->str = NULL;
870 s->len = 0;
871 s->allocated_len = 0;
872 s->last_line_num = -1;
875 ST_FUNC void tok_str_free(int *str)
877 tcc_free(str);
880 static int *tok_str_realloc(TokenString *s)
882 int *str, len;
884 if (s->allocated_len == 0) {
885 len = 8;
886 } else {
887 len = s->allocated_len * 2;
889 str = tcc_realloc(s->str, len * sizeof(int));
890 s->allocated_len = len;
891 s->str = str;
892 return str;
895 ST_FUNC void tok_str_add(TokenString *s, int t)
897 int len, *str;
899 len = s->len;
900 str = s->str;
901 if (len >= s->allocated_len)
902 str = tok_str_realloc(s);
903 str[len++] = t;
904 s->len = len;
907 static void tok_str_add2(TokenString *s, int t, CValue *cv)
909 int len, *str;
911 len = s->len;
912 str = s->str;
914 /* allocate space for worst case */
915 if (len + TOK_MAX_SIZE > s->allocated_len)
916 str = tok_str_realloc(s);
917 str[len++] = t;
918 switch(t) {
919 case TOK_CINT:
920 case TOK_CUINT:
921 case TOK_CCHAR:
922 case TOK_LCHAR:
923 case TOK_CFLOAT:
924 case TOK_LINENUM:
925 str[len++] = cv->tab[0];
926 break;
927 case TOK_PPNUM:
928 case TOK_PPSTR:
929 case TOK_STR:
930 case TOK_LSTR:
932 int nb_words;
933 CString cstr;
935 nb_words = (sizeof(CString) + cv->cstr->size + 3) >> 2;
936 while ((len + nb_words) > s->allocated_len)
937 str = tok_str_realloc(s);
938 /* XXX: Insert the CString into the int array.
939 It may end up incorrectly aligned. */
940 cstr.data = 0;
941 cstr.size = cv->cstr->size;
942 cstr.data_allocated = 0;
943 cstr.size_allocated = cstr.size;
944 memcpy(str + len, &cstr, sizeof(CString));
945 memcpy((char *)(str + len) + sizeof(CString),
946 cv->cstr->data, cstr.size);
947 len += nb_words;
949 break;
950 case TOK_CDOUBLE:
951 case TOK_CLLONG:
952 case TOK_CULLONG:
953 #if LDOUBLE_SIZE == 8
954 case TOK_CLDOUBLE:
955 #endif
956 str[len++] = cv->tab[0];
957 str[len++] = cv->tab[1];
958 break;
959 #if LDOUBLE_SIZE == 12
960 case TOK_CLDOUBLE:
961 str[len++] = cv->tab[0];
962 str[len++] = cv->tab[1];
963 str[len++] = cv->tab[2];
964 #elif LDOUBLE_SIZE == 16
965 case TOK_CLDOUBLE:
966 str[len++] = cv->tab[0];
967 str[len++] = cv->tab[1];
968 str[len++] = cv->tab[2];
969 str[len++] = cv->tab[3];
970 #elif LDOUBLE_SIZE != 8
971 #error add long double size support
972 #endif
973 break;
974 default:
975 break;
977 s->len = len;
980 /* add the current parse token in token string 's' */
981 ST_FUNC void tok_str_add_tok(TokenString *s)
983 CValue cval;
985 /* save line number info */
986 if (file->line_num != s->last_line_num) {
987 s->last_line_num = file->line_num;
988 cval.i = s->last_line_num;
989 tok_str_add2(s, TOK_LINENUM, &cval);
991 tok_str_add2(s, tok, &tokc);
994 /* get a token from an integer array and increment pointer
995 accordingly. we code it as a macro to avoid pointer aliasing. */
996 static inline void TOK_GET(int *t, const int **pp, CValue *cv)
998 const int *p = *pp;
999 int n, *tab;
1001 tab = cv->tab;
1002 switch(*t = *p++) {
1003 case TOK_CINT:
1004 case TOK_CUINT:
1005 case TOK_CCHAR:
1006 case TOK_LCHAR:
1007 case TOK_CFLOAT:
1008 case TOK_LINENUM:
1009 tab[0] = *p++;
1010 break;
1011 case TOK_STR:
1012 case TOK_LSTR:
1013 case TOK_PPNUM:
1014 case TOK_PPSTR:
1015 /* XXX: Illegal cast: the pointer p may not be correctly aligned! */
1016 cv->cstr = (CString *)p;
1017 cv->cstr->data = (char *)p + sizeof(CString);
1018 p += (sizeof(CString) + cv->cstr->size + 3) >> 2;
1019 break;
1020 case TOK_CDOUBLE:
1021 case TOK_CLLONG:
1022 case TOK_CULLONG:
1023 n = 2;
1024 goto copy;
1025 case TOK_CLDOUBLE:
1026 #if LDOUBLE_SIZE == 16
1027 n = 4;
1028 #elif LDOUBLE_SIZE == 12
1029 n = 3;
1030 #elif LDOUBLE_SIZE == 8
1031 n = 2;
1032 #else
1033 # error add long double size support
1034 #endif
1035 copy:
1037 *tab++ = *p++;
1038 while (--n);
1039 break;
1040 default:
1041 break;
1043 *pp = p;
1046 /* Calling this function is expensive, but it is not possible
1047 to read a token string backwards. */
1048 static int tok_last(const int *str0, const int *str1)
1050 const int *str = str0;
1051 int tok = 0;
1052 CValue cval;
1054 while (str < str1)
1055 TOK_GET(&tok, &str, &cval);
1056 return tok;
1059 static int macro_is_equal(const int *a, const int *b)
1061 char buf[STRING_MAX_SIZE + 1];
1062 CValue cv;
1063 int t;
1064 while (*a && *b) {
1065 TOK_GET(&t, &a, &cv);
1066 pstrcpy(buf, sizeof buf, get_tok_str(t, &cv));
1067 TOK_GET(&t, &b, &cv);
1068 if (strcmp(buf, get_tok_str(t, &cv)))
1069 return 0;
1071 return !(*a || *b);
1074 static void pp_line(TCCState *s1, BufferedFile *f, int level)
1076 int d = f->line_num - f->line_ref;
1077 if (s1->Pflag == LINE_MACRO_OUTPUT_FORMAT_NONE
1078 || (level == 0 && f->line_ref && d < 8))
1080 while (d > 0)
1081 fputs("\n", s1->ppfp), --d;
1083 else
1084 if (s1->Pflag == LINE_MACRO_OUTPUT_FORMAT_STD) {
1085 fprintf(s1->ppfp, "#line %d \"%s\"\n", f->line_num, f->filename);
1087 else {
1088 fprintf(s1->ppfp, "# %d \"%s\"%s\n", f->line_num, f->filename,
1089 level > 0 ? " 1" : level < 0 ? " 2" : "");
1091 f->line_ref = f->line_num;
1094 static void tok_print(const char *msg, const int *str)
1096 FILE *pr = tcc_state->ppfp;
1097 int t;
1098 CValue cval;
1100 fprintf(pr, "%s ", msg);
1101 while (str) {
1102 TOK_GET(&t, &str, &cval);
1103 if (!t)
1104 break;
1105 fprintf(pr,"%s", get_tok_str(t, &cval));
1107 fprintf(pr, "\n");
1110 static int define_print_prepared(Sym *s)
1112 if (!s || !tcc_state->ppfp || tcc_state->dflag == 0)
1113 return 0;
1115 if (s->v < TOK_IDENT || s->v >= tok_ident)
1116 return 0;
1118 if (file) {
1119 file->line_num--;
1120 pp_line(tcc_state, file, 0);
1121 file->line_ref = ++file->line_num;
1123 return 1;
1126 static void define_print(int v)
1128 FILE *pr = tcc_state->ppfp;
1129 Sym *s, *a;
1131 s = define_find(v);
1132 if (define_print_prepared(s) == 0)
1133 return;
1135 fprintf(pr, "// #define %s", get_tok_str(v, NULL));
1136 if (s->type.t == MACRO_FUNC) {
1137 a = s->next;
1138 fprintf(pr,"(");
1139 if (a)
1140 for (;;) {
1141 fprintf(pr,"%s", get_tok_str(a->v & ~SYM_FIELD, NULL));
1142 if (!(a = a->next))
1143 break;
1144 fprintf(pr,",");
1146 fprintf(pr,")");
1148 tok_print("", s->d);
1151 static void undef_print(int v)
1153 FILE *pr = tcc_state->ppfp;
1154 Sym *s;
1156 s = define_find(v);
1157 if (define_print_prepared(s) == 0)
1158 return;
1160 fprintf(pr, "// #undef %s\n", get_tok_str(s->v, NULL));
1163 ST_FUNC void print_defines(void)
1165 Sym *top = define_stack;
1166 while (top) {
1167 define_print(top->v);
1168 top = top->prev;
1172 /* defines handling */
1173 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg)
1175 Sym *s;
1177 s = define_find(v);
1178 if (s && !macro_is_equal(s->d, str))
1179 tcc_warning("%s redefined", get_tok_str(v, NULL));
1181 s = sym_push2(&define_stack, v, macro_type, 0);
1182 s->d = str;
1183 s->next = first_arg;
1184 table_ident[v - TOK_IDENT]->sym_define = s;
1187 /* undefined a define symbol. Its name is just set to zero */
1188 ST_FUNC void define_undef(Sym *s)
1190 int v = s->v;
1191 undef_print(v);
1192 if (v >= TOK_IDENT && v < tok_ident)
1193 table_ident[v - TOK_IDENT]->sym_define = NULL;
1196 ST_INLN Sym *define_find(int v)
1198 v -= TOK_IDENT;
1199 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
1200 return NULL;
1201 return table_ident[v]->sym_define;
1204 /* free define stack until top reaches 'b' */
1205 ST_FUNC void free_defines(Sym *b)
1207 Sym *top, *top1;
1208 int v;
1210 top = define_stack;
1211 while (top != b) {
1212 top1 = top->prev;
1213 /* do not free args or predefined defines */
1214 if (top->d)
1215 tok_str_free(top->d);
1216 v = top->v;
1217 if (v >= TOK_IDENT && v < tok_ident)
1218 table_ident[v - TOK_IDENT]->sym_define = NULL;
1219 sym_free(top);
1220 top = top1;
1222 define_stack = b;
1225 /* label lookup */
1226 ST_FUNC Sym *label_find(int v)
1228 v -= TOK_IDENT;
1229 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
1230 return NULL;
1231 return table_ident[v]->sym_label;
1234 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags)
1236 Sym *s, **ps;
1237 s = sym_push2(ptop, v, 0, 0);
1238 s->r = flags;
1239 ps = &table_ident[v - TOK_IDENT]->sym_label;
1240 if (ptop == &global_label_stack) {
1241 /* modify the top most local identifier, so that
1242 sym_identifier will point to 's' when popped */
1243 while (*ps != NULL)
1244 ps = &(*ps)->prev_tok;
1246 s->prev_tok = *ps;
1247 *ps = s;
1248 return s;
1251 /* pop labels until element last is reached. Look if any labels are
1252 undefined. Define symbols if '&&label' was used. */
1253 ST_FUNC void label_pop(Sym **ptop, Sym *slast)
1255 Sym *s, *s1;
1256 for(s = *ptop; s != slast; s = s1) {
1257 s1 = s->prev;
1258 if (s->r == LABEL_DECLARED) {
1259 tcc_warning("label '%s' declared but not used", get_tok_str(s->v, NULL));
1260 } else if (s->r == LABEL_FORWARD) {
1261 tcc_error("label '%s' used but not defined",
1262 get_tok_str(s->v, NULL));
1263 } else {
1264 if (s->c) {
1265 /* define corresponding symbol. A size of
1266 1 is put. */
1267 put_extern_sym(s, cur_text_section, s->jnext, 1);
1270 /* remove label */
1271 table_ident[s->v - TOK_IDENT]->sym_label = s->prev_tok;
1272 sym_free(s);
1274 *ptop = slast;
1277 /* eval an expression for #if/#elif */
1278 static int expr_preprocess(void)
1280 int c, t;
1281 TokenString str;
1283 tok_str_new(&str);
1284 while (tok != TOK_LINEFEED && tok != TOK_EOF) {
1285 next(); /* do macro subst */
1286 if (tok == TOK_DEFINED) {
1287 next_nomacro();
1288 t = tok;
1289 if (t == '(')
1290 next_nomacro();
1291 c = define_find(tok) != 0;
1292 if (t == '(')
1293 next_nomacro();
1294 tok = TOK_CINT;
1295 tokc.i = c;
1296 } else if (tok >= TOK_IDENT) {
1297 /* if undefined macro */
1298 tok = TOK_CINT;
1299 tokc.i = 0;
1301 tok_str_add_tok(&str);
1303 tok_str_add(&str, -1); /* simulate end of file */
1304 tok_str_add(&str, 0);
1305 /* now evaluate C constant expression */
1306 begin_macro(&str, 0);
1307 next();
1308 c = expr_const();
1309 end_macro();
1310 return c != 0;
1314 /* parse after #define */
1315 ST_FUNC void parse_define(void)
1317 Sym *s, *first, **ps;
1318 int v, t, varg, is_vaargs, spc;
1319 int saved_parse_flags = parse_flags;
1320 TokenString str;
1322 v = tok;
1323 if (v < TOK_IDENT)
1324 tcc_error("invalid macro name '%s'", get_tok_str(tok, &tokc));
1325 /* XXX: should check if same macro (ANSI) */
1326 first = NULL;
1327 t = MACRO_OBJ;
1328 /* '(' must be just after macro definition for MACRO_FUNC */
1329 parse_flags |= PARSE_FLAG_SPACES;
1330 next_nomacro_spc();
1331 if (tok == '(') {
1332 next_nomacro();
1333 ps = &first;
1334 if (tok != ')') for (;;) {
1335 varg = tok;
1336 next_nomacro();
1337 is_vaargs = 0;
1338 if (varg == TOK_DOTS) {
1339 varg = TOK___VA_ARGS__;
1340 is_vaargs = 1;
1341 } else if (tok == TOK_DOTS && gnu_ext) {
1342 is_vaargs = 1;
1343 next_nomacro();
1345 if (varg < TOK_IDENT)
1346 bad_list:
1347 tcc_error("bad macro parameter list");
1348 s = sym_push2(&define_stack, varg | SYM_FIELD, is_vaargs, 0);
1349 *ps = s;
1350 ps = &s->next;
1351 if (tok == ')')
1352 break;
1353 if (tok != ',' || is_vaargs)
1354 goto bad_list;
1355 next_nomacro();
1357 next_nomacro_spc();
1358 t = MACRO_FUNC;
1360 tok_str_new(&str);
1361 spc = 2;
1362 parse_flags |= PARSE_FLAG_ACCEPT_STRAYS | PARSE_FLAG_SPACES | PARSE_FLAG_LINEFEED;
1363 while (tok != TOK_LINEFEED && tok != TOK_EOF) {
1364 /* remove spaces around ## and after '#' */
1365 if (TOK_TWOSHARPS == tok) {
1366 if (2 == spc)
1367 goto bad_twosharp;
1368 if (1 == spc)
1369 --str.len;
1370 spc = 3;
1371 } else if ('#' == tok) {
1372 spc = 4;
1373 } else if (check_space(tok, &spc)) {
1374 goto skip;
1376 tok_str_add2(&str, tok, &tokc);
1377 skip:
1378 next_nomacro_spc();
1381 parse_flags = saved_parse_flags;
1382 if (spc == 1)
1383 --str.len; /* remove trailing space */
1384 tok_str_add(&str, 0);
1385 if (3 == spc)
1386 bad_twosharp:
1387 tcc_error("'##' cannot appear at either end of macro");
1388 define_push(v, t, str.str, first);
1389 define_print(v);
1392 static inline int hash_cached_include(const char *filename)
1394 const unsigned char *s;
1395 unsigned int h;
1397 h = TOK_HASH_INIT;
1398 s = (unsigned char *) filename;
1399 while (*s) {
1400 h = TOK_HASH_FUNC(h, *s);
1401 s++;
1403 h &= (CACHED_INCLUDES_HASH_SIZE - 1);
1404 return h;
1407 static CachedInclude *search_cached_include(TCCState *s1, const char *filename)
1409 CachedInclude *e;
1410 int i, h;
1411 h = hash_cached_include(filename);
1412 i = s1->cached_includes_hash[h];
1413 for(;;) {
1414 if (i == 0)
1415 break;
1416 e = s1->cached_includes[i - 1];
1417 if (0 == PATHCMP(e->filename, filename))
1418 return e;
1419 i = e->hash_next;
1421 return NULL;
1424 static inline void add_cached_include(TCCState *s1, const char *filename, int ifndef_macro)
1426 CachedInclude *e;
1427 int h;
1429 if (search_cached_include(s1, filename))
1430 return;
1431 #ifdef INC_DEBUG
1432 printf("adding cached '%s' %s\n", filename, get_tok_str(ifndef_macro, NULL));
1433 #endif
1434 e = tcc_malloc(sizeof(CachedInclude) + strlen(filename));
1435 strcpy(e->filename, filename);
1436 e->ifndef_macro = ifndef_macro;
1437 dynarray_add((void ***)&s1->cached_includes, &s1->nb_cached_includes, e);
1438 /* add in hash table */
1439 h = hash_cached_include(filename);
1440 e->hash_next = s1->cached_includes_hash[h];
1441 s1->cached_includes_hash[h] = s1->nb_cached_includes;
1444 static void pragma_parse(TCCState *s1)
1446 next_nomacro();
1447 if (tok == TOK_push_macro || tok == TOK_pop_macro) {
1448 int t = tok, v;
1449 Sym *s;
1451 if (next(), tok != '(')
1452 goto pragma_err;
1453 if (next(), tok != TOK_STR)
1454 goto pragma_err;
1455 v = tok_alloc(tokc.cstr->data, tokc.cstr->size - 1)->tok;
1456 if (next(), tok != ')')
1457 goto pragma_err;
1458 if (t == TOK_push_macro) {
1459 while (NULL == (s = define_find(v)))
1460 define_push(v, 0, NULL, NULL);
1461 s->type.ref = s; /* set push boundary */
1462 } else {
1463 for (s = define_stack; s; s = s->prev)
1464 if (s->v == v && s->type.ref == s) {
1465 s->type.ref = NULL;
1466 break;
1469 if (s)
1470 table_ident[v - TOK_IDENT]->sym_define = s->d ? s : NULL;
1471 else
1472 tcc_warning("unbalanced #pragma pop_macro");
1474 } else if (tok == TOK_once) {
1475 add_cached_include(s1, file->filename, TOK_once);
1477 } else if (s1->ppfp) {
1478 /* tcc -E: keep pragmas below unchanged */
1479 unget_tok(' ');
1480 unget_tok(TOK_PRAGMA);
1481 unget_tok('#');
1482 unget_tok(TOK_LINEFEED);
1484 } else if (tok == TOK_pack) {
1485 /* This may be:
1486 #pragma pack(1) // set
1487 #pragma pack() // reset to default
1488 #pragma pack(push,1) // push & set
1489 #pragma pack(pop) // restore previous */
1490 next();
1491 skip('(');
1492 if (tok == TOK_ASM_pop) {
1493 next();
1494 if (s1->pack_stack_ptr <= s1->pack_stack) {
1495 stk_error:
1496 tcc_error("out of pack stack");
1498 s1->pack_stack_ptr--;
1499 } else {
1500 int val = 0;
1501 if (tok != ')') {
1502 if (tok == TOK_ASM_push) {
1503 next();
1504 if (s1->pack_stack_ptr >= s1->pack_stack + PACK_STACK_SIZE - 1)
1505 goto stk_error;
1506 s1->pack_stack_ptr++;
1507 skip(',');
1509 if (tok != TOK_CINT)
1510 goto pragma_err;
1511 val = tokc.i;
1512 if (val < 1 || val > 16 || (val & (val - 1)) != 0)
1513 goto pragma_err;
1514 next();
1516 *s1->pack_stack_ptr = val;
1518 if (tok != ')')
1519 goto pragma_err;
1521 } else if (tok == TOK_comment) {
1522 char *file;
1523 next();
1524 skip('(');
1525 if (tok != TOK_lib)
1526 goto pragma_warn;
1527 next();
1528 skip(',');
1529 if (tok != TOK_STR)
1530 goto pragma_err;
1531 file = tcc_strdup((char *)tokc.cstr->data);
1532 dynarray_add((void ***)&s1->pragma_libs, &s1->nb_pragma_libs, file);
1533 next();
1534 if (tok != ')')
1535 goto pragma_err;
1536 } else {
1537 pragma_warn:
1538 if (s1->warn_unsupported)
1539 tcc_warning("#pragma %s is ignored", get_tok_str(tok, &tokc));
1541 return;
1543 pragma_err:
1544 tcc_error("malformed #pragma directive");
1545 return;
1548 /* is_bof is true if first non space token at beginning of file */
1549 ST_FUNC void preprocess(int is_bof)
1551 TCCState *s1 = tcc_state;
1552 int i, c, n, saved_parse_flags;
1553 char buf[1024], *q;
1554 Sym *s;
1556 saved_parse_flags = parse_flags;
1557 parse_flags = PARSE_FLAG_PREPROCESS
1558 | PARSE_FLAG_TOK_NUM
1559 | PARSE_FLAG_TOK_STR
1560 | PARSE_FLAG_LINEFEED
1561 | (parse_flags & PARSE_FLAG_ASM_FILE)
1564 next_nomacro();
1565 redo:
1566 switch(tok) {
1567 case TOK_DEFINE:
1568 next_nomacro();
1569 parse_define();
1570 break;
1571 case TOK_UNDEF:
1572 next_nomacro();
1573 s = define_find(tok);
1574 /* undefine symbol by putting an invalid name */
1575 if (s)
1576 define_undef(s);
1577 break;
1578 case TOK_INCLUDE:
1579 case TOK_INCLUDE_NEXT:
1580 ch = file->buf_ptr[0];
1581 skip_spaces(); /* XXX: incorrect if comments : use next_nomacro with a special mode */
1582 c = 0;
1583 if (ch == '<')
1584 c = '>';
1585 if (ch == '\"')
1586 c = ch;
1587 if (c) {
1588 inp();
1589 q = buf;
1590 while (ch != c && ch != '\n' && ch != CH_EOF) {
1591 if ((q - buf) < sizeof(buf) - 1)
1592 *q++ = ch;
1593 if (ch == '\\') {
1594 if (handle_stray_noerror() == 0)
1595 --q;
1596 } else
1597 inp();
1599 *q = '\0';
1600 minp();
1601 } else {
1602 /* computed #include : either we have only strings or
1603 we have anything enclosed in '<>' */
1604 next();
1605 buf[0] = '\0';
1606 if (tok == TOK_STR) {
1607 while (tok != TOK_LINEFEED) {
1608 if (tok != TOK_STR) {
1609 include_syntax:
1610 tcc_error("'#include' expects \"FILENAME\" or <FILENAME>");
1612 pstrcat(buf, sizeof(buf), (char *)tokc.cstr->data);
1613 next();
1615 c = '\"';
1616 } else {
1617 int len;
1618 while (tok != TOK_LINEFEED) {
1619 pstrcat(buf, sizeof(buf), get_tok_str(tok, &tokc));
1620 next();
1622 len = strlen(buf);
1623 /* check syntax and remove '<>' */
1624 if (len < 2 || buf[0] != '<' || buf[len - 1] != '>')
1625 goto include_syntax;
1626 memmove(buf, buf + 1, len - 2);
1627 buf[len - 2] = '\0';
1628 c = '>';
1632 if (s1->include_stack_ptr >= s1->include_stack + INCLUDE_STACK_SIZE)
1633 tcc_error("#include recursion too deep");
1635 i = -2;
1636 if (tok == TOK_INCLUDE_NEXT)
1637 i = file->inc_path_index + 1;
1639 n = s1->nb_include_paths + s1->nb_sysinclude_paths;
1640 for (; i < n; ++i) {
1641 char buf1[sizeof file->filename];
1642 CachedInclude *e;
1643 const char *path;
1645 if (i == -2) {
1646 /* check absolute include path */
1647 if (!IS_ABSPATH(buf))
1648 continue;
1649 buf1[0] = 0;
1650 i = n - 1; /* force end loop */
1652 } else if (i == -1) {
1653 /* search in current dir if "header.h" */
1654 if (c != '\"')
1655 continue;
1656 path = file->filename;
1657 pstrncpy(buf1, path, tcc_basename(path) - path);
1659 } else {
1660 /* search in all the include paths */
1661 if (i < s1->nb_include_paths)
1662 path = s1->include_paths[i];
1663 else
1664 path = s1->sysinclude_paths[i - s1->nb_include_paths];
1665 if (path == 0) continue;
1666 pstrcpy(buf1, sizeof(buf1), path);
1667 pstrcat(buf1, sizeof(buf1), "/");
1670 pstrcat(buf1, sizeof(buf1), buf);
1671 e = search_cached_include(s1, buf1);
1672 if (e && (define_find(e->ifndef_macro) || e->ifndef_macro == TOK_once))
1673 break; /* no need to parse the include */
1675 if (tcc_open(s1, buf1) < 0)
1676 continue;
1678 file->inc_path_index = i;
1679 *(s1->include_stack_ptr++) = file->prev;
1681 /* update target deps */
1682 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1683 tcc_strdup(buf1));
1685 /* add include file debug info */
1686 if (s1->do_debug)
1687 put_stabs(file->filename, N_BINCL, 0, 0, 0);
1689 tok_flags |= TOK_FLAG_BOF | TOK_FLAG_BOL;
1690 ch = file->buf_ptr[0];
1691 break;
1693 if (i >= n) tcc_error("include file '%s' not found", buf);
1694 goto the_end;
1695 case TOK_IFNDEF:
1696 c = 1;
1697 goto do_ifdef;
1698 case TOK_IF:
1699 c = expr_preprocess();
1700 goto do_if;
1701 case TOK_IFDEF:
1702 c = 0;
1703 do_ifdef:
1704 next_nomacro();
1705 if (tok < TOK_IDENT)
1706 tcc_error("invalid argument for '#if%sdef'", c ? "n" : "");
1707 if (is_bof) {
1708 if (c) {
1709 #ifdef INC_DEBUG
1710 printf("#ifndef %s\n", get_tok_str(tok, NULL));
1711 #endif
1712 file->ifndef_macro = tok;
1715 c = (define_find(tok) != 0) ^ c;
1716 do_if:
1717 if (s1->ifdef_stack_ptr >= s1->ifdef_stack + IFDEF_STACK_SIZE)
1718 tcc_error("memory full (ifdef)");
1719 *s1->ifdef_stack_ptr++ = c;
1720 goto test_skip;
1721 case TOK_ELSE:
1722 if (s1->ifdef_stack_ptr == s1->ifdef_stack)
1723 tcc_error("#else without matching #if");
1724 if (s1->ifdef_stack_ptr[-1] & 2)
1725 tcc_error("#else after #else");
1726 c = (s1->ifdef_stack_ptr[-1] ^= 3);
1727 goto test_else;
1728 case TOK_ELIF:
1729 if (s1->ifdef_stack_ptr == s1->ifdef_stack)
1730 tcc_error("#elif without matching #if");
1731 c = s1->ifdef_stack_ptr[-1];
1732 if (c > 1)
1733 tcc_error("#elif after #else");
1734 /* last #if/#elif expression was true: we skip */
1735 if (c == 1)
1736 goto skip;
1737 c = expr_preprocess();
1738 s1->ifdef_stack_ptr[-1] = c;
1739 test_else:
1740 if (s1->ifdef_stack_ptr == file->ifdef_stack_ptr + 1)
1741 file->ifndef_macro = 0;
1742 test_skip:
1743 if (!(c & 1)) {
1744 skip:
1745 preprocess_skip();
1746 is_bof = 0;
1747 goto redo;
1749 break;
1750 case TOK_ENDIF:
1751 if (s1->ifdef_stack_ptr <= file->ifdef_stack_ptr)
1752 tcc_error("#endif without matching #if");
1753 s1->ifdef_stack_ptr--;
1754 /* '#ifndef macro' was at the start of file. Now we check if
1755 an '#endif' is exactly at the end of file */
1756 if (file->ifndef_macro &&
1757 s1->ifdef_stack_ptr == file->ifdef_stack_ptr) {
1758 file->ifndef_macro_saved = file->ifndef_macro;
1759 /* need to set to zero to avoid false matches if another
1760 #ifndef at middle of file */
1761 file->ifndef_macro = 0;
1762 while (tok != TOK_LINEFEED)
1763 next_nomacro();
1764 tok_flags |= TOK_FLAG_ENDIF;
1765 goto the_end;
1767 break;
1768 case TOK_PPNUM:
1769 n = strtoul((char*)tokc.cstr->data, &q, 10);
1770 goto _line_num;
1771 case TOK_LINE:
1772 next();
1773 if (tok != TOK_CINT)
1774 _line_err:
1775 tcc_error("wrong #line format");
1776 n = tokc.i;
1777 _line_num:
1778 next();
1779 if (tok != TOK_LINEFEED) {
1780 if (tok == TOK_STR)
1781 pstrcpy(file->filename, sizeof(file->filename), (char *)tokc.cstr->data);
1782 else if (parse_flags & PARSE_FLAG_ASM_FILE)
1783 break;
1784 else
1785 goto _line_err;
1786 --n;
1788 if (file->fd > 0)
1789 total_lines += file->line_num - n;
1790 file->line_num = n;
1791 if (s1->do_debug)
1792 put_stabs(file->filename, N_BINCL, 0, 0, 0);
1793 break;
1794 case TOK_ERROR:
1795 case TOK_WARNING:
1796 c = tok;
1797 ch = file->buf_ptr[0];
1798 skip_spaces();
1799 q = buf;
1800 while (ch != '\n' && ch != CH_EOF) {
1801 if ((q - buf) < sizeof(buf) - 1)
1802 *q++ = ch;
1803 if (ch == '\\') {
1804 if (handle_stray_noerror() == 0)
1805 --q;
1806 } else
1807 inp();
1809 *q = '\0';
1810 if (c == TOK_ERROR)
1811 tcc_error("#error %s", buf);
1812 else
1813 tcc_warning("#warning %s", buf);
1814 break;
1815 case TOK_PRAGMA:
1816 pragma_parse(s1);
1817 break;
1818 case TOK_LINEFEED:
1819 goto the_end;
1820 default:
1821 /* ignore gas line comment in an 'S' file. */
1822 if (saved_parse_flags & PARSE_FLAG_ASM_FILE)
1823 goto ignore;
1824 if (tok == '!' && is_bof)
1825 /* '!' is ignored at beginning to allow C scripts. */
1826 goto ignore;
1827 tcc_warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok, &tokc));
1828 ignore:
1829 file->buf_ptr = parse_line_comment(file->buf_ptr);
1830 goto the_end;
1832 /* ignore other preprocess commands or #! for C scripts */
1833 while (tok != TOK_LINEFEED)
1834 next_nomacro();
1835 the_end:
1836 parse_flags = saved_parse_flags;
1839 /* evaluate escape codes in a string. */
1840 static void parse_escape_string(CString *outstr, const uint8_t *buf, int is_long)
1842 int c, n;
1843 const uint8_t *p;
1845 p = buf;
1846 for(;;) {
1847 c = *p;
1848 if (c == '\0')
1849 break;
1850 if (c == '\\') {
1851 p++;
1852 /* escape */
1853 c = *p;
1854 switch(c) {
1855 case '0': case '1': case '2': case '3':
1856 case '4': case '5': case '6': case '7':
1857 /* at most three octal digits */
1858 n = c - '0';
1859 p++;
1860 c = *p;
1861 if (isoct(c)) {
1862 n = n * 8 + c - '0';
1863 p++;
1864 c = *p;
1865 if (isoct(c)) {
1866 n = n * 8 + c - '0';
1867 p++;
1870 c = n;
1871 goto add_char_nonext;
1872 case 'x':
1873 case 'u':
1874 case 'U':
1875 p++;
1876 n = 0;
1877 for(;;) {
1878 c = *p;
1879 if (c >= 'a' && c <= 'f')
1880 c = c - 'a' + 10;
1881 else if (c >= 'A' && c <= 'F')
1882 c = c - 'A' + 10;
1883 else if (isnum(c))
1884 c = c - '0';
1885 else
1886 break;
1887 n = n * 16 + c;
1888 p++;
1890 c = n;
1891 goto add_char_nonext;
1892 case 'a':
1893 c = '\a';
1894 break;
1895 case 'b':
1896 c = '\b';
1897 break;
1898 case 'f':
1899 c = '\f';
1900 break;
1901 case 'n':
1902 c = '\n';
1903 break;
1904 case 'r':
1905 c = '\r';
1906 break;
1907 case 't':
1908 c = '\t';
1909 break;
1910 case 'v':
1911 c = '\v';
1912 break;
1913 case 'e':
1914 if (!gnu_ext)
1915 goto invalid_escape;
1916 c = 27;
1917 break;
1918 case '\'':
1919 case '\"':
1920 case '\\':
1921 case '?':
1922 break;
1923 default:
1924 invalid_escape:
1925 if (c >= '!' && c <= '~')
1926 tcc_warning("unknown escape sequence: \'\\%c\'", c);
1927 else
1928 tcc_warning("unknown escape sequence: \'\\x%x\'", c);
1929 break;
1932 p++;
1933 add_char_nonext:
1934 if (!is_long)
1935 cstr_ccat(outstr, c);
1936 else
1937 cstr_wccat(outstr, c);
1939 /* add a trailing '\0' */
1940 if (!is_long)
1941 cstr_ccat(outstr, '\0');
1942 else
1943 cstr_wccat(outstr, '\0');
1946 void parse_string(const char *s, int len)
1948 uint8_t buf[1000], *p = buf;
1949 int is_long, sep;
1951 if ((is_long = *s == 'L'))
1952 ++s, --len;
1953 sep = *s++;
1954 len -= 2;
1955 if (len >= sizeof buf)
1956 p = tcc_malloc(len + 1);
1957 memcpy(p, s, len);
1958 p[len] = 0;
1960 cstr_reset(&tokcstr);
1961 parse_escape_string(&tokcstr, p, is_long);
1962 if (p != buf)
1963 tcc_free(p);
1965 if (sep == '\'') {
1966 int char_size;
1967 /* XXX: make it portable */
1968 if (!is_long)
1969 char_size = 1;
1970 else
1971 char_size = sizeof(nwchar_t);
1972 if (tokcstr.size <= char_size)
1973 tcc_error("empty character constant");
1974 if (tokcstr.size > 2 * char_size)
1975 tcc_warning("multi-character character constant");
1976 if (!is_long) {
1977 tokc.i = *(int8_t *)tokcstr.data;
1978 tok = TOK_CCHAR;
1979 } else {
1980 tokc.i = *(nwchar_t *)tokcstr.data;
1981 tok = TOK_LCHAR;
1983 } else {
1984 tokc.cstr = &tokcstr;
1985 if (!is_long)
1986 tok = TOK_STR;
1987 else
1988 tok = TOK_LSTR;
1992 /* we use 64 bit numbers */
1993 #define BN_SIZE 2
1995 /* bn = (bn << shift) | or_val */
1996 static void bn_lshift(unsigned int *bn, int shift, int or_val)
1998 int i;
1999 unsigned int v;
2000 for(i=0;i<BN_SIZE;i++) {
2001 v = bn[i];
2002 bn[i] = (v << shift) | or_val;
2003 or_val = v >> (32 - shift);
2007 static void bn_zero(unsigned int *bn)
2009 int i;
2010 for(i=0;i<BN_SIZE;i++) {
2011 bn[i] = 0;
2015 /* parse number in null terminated string 'p' and return it in the
2016 current token */
2017 static void parse_number(const char *p)
2019 int b, t, shift, frac_bits, s, exp_val, ch;
2020 char *q;
2021 unsigned int bn[BN_SIZE];
2022 double d;
2024 /* number */
2025 q = token_buf;
2026 ch = *p++;
2027 t = ch;
2028 ch = *p++;
2029 *q++ = t;
2030 b = 10;
2031 if (t == '.') {
2032 goto float_frac_parse;
2033 } else if (t == '0') {
2034 if (ch == 'x' || ch == 'X') {
2035 q--;
2036 ch = *p++;
2037 b = 16;
2038 } else if (tcc_ext && (ch == 'b' || ch == 'B')) {
2039 q--;
2040 ch = *p++;
2041 b = 2;
2044 /* parse all digits. cannot check octal numbers at this stage
2045 because of floating point constants */
2046 while (1) {
2047 if (ch >= 'a' && ch <= 'f')
2048 t = ch - 'a' + 10;
2049 else if (ch >= 'A' && ch <= 'F')
2050 t = ch - 'A' + 10;
2051 else if (isnum(ch))
2052 t = ch - '0';
2053 else
2054 break;
2055 if (t >= b)
2056 break;
2057 if (q >= token_buf + STRING_MAX_SIZE) {
2058 num_too_long:
2059 tcc_error("number too long");
2061 *q++ = ch;
2062 ch = *p++;
2064 if (ch == '.' ||
2065 ((ch == 'e' || ch == 'E') && b == 10) ||
2066 ((ch == 'p' || ch == 'P') && (b == 16 || b == 2))) {
2067 if (b != 10) {
2068 /* NOTE: strtox should support that for hexa numbers, but
2069 non ISOC99 libcs do not support it, so we prefer to do
2070 it by hand */
2071 /* hexadecimal or binary floats */
2072 /* XXX: handle overflows */
2073 *q = '\0';
2074 if (b == 16)
2075 shift = 4;
2076 else
2077 shift = 1;
2078 bn_zero(bn);
2079 q = token_buf;
2080 while (1) {
2081 t = *q++;
2082 if (t == '\0') {
2083 break;
2084 } else if (t >= 'a') {
2085 t = t - 'a' + 10;
2086 } else if (t >= 'A') {
2087 t = t - 'A' + 10;
2088 } else {
2089 t = t - '0';
2091 bn_lshift(bn, shift, t);
2093 frac_bits = 0;
2094 if (ch == '.') {
2095 ch = *p++;
2096 while (1) {
2097 t = ch;
2098 if (t >= 'a' && t <= 'f') {
2099 t = t - 'a' + 10;
2100 } else if (t >= 'A' && t <= 'F') {
2101 t = t - 'A' + 10;
2102 } else if (t >= '0' && t <= '9') {
2103 t = t - '0';
2104 } else {
2105 break;
2107 if (t >= b)
2108 tcc_error("invalid digit");
2109 bn_lshift(bn, shift, t);
2110 frac_bits += shift;
2111 ch = *p++;
2114 if (ch != 'p' && ch != 'P')
2115 expect("exponent");
2116 ch = *p++;
2117 s = 1;
2118 exp_val = 0;
2119 if (ch == '+') {
2120 ch = *p++;
2121 } else if (ch == '-') {
2122 s = -1;
2123 ch = *p++;
2125 if (ch < '0' || ch > '9')
2126 expect("exponent digits");
2127 while (ch >= '0' && ch <= '9') {
2128 exp_val = exp_val * 10 + ch - '0';
2129 ch = *p++;
2131 exp_val = exp_val * s;
2133 /* now we can generate the number */
2134 /* XXX: should patch directly float number */
2135 d = (double)bn[1] * 4294967296.0 + (double)bn[0];
2136 d = ldexp(d, exp_val - frac_bits);
2137 t = toup(ch);
2138 if (t == 'F') {
2139 ch = *p++;
2140 tok = TOK_CFLOAT;
2141 /* float : should handle overflow */
2142 tokc.f = (float)d;
2143 } else if (t == 'L') {
2144 ch = *p++;
2145 #ifdef TCC_TARGET_PE
2146 tok = TOK_CDOUBLE;
2147 tokc.d = d;
2148 #else
2149 tok = TOK_CLDOUBLE;
2150 /* XXX: not large enough */
2151 tokc.ld = (long double)d;
2152 #endif
2153 } else {
2154 tok = TOK_CDOUBLE;
2155 tokc.d = d;
2157 } else {
2158 /* decimal floats */
2159 if (ch == '.') {
2160 if (q >= token_buf + STRING_MAX_SIZE)
2161 goto num_too_long;
2162 *q++ = ch;
2163 ch = *p++;
2164 float_frac_parse:
2165 while (ch >= '0' && ch <= '9') {
2166 if (q >= token_buf + STRING_MAX_SIZE)
2167 goto num_too_long;
2168 *q++ = ch;
2169 ch = *p++;
2172 if (ch == 'e' || ch == 'E') {
2173 if (q >= token_buf + STRING_MAX_SIZE)
2174 goto num_too_long;
2175 *q++ = ch;
2176 ch = *p++;
2177 if (ch == '-' || ch == '+') {
2178 if (q >= token_buf + STRING_MAX_SIZE)
2179 goto num_too_long;
2180 *q++ = ch;
2181 ch = *p++;
2183 if (ch < '0' || ch > '9')
2184 expect("exponent digits");
2185 while (ch >= '0' && ch <= '9') {
2186 if (q >= token_buf + STRING_MAX_SIZE)
2187 goto num_too_long;
2188 *q++ = ch;
2189 ch = *p++;
2192 *q = '\0';
2193 t = toup(ch);
2194 errno = 0;
2195 if (t == 'F') {
2196 ch = *p++;
2197 tok = TOK_CFLOAT;
2198 tokc.f = strtof(token_buf, NULL);
2199 } else if (t == 'L') {
2200 ch = *p++;
2201 #ifdef TCC_TARGET_PE
2202 tok = TOK_CDOUBLE;
2203 tokc.d = strtod(token_buf, NULL);
2204 #else
2205 tok = TOK_CLDOUBLE;
2206 tokc.ld = strtold(token_buf, NULL);
2207 #endif
2208 } else {
2209 tok = TOK_CDOUBLE;
2210 tokc.d = strtod(token_buf, NULL);
2213 } else {
2214 unsigned long long n, n1;
2215 int lcount, ucount, must_64bit;
2216 const char *p1;
2218 /* integer number */
2219 *q = '\0';
2220 q = token_buf;
2221 if (b == 10 && *q == '0') {
2222 b = 8;
2223 q++;
2225 n = 0;
2226 while(1) {
2227 t = *q++;
2228 /* no need for checks except for base 10 / 8 errors */
2229 if (t == '\0')
2230 break;
2231 else if (t >= 'a')
2232 t = t - 'a' + 10;
2233 else if (t >= 'A')
2234 t = t - 'A' + 10;
2235 else
2236 t = t - '0';
2237 if (t >= b)
2238 tcc_error("invalid digit");
2239 n1 = n;
2240 n = n * b + t;
2241 /* detect overflow */
2242 /* XXX: this test is not reliable */
2243 if (n < n1)
2244 tcc_error("integer constant overflow");
2247 /* Determine the characteristics (unsigned and/or 64bit) the type of
2248 the constant must have according to the constant suffix(es) */
2249 lcount = ucount = must_64bit = 0;
2250 p1 = p;
2251 for(;;) {
2252 t = toup(ch);
2253 if (t == 'L') {
2254 if (lcount >= 2)
2255 tcc_error("three 'l's in integer constant");
2256 if (lcount && *(p - 1) != ch)
2257 tcc_error("incorrect integer suffix: %s", p1);
2258 lcount++;
2259 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
2260 if (lcount == 2)
2261 #endif
2262 must_64bit = 1;
2263 ch = *p++;
2264 } else if (t == 'U') {
2265 if (ucount >= 1)
2266 tcc_error("two 'u's in integer constant");
2267 ucount++;
2268 ch = *p++;
2269 } else {
2270 break;
2274 /* Whether 64 bits are needed to hold the constant's value */
2275 if (n & 0xffffffff00000000LL || must_64bit) {
2276 tok = TOK_CLLONG;
2277 n1 = n >> 32;
2278 } else {
2279 tok = TOK_CINT;
2280 n1 = n;
2283 /* Whether type must be unsigned to hold the constant's value */
2284 if (ucount || ((n1 >> 31) && (b != 10))) {
2285 if (tok == TOK_CLLONG)
2286 tok = TOK_CULLONG;
2287 else
2288 tok = TOK_CUINT;
2289 /* If decimal and no unsigned suffix, bump to 64 bits or throw error */
2290 } else if (n1 >> 31) {
2291 if (tok == TOK_CINT)
2292 tok = TOK_CLLONG;
2293 else
2294 tcc_error("integer constant overflow");
2297 if (tok == TOK_CINT || tok == TOK_CUINT)
2298 tokc.i = n;
2299 else
2300 tokc.i = n;
2302 if (ch)
2303 tcc_error("invalid number\n");
2307 #define PARSE2(c1, tok1, c2, tok2) \
2308 case c1: \
2309 PEEKC(c, p); \
2310 if (c == c2) { \
2311 p++; \
2312 tok = tok2; \
2313 } else { \
2314 tok = tok1; \
2316 break;
2318 /* return next token without macro substitution */
2319 static inline void next_nomacro1(void)
2321 int t, c, is_long;
2322 TokenSym *ts;
2323 uint8_t *p, *p1;
2324 unsigned int h;
2326 p = file->buf_ptr;
2327 redo_no_start:
2328 c = *p;
2329 switch(c) {
2330 case ' ':
2331 case '\t':
2332 tok = c;
2333 p++;
2334 if (parse_flags & PARSE_FLAG_SPACES)
2335 goto keep_tok_flags;
2336 while (isidnum_table[*p - CH_EOF] & IS_SPC)
2337 ++p;
2338 goto redo_no_start;
2339 case '\f':
2340 case '\v':
2341 case '\r':
2342 p++;
2343 goto redo_no_start;
2344 case '\\':
2345 /* first look if it is in fact an end of buffer */
2346 c = handle_stray1(p);
2347 p = file->buf_ptr;
2348 if (c == '\\')
2349 goto parse_simple;
2350 if (c != CH_EOF)
2351 goto redo_no_start;
2353 TCCState *s1 = tcc_state;
2354 if ((parse_flags & PARSE_FLAG_LINEFEED)
2355 && !(tok_flags & TOK_FLAG_EOF)) {
2356 tok_flags |= TOK_FLAG_EOF;
2357 tok = TOK_LINEFEED;
2358 goto keep_tok_flags;
2359 } else if (!(parse_flags & PARSE_FLAG_PREPROCESS)) {
2360 tok = TOK_EOF;
2361 } else if (s1->ifdef_stack_ptr != file->ifdef_stack_ptr) {
2362 tcc_error("missing #endif");
2363 } else if (s1->include_stack_ptr == s1->include_stack) {
2364 /* no include left : end of file. */
2365 tok = TOK_EOF;
2366 } else {
2367 tok_flags &= ~TOK_FLAG_EOF;
2368 /* pop include file */
2370 /* test if previous '#endif' was after a #ifdef at
2371 start of file */
2372 if (tok_flags & TOK_FLAG_ENDIF) {
2373 #ifdef INC_DEBUG
2374 printf("#endif %s\n", get_tok_str(file->ifndef_macro_saved, NULL));
2375 #endif
2376 add_cached_include(s1, file->filename, file->ifndef_macro_saved);
2377 tok_flags &= ~TOK_FLAG_ENDIF;
2380 /* add end of include file debug info */
2381 if (tcc_state->do_debug) {
2382 put_stabd(N_EINCL, 0, 0);
2384 /* pop include stack */
2385 tcc_close();
2386 s1->include_stack_ptr--;
2387 p = file->buf_ptr;
2388 goto redo_no_start;
2391 break;
2393 case '\n':
2394 file->line_num++;
2395 tok_flags |= TOK_FLAG_BOL;
2396 p++;
2397 maybe_newline:
2398 if (0 == (parse_flags & PARSE_FLAG_LINEFEED))
2399 goto redo_no_start;
2400 tok = TOK_LINEFEED;
2401 goto keep_tok_flags;
2403 case '#':
2404 /* XXX: simplify */
2405 PEEKC(c, p);
2406 if ((tok_flags & TOK_FLAG_BOL) &&
2407 (parse_flags & PARSE_FLAG_PREPROCESS)) {
2408 file->buf_ptr = p;
2409 preprocess(tok_flags & TOK_FLAG_BOF);
2410 p = file->buf_ptr;
2411 goto maybe_newline;
2412 } else {
2413 if (c == '#') {
2414 p++;
2415 tok = TOK_TWOSHARPS;
2416 } else {
2417 if (parse_flags & PARSE_FLAG_ASM_FILE) {
2418 p = parse_line_comment(p - 1);
2419 goto redo_no_start;
2420 } else {
2421 tok = '#';
2425 break;
2427 /* dollar is allowed to start identifiers when not parsing asm */
2428 case '$':
2429 if (!(isidnum_table[c - CH_EOF] & IS_ID)
2430 || (parse_flags & PARSE_FLAG_ASM_FILE))
2431 goto parse_simple;
2433 case 'a': case 'b': case 'c': case 'd':
2434 case 'e': case 'f': case 'g': case 'h':
2435 case 'i': case 'j': case 'k': case 'l':
2436 case 'm': case 'n': case 'o': case 'p':
2437 case 'q': case 'r': case 's': case 't':
2438 case 'u': case 'v': case 'w': case 'x':
2439 case 'y': case 'z':
2440 case 'A': case 'B': case 'C': case 'D':
2441 case 'E': case 'F': case 'G': case 'H':
2442 case 'I': case 'J': case 'K':
2443 case 'M': case 'N': case 'O': case 'P':
2444 case 'Q': case 'R': case 'S': case 'T':
2445 case 'U': case 'V': case 'W': case 'X':
2446 case 'Y': case 'Z':
2447 case '_':
2448 parse_ident_fast:
2449 p1 = p;
2450 h = TOK_HASH_INIT;
2451 h = TOK_HASH_FUNC(h, c);
2452 while (c = *++p, isidnum_table[c - CH_EOF] & (IS_ID|IS_NUM))
2453 h = TOK_HASH_FUNC(h, c);
2454 if (c != '\\') {
2455 TokenSym **pts;
2456 int len;
2458 /* fast case : no stray found, so we have the full token
2459 and we have already hashed it */
2460 len = p - p1;
2461 h &= (TOK_HASH_SIZE - 1);
2462 pts = &hash_ident[h];
2463 for(;;) {
2464 ts = *pts;
2465 if (!ts)
2466 break;
2467 if (ts->len == len && !memcmp(ts->str, p1, len))
2468 goto token_found;
2469 pts = &(ts->hash_next);
2471 ts = tok_alloc_new(pts, (char *) p1, len);
2472 token_found: ;
2473 } else {
2474 /* slower case */
2475 cstr_reset(&tokcstr);
2477 while (p1 < p) {
2478 cstr_ccat(&tokcstr, *p1);
2479 p1++;
2481 p--;
2482 PEEKC(c, p);
2483 parse_ident_slow:
2484 while (isidnum_table[c - CH_EOF] & (IS_ID|IS_NUM)) {
2485 cstr_ccat(&tokcstr, c);
2486 PEEKC(c, p);
2488 ts = tok_alloc(tokcstr.data, tokcstr.size);
2490 tok = ts->tok;
2491 break;
2492 case 'L':
2493 t = p[1];
2494 if (t != '\\' && t != '\'' && t != '\"') {
2495 /* fast case */
2496 goto parse_ident_fast;
2497 } else {
2498 PEEKC(c, p);
2499 if (c == '\'' || c == '\"') {
2500 is_long = 1;
2501 goto str_const;
2502 } else {
2503 cstr_reset(&tokcstr);
2504 cstr_ccat(&tokcstr, 'L');
2505 goto parse_ident_slow;
2508 break;
2510 case '0': case '1': case '2': case '3':
2511 case '4': case '5': case '6': case '7':
2512 case '8': case '9':
2513 cstr_reset(&tokcstr);
2514 /* after the first digit, accept digits, alpha, '.' or sign if
2515 prefixed by 'eEpP' */
2516 parse_num:
2517 for(;;) {
2518 t = c;
2519 cstr_ccat(&tokcstr, c);
2520 PEEKC(c, p);
2521 if (!((isidnum_table[c - CH_EOF] & (IS_ID|IS_NUM))
2522 || c == '.'
2523 || ((c == '+' || c == '-')
2524 && (t == 'e' || t == 'E' || t == 'p' || t == 'P')
2526 break;
2528 /* We add a trailing '\0' to ease parsing */
2529 cstr_ccat(&tokcstr, '\0');
2530 tokc.cstr = &tokcstr;
2531 tok = TOK_PPNUM;
2532 break;
2534 case '.':
2535 /* special dot handling because it can also start a number */
2536 PEEKC(c, p);
2537 if (isnum(c)) {
2538 cstr_reset(&tokcstr);
2539 cstr_ccat(&tokcstr, '.');
2540 goto parse_num;
2541 } else if ((c == '.') && (p[1] == '.')){
2542 PEEKC(c, p);
2543 PEEKC(c, p);
2544 tok = TOK_DOTS;
2545 } else {
2546 tok = '.';
2548 break;
2549 case '\'':
2550 case '\"':
2551 is_long = 0;
2552 str_const:
2553 cstr_reset(&tokcstr);
2554 if (is_long)
2555 cstr_ccat(&tokcstr, 'L');
2556 cstr_ccat(&tokcstr, c);
2557 p = parse_pp_string(p, c, &tokcstr);
2558 cstr_ccat(&tokcstr, c);
2559 cstr_ccat(&tokcstr, '\0');
2560 tokc.cstr = &tokcstr;
2561 tok = TOK_PPSTR;
2562 break;
2564 case '<':
2565 PEEKC(c, p);
2566 if (c == '=') {
2567 p++;
2568 tok = TOK_LE;
2569 } else if (c == '<') {
2570 PEEKC(c, p);
2571 if (c == '=') {
2572 p++;
2573 tok = TOK_A_SHL;
2574 } else {
2575 tok = TOK_SHL;
2577 } else {
2578 tok = TOK_LT;
2580 break;
2581 case '>':
2582 PEEKC(c, p);
2583 if (c == '=') {
2584 p++;
2585 tok = TOK_GE;
2586 } else if (c == '>') {
2587 PEEKC(c, p);
2588 if (c == '=') {
2589 p++;
2590 tok = TOK_A_SAR;
2591 } else {
2592 tok = TOK_SAR;
2594 } else {
2595 tok = TOK_GT;
2597 break;
2599 case '&':
2600 PEEKC(c, p);
2601 if (c == '&') {
2602 p++;
2603 tok = TOK_LAND;
2604 } else if (c == '=') {
2605 p++;
2606 tok = TOK_A_AND;
2607 } else {
2608 tok = '&';
2610 break;
2612 case '|':
2613 PEEKC(c, p);
2614 if (c == '|') {
2615 p++;
2616 tok = TOK_LOR;
2617 } else if (c == '=') {
2618 p++;
2619 tok = TOK_A_OR;
2620 } else {
2621 tok = '|';
2623 break;
2625 case '+':
2626 PEEKC(c, p);
2627 if (c == '+') {
2628 p++;
2629 tok = TOK_INC;
2630 } else if (c == '=') {
2631 p++;
2632 tok = TOK_A_ADD;
2633 } else {
2634 tok = '+';
2636 break;
2638 case '-':
2639 PEEKC(c, p);
2640 if (c == '-') {
2641 p++;
2642 tok = TOK_DEC;
2643 } else if (c == '=') {
2644 p++;
2645 tok = TOK_A_SUB;
2646 } else if (c == '>') {
2647 p++;
2648 tok = TOK_ARROW;
2649 } else {
2650 tok = '-';
2652 break;
2654 PARSE2('!', '!', '=', TOK_NE)
2655 PARSE2('=', '=', '=', TOK_EQ)
2656 PARSE2('*', '*', '=', TOK_A_MUL)
2657 PARSE2('%', '%', '=', TOK_A_MOD)
2658 PARSE2('^', '^', '=', TOK_A_XOR)
2660 /* comments or operator */
2661 case '/':
2662 PEEKC(c, p);
2663 if (c == '*') {
2664 p = parse_comment(p);
2665 /* comments replaced by a blank */
2666 tok = ' ';
2667 goto keep_tok_flags;
2668 } else if (c == '/') {
2669 p = parse_line_comment(p);
2670 tok = ' ';
2671 goto keep_tok_flags;
2672 } else if (c == '=') {
2673 p++;
2674 tok = TOK_A_DIV;
2675 } else {
2676 tok = '/';
2678 break;
2680 /* simple tokens */
2681 case '(':
2682 case ')':
2683 case '[':
2684 case ']':
2685 case '{':
2686 case '}':
2687 case ',':
2688 case ';':
2689 case ':':
2690 case '?':
2691 case '~':
2692 case '@': /* only used in assembler */
2693 parse_simple:
2694 tok = c;
2695 p++;
2696 break;
2697 default:
2698 tcc_error("unrecognized character \\x%02x", c);
2699 break;
2701 tok_flags = 0;
2702 keep_tok_flags:
2703 file->buf_ptr = p;
2704 #if defined(PARSE_DEBUG)
2705 printf("token = %s\n", get_tok_str(tok, &tokc));
2706 #endif
2709 /* return next token without macro substitution. Can read input from
2710 macro_ptr buffer */
2711 static void next_nomacro_spc(void)
2713 if (macro_ptr) {
2714 redo:
2715 tok = *macro_ptr;
2716 if (tok) {
2717 TOK_GET(&tok, &macro_ptr, &tokc);
2718 if (tok == TOK_LINENUM) {
2719 file->line_num = tokc.i;
2720 goto redo;
2723 } else {
2724 next_nomacro1();
2728 ST_FUNC void next_nomacro(void)
2730 do {
2731 next_nomacro_spc();
2732 } while (tok < 256 && (isidnum_table[tok - CH_EOF] & IS_SPC));
2736 static void macro_subst(
2737 TokenString *tok_str,
2738 Sym **nested_list,
2739 const int *macro_str,
2740 int can_read_stream
2743 /* substitute arguments in replacement lists in macro_str by the values in
2744 args (field d) and return allocated string */
2745 static int *macro_arg_subst(Sym **nested_list, const int *macro_str, Sym *args)
2747 int t, t0, t1, spc;
2748 const int *st;
2749 Sym *s;
2750 CValue cval;
2751 TokenString str;
2752 CString cstr;
2754 tok_str_new(&str);
2755 t0 = t1 = 0;
2756 while(1) {
2757 TOK_GET(&t, &macro_str, &cval);
2758 if (!t)
2759 break;
2760 if (t == '#') {
2761 /* stringize */
2762 TOK_GET(&t, &macro_str, &cval);
2763 if (!t)
2764 goto bad_stringy;
2765 s = sym_find2(args, t);
2766 if (s) {
2767 cstr_new(&cstr);
2768 cstr_ccat(&cstr, '\"');
2769 st = s->d;
2770 spc = 0;
2771 while (*st) {
2772 TOK_GET(&t, &st, &cval);
2773 if (t != TOK_PLCHLDR
2774 && t != TOK_NOSUBST
2775 && 0 == check_space(t, &spc)) {
2776 const char *s = get_tok_str(t, &cval);
2777 while (*s) {
2778 if (t == TOK_PPSTR && *s != '\'')
2779 add_char(&cstr, *s);
2780 else
2781 cstr_ccat(&cstr, *s);
2782 ++s;
2786 cstr.size -= spc;
2787 cstr_ccat(&cstr, '\"');
2788 cstr_ccat(&cstr, '\0');
2789 #ifdef PP_DEBUG
2790 printf("\nstringize: <%s>\n", (char *)cstr.data);
2791 #endif
2792 /* add string */
2793 cval.cstr = &cstr;
2794 tok_str_add2(&str, TOK_PPSTR, &cval);
2795 cstr_free(cval.cstr);
2796 } else {
2797 bad_stringy:
2798 expect("macro parameter after '#'");
2800 } else if (t >= TOK_IDENT) {
2801 s = sym_find2(args, t);
2802 if (s) {
2803 int l0 = str.len;
2804 st = s->d;
2805 /* if '##' is present before or after, no arg substitution */
2806 if (*macro_str == TOK_TWOSHARPS || t1 == TOK_TWOSHARPS) {
2807 /* special case for var arg macros : ## eats the ','
2808 if empty VA_ARGS variable. */
2809 if (t1 == TOK_TWOSHARPS && t0 == ',' && gnu_ext && s->type.t) {
2810 if (*st == 0) {
2811 /* suppress ',' '##' */
2812 str.len -= 2;
2813 } else {
2814 /* suppress '##' and add variable */
2815 str.len--;
2816 goto add_var;
2818 } else {
2819 for(;;) {
2820 int t1;
2821 TOK_GET(&t1, &st, &cval);
2822 if (!t1)
2823 break;
2824 tok_str_add2(&str, t1, &cval);
2828 } else {
2829 add_var:
2830 /* NOTE: the stream cannot be read when macro
2831 substituing an argument */
2832 macro_subst(&str, nested_list, st, 0);
2834 if (str.len == l0) /* exanded to empty string */
2835 tok_str_add(&str, TOK_PLCHLDR);
2836 } else {
2837 tok_str_add(&str, t);
2839 } else {
2840 tok_str_add2(&str, t, &cval);
2842 t0 = t1, t1 = t;
2844 tok_str_add(&str, 0);
2845 return str.str;
2848 static char const ab_month_name[12][4] =
2850 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2851 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2854 /* peek or read [ws_str == NULL] next token from function macro call,
2855 walking up macro levels up to the file if necessary */
2856 static int next_argstream(Sym **nested_list, int can_read_stream, TokenString *ws_str)
2858 int t;
2859 const int *p;
2860 Sym *sa;
2862 for (;;) {
2863 if (macro_ptr) {
2864 p = macro_ptr, t = *p;
2865 if (ws_str) {
2866 while (is_space(t) || TOK_LINEFEED == t)
2867 tok_str_add(ws_str, t), t = *++p;
2869 if (t == 0 && can_read_stream) {
2870 end_macro();
2871 /* also, end of scope for nested defined symbol */
2872 sa = *nested_list;
2873 while (sa && sa->v == -1)
2874 sa = sa->prev;
2875 if (sa)
2876 sa->v = -1;
2877 continue;
2879 } else {
2880 ch = handle_eob();
2881 if (ws_str) {
2882 while (is_space(ch) || ch == '\n' || ch == '/') {
2883 if (ch == '/') {
2884 int c;
2885 uint8_t *p = file->buf_ptr;
2886 PEEKC(c, p);
2887 if (c == '*') {
2888 p = parse_comment(p);
2889 file->buf_ptr = p - 1;
2890 } else if (c == '/') {
2891 p = parse_line_comment(p);
2892 file->buf_ptr = p - 1;
2893 } else
2894 break;
2895 ch = ' ';
2897 tok_str_add(ws_str, ch);
2898 cinp();
2901 t = ch;
2904 if (ws_str)
2905 return t;
2906 next_nomacro_spc();
2907 return tok;
2911 /* do macro substitution of current token with macro 's' and add
2912 result to (tok_str,tok_len). 'nested_list' is the list of all
2913 macros we got inside to avoid recursing. Return non zero if no
2914 substitution needs to be done */
2915 static int macro_subst_tok(
2916 TokenString *tok_str,
2917 Sym **nested_list,
2918 Sym *s,
2919 int can_read_stream)
2921 Sym *args, *sa, *sa1;
2922 int parlevel, *mstr, t, t1, spc;
2923 TokenString str;
2924 char *cstrval;
2925 CValue cval;
2926 CString cstr;
2927 char buf[32];
2929 /* if symbol is a macro, prepare substitution */
2930 /* special macros */
2931 if (tok == TOK___LINE__) {
2932 snprintf(buf, sizeof(buf), "%d", file->line_num);
2933 cstrval = buf;
2934 t1 = TOK_PPNUM;
2935 goto add_cstr1;
2936 } else if (tok == TOK___FILE__) {
2937 cstrval = file->filename;
2938 goto add_cstr;
2939 } else if (tok == TOK___DATE__ || tok == TOK___TIME__) {
2940 time_t ti;
2941 struct tm *tm;
2943 time(&ti);
2944 tm = localtime(&ti);
2945 if (tok == TOK___DATE__) {
2946 snprintf(buf, sizeof(buf), "%s %2d %d",
2947 ab_month_name[tm->tm_mon], tm->tm_mday, tm->tm_year + 1900);
2948 } else {
2949 snprintf(buf, sizeof(buf), "%02d:%02d:%02d",
2950 tm->tm_hour, tm->tm_min, tm->tm_sec);
2952 cstrval = buf;
2953 add_cstr:
2954 t1 = TOK_STR;
2955 add_cstr1:
2956 cstr_new(&cstr);
2957 cstr_cat(&cstr, cstrval);
2958 cstr_ccat(&cstr, '\0');
2959 cval.cstr = &cstr;
2960 tok_str_add2(tok_str, t1, &cval);
2961 cstr_free(&cstr);
2962 } else {
2963 int saved_parse_flags = parse_flags;
2965 mstr = s->d;
2966 if (s->type.t == MACRO_FUNC) {
2967 /* whitespace between macro name and argument list */
2968 TokenString ws_str;
2969 tok_str_new(&ws_str);
2971 spc = 0;
2972 parse_flags |= PARSE_FLAG_SPACES | PARSE_FLAG_LINEFEED
2973 | PARSE_FLAG_ACCEPT_STRAYS;
2975 /* get next token from argument stream */
2976 t = next_argstream(nested_list, can_read_stream, &ws_str);
2977 if (t != '(') {
2978 /* not a macro substitution after all, restore the
2979 * macro token plus all whitespace we've read.
2980 * whitespace is intentionally not merged to preserve
2981 * newlines. */
2982 parse_flags = saved_parse_flags;
2983 tok_str_add(tok_str, tok);
2984 if (parse_flags & PARSE_FLAG_SPACES) {
2985 int i;
2986 for (i = 0; i < ws_str.len; i++)
2987 tok_str_add(tok_str, ws_str.str[i]);
2989 tok_str_free(ws_str.str);
2990 return 0;
2991 } else {
2992 tok_str_free(ws_str.str);
2994 next_nomacro(); /* eat '(' */
2996 /* argument macro */
2997 args = NULL;
2998 sa = s->next;
2999 /* NOTE: empty args are allowed, except if no args */
3000 for(;;) {
3001 do {
3002 next_argstream(nested_list, can_read_stream, NULL);
3003 } while (is_space(tok) || TOK_LINEFEED == tok);
3004 empty_arg:
3005 /* handle '()' case */
3006 if (!args && !sa && tok == ')')
3007 break;
3008 if (!sa)
3009 tcc_error("macro '%s' used with too many args",
3010 get_tok_str(s->v, 0));
3011 tok_str_new(&str);
3012 parlevel = spc = 0;
3013 /* NOTE: non zero sa->t indicates VA_ARGS */
3014 while ((parlevel > 0 ||
3015 (tok != ')' &&
3016 (tok != ',' || sa->type.t)))) {
3017 if (tok == TOK_EOF || tok == 0)
3018 break;
3019 if (tok == '(')
3020 parlevel++;
3021 else if (tok == ')')
3022 parlevel--;
3023 if (tok == TOK_LINEFEED)
3024 tok = ' ';
3025 if (!check_space(tok, &spc))
3026 tok_str_add2(&str, tok, &tokc);
3027 next_argstream(nested_list, can_read_stream, NULL);
3029 if (parlevel)
3030 expect(")");
3031 str.len -= spc;
3032 tok_str_add(&str, 0);
3033 sa1 = sym_push2(&args, sa->v & ~SYM_FIELD, sa->type.t, 0);
3034 sa1->d = str.str;
3035 sa = sa->next;
3036 if (tok == ')') {
3037 /* special case for gcc var args: add an empty
3038 var arg argument if it is omitted */
3039 if (sa && sa->type.t && gnu_ext)
3040 goto empty_arg;
3041 break;
3043 if (tok != ',')
3044 expect(",");
3046 if (sa) {
3047 tcc_error("macro '%s' used with too few args",
3048 get_tok_str(s->v, 0));
3051 parse_flags = saved_parse_flags;
3053 /* now subst each arg */
3054 mstr = macro_arg_subst(nested_list, mstr, args);
3055 /* free memory */
3056 sa = args;
3057 while (sa) {
3058 sa1 = sa->prev;
3059 tok_str_free(sa->d);
3060 sym_free(sa);
3061 sa = sa1;
3065 sym_push2(nested_list, s->v, 0, 0);
3066 parse_flags = saved_parse_flags;
3067 macro_subst(tok_str, nested_list, mstr, can_read_stream);
3069 /* pop nested defined symbol */
3070 sa1 = *nested_list;
3071 *nested_list = sa1->prev;
3072 sym_free(sa1);
3073 if (mstr != s->d)
3074 tok_str_free(mstr);
3076 return 0;
3079 int paste_tokens(int t1, CValue *v1, int t2, CValue *v2)
3081 CString cstr;
3082 int n;
3084 cstr_new(&cstr);
3085 if (t1 != TOK_PLCHLDR)
3086 cstr_cat(&cstr, get_tok_str(t1, v1));
3087 n = cstr.size;
3088 if (t2 != TOK_PLCHLDR)
3089 cstr_cat(&cstr, get_tok_str(t2, v2));
3090 cstr_ccat(&cstr, '\0');
3092 tcc_open_bf(tcc_state, ":paste:", cstr.size);
3093 memcpy(file->buffer, cstr.data, cstr.size);
3094 for (;;) {
3095 next_nomacro1();
3096 if (0 == *file->buf_ptr)
3097 break;
3098 if (is_space(tok))
3099 continue;
3100 tcc_warning("pasting <%.*s> and <%s> does not give a valid preprocessing token",
3101 n, cstr.data, (char*)cstr.data + n);
3102 break;
3104 tcc_close();
3106 //printf("paste <%s>\n", (char*)cstr.data);
3107 cstr_free(&cstr);
3108 return 0;
3111 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
3112 return the resulting string (which must be freed). */
3113 static inline int *macro_twosharps(const int *ptr0)
3115 int t;
3116 CValue cval;
3117 TokenString macro_str1;
3118 int start_of_nosubsts = -1;
3119 const int *ptr;
3121 /* we search the first '##' */
3122 for (ptr = ptr0;;) {
3123 TOK_GET(&t, &ptr, &cval);
3124 if (t == TOK_TWOSHARPS)
3125 break;
3126 if (t == 0)
3127 return NULL;
3130 tok_str_new(&macro_str1);
3132 //tok_print(" $$$", ptr0);
3133 for (ptr = ptr0;;) {
3134 TOK_GET(&t, &ptr, &cval);
3135 if (t == 0)
3136 break;
3137 if (t == TOK_TWOSHARPS)
3138 continue;
3139 while (*ptr == TOK_TWOSHARPS) {
3140 int t1; CValue cv1;
3141 /* given 'a##b', remove nosubsts preceding 'a' */
3142 if (start_of_nosubsts >= 0)
3143 macro_str1.len = start_of_nosubsts;
3144 /* given 'a##b', remove nosubsts preceding 'b' */
3145 while ((t1 = *++ptr) == TOK_NOSUBST)
3147 if (t1 && t1 != TOK_TWOSHARPS
3148 && t1 != ':') /* 'a##:' don't build a new token */
3150 TOK_GET(&t1, &ptr, &cv1);
3151 if (t != TOK_PLCHLDR || t1 != TOK_PLCHLDR) {
3152 paste_tokens(t, &cval, t1, &cv1);
3153 t = tok, cval = tokc;
3157 if (t == TOK_NOSUBST) {
3158 if (start_of_nosubsts < 0)
3159 start_of_nosubsts = macro_str1.len;
3160 } else {
3161 start_of_nosubsts = -1;
3163 tok_str_add2(&macro_str1, t, &cval);
3165 tok_str_add(&macro_str1, 0);
3166 //tok_print(" ###", macro_str1.str);
3167 return macro_str1.str;
3170 /* do macro substitution of macro_str and add result to
3171 (tok_str,tok_len). 'nested_list' is the list of all macros we got
3172 inside to avoid recursing. */
3173 static void macro_subst(
3174 TokenString *tok_str,
3175 Sym **nested_list,
3176 const int *macro_str,
3177 int can_read_stream
3180 Sym *s;
3181 const int *ptr;
3182 int t, spc, nosubst;
3183 CValue cval;
3184 int *macro_str1 = NULL;
3186 /* first scan for '##' operator handling */
3187 ptr = macro_str;
3188 spc = nosubst = 0;
3190 /* first scan for '##' operator handling */
3191 if (can_read_stream) {
3192 macro_str1 = macro_twosharps(ptr);
3193 if (macro_str1)
3194 ptr = macro_str1;
3197 while (1) {
3198 TOK_GET(&t, &ptr, &cval);
3199 if (t == 0)
3200 break;
3202 if (t >= TOK_IDENT && 0 == nosubst) {
3203 s = define_find(t);
3204 if (s == NULL)
3205 goto no_subst;
3207 /* if nested substitution, do nothing */
3208 if (sym_find2(*nested_list, t)) {
3209 /* and mark it as TOK_NOSUBST, so it doesn't get subst'd again */
3210 tok_str_add2(tok_str, TOK_NOSUBST, NULL);
3211 goto no_subst;
3215 TokenString str;
3216 str.str = (int*)ptr;
3217 begin_macro(&str, 2);
3219 tok = t;
3220 macro_subst_tok(tok_str, nested_list, s, can_read_stream);
3222 if (str.alloc == 3) {
3223 /* already finished by reading function macro arguments */
3224 break;
3227 ptr = macro_ptr;
3228 end_macro ();
3231 spc = (tok_str->len &&
3232 is_space(tok_last(tok_str->str,
3233 tok_str->str + tok_str->len)));
3235 } else {
3237 if (t == '\\' && !(parse_flags & PARSE_FLAG_ACCEPT_STRAYS))
3238 tcc_error("stray '\\' in program");
3240 no_subst:
3241 if (!check_space(t, &spc))
3242 tok_str_add2(tok_str, t, &cval);
3243 nosubst = 0;
3244 if (t == TOK_NOSUBST)
3245 nosubst = 1;
3248 if (macro_str1)
3249 tok_str_free(macro_str1);
3253 /* return next token with macro substitution */
3254 ST_FUNC void next(void)
3256 redo:
3257 if (parse_flags & PARSE_FLAG_SPACES)
3258 next_nomacro_spc();
3259 else
3260 next_nomacro();
3262 if (macro_ptr) {
3263 if (tok == TOK_NOSUBST || tok == TOK_PLCHLDR) {
3264 /* discard preprocessor markers */
3265 goto redo;
3266 } else if (tok == 0) {
3267 /* end of macro or unget token string */
3268 end_macro();
3269 goto redo;
3271 } else if (tok >= TOK_IDENT && (parse_flags & PARSE_FLAG_PREPROCESS)) {
3272 Sym *s;
3273 /* if reading from file, try to substitute macros */
3274 s = define_find(tok);
3275 if (s) {
3276 static TokenString str; /* using static string for speed */
3277 Sym *nested_list = NULL;
3278 tok_str_new(&str);
3279 nested_list = NULL;
3280 macro_subst_tok(&str, &nested_list, s, 1);
3281 tok_str_add(&str, 0);
3282 begin_macro(&str, 0);
3283 goto redo;
3286 /* convert preprocessor tokens into C tokens */
3287 if (tok == TOK_PPNUM) {
3288 if (parse_flags & PARSE_FLAG_TOK_NUM)
3289 parse_number((char *)tokc.cstr->data);
3290 } else if (tok == TOK_PPSTR) {
3291 if (parse_flags & PARSE_FLAG_TOK_STR)
3292 parse_string((char *)tokc.cstr->data, tokc.cstr->size - 1);
3296 /* push back current token and set current token to 'last_tok'. Only
3297 identifier case handled for labels. */
3298 ST_INLN void unget_tok(int last_tok)
3300 TokenString *str = tcc_malloc(sizeof *str);
3301 tok_str_new(str);
3302 tok_str_add2(str, tok, &tokc);
3303 tok_str_add(str, 0);
3304 begin_macro(str, 1);
3305 tok = last_tok;
3308 /* better than nothing, but needs extension to handle '-E' option
3309 correctly too */
3310 ST_FUNC void preprocess_init(TCCState *s1)
3312 s1->include_stack_ptr = s1->include_stack;
3313 /* XXX: move that before to avoid having to initialize
3314 file->ifdef_stack_ptr ? */
3315 s1->ifdef_stack_ptr = s1->ifdef_stack;
3316 file->ifdef_stack_ptr = s1->ifdef_stack_ptr;
3318 pvtop = vtop = vstack - 1;
3319 s1->pack_stack[0] = 0;
3320 s1->pack_stack_ptr = s1->pack_stack;
3322 isidnum_table['$' - CH_EOF] =
3323 tcc_state->dollars_in_identifiers ? IS_ID : 0;
3326 ST_FUNC void preprocess_new(void)
3328 int i, c;
3329 const char *p, *r;
3331 /* init isid table */
3332 for(i = CH_EOF; i<256; i++)
3333 isidnum_table[i - CH_EOF]
3334 = is_space(i) ? IS_SPC
3335 : isid(i) ? IS_ID
3336 : isnum(i) ? IS_NUM
3337 : 0;
3339 memset(hash_ident, 0, TOK_HASH_SIZE * sizeof(TokenSym *));
3341 tok_ident = TOK_IDENT;
3342 p = tcc_keywords;
3343 while (*p) {
3344 r = p;
3345 for(;;) {
3346 c = *r++;
3347 if (c == '\0')
3348 break;
3350 tok_alloc(p, r - p - 1);
3351 p = r;
3355 ST_FUNC void preprocess_delete(void)
3357 int i, n;
3359 /* free -D and compiler defines */
3360 free_defines(NULL);
3362 /* cleanup from error/setjmp */
3363 while (macro_stack)
3364 end_macro();
3365 macro_ptr = NULL;
3367 /* free tokens */
3368 n = tok_ident - TOK_IDENT;
3369 for(i = 0; i < n; i++)
3370 tcc_free(table_ident[i]);
3371 tcc_free(table_ident);
3372 table_ident = NULL;
3375 /* Preprocess the current file */
3376 ST_FUNC int tcc_preprocess(TCCState *s1)
3378 BufferedFile **iptr;
3379 int token_seen, spcs, level;
3381 preprocess_init(s1);
3382 ch = file->buf_ptr[0];
3383 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
3384 parse_flags = PARSE_FLAG_PREPROCESS
3385 | (parse_flags & PARSE_FLAG_ASM_FILE)
3386 | PARSE_FLAG_LINEFEED
3387 | PARSE_FLAG_SPACES
3388 | PARSE_FLAG_ACCEPT_STRAYS
3391 #ifdef PP_BENCH
3392 do next(); while (tok != TOK_EOF); return 0;
3393 #endif
3395 token_seen = spcs = 0;
3396 pp_line(s1, file, 0);
3398 for (;;) {
3399 iptr = s1->include_stack_ptr;
3400 next();
3401 if (tok == TOK_EOF)
3402 break;
3403 level = s1->include_stack_ptr - iptr;
3404 if (level) {
3405 if (level > 0)
3406 pp_line(s1, *iptr, 0);
3407 pp_line(s1, file, level);
3410 if (0 == token_seen) {
3411 if (tok == ' ') {
3412 ++spcs;
3413 continue;
3415 if (tok == TOK_LINEFEED) {
3416 spcs = 0;
3417 continue;
3419 pp_line(s1, file, 0);
3420 while (spcs)
3421 fputs(" ", s1->ppfp), --spcs;
3422 token_seen = 1;
3424 } else if (tok == TOK_LINEFEED) {
3425 ++file->line_ref;
3426 token_seen = 0;
3429 fputs(get_tok_str(tok, &tokc), s1->ppfp);
3432 return 0;