tccpe: no debug, no stabs
[tinycc.git] / tccpp.c
blobc0c7aecc350b301ff37c70d7c0cbc0a3b63df330
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 tcc_error("'%c' expected (got \"%s\")", c, get_tok_str(tok, &tokc));
94 next();
97 ST_FUNC void expect(const char *msg)
99 tcc_error("%s expected", msg);
102 /* ------------------------------------------------------------------------- */
103 /* CString handling */
104 static void cstr_realloc(CString *cstr, int new_size)
106 int size;
107 void *data;
109 size = cstr->size_allocated;
110 if (size == 0)
111 size = 8; /* no need to allocate a too small first string */
112 while (size < new_size)
113 size = size * 2;
114 data = tcc_realloc(cstr->data_allocated, size);
115 cstr->data_allocated = data;
116 cstr->size_allocated = size;
117 cstr->data = data;
120 /* add a byte */
121 PUB_FUNC void cstr_ccat(CString *cstr, int ch)
123 int size;
124 size = cstr->size + 1;
125 if (size > cstr->size_allocated)
126 cstr_realloc(cstr, size);
127 ((unsigned char *)cstr->data)[size - 1] = ch;
128 cstr->size = size;
131 PUB_FUNC void cstr_cat(CString *cstr, const char *str)
133 int c;
134 for(;;) {
135 c = *str;
136 if (c == '\0')
137 break;
138 cstr_ccat(cstr, c);
139 str++;
143 /* add a wide char */
144 PUB_FUNC void cstr_wccat(CString *cstr, int ch)
146 int size;
147 size = cstr->size + sizeof(nwchar_t);
148 if (size > cstr->size_allocated)
149 cstr_realloc(cstr, size);
150 *(nwchar_t *)(((unsigned char *)cstr->data) + size - sizeof(nwchar_t)) = ch;
151 cstr->size = size;
154 PUB_FUNC void cstr_new(CString *cstr)
156 memset(cstr, 0, sizeof(CString));
159 /* free string and reset it to NULL */
160 PUB_FUNC void cstr_free(CString *cstr)
162 tcc_free(cstr->data_allocated);
163 cstr_new(cstr);
166 /* reset string to empty */
167 PUB_FUNC void cstr_reset(CString *cstr)
169 cstr->size = 0;
172 /* XXX: unicode ? */
173 static void add_char(CString *cstr, int c)
175 if (c == '\'' || c == '\"' || c == '\\') {
176 /* XXX: could be more precise if char or string */
177 cstr_ccat(cstr, '\\');
179 if (c >= 32 && c <= 126) {
180 cstr_ccat(cstr, c);
181 } else {
182 cstr_ccat(cstr, '\\');
183 if (c == '\n') {
184 cstr_ccat(cstr, 'n');
185 } else {
186 cstr_ccat(cstr, '0' + ((c >> 6) & 7));
187 cstr_ccat(cstr, '0' + ((c >> 3) & 7));
188 cstr_ccat(cstr, '0' + (c & 7));
193 /* ------------------------------------------------------------------------- */
194 /* allocate a new token */
195 static TokenSym *tok_alloc_new(TokenSym **pts, const char *str, int len)
197 TokenSym *ts, **ptable;
198 int i;
200 if (tok_ident >= SYM_FIRST_ANOM)
201 tcc_error("memory full");
203 /* expand token table if needed */
204 i = tok_ident - TOK_IDENT;
205 if ((i % TOK_ALLOC_INCR) == 0) {
206 ptable = tcc_realloc(table_ident, (i + TOK_ALLOC_INCR) * sizeof(TokenSym *));
207 table_ident = ptable;
210 ts = tcc_malloc(sizeof(TokenSym) + len);
211 table_ident[i] = ts;
212 ts->tok = tok_ident++;
213 ts->sym_define = NULL;
214 ts->sym_label = NULL;
215 ts->sym_struct = NULL;
216 ts->sym_identifier = NULL;
217 ts->len = len;
218 ts->hash_next = NULL;
219 memcpy(ts->str, str, len);
220 ts->str[len] = '\0';
221 *pts = ts;
222 return ts;
225 #define TOK_HASH_INIT 1
226 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
228 /* find a token and add it if not found */
229 ST_FUNC TokenSym *tok_alloc(const char *str, int len)
231 TokenSym *ts, **pts;
232 int i;
233 unsigned int h;
235 h = TOK_HASH_INIT;
236 for(i=0;i<len;i++)
237 h = TOK_HASH_FUNC(h, ((unsigned char *)str)[i]);
238 h &= (TOK_HASH_SIZE - 1);
240 pts = &hash_ident[h];
241 for(;;) {
242 ts = *pts;
243 if (!ts)
244 break;
245 if (ts->len == len && !memcmp(ts->str, str, len))
246 return ts;
247 pts = &(ts->hash_next);
249 return tok_alloc_new(pts, str, len);
252 /* XXX: buffer overflow */
253 /* XXX: float tokens */
254 ST_FUNC char *get_tok_str(int v, CValue *cv)
256 static char buf[STRING_MAX_SIZE + 1];
257 static CString cstr_buf;
258 CString *cstr;
259 char *p;
260 int i, len;
262 /* NOTE: to go faster, we give a fixed buffer for small strings */
263 cstr_reset(&cstr_buf);
264 cstr_buf.data = buf;
265 cstr_buf.size_allocated = sizeof(buf);
266 p = buf;
268 switch(v) {
269 case TOK_CINT:
270 case TOK_CUINT:
271 /* XXX: not quite exact, but only useful for testing */
272 sprintf(p, "%u", cv->ui);
273 break;
274 case TOK_CLLONG:
275 case TOK_CULLONG:
276 /* XXX: not quite exact, but only useful for testing */
277 #ifdef _WIN32
278 sprintf(p, "%u", (unsigned)cv->ull);
279 #else
280 sprintf(p, "%Lu", cv->ull);
281 #endif
282 break;
283 case TOK_LCHAR:
284 cstr_ccat(&cstr_buf, 'L');
285 case TOK_CCHAR:
286 cstr_ccat(&cstr_buf, '\'');
287 add_char(&cstr_buf, cv->i);
288 cstr_ccat(&cstr_buf, '\'');
289 cstr_ccat(&cstr_buf, '\0');
290 break;
291 case TOK_PPNUM:
292 cstr = cv->cstr;
293 len = cstr->size - 1;
294 for(i=0;i<len;i++)
295 add_char(&cstr_buf, ((unsigned char *)cstr->data)[i]);
296 cstr_ccat(&cstr_buf, '\0');
297 break;
298 case TOK_LSTR:
299 cstr_ccat(&cstr_buf, 'L');
300 case TOK_STR:
301 cstr = cv->cstr;
302 cstr_ccat(&cstr_buf, '\"');
303 if (v == TOK_STR) {
304 len = cstr->size - 1;
305 for(i=0;i<len;i++)
306 add_char(&cstr_buf, ((unsigned char *)cstr->data)[i]);
307 } else {
308 len = (cstr->size / sizeof(nwchar_t)) - 1;
309 for(i=0;i<len;i++)
310 add_char(&cstr_buf, ((nwchar_t *)cstr->data)[i]);
312 cstr_ccat(&cstr_buf, '\"');
313 cstr_ccat(&cstr_buf, '\0');
314 break;
315 case TOK_LT:
316 v = '<';
317 goto addv;
318 case TOK_GT:
319 v = '>';
320 goto addv;
321 case TOK_DOTS:
322 return strcpy(p, "...");
323 case TOK_A_SHL:
324 return strcpy(p, "<<=");
325 case TOK_A_SAR:
326 return strcpy(p, ">>=");
327 default:
328 if (v < TOK_IDENT) {
329 /* search in two bytes table */
330 const unsigned char *q = tok_two_chars;
331 while (*q) {
332 if (q[2] == v) {
333 *p++ = q[0];
334 *p++ = q[1];
335 *p = '\0';
336 return buf;
338 q += 3;
340 addv:
341 *p++ = v;
342 *p = '\0';
343 } else if (v < tok_ident) {
344 return table_ident[v - TOK_IDENT]->str;
345 } else if (v >= SYM_FIRST_ANOM) {
346 /* special name for anonymous symbol */
347 sprintf(p, "L.%u", v - SYM_FIRST_ANOM);
348 } else {
349 /* should never happen */
350 return NULL;
352 break;
354 return cstr_buf.data;
357 /* fill input buffer and peek next char */
358 static int tcc_peekc_slow(BufferedFile *bf)
360 int len;
361 /* only tries to read if really end of buffer */
362 if (bf->buf_ptr >= bf->buf_end) {
363 if (bf->fd != -1) {
364 #if defined(PARSE_DEBUG)
365 len = 8;
366 #else
367 len = IO_BUF_SIZE;
368 #endif
369 len = read(bf->fd, bf->buffer, len);
370 if (len < 0)
371 len = 0;
372 } else {
373 len = 0;
375 total_bytes += len;
376 bf->buf_ptr = bf->buffer;
377 bf->buf_end = bf->buffer + len;
378 *bf->buf_end = CH_EOB;
380 if (bf->buf_ptr < bf->buf_end) {
381 return bf->buf_ptr[0];
382 } else {
383 bf->buf_ptr = bf->buf_end;
384 return CH_EOF;
388 /* return the current character, handling end of block if necessary
389 (but not stray) */
390 ST_FUNC int handle_eob(void)
392 return tcc_peekc_slow(file);
395 /* read next char from current input file and handle end of input buffer */
396 ST_INLN void inp(void)
398 ch = *(++(file->buf_ptr));
399 /* end of buffer/file handling */
400 if (ch == CH_EOB)
401 ch = handle_eob();
404 /* handle '\[\r]\n' */
405 static int handle_stray_noerror(void)
407 while (ch == '\\') {
408 inp();
409 if (ch == '\n') {
410 file->line_num++;
411 inp();
412 } else if (ch == '\r') {
413 inp();
414 if (ch != '\n')
415 goto fail;
416 file->line_num++;
417 inp();
418 } else {
419 fail:
420 return 1;
423 return 0;
426 static void handle_stray(void)
428 if (handle_stray_noerror())
429 tcc_error("stray '\\' in program");
432 /* skip the stray and handle the \\n case. Output an error if
433 incorrect char after the stray */
434 static int handle_stray1(uint8_t *p)
436 int c;
438 if (p >= file->buf_end) {
439 file->buf_ptr = p;
440 c = handle_eob();
441 p = file->buf_ptr;
442 if (c == '\\')
443 goto parse_stray;
444 } else {
445 parse_stray:
446 file->buf_ptr = p;
447 ch = *p;
448 handle_stray();
449 p = file->buf_ptr;
450 c = *p;
452 return c;
455 /* handle just the EOB case, but not stray */
456 #define PEEKC_EOB(c, p)\
458 p++;\
459 c = *p;\
460 if (c == '\\') {\
461 file->buf_ptr = p;\
462 c = handle_eob();\
463 p = file->buf_ptr;\
467 /* handle the complicated stray case */
468 #define PEEKC(c, p)\
470 p++;\
471 c = *p;\
472 if (c == '\\') {\
473 c = handle_stray1(p);\
474 p = file->buf_ptr;\
478 /* input with '\[\r]\n' handling. Note that this function cannot
479 handle other characters after '\', so you cannot call it inside
480 strings or comments */
481 ST_FUNC void minp(void)
483 inp();
484 if (ch == '\\')
485 handle_stray();
489 /* single line C++ comments */
490 static uint8_t *parse_line_comment(uint8_t *p)
492 int c;
494 p++;
495 for(;;) {
496 c = *p;
497 redo:
498 if (c == '\n' || c == CH_EOF) {
499 break;
500 } else if (c == '\\') {
501 file->buf_ptr = p;
502 c = handle_eob();
503 p = file->buf_ptr;
504 if (c == '\\') {
505 PEEKC_EOB(c, p);
506 if (c == '\n') {
507 file->line_num++;
508 PEEKC_EOB(c, p);
509 } else if (c == '\r') {
510 PEEKC_EOB(c, p);
511 if (c == '\n') {
512 file->line_num++;
513 PEEKC_EOB(c, p);
516 } else {
517 goto redo;
519 } else {
520 p++;
523 return p;
526 /* C comments */
527 ST_FUNC uint8_t *parse_comment(uint8_t *p)
529 int c;
531 p++;
532 for(;;) {
533 /* fast skip loop */
534 for(;;) {
535 c = *p;
536 if (c == '\n' || c == '*' || c == '\\')
537 break;
538 p++;
539 c = *p;
540 if (c == '\n' || c == '*' || c == '\\')
541 break;
542 p++;
544 /* now we can handle all the cases */
545 if (c == '\n') {
546 file->line_num++;
547 p++;
548 } else if (c == '*') {
549 p++;
550 for(;;) {
551 c = *p;
552 if (c == '*') {
553 p++;
554 } else if (c == '/') {
555 goto end_of_comment;
556 } else if (c == '\\') {
557 file->buf_ptr = p;
558 c = handle_eob();
559 p = file->buf_ptr;
560 if (c == '\\') {
561 /* skip '\[\r]\n', otherwise just skip the stray */
562 while (c == '\\') {
563 PEEKC_EOB(c, p);
564 if (c == '\n') {
565 file->line_num++;
566 PEEKC_EOB(c, p);
567 } else if (c == '\r') {
568 PEEKC_EOB(c, p);
569 if (c == '\n') {
570 file->line_num++;
571 PEEKC_EOB(c, p);
573 } else {
574 goto after_star;
578 } else {
579 break;
582 after_star: ;
583 } else {
584 /* stray, eob or eof */
585 file->buf_ptr = p;
586 c = handle_eob();
587 p = file->buf_ptr;
588 if (c == CH_EOF) {
589 tcc_error("unexpected end of file in comment");
590 } else if (c == '\\') {
591 p++;
595 end_of_comment:
596 p++;
597 return p;
600 #define cinp minp
602 static inline void skip_spaces(void)
604 while (is_space(ch))
605 cinp();
608 static inline int check_space(int t, int *spc)
610 if (is_space(t)) {
611 if (*spc)
612 return 1;
613 *spc = 1;
614 } else
615 *spc = 0;
616 return 0;
619 /* parse a string without interpreting escapes */
620 static uint8_t *parse_pp_string(uint8_t *p,
621 int sep, CString *str)
623 int c;
624 p++;
625 for(;;) {
626 c = *p;
627 if (c == sep) {
628 break;
629 } else if (c == '\\') {
630 file->buf_ptr = p;
631 c = handle_eob();
632 p = file->buf_ptr;
633 if (c == CH_EOF) {
634 unterminated_string:
635 /* XXX: indicate line number of start of string */
636 tcc_error("missing terminating %c character", sep);
637 } else if (c == '\\') {
638 /* escape : just skip \[\r]\n */
639 PEEKC_EOB(c, p);
640 if (c == '\n') {
641 file->line_num++;
642 p++;
643 } else if (c == '\r') {
644 PEEKC_EOB(c, p);
645 if (c != '\n')
646 expect("'\n' after '\r'");
647 file->line_num++;
648 p++;
649 } else if (c == CH_EOF) {
650 goto unterminated_string;
651 } else {
652 if (str) {
653 cstr_ccat(str, '\\');
654 cstr_ccat(str, c);
656 p++;
659 } else if (c == '\n') {
660 file->line_num++;
661 goto add_char;
662 } else if (c == '\r') {
663 PEEKC_EOB(c, p);
664 if (c != '\n') {
665 if (str)
666 cstr_ccat(str, '\r');
667 } else {
668 file->line_num++;
669 goto add_char;
671 } else {
672 add_char:
673 if (str)
674 cstr_ccat(str, c);
675 p++;
678 p++;
679 return p;
682 /* skip block of text until #else, #elif or #endif. skip also pairs of
683 #if/#endif */
684 static void preprocess_skip(void)
686 int a, start_of_line, c, in_warn_or_error;
687 uint8_t *p;
689 p = file->buf_ptr;
690 a = 0;
691 redo_start:
692 start_of_line = 1;
693 in_warn_or_error = 0;
694 for(;;) {
695 redo_no_start:
696 c = *p;
697 switch(c) {
698 case ' ':
699 case '\t':
700 case '\f':
701 case '\v':
702 case '\r':
703 p++;
704 goto redo_no_start;
705 case '\n':
706 file->line_num++;
707 p++;
708 goto redo_start;
709 case '\\':
710 file->buf_ptr = p;
711 c = handle_eob();
712 if (c == CH_EOF) {
713 expect("#endif");
714 } else if (c == '\\') {
715 ch = file->buf_ptr[0];
716 handle_stray_noerror();
718 p = file->buf_ptr;
719 goto redo_no_start;
720 /* skip strings */
721 case '\"':
722 case '\'':
723 if (in_warn_or_error)
724 goto _default;
725 p = parse_pp_string(p, c, NULL);
726 break;
727 /* skip comments */
728 case '/':
729 if (in_warn_or_error)
730 goto _default;
731 file->buf_ptr = p;
732 ch = *p;
733 minp();
734 p = file->buf_ptr;
735 if (ch == '*') {
736 p = parse_comment(p);
737 } else if (ch == '/') {
738 p = parse_line_comment(p);
740 break;
741 case '#':
742 p++;
743 if (start_of_line) {
744 file->buf_ptr = p;
745 next_nomacro();
746 p = file->buf_ptr;
747 if (a == 0 &&
748 (tok == TOK_ELSE || tok == TOK_ELIF || tok == TOK_ENDIF))
749 goto the_end;
750 if (tok == TOK_IF || tok == TOK_IFDEF || tok == TOK_IFNDEF)
751 a++;
752 else if (tok == TOK_ENDIF)
753 a--;
754 else if( tok == TOK_ERROR || tok == TOK_WARNING)
755 in_warn_or_error = 1;
756 else if (tok == TOK_LINEFEED)
757 goto redo_start;
759 break;
760 _default:
761 default:
762 p++;
763 break;
765 start_of_line = 0;
767 the_end: ;
768 file->buf_ptr = p;
771 /* ParseState handling */
773 /* XXX: currently, no include file info is stored. Thus, we cannot display
774 accurate messages if the function or data definition spans multiple
775 files */
777 /* save current parse state in 's' */
778 ST_FUNC void save_parse_state(ParseState *s)
780 s->line_num = file->line_num;
781 s->macro_ptr = macro_ptr;
782 s->tok = tok;
783 s->tokc = tokc;
786 /* restore parse state from 's' */
787 ST_FUNC void restore_parse_state(ParseState *s)
789 file->line_num = s->line_num;
790 macro_ptr = s->macro_ptr;
791 tok = s->tok;
792 tokc = s->tokc;
795 /* return the number of additional 'ints' necessary to store the
796 token */
797 static inline int tok_ext_size(int t)
799 switch(t) {
800 /* 4 bytes */
801 case TOK_CINT:
802 case TOK_CUINT:
803 case TOK_CCHAR:
804 case TOK_LCHAR:
805 case TOK_CFLOAT:
806 case TOK_LINENUM:
807 return 1;
808 case TOK_STR:
809 case TOK_LSTR:
810 case TOK_PPNUM:
811 tcc_error("unsupported token");
812 return 1;
813 case TOK_CDOUBLE:
814 case TOK_CLLONG:
815 case TOK_CULLONG:
816 return 2;
817 case TOK_CLDOUBLE:
818 return LDOUBLE_SIZE / 4;
819 default:
820 return 0;
824 /* token string handling */
826 ST_INLN void tok_str_new(TokenString *s)
828 s->str = NULL;
829 s->len = 0;
830 s->allocated_len = 0;
831 s->last_line_num = -1;
834 ST_FUNC void tok_str_free(int *str)
836 tcc_free(str);
839 static int *tok_str_realloc(TokenString *s)
841 int *str, len;
843 if (s->allocated_len == 0) {
844 len = 8;
845 } else {
846 len = s->allocated_len * 2;
848 str = tcc_realloc(s->str, len * sizeof(int));
849 s->allocated_len = len;
850 s->str = str;
851 return str;
854 ST_FUNC void tok_str_add(TokenString *s, int t)
856 int len, *str;
858 len = s->len;
859 str = s->str;
860 if (len >= s->allocated_len)
861 str = tok_str_realloc(s);
862 str[len++] = t;
863 s->len = len;
866 static void tok_str_add2(TokenString *s, int t, CValue *cv)
868 int len, *str;
870 len = s->len;
871 str = s->str;
873 /* allocate space for worst case */
874 if (len + TOK_MAX_SIZE > s->allocated_len)
875 str = tok_str_realloc(s);
876 str[len++] = t;
877 switch(t) {
878 case TOK_CINT:
879 case TOK_CUINT:
880 case TOK_CCHAR:
881 case TOK_LCHAR:
882 case TOK_CFLOAT:
883 case TOK_LINENUM:
884 str[len++] = cv->tab[0];
885 break;
886 case TOK_PPNUM:
887 case TOK_STR:
888 case TOK_LSTR:
890 int nb_words;
891 CString *cstr;
893 nb_words = (sizeof(CString) + cv->cstr->size + 3) >> 2;
894 while ((len + nb_words) > s->allocated_len)
895 str = tok_str_realloc(s);
896 cstr = (CString *)(str + len);
897 cstr->data = NULL;
898 cstr->size = cv->cstr->size;
899 cstr->data_allocated = NULL;
900 cstr->size_allocated = cstr->size;
901 memcpy((char *)cstr + sizeof(CString),
902 cv->cstr->data, cstr->size);
903 len += nb_words;
905 break;
906 case TOK_CDOUBLE:
907 case TOK_CLLONG:
908 case TOK_CULLONG:
909 #if LDOUBLE_SIZE == 8
910 case TOK_CLDOUBLE:
911 #endif
912 str[len++] = cv->tab[0];
913 str[len++] = cv->tab[1];
914 break;
915 #if LDOUBLE_SIZE == 12
916 case TOK_CLDOUBLE:
917 str[len++] = cv->tab[0];
918 str[len++] = cv->tab[1];
919 str[len++] = cv->tab[2];
920 #elif LDOUBLE_SIZE == 16
921 case TOK_CLDOUBLE:
922 str[len++] = cv->tab[0];
923 str[len++] = cv->tab[1];
924 str[len++] = cv->tab[2];
925 str[len++] = cv->tab[3];
926 #elif LDOUBLE_SIZE != 8
927 #error add long double size support
928 #endif
929 break;
930 default:
931 break;
933 s->len = len;
936 /* add the current parse token in token string 's' */
937 ST_FUNC void tok_str_add_tok(TokenString *s)
939 CValue cval;
941 /* save line number info */
942 if (file->line_num != s->last_line_num) {
943 s->last_line_num = file->line_num;
944 cval.i = s->last_line_num;
945 tok_str_add2(s, TOK_LINENUM, &cval);
947 tok_str_add2(s, tok, &tokc);
950 /* get a token from an integer array and increment pointer
951 accordingly. we code it as a macro to avoid pointer aliasing. */
952 static inline void TOK_GET(int *t, const int **pp, CValue *cv)
954 const int *p = *pp;
955 int n, *tab;
957 tab = cv->tab;
958 switch(*t = *p++) {
959 case TOK_CINT:
960 case TOK_CUINT:
961 case TOK_CCHAR:
962 case TOK_LCHAR:
963 case TOK_CFLOAT:
964 case TOK_LINENUM:
965 tab[0] = *p++;
966 break;
967 case TOK_STR:
968 case TOK_LSTR:
969 case TOK_PPNUM:
970 cv->cstr = (CString *)p;
971 cv->cstr->data = (char *)p + sizeof(CString);
972 p += (sizeof(CString) + cv->cstr->size + 3) >> 2;
973 break;
974 case TOK_CDOUBLE:
975 case TOK_CLLONG:
976 case TOK_CULLONG:
977 n = 2;
978 goto copy;
979 case TOK_CLDOUBLE:
980 #if LDOUBLE_SIZE == 16
981 n = 4;
982 #elif LDOUBLE_SIZE == 12
983 n = 3;
984 #elif LDOUBLE_SIZE == 8
985 n = 2;
986 #else
987 # error add long double size support
988 #endif
989 copy:
991 *tab++ = *p++;
992 while (--n);
993 break;
994 default:
995 break;
997 *pp = p;
1000 static int macro_is_equal(const int *a, const int *b)
1002 char buf[STRING_MAX_SIZE + 1];
1003 CValue cv;
1004 int t;
1005 while (*a && *b) {
1006 TOK_GET(&t, &a, &cv);
1007 pstrcpy(buf, sizeof buf, get_tok_str(t, &cv));
1008 TOK_GET(&t, &b, &cv);
1009 if (strcmp(buf, get_tok_str(t, &cv)))
1010 return 0;
1012 return !(*a || *b);
1015 /* defines handling */
1016 ST_INLN void define_push(int v, int macro_type, int *str, Sym *first_arg)
1018 Sym *s;
1020 s = define_find(v);
1021 if (s && !macro_is_equal(s->d, str))
1022 tcc_warning("%s redefined", get_tok_str(v, NULL));
1024 s = sym_push2(&define_stack, v, macro_type, 0);
1025 s->d = str;
1026 s->next = first_arg;
1027 table_ident[v - TOK_IDENT]->sym_define = s;
1030 /* undefined a define symbol. Its name is just set to zero */
1031 ST_FUNC void define_undef(Sym *s)
1033 int v;
1034 v = s->v;
1035 if (v >= TOK_IDENT && v < tok_ident)
1036 table_ident[v - TOK_IDENT]->sym_define = NULL;
1037 s->v = 0;
1040 ST_INLN Sym *define_find(int v)
1042 v -= TOK_IDENT;
1043 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
1044 return NULL;
1045 return table_ident[v]->sym_define;
1048 /* free define stack until top reaches 'b' */
1049 ST_FUNC void free_defines(Sym *b)
1051 Sym *top, *top1;
1052 int v;
1054 top = define_stack;
1055 while (top != b) {
1056 top1 = top->prev;
1057 /* do not free args or predefined defines */
1058 if (top->d)
1059 tok_str_free(top->d);
1060 v = top->v;
1061 if (v >= TOK_IDENT && v < tok_ident)
1062 table_ident[v - TOK_IDENT]->sym_define = NULL;
1063 sym_free(top);
1064 top = top1;
1066 define_stack = b;
1069 /* label lookup */
1070 ST_FUNC Sym *label_find(int v)
1072 v -= TOK_IDENT;
1073 if ((unsigned)v >= (unsigned)(tok_ident - TOK_IDENT))
1074 return NULL;
1075 return table_ident[v]->sym_label;
1078 ST_FUNC Sym *label_push(Sym **ptop, int v, int flags)
1080 Sym *s, **ps;
1081 s = sym_push2(ptop, v, 0, 0);
1082 s->r = flags;
1083 ps = &table_ident[v - TOK_IDENT]->sym_label;
1084 if (ptop == &global_label_stack) {
1085 /* modify the top most local identifier, so that
1086 sym_identifier will point to 's' when popped */
1087 while (*ps != NULL)
1088 ps = &(*ps)->prev_tok;
1090 s->prev_tok = *ps;
1091 *ps = s;
1092 return s;
1095 /* pop labels until element last is reached. Look if any labels are
1096 undefined. Define symbols if '&&label' was used. */
1097 ST_FUNC void label_pop(Sym **ptop, Sym *slast)
1099 Sym *s, *s1;
1100 for(s = *ptop; s != slast; s = s1) {
1101 s1 = s->prev;
1102 if (s->r == LABEL_DECLARED) {
1103 tcc_warning("label '%s' declared but not used", get_tok_str(s->v, NULL));
1104 } else if (s->r == LABEL_FORWARD) {
1105 tcc_error("label '%s' used but not defined",
1106 get_tok_str(s->v, NULL));
1107 } else {
1108 if (s->c) {
1109 /* define corresponding symbol. A size of
1110 1 is put. */
1111 put_extern_sym(s, cur_text_section, s->jnext, 1);
1114 /* remove label */
1115 table_ident[s->v - TOK_IDENT]->sym_label = s->prev_tok;
1116 sym_free(s);
1118 *ptop = slast;
1121 /* eval an expression for #if/#elif */
1122 static int expr_preprocess(void)
1124 int c, t;
1125 TokenString str;
1127 tok_str_new(&str);
1128 while (tok != TOK_LINEFEED && tok != TOK_EOF) {
1129 next(); /* do macro subst */
1130 if (tok == TOK_DEFINED) {
1131 next_nomacro();
1132 t = tok;
1133 if (t == '(')
1134 next_nomacro();
1135 c = define_find(tok) != 0;
1136 if (t == '(')
1137 next_nomacro();
1138 tok = TOK_CINT;
1139 tokc.i = c;
1140 } else if (tok >= TOK_IDENT) {
1141 /* if undefined macro */
1142 tok = TOK_CINT;
1143 tokc.i = 0;
1145 tok_str_add_tok(&str);
1147 tok_str_add(&str, -1); /* simulate end of file */
1148 tok_str_add(&str, 0);
1149 /* now evaluate C constant expression */
1150 macro_ptr = str.str;
1151 next();
1152 c = expr_const();
1153 macro_ptr = NULL;
1154 tok_str_free(str.str);
1155 return c != 0;
1158 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
1159 static void tok_print(int *str)
1161 int t;
1162 CValue cval;
1164 printf("<");
1165 while (1) {
1166 TOK_GET(&t, &str, &cval);
1167 if (!t)
1168 break;
1169 printf("%s", get_tok_str(t, &cval));
1171 printf(">\n");
1173 #endif
1175 /* parse after #define */
1176 ST_FUNC void parse_define(void)
1178 Sym *s, *first, **ps;
1179 int v, t, varg, is_vaargs, spc;
1180 TokenString str;
1182 v = tok;
1183 if (v < TOK_IDENT)
1184 tcc_error("invalid macro name '%s'", get_tok_str(tok, &tokc));
1185 /* XXX: should check if same macro (ANSI) */
1186 first = NULL;
1187 t = MACRO_OBJ;
1188 /* '(' must be just after macro definition for MACRO_FUNC */
1189 next_nomacro_spc();
1190 if (tok == '(') {
1191 next_nomacro();
1192 ps = &first;
1193 while (tok != ')') {
1194 varg = tok;
1195 next_nomacro();
1196 is_vaargs = 0;
1197 if (varg == TOK_DOTS) {
1198 varg = TOK___VA_ARGS__;
1199 is_vaargs = 1;
1200 } else if (tok == TOK_DOTS && gnu_ext) {
1201 is_vaargs = 1;
1202 next_nomacro();
1204 if (varg < TOK_IDENT)
1205 tcc_error("badly punctuated parameter list");
1206 s = sym_push2(&define_stack, varg | SYM_FIELD, is_vaargs, 0);
1207 *ps = s;
1208 ps = &s->next;
1209 if (tok != ',')
1210 break;
1211 next_nomacro();
1213 if (tok == ')')
1214 next_nomacro_spc();
1215 t = MACRO_FUNC;
1217 tok_str_new(&str);
1218 spc = 2;
1219 /* EOF testing necessary for '-D' handling */
1220 while (tok != TOK_LINEFEED && tok != TOK_EOF) {
1221 /* remove spaces around ## and after '#' */
1222 if (TOK_TWOSHARPS == tok) {
1223 if (1 == spc)
1224 --str.len;
1225 spc = 2;
1226 } else if ('#' == tok) {
1227 spc = 2;
1228 } else if (check_space(tok, &spc)) {
1229 goto skip;
1231 tok_str_add2(&str, tok, &tokc);
1232 skip:
1233 next_nomacro_spc();
1235 if (spc == 1)
1236 --str.len; /* remove trailing space */
1237 tok_str_add(&str, 0);
1238 #ifdef PP_DEBUG
1239 printf("define %s %d: ", get_tok_str(v, NULL), t);
1240 tok_print(str.str);
1241 #endif
1242 define_push(v, t, str.str, first);
1245 static inline int hash_cached_include(const char *filename)
1247 const unsigned char *s;
1248 unsigned int h;
1250 h = TOK_HASH_INIT;
1251 s = filename;
1252 while (*s) {
1253 h = TOK_HASH_FUNC(h, *s);
1254 s++;
1256 h &= (CACHED_INCLUDES_HASH_SIZE - 1);
1257 return h;
1260 static CachedInclude *search_cached_include(TCCState *s1, const char *filename)
1262 CachedInclude *e;
1263 int i, h;
1264 h = hash_cached_include(filename);
1265 i = s1->cached_includes_hash[h];
1266 for(;;) {
1267 if (i == 0)
1268 break;
1269 e = s1->cached_includes[i - 1];
1270 if (0 == PATHCMP(e->filename, filename))
1271 return e;
1272 i = e->hash_next;
1274 return NULL;
1277 static inline void add_cached_include(TCCState *s1, const char *filename, int ifndef_macro)
1279 CachedInclude *e;
1280 int h;
1282 if (search_cached_include(s1, filename))
1283 return;
1284 #ifdef INC_DEBUG
1285 printf("adding cached '%s' %s\n", filename, get_tok_str(ifndef_macro, NULL));
1286 #endif
1287 e = tcc_malloc(sizeof(CachedInclude) + strlen(filename));
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(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 tcc_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 tcc_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 tcc_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 tcc_error("#include recursion too deep");
1432 /* store current file in stack, but increment stack later below */
1433 *s1->include_stack_ptr = file;
1435 n = s1->nb_include_paths + s1->nb_sysinclude_paths;
1436 for (i = -2; i < n; ++i) {
1437 char buf1[sizeof file->filename];
1438 CachedInclude *e;
1439 BufferedFile **f;
1440 const char *path;
1442 if (i == -2) {
1443 /* check absolute include path */
1444 if (!IS_ABSPATH(buf))
1445 continue;
1446 buf1[0] = 0;
1447 i = n; /* force end loop */
1449 } else if (i == -1) {
1450 /* search in current dir if "header.h" */
1451 if (c != '\"')
1452 continue;
1453 path = file->filename;
1454 pstrncpy(buf1, path, tcc_basename(path) - path);
1456 } else {
1457 /* search in all the include paths */
1458 if (i < s1->nb_include_paths)
1459 path = s1->include_paths[i];
1460 else
1461 path = s1->sysinclude_paths[i - s1->nb_include_paths];
1462 pstrcpy(buf1, sizeof(buf1), path);
1463 pstrcat(buf1, sizeof(buf1), "/");
1466 pstrcat(buf1, sizeof(buf1), buf);
1468 if (tok == TOK_INCLUDE_NEXT)
1469 for (f = s1->include_stack_ptr; f >= s1->include_stack; --f)
1470 if (0 == PATHCMP((*f)->filename, buf1)) {
1471 #ifdef INC_DEBUG
1472 printf("%s: #include_next skipping %s\n", file->filename, buf1);
1473 #endif
1474 goto include_trynext;
1477 e = search_cached_include(s1, buf1);
1478 if (e && define_find(e->ifndef_macro)) {
1479 /* no need to parse the include because the 'ifndef macro'
1480 is defined */
1481 #ifdef INC_DEBUG
1482 printf("%s: skipping cached %s\n", file->filename, buf1);
1483 #endif
1484 goto include_done;
1487 if (tcc_open(s1, buf1) < 0)
1488 include_trynext:
1489 continue;
1491 #ifdef INC_DEBUG
1492 printf("%s: including %s\n", file->prev->filename, file->filename);
1493 #endif
1494 /* update target deps */
1495 dynarray_add((void ***)&s1->target_deps, &s1->nb_target_deps,
1496 tcc_strdup(buf1));
1497 /* push current file in stack */
1498 ++s1->include_stack_ptr;
1499 /* add include file debug info */
1500 if (s1->do_debug)
1501 put_stabs(file->filename, N_BINCL, 0, 0, 0);
1502 tok_flags |= TOK_FLAG_BOF | TOK_FLAG_BOL;
1503 ch = file->buf_ptr[0];
1504 goto the_end;
1506 tcc_error("include file '%s' not found", buf);
1507 include_done:
1508 break;
1509 case TOK_IFNDEF:
1510 c = 1;
1511 goto do_ifdef;
1512 case TOK_IF:
1513 c = expr_preprocess();
1514 goto do_if;
1515 case TOK_IFDEF:
1516 c = 0;
1517 do_ifdef:
1518 next_nomacro();
1519 if (tok < TOK_IDENT)
1520 tcc_error("invalid argument for '#if%sdef'", c ? "n" : "");
1521 if (is_bof) {
1522 if (c) {
1523 #ifdef INC_DEBUG
1524 printf("#ifndef %s\n", get_tok_str(tok, NULL));
1525 #endif
1526 file->ifndef_macro = tok;
1529 c = (define_find(tok) != 0) ^ c;
1530 do_if:
1531 if (s1->ifdef_stack_ptr >= s1->ifdef_stack + IFDEF_STACK_SIZE)
1532 tcc_error("memory full");
1533 *s1->ifdef_stack_ptr++ = c;
1534 goto test_skip;
1535 case TOK_ELSE:
1536 if (s1->ifdef_stack_ptr == s1->ifdef_stack)
1537 tcc_error("#else without matching #if");
1538 if (s1->ifdef_stack_ptr[-1] & 2)
1539 tcc_error("#else after #else");
1540 c = (s1->ifdef_stack_ptr[-1] ^= 3);
1541 goto test_else;
1542 case TOK_ELIF:
1543 if (s1->ifdef_stack_ptr == s1->ifdef_stack)
1544 tcc_error("#elif without matching #if");
1545 c = s1->ifdef_stack_ptr[-1];
1546 if (c > 1)
1547 tcc_error("#elif after #else");
1548 /* last #if/#elif expression was true: we skip */
1549 if (c == 1)
1550 goto skip;
1551 c = expr_preprocess();
1552 s1->ifdef_stack_ptr[-1] = c;
1553 test_else:
1554 if (s1->ifdef_stack_ptr == file->ifdef_stack_ptr + 1)
1555 file->ifndef_macro = 0;
1556 test_skip:
1557 if (!(c & 1)) {
1558 skip:
1559 preprocess_skip();
1560 is_bof = 0;
1561 goto redo;
1563 break;
1564 case TOK_ENDIF:
1565 if (s1->ifdef_stack_ptr <= file->ifdef_stack_ptr)
1566 tcc_error("#endif without matching #if");
1567 s1->ifdef_stack_ptr--;
1568 /* '#ifndef macro' was at the start of file. Now we check if
1569 an '#endif' is exactly at the end of file */
1570 if (file->ifndef_macro &&
1571 s1->ifdef_stack_ptr == file->ifdef_stack_ptr) {
1572 file->ifndef_macro_saved = file->ifndef_macro;
1573 /* need to set to zero to avoid false matches if another
1574 #ifndef at middle of file */
1575 file->ifndef_macro = 0;
1576 while (tok != TOK_LINEFEED)
1577 next_nomacro();
1578 tok_flags |= TOK_FLAG_ENDIF;
1579 goto the_end;
1581 break;
1582 case TOK_LINE:
1583 next();
1584 if (tok != TOK_CINT)
1585 tcc_error("#line");
1586 file->line_num = tokc.i - 1; /* the line number will be incremented after */
1587 next();
1588 if (tok != TOK_LINEFEED) {
1589 if (tok != TOK_STR)
1590 tcc_error("#line");
1591 pstrcpy(file->filename, sizeof(file->filename),
1592 (char *)tokc.cstr->data);
1594 break;
1595 case TOK_ERROR:
1596 case TOK_WARNING:
1597 c = tok;
1598 ch = file->buf_ptr[0];
1599 skip_spaces();
1600 q = buf;
1601 while (ch != '\n' && ch != CH_EOF) {
1602 if ((q - buf) < sizeof(buf) - 1)
1603 *q++ = ch;
1604 if (ch == '\\') {
1605 if (handle_stray_noerror() == 0)
1606 --q;
1607 } else
1608 inp();
1610 *q = '\0';
1611 if (c == TOK_ERROR)
1612 tcc_error("#error %s", buf);
1613 else
1614 tcc_warning("#warning %s", buf);
1615 break;
1616 case TOK_PRAGMA:
1617 pragma_parse(s1);
1618 break;
1619 default:
1620 if (tok == TOK_LINEFEED || tok == '!' || tok == TOK_PPNUM) {
1621 /* '!' is ignored to allow C scripts. numbers are ignored
1622 to emulate cpp behaviour */
1623 } else {
1624 if (!(saved_parse_flags & PARSE_FLAG_ASM_COMMENTS))
1625 tcc_warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok, &tokc));
1626 else {
1627 /* this is a gas line comment in an 'S' file. */
1628 file->buf_ptr = parse_line_comment(file->buf_ptr);
1629 goto the_end;
1632 break;
1634 /* ignore other preprocess commands or #! for C scripts */
1635 while (tok != TOK_LINEFEED)
1636 next_nomacro();
1637 the_end:
1638 parse_flags = saved_parse_flags;
1641 /* evaluate escape codes in a string. */
1642 static void parse_escape_string(CString *outstr, const uint8_t *buf, int is_long)
1644 int c, n;
1645 const uint8_t *p;
1647 p = buf;
1648 for(;;) {
1649 c = *p;
1650 if (c == '\0')
1651 break;
1652 if (c == '\\') {
1653 p++;
1654 /* escape */
1655 c = *p;
1656 switch(c) {
1657 case '0': case '1': case '2': case '3':
1658 case '4': case '5': case '6': case '7':
1659 /* at most three octal digits */
1660 n = c - '0';
1661 p++;
1662 c = *p;
1663 if (isoct(c)) {
1664 n = n * 8 + c - '0';
1665 p++;
1666 c = *p;
1667 if (isoct(c)) {
1668 n = n * 8 + c - '0';
1669 p++;
1672 c = n;
1673 goto add_char_nonext;
1674 case 'x':
1675 case 'u':
1676 case 'U':
1677 p++;
1678 n = 0;
1679 for(;;) {
1680 c = *p;
1681 if (c >= 'a' && c <= 'f')
1682 c = c - 'a' + 10;
1683 else if (c >= 'A' && c <= 'F')
1684 c = c - 'A' + 10;
1685 else if (isnum(c))
1686 c = c - '0';
1687 else
1688 break;
1689 n = n * 16 + c;
1690 p++;
1692 c = n;
1693 goto add_char_nonext;
1694 case 'a':
1695 c = '\a';
1696 break;
1697 case 'b':
1698 c = '\b';
1699 break;
1700 case 'f':
1701 c = '\f';
1702 break;
1703 case 'n':
1704 c = '\n';
1705 break;
1706 case 'r':
1707 c = '\r';
1708 break;
1709 case 't':
1710 c = '\t';
1711 break;
1712 case 'v':
1713 c = '\v';
1714 break;
1715 case 'e':
1716 if (!gnu_ext)
1717 goto invalid_escape;
1718 c = 27;
1719 break;
1720 case '\'':
1721 case '\"':
1722 case '\\':
1723 case '?':
1724 break;
1725 default:
1726 invalid_escape:
1727 if (c >= '!' && c <= '~')
1728 tcc_warning("unknown escape sequence: \'\\%c\'", c);
1729 else
1730 tcc_warning("unknown escape sequence: \'\\x%x\'", c);
1731 break;
1734 p++;
1735 add_char_nonext:
1736 if (!is_long)
1737 cstr_ccat(outstr, c);
1738 else
1739 cstr_wccat(outstr, c);
1741 /* add a trailing '\0' */
1742 if (!is_long)
1743 cstr_ccat(outstr, '\0');
1744 else
1745 cstr_wccat(outstr, '\0');
1748 /* we use 64 bit numbers */
1749 #define BN_SIZE 2
1751 /* bn = (bn << shift) | or_val */
1752 static void bn_lshift(unsigned int *bn, int shift, int or_val)
1754 int i;
1755 unsigned int v;
1756 for(i=0;i<BN_SIZE;i++) {
1757 v = bn[i];
1758 bn[i] = (v << shift) | or_val;
1759 or_val = v >> (32 - shift);
1763 static void bn_zero(unsigned int *bn)
1765 int i;
1766 for(i=0;i<BN_SIZE;i++) {
1767 bn[i] = 0;
1771 /* parse number in null terminated string 'p' and return it in the
1772 current token */
1773 static void parse_number(const char *p)
1775 int b, t, shift, frac_bits, s, exp_val, ch;
1776 char *q;
1777 unsigned int bn[BN_SIZE];
1778 double d;
1780 /* number */
1781 q = token_buf;
1782 ch = *p++;
1783 t = ch;
1784 ch = *p++;
1785 *q++ = t;
1786 b = 10;
1787 if (t == '.') {
1788 goto float_frac_parse;
1789 } else if (t == '0') {
1790 if (ch == 'x' || ch == 'X') {
1791 q--;
1792 ch = *p++;
1793 b = 16;
1794 } else if (tcc_ext && (ch == 'b' || ch == 'B')) {
1795 q--;
1796 ch = *p++;
1797 b = 2;
1800 /* parse all digits. cannot check octal numbers at this stage
1801 because of floating point constants */
1802 while (1) {
1803 if (ch >= 'a' && ch <= 'f')
1804 t = ch - 'a' + 10;
1805 else if (ch >= 'A' && ch <= 'F')
1806 t = ch - 'A' + 10;
1807 else if (isnum(ch))
1808 t = ch - '0';
1809 else
1810 break;
1811 if (t >= b)
1812 break;
1813 if (q >= token_buf + STRING_MAX_SIZE) {
1814 num_too_long:
1815 tcc_error("number too long");
1817 *q++ = ch;
1818 ch = *p++;
1820 if (ch == '.' ||
1821 ((ch == 'e' || ch == 'E') && b == 10) ||
1822 ((ch == 'p' || ch == 'P') && (b == 16 || b == 2))) {
1823 if (b != 10) {
1824 /* NOTE: strtox should support that for hexa numbers, but
1825 non ISOC99 libcs do not support it, so we prefer to do
1826 it by hand */
1827 /* hexadecimal or binary floats */
1828 /* XXX: handle overflows */
1829 *q = '\0';
1830 if (b == 16)
1831 shift = 4;
1832 else
1833 shift = 2;
1834 bn_zero(bn);
1835 q = token_buf;
1836 while (1) {
1837 t = *q++;
1838 if (t == '\0') {
1839 break;
1840 } else if (t >= 'a') {
1841 t = t - 'a' + 10;
1842 } else if (t >= 'A') {
1843 t = t - 'A' + 10;
1844 } else {
1845 t = t - '0';
1847 bn_lshift(bn, shift, t);
1849 frac_bits = 0;
1850 if (ch == '.') {
1851 ch = *p++;
1852 while (1) {
1853 t = ch;
1854 if (t >= 'a' && t <= 'f') {
1855 t = t - 'a' + 10;
1856 } else if (t >= 'A' && t <= 'F') {
1857 t = t - 'A' + 10;
1858 } else if (t >= '0' && t <= '9') {
1859 t = t - '0';
1860 } else {
1861 break;
1863 if (t >= b)
1864 tcc_error("invalid digit");
1865 bn_lshift(bn, shift, t);
1866 frac_bits += shift;
1867 ch = *p++;
1870 if (ch != 'p' && ch != 'P')
1871 expect("exponent");
1872 ch = *p++;
1873 s = 1;
1874 exp_val = 0;
1875 if (ch == '+') {
1876 ch = *p++;
1877 } else if (ch == '-') {
1878 s = -1;
1879 ch = *p++;
1881 if (ch < '0' || ch > '9')
1882 expect("exponent digits");
1883 while (ch >= '0' && ch <= '9') {
1884 exp_val = exp_val * 10 + ch - '0';
1885 ch = *p++;
1887 exp_val = exp_val * s;
1889 /* now we can generate the number */
1890 /* XXX: should patch directly float number */
1891 d = (double)bn[1] * 4294967296.0 + (double)bn[0];
1892 d = ldexp(d, exp_val - frac_bits);
1893 t = toup(ch);
1894 if (t == 'F') {
1895 ch = *p++;
1896 tok = TOK_CFLOAT;
1897 /* float : should handle overflow */
1898 tokc.f = (float)d;
1899 } else if (t == 'L') {
1900 ch = *p++;
1901 #ifdef TCC_TARGET_PE
1902 tok = TOK_CDOUBLE;
1903 tokc.d = d;
1904 #else
1905 tok = TOK_CLDOUBLE;
1906 /* XXX: not large enough */
1907 tokc.ld = (long double)d;
1908 #endif
1909 } else {
1910 tok = TOK_CDOUBLE;
1911 tokc.d = d;
1913 } else {
1914 /* decimal floats */
1915 if (ch == '.') {
1916 if (q >= token_buf + STRING_MAX_SIZE)
1917 goto num_too_long;
1918 *q++ = ch;
1919 ch = *p++;
1920 float_frac_parse:
1921 while (ch >= '0' && ch <= '9') {
1922 if (q >= token_buf + STRING_MAX_SIZE)
1923 goto num_too_long;
1924 *q++ = ch;
1925 ch = *p++;
1928 if (ch == 'e' || ch == 'E') {
1929 if (q >= token_buf + STRING_MAX_SIZE)
1930 goto num_too_long;
1931 *q++ = ch;
1932 ch = *p++;
1933 if (ch == '-' || ch == '+') {
1934 if (q >= token_buf + STRING_MAX_SIZE)
1935 goto num_too_long;
1936 *q++ = ch;
1937 ch = *p++;
1939 if (ch < '0' || ch > '9')
1940 expect("exponent digits");
1941 while (ch >= '0' && ch <= '9') {
1942 if (q >= token_buf + STRING_MAX_SIZE)
1943 goto num_too_long;
1944 *q++ = ch;
1945 ch = *p++;
1948 *q = '\0';
1949 t = toup(ch);
1950 errno = 0;
1951 if (t == 'F') {
1952 ch = *p++;
1953 tok = TOK_CFLOAT;
1954 tokc.f = strtof(token_buf, NULL);
1955 } else if (t == 'L') {
1956 ch = *p++;
1957 #ifdef TCC_TARGET_PE
1958 tok = TOK_CDOUBLE;
1959 tokc.d = strtod(token_buf, NULL);
1960 #else
1961 tok = TOK_CLDOUBLE;
1962 tokc.ld = strtold(token_buf, NULL);
1963 #endif
1964 } else {
1965 tok = TOK_CDOUBLE;
1966 tokc.d = strtod(token_buf, NULL);
1969 } else {
1970 unsigned long long n, n1;
1971 int lcount, ucount;
1973 /* integer number */
1974 *q = '\0';
1975 q = token_buf;
1976 if (b == 10 && *q == '0') {
1977 b = 8;
1978 q++;
1980 n = 0;
1981 while(1) {
1982 t = *q++;
1983 /* no need for checks except for base 10 / 8 errors */
1984 if (t == '\0') {
1985 break;
1986 } else if (t >= 'a') {
1987 t = t - 'a' + 10;
1988 } else if (t >= 'A') {
1989 t = t - 'A' + 10;
1990 } else {
1991 t = t - '0';
1992 if (t >= b)
1993 tcc_error("invalid digit");
1995 n1 = n;
1996 n = n * b + t;
1997 /* detect overflow */
1998 /* XXX: this test is not reliable */
1999 if (n < n1)
2000 tcc_error("integer constant overflow");
2003 /* XXX: not exactly ANSI compliant */
2004 if ((n & 0xffffffff00000000LL) != 0) {
2005 if ((n >> 63) != 0)
2006 tok = TOK_CULLONG;
2007 else
2008 tok = TOK_CLLONG;
2009 } else if (n > 0x7fffffff) {
2010 tok = TOK_CUINT;
2011 } else {
2012 tok = TOK_CINT;
2014 lcount = 0;
2015 ucount = 0;
2016 for(;;) {
2017 t = toup(ch);
2018 if (t == 'L') {
2019 if (lcount >= 2)
2020 tcc_error("three 'l's in integer constant");
2021 lcount++;
2022 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
2023 if (lcount == 2) {
2024 #endif
2025 if (tok == TOK_CINT)
2026 tok = TOK_CLLONG;
2027 else if (tok == TOK_CUINT)
2028 tok = TOK_CULLONG;
2029 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
2031 #endif
2032 ch = *p++;
2033 } else if (t == 'U') {
2034 if (ucount >= 1)
2035 tcc_error("two 'u's in integer constant");
2036 ucount++;
2037 if (tok == TOK_CINT)
2038 tok = TOK_CUINT;
2039 else if (tok == TOK_CLLONG)
2040 tok = TOK_CULLONG;
2041 ch = *p++;
2042 } else {
2043 break;
2046 if (tok == TOK_CINT || tok == TOK_CUINT)
2047 tokc.ui = n;
2048 else
2049 tokc.ull = n;
2051 if (ch)
2052 tcc_error("invalid number\n");
2056 #define PARSE2(c1, tok1, c2, tok2) \
2057 case c1: \
2058 PEEKC(c, p); \
2059 if (c == c2) { \
2060 p++; \
2061 tok = tok2; \
2062 } else { \
2063 tok = tok1; \
2065 break;
2067 /* return next token without macro substitution */
2068 static inline void next_nomacro1(void)
2070 int t, c, is_long;
2071 TokenSym *ts;
2072 uint8_t *p, *p1;
2073 unsigned int h;
2075 p = file->buf_ptr;
2076 redo_no_start:
2077 c = *p;
2078 switch(c) {
2079 case ' ':
2080 case '\t':
2081 tok = c;
2082 p++;
2083 goto keep_tok_flags;
2084 case '\f':
2085 case '\v':
2086 case '\r':
2087 p++;
2088 goto redo_no_start;
2089 case '\\':
2090 /* first look if it is in fact an end of buffer */
2091 if (p >= file->buf_end) {
2092 file->buf_ptr = p;
2093 handle_eob();
2094 p = file->buf_ptr;
2095 if (p >= file->buf_end)
2096 goto parse_eof;
2097 else
2098 goto redo_no_start;
2099 } else {
2100 file->buf_ptr = p;
2101 ch = *p;
2102 handle_stray();
2103 p = file->buf_ptr;
2104 goto redo_no_start;
2106 parse_eof:
2108 TCCState *s1 = tcc_state;
2109 if ((parse_flags & PARSE_FLAG_LINEFEED)
2110 && !(tok_flags & TOK_FLAG_EOF)) {
2111 tok_flags |= TOK_FLAG_EOF;
2112 tok = TOK_LINEFEED;
2113 goto keep_tok_flags;
2114 } else if (!(parse_flags & PARSE_FLAG_PREPROCESS)) {
2115 tok = TOK_EOF;
2116 } else if (s1->ifdef_stack_ptr != file->ifdef_stack_ptr) {
2117 tcc_error("missing #endif");
2118 } else if (s1->include_stack_ptr == s1->include_stack) {
2119 /* no include left : end of file. */
2120 tok = TOK_EOF;
2121 } else {
2122 tok_flags &= ~TOK_FLAG_EOF;
2123 /* pop include file */
2125 /* test if previous '#endif' was after a #ifdef at
2126 start of file */
2127 if (tok_flags & TOK_FLAG_ENDIF) {
2128 #ifdef INC_DEBUG
2129 printf("#endif %s\n", get_tok_str(file->ifndef_macro_saved, NULL));
2130 #endif
2131 add_cached_include(s1, file->filename, file->ifndef_macro_saved);
2132 tok_flags &= ~TOK_FLAG_ENDIF;
2135 /* add end of include file debug info */
2136 if (tcc_state->do_debug) {
2137 put_stabd(N_EINCL, 0, 0);
2139 /* pop include stack */
2140 tcc_close();
2141 s1->include_stack_ptr--;
2142 p = file->buf_ptr;
2143 goto redo_no_start;
2146 break;
2148 case '\n':
2149 file->line_num++;
2150 tok_flags |= TOK_FLAG_BOL;
2151 p++;
2152 maybe_newline:
2153 if (0 == (parse_flags & PARSE_FLAG_LINEFEED))
2154 goto redo_no_start;
2155 tok = TOK_LINEFEED;
2156 goto keep_tok_flags;
2158 case '#':
2159 /* XXX: simplify */
2160 PEEKC(c, p);
2161 if ((tok_flags & TOK_FLAG_BOL) &&
2162 (parse_flags & PARSE_FLAG_PREPROCESS)) {
2163 file->buf_ptr = p;
2164 preprocess(tok_flags & TOK_FLAG_BOF);
2165 p = file->buf_ptr;
2166 goto maybe_newline;
2167 } else {
2168 if (c == '#') {
2169 p++;
2170 tok = TOK_TWOSHARPS;
2171 } else {
2172 if (parse_flags & PARSE_FLAG_ASM_COMMENTS) {
2173 p = parse_line_comment(p - 1);
2174 goto redo_no_start;
2175 } else {
2176 tok = '#';
2180 break;
2182 case 'a': case 'b': case 'c': case 'd':
2183 case 'e': case 'f': case 'g': case 'h':
2184 case 'i': case 'j': case 'k': case 'l':
2185 case 'm': case 'n': case 'o': case 'p':
2186 case 'q': case 'r': case 's': case 't':
2187 case 'u': case 'v': case 'w': case 'x':
2188 case 'y': case 'z':
2189 case 'A': case 'B': case 'C': case 'D':
2190 case 'E': case 'F': case 'G': case 'H':
2191 case 'I': case 'J': case 'K':
2192 case 'M': case 'N': case 'O': case 'P':
2193 case 'Q': case 'R': case 'S': case 'T':
2194 case 'U': case 'V': case 'W': case 'X':
2195 case 'Y': case 'Z':
2196 case '_':
2197 parse_ident_fast:
2198 p1 = p;
2199 h = TOK_HASH_INIT;
2200 h = TOK_HASH_FUNC(h, c);
2201 p++;
2202 for(;;) {
2203 c = *p;
2204 if (!isidnum_table[c-CH_EOF])
2205 break;
2206 h = TOK_HASH_FUNC(h, c);
2207 p++;
2209 if (c != '\\') {
2210 TokenSym **pts;
2211 int len;
2213 /* fast case : no stray found, so we have the full token
2214 and we have already hashed it */
2215 len = p - p1;
2216 h &= (TOK_HASH_SIZE - 1);
2217 pts = &hash_ident[h];
2218 for(;;) {
2219 ts = *pts;
2220 if (!ts)
2221 break;
2222 if (ts->len == len && !memcmp(ts->str, p1, len))
2223 goto token_found;
2224 pts = &(ts->hash_next);
2226 ts = tok_alloc_new(pts, p1, len);
2227 token_found: ;
2228 } else {
2229 /* slower case */
2230 cstr_reset(&tokcstr);
2232 while (p1 < p) {
2233 cstr_ccat(&tokcstr, *p1);
2234 p1++;
2236 p--;
2237 PEEKC(c, p);
2238 parse_ident_slow:
2239 while (isidnum_table[c-CH_EOF]) {
2240 cstr_ccat(&tokcstr, c);
2241 PEEKC(c, p);
2243 ts = tok_alloc(tokcstr.data, tokcstr.size);
2245 tok = ts->tok;
2246 break;
2247 case 'L':
2248 t = p[1];
2249 if (t != '\\' && t != '\'' && t != '\"') {
2250 /* fast case */
2251 goto parse_ident_fast;
2252 } else {
2253 PEEKC(c, p);
2254 if (c == '\'' || c == '\"') {
2255 is_long = 1;
2256 goto str_const;
2257 } else {
2258 cstr_reset(&tokcstr);
2259 cstr_ccat(&tokcstr, 'L');
2260 goto parse_ident_slow;
2263 break;
2264 case '0': case '1': case '2': case '3':
2265 case '4': case '5': case '6': case '7':
2266 case '8': case '9':
2268 cstr_reset(&tokcstr);
2269 /* after the first digit, accept digits, alpha, '.' or sign if
2270 prefixed by 'eEpP' */
2271 parse_num:
2272 for(;;) {
2273 t = c;
2274 cstr_ccat(&tokcstr, c);
2275 PEEKC(c, p);
2276 if (!(isnum(c) || isid(c) || c == '.' ||
2277 ((c == '+' || c == '-') &&
2278 (t == 'e' || t == 'E' || t == 'p' || t == 'P'))))
2279 break;
2281 /* We add a trailing '\0' to ease parsing */
2282 cstr_ccat(&tokcstr, '\0');
2283 tokc.cstr = &tokcstr;
2284 tok = TOK_PPNUM;
2285 break;
2286 case '.':
2287 /* special dot handling because it can also start a number */
2288 PEEKC(c, p);
2289 if (isnum(c)) {
2290 cstr_reset(&tokcstr);
2291 cstr_ccat(&tokcstr, '.');
2292 goto parse_num;
2293 } else if (c == '.') {
2294 PEEKC(c, p);
2295 if (c != '.')
2296 expect("'.'");
2297 PEEKC(c, p);
2298 tok = TOK_DOTS;
2299 } else {
2300 tok = '.';
2302 break;
2303 case '\'':
2304 case '\"':
2305 is_long = 0;
2306 str_const:
2308 CString str;
2309 int sep;
2311 sep = c;
2313 /* parse the string */
2314 cstr_new(&str);
2315 p = parse_pp_string(p, sep, &str);
2316 cstr_ccat(&str, '\0');
2318 /* eval the escape (should be done as TOK_PPNUM) */
2319 cstr_reset(&tokcstr);
2320 parse_escape_string(&tokcstr, str.data, is_long);
2321 cstr_free(&str);
2323 if (sep == '\'') {
2324 int char_size;
2325 /* XXX: make it portable */
2326 if (!is_long)
2327 char_size = 1;
2328 else
2329 char_size = sizeof(nwchar_t);
2330 if (tokcstr.size <= char_size)
2331 tcc_error("empty character constant");
2332 if (tokcstr.size > 2 * char_size)
2333 tcc_warning("multi-character character constant");
2334 if (!is_long) {
2335 tokc.i = *(int8_t *)tokcstr.data;
2336 tok = TOK_CCHAR;
2337 } else {
2338 tokc.i = *(nwchar_t *)tokcstr.data;
2339 tok = TOK_LCHAR;
2341 } else {
2342 tokc.cstr = &tokcstr;
2343 if (!is_long)
2344 tok = TOK_STR;
2345 else
2346 tok = TOK_LSTR;
2349 break;
2351 case '<':
2352 PEEKC(c, p);
2353 if (c == '=') {
2354 p++;
2355 tok = TOK_LE;
2356 } else if (c == '<') {
2357 PEEKC(c, p);
2358 if (c == '=') {
2359 p++;
2360 tok = TOK_A_SHL;
2361 } else {
2362 tok = TOK_SHL;
2364 } else {
2365 tok = TOK_LT;
2367 break;
2369 case '>':
2370 PEEKC(c, p);
2371 if (c == '=') {
2372 p++;
2373 tok = TOK_GE;
2374 } else if (c == '>') {
2375 PEEKC(c, p);
2376 if (c == '=') {
2377 p++;
2378 tok = TOK_A_SAR;
2379 } else {
2380 tok = TOK_SAR;
2382 } else {
2383 tok = TOK_GT;
2385 break;
2387 case '&':
2388 PEEKC(c, p);
2389 if (c == '&') {
2390 p++;
2391 tok = TOK_LAND;
2392 } else if (c == '=') {
2393 p++;
2394 tok = TOK_A_AND;
2395 } else {
2396 tok = '&';
2398 break;
2400 case '|':
2401 PEEKC(c, p);
2402 if (c == '|') {
2403 p++;
2404 tok = TOK_LOR;
2405 } else if (c == '=') {
2406 p++;
2407 tok = TOK_A_OR;
2408 } else {
2409 tok = '|';
2411 break;
2413 case '+':
2414 PEEKC(c, p);
2415 if (c == '+') {
2416 p++;
2417 tok = TOK_INC;
2418 } else if (c == '=') {
2419 p++;
2420 tok = TOK_A_ADD;
2421 } else {
2422 tok = '+';
2424 break;
2426 case '-':
2427 PEEKC(c, p);
2428 if (c == '-') {
2429 p++;
2430 tok = TOK_DEC;
2431 } else if (c == '=') {
2432 p++;
2433 tok = TOK_A_SUB;
2434 } else if (c == '>') {
2435 p++;
2436 tok = TOK_ARROW;
2437 } else {
2438 tok = '-';
2440 break;
2442 PARSE2('!', '!', '=', TOK_NE)
2443 PARSE2('=', '=', '=', TOK_EQ)
2444 PARSE2('*', '*', '=', TOK_A_MUL)
2445 PARSE2('%', '%', '=', TOK_A_MOD)
2446 PARSE2('^', '^', '=', TOK_A_XOR)
2448 /* comments or operator */
2449 case '/':
2450 PEEKC(c, p);
2451 if (c == '*') {
2452 p = parse_comment(p);
2453 /* comments replaced by a blank */
2454 tok = ' ';
2455 goto keep_tok_flags;
2456 } else if (c == '/') {
2457 p = parse_line_comment(p);
2458 tok = ' ';
2459 goto keep_tok_flags;
2460 } else if (c == '=') {
2461 p++;
2462 tok = TOK_A_DIV;
2463 } else {
2464 tok = '/';
2466 break;
2468 /* simple tokens */
2469 case '(':
2470 case ')':
2471 case '[':
2472 case ']':
2473 case '{':
2474 case '}':
2475 case ',':
2476 case ';':
2477 case ':':
2478 case '?':
2479 case '~':
2480 case '$': /* only used in assembler */
2481 case '@': /* dito */
2482 tok = c;
2483 p++;
2484 break;
2485 default:
2486 tcc_error("unrecognized character \\x%02x", c);
2487 break;
2489 tok_flags = 0;
2490 keep_tok_flags:
2491 file->buf_ptr = p;
2492 #if defined(PARSE_DEBUG)
2493 printf("token = %s\n", get_tok_str(tok, &tokc));
2494 #endif
2497 /* return next token without macro substitution. Can read input from
2498 macro_ptr buffer */
2499 static void next_nomacro_spc(void)
2501 if (macro_ptr) {
2502 redo:
2503 tok = *macro_ptr;
2504 if (tok) {
2505 TOK_GET(&tok, &macro_ptr, &tokc);
2506 if (tok == TOK_LINENUM) {
2507 file->line_num = tokc.i;
2508 goto redo;
2511 } else {
2512 next_nomacro1();
2516 ST_FUNC void next_nomacro(void)
2518 do {
2519 next_nomacro_spc();
2520 } while (is_space(tok));
2523 /* substitute args in macro_str and return allocated string */
2524 static int *macro_arg_subst(Sym **nested_list, const int *macro_str, Sym *args)
2526 int last_tok, t, spc;
2527 const int *st;
2528 Sym *s;
2529 CValue cval;
2530 TokenString str;
2531 CString cstr;
2533 tok_str_new(&str);
2534 last_tok = 0;
2535 while(1) {
2536 TOK_GET(&t, &macro_str, &cval);
2537 if (!t)
2538 break;
2539 if (t == '#') {
2540 /* stringize */
2541 TOK_GET(&t, &macro_str, &cval);
2542 if (!t)
2543 break;
2544 s = sym_find2(args, t);
2545 if (s) {
2546 cstr_new(&cstr);
2547 st = s->d;
2548 spc = 0;
2549 while (*st) {
2550 TOK_GET(&t, &st, &cval);
2551 if (!check_space(t, &spc))
2552 cstr_cat(&cstr, get_tok_str(t, &cval));
2554 cstr.size -= spc;
2555 cstr_ccat(&cstr, '\0');
2556 #ifdef PP_DEBUG
2557 printf("stringize: %s\n", (char *)cstr.data);
2558 #endif
2559 /* add string */
2560 cval.cstr = &cstr;
2561 tok_str_add2(&str, TOK_STR, &cval);
2562 cstr_free(&cstr);
2563 } else {
2564 tok_str_add2(&str, t, &cval);
2566 } else if (t >= TOK_IDENT) {
2567 s = sym_find2(args, t);
2568 if (s) {
2569 st = s->d;
2570 /* if '##' is present before or after, no arg substitution */
2571 if (*macro_str == TOK_TWOSHARPS || last_tok == TOK_TWOSHARPS) {
2572 /* special case for var arg macros : ## eats the
2573 ',' if empty VA_ARGS variable. */
2574 /* XXX: test of the ',' is not 100%
2575 reliable. should fix it to avoid security
2576 problems */
2577 if (gnu_ext && s->type.t &&
2578 last_tok == TOK_TWOSHARPS &&
2579 str.len >= 2 && str.str[str.len - 2] == ',') {
2580 if (*st == 0) {
2581 /* suppress ',' '##' */
2582 str.len -= 2;
2583 } else {
2584 /* suppress '##' and add variable */
2585 str.len--;
2586 goto add_var;
2588 } else {
2589 int t1;
2590 add_var:
2591 for(;;) {
2592 TOK_GET(&t1, &st, &cval);
2593 if (!t1)
2594 break;
2595 tok_str_add2(&str, t1, &cval);
2598 } else {
2599 /* NOTE: the stream cannot be read when macro
2600 substituing an argument */
2601 macro_subst(&str, nested_list, st, NULL);
2603 } else {
2604 tok_str_add(&str, t);
2606 } else {
2607 tok_str_add2(&str, t, &cval);
2609 last_tok = t;
2611 tok_str_add(&str, 0);
2612 return str.str;
2615 static char const ab_month_name[12][4] =
2617 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2618 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2621 /* do macro substitution of current token with macro 's' and add
2622 result to (tok_str,tok_len). 'nested_list' is the list of all
2623 macros we got inside to avoid recursing. Return non zero if no
2624 substitution needs to be done */
2625 static int macro_subst_tok(TokenString *tok_str,
2626 Sym **nested_list, Sym *s, struct macro_level **can_read_stream)
2628 Sym *args, *sa, *sa1;
2629 int mstr_allocated, parlevel, *mstr, t, t1, spc;
2630 const int *p;
2631 TokenString str;
2632 char *cstrval;
2633 CValue cval;
2634 CString cstr;
2635 char buf[32];
2637 /* if symbol is a macro, prepare substitution */
2638 /* special macros */
2639 if (tok == TOK___LINE__) {
2640 snprintf(buf, sizeof(buf), "%d", file->line_num);
2641 cstrval = buf;
2642 t1 = TOK_PPNUM;
2643 goto add_cstr1;
2644 } else if (tok == TOK___FILE__) {
2645 cstrval = file->filename;
2646 goto add_cstr;
2647 } else if (tok == TOK___DATE__ || tok == TOK___TIME__) {
2648 time_t ti;
2649 struct tm *tm;
2651 time(&ti);
2652 tm = localtime(&ti);
2653 if (tok == TOK___DATE__) {
2654 snprintf(buf, sizeof(buf), "%s %2d %d",
2655 ab_month_name[tm->tm_mon], tm->tm_mday, tm->tm_year + 1900);
2656 } else {
2657 snprintf(buf, sizeof(buf), "%02d:%02d:%02d",
2658 tm->tm_hour, tm->tm_min, tm->tm_sec);
2660 cstrval = buf;
2661 add_cstr:
2662 t1 = TOK_STR;
2663 add_cstr1:
2664 cstr_new(&cstr);
2665 cstr_cat(&cstr, cstrval);
2666 cstr_ccat(&cstr, '\0');
2667 cval.cstr = &cstr;
2668 tok_str_add2(tok_str, t1, &cval);
2669 cstr_free(&cstr);
2670 } else {
2671 mstr = s->d;
2672 mstr_allocated = 0;
2673 if (s->type.t == MACRO_FUNC) {
2674 /* NOTE: we do not use next_nomacro to avoid eating the
2675 next token. XXX: find better solution */
2676 redo:
2677 if (macro_ptr) {
2678 p = macro_ptr;
2679 while (is_space(t = *p) || TOK_LINEFEED == t)
2680 ++p;
2681 if (t == 0 && can_read_stream) {
2682 /* end of macro stream: we must look at the token
2683 after in the file */
2684 struct macro_level *ml = *can_read_stream;
2685 macro_ptr = NULL;
2686 if (ml)
2688 macro_ptr = ml->p;
2689 ml->p = NULL;
2690 *can_read_stream = ml -> prev;
2692 /* also, end of scope for nested defined symbol */
2693 (*nested_list)->v = -1;
2694 goto redo;
2696 } else {
2697 ch = file->buf_ptr[0];
2698 while (is_space(ch) || ch == '\n' || ch == '/')
2700 if (ch == '/')
2702 int c;
2703 uint8_t *p = file->buf_ptr;
2704 PEEKC(c, p);
2705 if (c == '*') {
2706 p = parse_comment(p);
2707 file->buf_ptr = p - 1;
2708 } else if (c == '/') {
2709 p = parse_line_comment(p);
2710 file->buf_ptr = p - 1;
2711 } else
2712 break;
2714 cinp();
2716 t = ch;
2718 if (t != '(') /* no macro subst */
2719 return -1;
2721 /* argument macro */
2722 next_nomacro();
2723 next_nomacro();
2724 args = NULL;
2725 sa = s->next;
2726 /* NOTE: empty args are allowed, except if no args */
2727 for(;;) {
2728 /* handle '()' case */
2729 if (!args && !sa && tok == ')')
2730 break;
2731 if (!sa)
2732 tcc_error("macro '%s' used with too many args",
2733 get_tok_str(s->v, 0));
2734 tok_str_new(&str);
2735 parlevel = spc = 0;
2736 /* NOTE: non zero sa->t indicates VA_ARGS */
2737 while ((parlevel > 0 ||
2738 (tok != ')' &&
2739 (tok != ',' || sa->type.t))) &&
2740 tok != -1) {
2741 if (tok == '(')
2742 parlevel++;
2743 else if (tok == ')')
2744 parlevel--;
2745 if (tok == TOK_LINEFEED)
2746 tok = ' ';
2747 if (!check_space(tok, &spc))
2748 tok_str_add2(&str, tok, &tokc);
2749 next_nomacro_spc();
2751 str.len -= spc;
2752 tok_str_add(&str, 0);
2753 sa1 = sym_push2(&args, sa->v & ~SYM_FIELD, sa->type.t, 0);
2754 sa1->d = str.str;
2755 sa = sa->next;
2756 if (tok == ')') {
2757 /* special case for gcc var args: add an empty
2758 var arg argument if it is omitted */
2759 if (sa && sa->type.t && gnu_ext)
2760 continue;
2761 else
2762 break;
2764 if (tok != ',')
2765 expect(",");
2766 next_nomacro();
2768 if (sa) {
2769 tcc_error("macro '%s' used with too few args",
2770 get_tok_str(s->v, 0));
2773 /* now subst each arg */
2774 mstr = macro_arg_subst(nested_list, mstr, args);
2775 /* free memory */
2776 sa = args;
2777 while (sa) {
2778 sa1 = sa->prev;
2779 tok_str_free(sa->d);
2780 sym_free(sa);
2781 sa = sa1;
2783 mstr_allocated = 1;
2785 sym_push2(nested_list, s->v, 0, 0);
2786 macro_subst(tok_str, nested_list, mstr, can_read_stream);
2787 /* pop nested defined symbol */
2788 sa1 = *nested_list;
2789 *nested_list = sa1->prev;
2790 sym_free(sa1);
2791 if (mstr_allocated)
2792 tok_str_free(mstr);
2794 return 0;
2797 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
2798 return the resulting string (which must be freed). */
2799 static inline int *macro_twosharps(const int *macro_str)
2801 const int *ptr;
2802 int t;
2803 CValue cval;
2804 TokenString macro_str1;
2805 CString cstr;
2806 int n, start_of_nosubsts;
2808 /* we search the first '##' */
2809 for(ptr = macro_str;;) {
2810 TOK_GET(&t, &ptr, &cval);
2811 if (t == TOK_TWOSHARPS)
2812 break;
2813 /* nothing more to do if end of string */
2814 if (t == 0)
2815 return NULL;
2818 /* we saw '##', so we need more processing to handle it */
2819 start_of_nosubsts = -1;
2820 tok_str_new(&macro_str1);
2821 for(ptr = macro_str;;) {
2822 TOK_GET(&tok, &ptr, &tokc);
2823 if (tok == 0)
2824 break;
2825 if (tok == TOK_TWOSHARPS)
2826 continue;
2827 if (tok == TOK_NOSUBST && start_of_nosubsts < 0)
2828 start_of_nosubsts = macro_str1.len;
2829 while (*ptr == TOK_TWOSHARPS) {
2830 /* given 'a##b', remove nosubsts preceding 'a' */
2831 if (start_of_nosubsts >= 0)
2832 macro_str1.len = start_of_nosubsts;
2833 /* given 'a##b', skip '##' */
2834 t = *++ptr;
2835 /* given 'a##b', remove nosubsts preceding 'b' */
2836 while (t == TOK_NOSUBST)
2837 t = *++ptr;
2839 if (t && t != TOK_TWOSHARPS) {
2840 TOK_GET(&t, &ptr, &cval);
2842 /* We concatenate the two tokens */
2843 cstr_new(&cstr);
2844 cstr_cat(&cstr, get_tok_str(tok, &tokc));
2845 n = cstr.size;
2846 cstr_cat(&cstr, get_tok_str(t, &cval));
2847 cstr_ccat(&cstr, '\0');
2849 tcc_open_bf(tcc_state, "<paste>", cstr.size);
2850 memcpy(file->buffer, cstr.data, cstr.size);
2851 for (;;) {
2852 next_nomacro1();
2853 if (0 == *file->buf_ptr)
2854 break;
2855 tok_str_add2(&macro_str1, tok, &tokc);
2856 tcc_warning("pasting \"%.*s\" and \"%s\" does not give a valid preprocessing token",
2857 n, cstr.data, (char*)cstr.data + n);
2859 tcc_close();
2860 cstr_free(&cstr);
2863 if (tok != TOK_NOSUBST)
2864 start_of_nosubsts = -1;
2865 tok_str_add2(&macro_str1, tok, &tokc);
2867 tok_str_add(&macro_str1, 0);
2868 return macro_str1.str;
2872 /* do macro substitution of macro_str and add result to
2873 (tok_str,tok_len). 'nested_list' is the list of all macros we got
2874 inside to avoid recursing. */
2875 static void macro_subst(TokenString *tok_str, Sym **nested_list,
2876 const int *macro_str, struct macro_level ** can_read_stream)
2878 Sym *s;
2879 int *macro_str1;
2880 const int *ptr;
2881 int t, ret, spc;
2882 CValue cval;
2883 struct macro_level ml;
2884 int force_blank;
2886 /* first scan for '##' operator handling */
2887 ptr = macro_str;
2888 macro_str1 = macro_twosharps(ptr);
2890 if (macro_str1)
2891 ptr = macro_str1;
2892 spc = 0;
2893 force_blank = 0;
2895 while (1) {
2896 /* NOTE: ptr == NULL can only happen if tokens are read from
2897 file stream due to a macro function call */
2898 if (ptr == NULL)
2899 break;
2900 TOK_GET(&t, &ptr, &cval);
2901 if (t == 0)
2902 break;
2903 if (t == TOK_NOSUBST) {
2904 /* following token has already been subst'd. just copy it on */
2905 tok_str_add2(tok_str, TOK_NOSUBST, NULL);
2906 TOK_GET(&t, &ptr, &cval);
2907 goto no_subst;
2909 s = define_find(t);
2910 if (s != NULL) {
2911 /* if nested substitution, do nothing */
2912 if (sym_find2(*nested_list, t)) {
2913 /* and mark it as TOK_NOSUBST, so it doesn't get subst'd again */
2914 tok_str_add2(tok_str, TOK_NOSUBST, NULL);
2915 goto no_subst;
2917 ml.p = macro_ptr;
2918 if (can_read_stream)
2919 ml.prev = *can_read_stream, *can_read_stream = &ml;
2920 macro_ptr = (int *)ptr;
2921 tok = t;
2922 ret = macro_subst_tok(tok_str, nested_list, s, can_read_stream);
2923 ptr = (int *)macro_ptr;
2924 macro_ptr = ml.p;
2925 if (can_read_stream && *can_read_stream == &ml)
2926 *can_read_stream = ml.prev;
2927 if (ret != 0)
2928 goto no_subst;
2929 if (parse_flags & PARSE_FLAG_SPACES)
2930 force_blank = 1;
2931 } else {
2932 no_subst:
2933 if (force_blank) {
2934 tok_str_add(tok_str, ' ');
2935 spc = 1;
2936 force_blank = 0;
2938 if (!check_space(t, &spc))
2939 tok_str_add2(tok_str, t, &cval);
2942 if (macro_str1)
2943 tok_str_free(macro_str1);
2946 /* return next token with macro substitution */
2947 ST_FUNC void next(void)
2949 Sym *nested_list, *s;
2950 TokenString str;
2951 struct macro_level *ml;
2953 redo:
2954 if (parse_flags & PARSE_FLAG_SPACES)
2955 next_nomacro_spc();
2956 else
2957 next_nomacro();
2958 if (!macro_ptr) {
2959 /* if not reading from macro substituted string, then try
2960 to substitute macros */
2961 if (tok >= TOK_IDENT &&
2962 (parse_flags & PARSE_FLAG_PREPROCESS)) {
2963 s = define_find(tok);
2964 if (s) {
2965 /* we have a macro: we try to substitute */
2966 tok_str_new(&str);
2967 nested_list = NULL;
2968 ml = NULL;
2969 if (macro_subst_tok(&str, &nested_list, s, &ml) == 0) {
2970 /* substitution done, NOTE: maybe empty */
2971 tok_str_add(&str, 0);
2972 macro_ptr = str.str;
2973 macro_ptr_allocated = str.str;
2974 goto redo;
2978 } else {
2979 if (tok == 0) {
2980 /* end of macro or end of unget buffer */
2981 if (unget_buffer_enabled) {
2982 macro_ptr = unget_saved_macro_ptr;
2983 unget_buffer_enabled = 0;
2984 } else {
2985 /* end of macro string: free it */
2986 tok_str_free(macro_ptr_allocated);
2987 macro_ptr_allocated = NULL;
2988 macro_ptr = NULL;
2990 goto redo;
2991 } else if (tok == TOK_NOSUBST) {
2992 /* discard preprocessor's nosubst markers */
2993 goto redo;
2997 /* convert preprocessor tokens into C tokens */
2998 if (tok == TOK_PPNUM &&
2999 (parse_flags & PARSE_FLAG_TOK_NUM)) {
3000 parse_number((char *)tokc.cstr->data);
3004 /* push back current token and set current token to 'last_tok'. Only
3005 identifier case handled for labels. */
3006 ST_INLN void unget_tok(int last_tok)
3008 int i, n;
3009 int *q;
3010 if (unget_buffer_enabled)
3012 /* assert(macro_ptr == unget_saved_buffer + 1);
3013 assert(*macro_ptr == 0); */
3015 else
3017 unget_saved_macro_ptr = macro_ptr;
3018 unget_buffer_enabled = 1;
3020 q = unget_saved_buffer;
3021 macro_ptr = q;
3022 *q++ = tok;
3023 n = tok_ext_size(tok) - 1;
3024 for(i=0;i<n;i++)
3025 *q++ = tokc.tab[i];
3026 *q = 0; /* end of token string */
3027 tok = last_tok;
3031 /* better than nothing, but needs extension to handle '-E' option
3032 correctly too */
3033 ST_FUNC void preprocess_init(TCCState *s1)
3035 s1->include_stack_ptr = s1->include_stack;
3036 /* XXX: move that before to avoid having to initialize
3037 file->ifdef_stack_ptr ? */
3038 s1->ifdef_stack_ptr = s1->ifdef_stack;
3039 file->ifdef_stack_ptr = s1->ifdef_stack_ptr;
3041 vtop = vstack - 1;
3042 s1->pack_stack[0] = 0;
3043 s1->pack_stack_ptr = s1->pack_stack;
3046 ST_FUNC void preprocess_new()
3048 int i, c;
3049 const char *p, *r;
3051 /* init isid table */
3052 for(i=CH_EOF;i<256;i++)
3053 isidnum_table[i-CH_EOF] = isid(i) || isnum(i);
3055 /* add all tokens */
3056 table_ident = NULL;
3057 memset(hash_ident, 0, TOK_HASH_SIZE * sizeof(TokenSym *));
3059 tok_ident = TOK_IDENT;
3060 p = tcc_keywords;
3061 while (*p) {
3062 r = p;
3063 for(;;) {
3064 c = *r++;
3065 if (c == '\0')
3066 break;
3068 tok_alloc(p, r - p - 1);
3069 p = r;
3073 /* Preprocess the current file */
3074 ST_FUNC int tcc_preprocess(TCCState *s1)
3076 Sym *define_start;
3078 BufferedFile *file_ref, **iptr, **iptr_new;
3079 int token_seen, line_ref, d;
3080 const char *s;
3082 preprocess_init(s1);
3083 define_start = define_stack;
3084 ch = file->buf_ptr[0];
3085 tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF;
3086 parse_flags = PARSE_FLAG_ASM_COMMENTS | PARSE_FLAG_PREPROCESS |
3087 PARSE_FLAG_LINEFEED | PARSE_FLAG_SPACES;
3088 token_seen = 0;
3089 line_ref = 0;
3090 file_ref = NULL;
3091 iptr = s1->include_stack_ptr;
3093 for (;;) {
3094 next();
3095 if (tok == TOK_EOF) {
3096 break;
3097 } else if (file != file_ref) {
3098 goto print_line;
3099 } else if (tok == TOK_LINEFEED) {
3100 if (!token_seen)
3101 continue;
3102 ++line_ref;
3103 token_seen = 0;
3104 } else if (!token_seen) {
3105 d = file->line_num - line_ref;
3106 if (file != file_ref || d < 0 || d >= 8) {
3107 print_line:
3108 iptr_new = s1->include_stack_ptr;
3109 s = iptr_new > iptr ? " 1"
3110 : iptr_new < iptr ? " 2"
3111 : iptr_new > s1->include_stack ? " 3"
3112 : ""
3114 iptr = iptr_new;
3115 fprintf(s1->outfile, "# %d \"%s\"%s\n", file->line_num, file->filename, s);
3116 } else {
3117 while (d)
3118 fputs("\n", s1->outfile), --d;
3120 line_ref = (file_ref = file)->line_num;
3121 token_seen = tok != TOK_LINEFEED;
3122 if (!token_seen)
3123 continue;
3125 fputs(get_tok_str(tok, &tokc), s1->outfile);
3127 free_defines(define_start);
3128 return 0;