2 * TCC - Tiny C Compiler
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
23 /********************************************************/
24 /* global variables */
26 ST_DATA
int tok_flags
;
27 ST_DATA
int parse_flags
;
29 ST_DATA
struct BufferedFile
*file
;
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 CString cstr_buf
;
46 static CString macro_equal_buf
;
47 static TokenString tokstr_buf
;
48 static unsigned char isidnum_table
[256 - CH_EOF
];
49 static int pp_debug_tok
, pp_debug_symv
;
51 static void tok_print(const char *msg
, const int *str
);
53 static struct TinyAlloc
*toksym_alloc
;
54 static struct TinyAlloc
*tokstr_alloc
;
55 static struct TinyAlloc
*cstr_alloc
;
57 static TokenString
*macro_stack
;
59 static const char tcc_keywords
[] =
60 #define DEF(id, str) str "\0"
65 /* WARNING: the content of this string encodes token numbers */
66 static const unsigned char tok_two_chars
[] =
68 "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253"
69 "-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
90 '.','.', 0xa8, // C++ token ?
91 '#','#', TOK_TWOSHARPS
,
95 static void next_nomacro_spc(void);
97 ST_FUNC
void skip(int c
)
100 tcc_error("'%c' expected (got \"%s\")", c
, get_tok_str(tok
, &tokc
));
104 ST_FUNC
void expect(const char *msg
)
106 tcc_error("%s expected", msg
);
109 /* ------------------------------------------------------------------------- */
110 /* Custom allocator for tiny objects */
115 #define tal_free(al, p) tcc_free(p)
116 #define tal_realloc(al, p, size) tcc_realloc(p, size)
117 #define tal_new(a,b,c)
118 #define tal_delete(a)
120 #if !defined(MEM_DEBUG)
121 #define tal_free(al, p) tal_free_impl(al, p)
122 #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size)
123 #define TAL_DEBUG_PARAMS
126 //#define TAL_INFO 1 /* collect and dump allocators stats */
127 #define tal_free(al, p) tal_free_impl(al, p, __FILE__, __LINE__)
128 #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size, __FILE__, __LINE__)
129 #define TAL_DEBUG_PARAMS , const char *file, int line
130 #define TAL_DEBUG_FILE_LEN 15
133 #define TOKSYM_TAL_SIZE (768 * 1024) /* allocator for tiny TokenSym in table_ident */
134 #define TOKSTR_TAL_SIZE (768 * 1024) /* allocator for tiny TokenString instances */
135 #define CSTR_TAL_SIZE (256 * 1024) /* allocator for tiny CString instances */
136 #define TOKSYM_TAL_LIMIT 256 /* prefer unique limits to distinguish allocators debug msgs */
137 #define TOKSTR_TAL_LIMIT 128 /* 32 * sizeof(int) */
138 #define CSTR_TAL_LIMIT 1024
140 typedef struct TinyAlloc
{
146 struct TinyAlloc
*next
, *top
;
155 typedef struct tal_header_t
{
158 int line_num
; /* negative line_num used for double free check */
159 char file_name
[TAL_DEBUG_FILE_LEN
+ 1];
163 /* ------------------------------------------------------------------------- */
165 static TinyAlloc
*tal_new(TinyAlloc
**pal
, unsigned limit
, unsigned size
)
167 TinyAlloc
*al
= tcc_mallocz(sizeof(TinyAlloc
));
168 al
->p
= al
->buffer
= tcc_malloc(size
);
175 static void tal_delete(TinyAlloc
*al
)
183 fprintf(stderr
, "limit=%5d, size=%5g MB, nb_peak=%6d, nb_total=%8d, nb_missed=%6d, usage=%5.1f%%\n",
184 al
->limit
, al
->size
/ 1024.0 / 1024.0, al
->nb_peak
, al
->nb_total
, al
->nb_missed
,
185 (al
->peak_p
- al
->buffer
) * 100.0 / al
->size
);
188 if (al
->nb_allocs
> 0) {
190 fprintf(stderr
, "TAL_DEBUG: memory leak %d chunk(s) (limit= %d)\n",
191 al
->nb_allocs
, al
->limit
);
194 tal_header_t
*header
= (tal_header_t
*)p
;
195 if (header
->line_num
> 0) {
196 fprintf(stderr
, "%s:%d: chunk of %d bytes leaked\n",
197 header
->file_name
, header
->line_num
, header
->size
);
199 p
+= header
->size
+ sizeof(tal_header_t
);
207 tcc_free(al
->buffer
);
213 static void tal_free_impl(TinyAlloc
*al
, void *p TAL_DEBUG_PARAMS
)
218 if (al
->buffer
<= (uint8_t *)p
&& (uint8_t *)p
< al
->buffer
+ al
->size
) {
220 tal_header_t
*header
= (((tal_header_t
*)p
) - 1);
221 if (header
->line_num
< 0) {
222 fprintf(stderr
, "%s:%d: TAL_DEBUG: double frees chunk from\n",
224 fprintf(stderr
, "%s:%d: %d bytes\n",
225 header
->file_name
, (int)-header
->line_num
, (int)header
->size
);
227 header
->line_num
= -header
->line_num
;
232 } else if (al
->next
) {
240 static void *tal_realloc_impl(TinyAlloc
**pal
, void *p
, unsigned size TAL_DEBUG_PARAMS
)
242 tal_header_t
*header
;
245 unsigned adj_size
= (size
+ 3) & -4;
246 TinyAlloc
*al
= *pal
;
249 is_own
= (al
->buffer
<= (uint8_t *)p
&& (uint8_t *)p
< al
->buffer
+ al
->size
);
250 if ((!p
|| is_own
) && size
<= al
->limit
) {
251 if (al
->p
+ adj_size
+ sizeof(tal_header_t
) < al
->buffer
+ al
->size
) {
252 header
= (tal_header_t
*)al
->p
;
253 header
->size
= adj_size
;
255 { int ofs
= strlen(file
) - TAL_DEBUG_FILE_LEN
;
256 strncpy(header
->file_name
, file
+ (ofs
> 0 ? ofs
: 0), TAL_DEBUG_FILE_LEN
);
257 header
->file_name
[TAL_DEBUG_FILE_LEN
] = 0;
258 header
->line_num
= line
; }
260 ret
= al
->p
+ sizeof(tal_header_t
);
261 al
->p
+= adj_size
+ sizeof(tal_header_t
);
263 header
= (((tal_header_t
*)p
) - 1);
264 memcpy(ret
, p
, header
->size
);
266 header
->line_num
= -header
->line_num
;
272 if (al
->nb_peak
< al
->nb_allocs
)
273 al
->nb_peak
= al
->nb_allocs
;
274 if (al
->peak_p
< al
->p
)
281 ret
= tal_realloc(*pal
, 0, size
);
282 header
= (((tal_header_t
*)p
) - 1);
283 memcpy(ret
, p
, header
->size
);
285 header
->line_num
= -header
->line_num
;
292 TinyAlloc
*bottom
= al
, *next
= al
->top
? al
->top
: al
;
294 al
= tal_new(pal
, next
->limit
, next
->size
* 2);
302 ret
= tcc_malloc(size
);
303 header
= (((tal_header_t
*)p
) - 1);
304 memcpy(ret
, p
, header
->size
);
306 header
->line_num
= -header
->line_num
;
308 } else if (al
->next
) {
312 ret
= tcc_realloc(p
, size
);
321 /* ------------------------------------------------------------------------- */
322 /* CString handling */
323 static void cstr_realloc(CString
*cstr
, int new_size
)
327 size
= cstr
->size_allocated
;
329 size
= 8; /* no need to allocate a too small first string */
330 while (size
< new_size
)
332 cstr
->data
= tal_realloc(cstr_alloc
, cstr
->data
, size
);
333 cstr
->size_allocated
= size
;
337 ST_INLN
void cstr_ccat(CString
*cstr
, int ch
)
340 size
= cstr
->size
+ 1;
341 if (size
> cstr
->size_allocated
)
342 cstr_realloc(cstr
, size
);
343 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
347 ST_FUNC
void cstr_cat(CString
*cstr
, const char *str
, int len
)
351 len
= strlen(str
) + 1 + len
;
352 size
= cstr
->size
+ len
;
353 if (size
> cstr
->size_allocated
)
354 cstr_realloc(cstr
, size
);
355 memmove(((unsigned char *)cstr
->data
) + cstr
->size
, str
, len
);
359 /* add a wide char */
360 ST_FUNC
void cstr_wccat(CString
*cstr
, int ch
)
363 size
= cstr
->size
+ sizeof(nwchar_t
);
364 if (size
> cstr
->size_allocated
)
365 cstr_realloc(cstr
, size
);
366 *(nwchar_t
*)(((unsigned char *)cstr
->data
) + size
- sizeof(nwchar_t
)) = ch
;
370 ST_FUNC
void cstr_new(CString
*cstr
)
372 memset(cstr
, 0, sizeof(CString
));
375 /* free string and reset it to NULL */
376 ST_FUNC
void cstr_free(CString
*cstr
)
378 tal_free(cstr_alloc
, cstr
->data
);
382 /* reset string to empty */
383 ST_FUNC
void cstr_reset(CString
*cstr
)
389 static void add_char(CString
*cstr
, int c
)
391 if (c
== '\'' || c
== '\"' || c
== '\\') {
392 /* XXX: could be more precise if char or string */
393 cstr_ccat(cstr
, '\\');
395 if (c
>= 32 && c
<= 126) {
398 cstr_ccat(cstr
, '\\');
400 cstr_ccat(cstr
, 'n');
402 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
403 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
404 cstr_ccat(cstr
, '0' + (c
& 7));
409 /* ------------------------------------------------------------------------- */
410 /* allocate a new token */
411 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
413 TokenSym
*ts
, **ptable
;
416 if (tok_ident
>= SYM_FIRST_ANOM
)
417 tcc_error("memory full (symbols)");
419 /* expand token table if needed */
420 i
= tok_ident
- TOK_IDENT
;
421 if ((i
% TOK_ALLOC_INCR
) == 0) {
422 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
423 table_ident
= ptable
;
426 ts
= tal_realloc(toksym_alloc
, 0, sizeof(TokenSym
) + len
);
428 ts
->tok
= tok_ident
++;
429 ts
->sym_define
= NULL
;
430 ts
->sym_label
= NULL
;
431 ts
->sym_struct
= NULL
;
432 ts
->sym_identifier
= NULL
;
434 ts
->hash_next
= NULL
;
435 memcpy(ts
->str
, str
, len
);
441 #define TOK_HASH_INIT 1
442 #define TOK_HASH_FUNC(h, c) ((h) + ((h) << 5) + ((h) >> 27) + (c))
445 /* find a token and add it if not found */
446 ST_FUNC TokenSym
*tok_alloc(const char *str
, int len
)
454 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
455 h
&= (TOK_HASH_SIZE
- 1);
457 pts
= &hash_ident
[h
];
462 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
464 pts
= &(ts
->hash_next
);
466 return tok_alloc_new(pts
, str
, len
);
469 /* XXX: buffer overflow */
470 /* XXX: float tokens */
471 ST_FUNC
const char *get_tok_str(int v
, CValue
*cv
)
476 cstr_reset(&cstr_buf
);
484 /* XXX: not quite exact, but only useful for testing */
486 sprintf(p
, "%u", (unsigned)cv
->i
);
488 sprintf(p
, "%llu", (unsigned long long)cv
->i
);
492 cstr_ccat(&cstr_buf
, 'L');
494 cstr_ccat(&cstr_buf
, '\'');
495 add_char(&cstr_buf
, cv
->i
);
496 cstr_ccat(&cstr_buf
, '\'');
497 cstr_ccat(&cstr_buf
, '\0');
501 return (char*)cv
->str
.data
;
503 cstr_ccat(&cstr_buf
, 'L');
505 cstr_ccat(&cstr_buf
, '\"');
507 len
= cv
->str
.size
- 1;
509 add_char(&cstr_buf
, ((unsigned char *)cv
->str
.data
)[i
]);
511 len
= (cv
->str
.size
/ sizeof(nwchar_t
)) - 1;
513 add_char(&cstr_buf
, ((nwchar_t
*)cv
->str
.data
)[i
]);
515 cstr_ccat(&cstr_buf
, '\"');
516 cstr_ccat(&cstr_buf
, '\0');
520 cstr_cat(&cstr_buf
, "<float>", 0);
523 cstr_cat(&cstr_buf
, "<double>", 0);
526 cstr_cat(&cstr_buf
, "<long double>", 0);
529 cstr_cat(&cstr_buf
, "<linenumber>", 0);
532 /* above tokens have value, the ones below don't */
541 return strcpy(p
, "...");
543 return strcpy(p
, "<<=");
545 return strcpy(p
, ">>=");
548 /* search in two bytes table */
549 const unsigned char *q
= tok_two_chars
;
555 return cstr_buf
.data
;
560 sprintf(cstr_buf
.data
, "<%02x>", v
);
561 return cstr_buf
.data
;
566 } else if (v
< tok_ident
) {
567 return table_ident
[v
- TOK_IDENT
]->str
;
568 } else if (v
>= SYM_FIRST_ANOM
) {
569 /* special name for anonymous symbol */
570 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
572 /* should never happen */
577 return cstr_buf
.data
;
580 /* return the current character, handling end of block if necessary
582 ST_FUNC
int handle_eob(void)
584 BufferedFile
*bf
= file
;
587 /* only tries to read if really end of buffer */
588 if (bf
->buf_ptr
>= bf
->buf_end
) {
590 #if defined(PARSE_DEBUG)
595 len
= read(bf
->fd
, bf
->buffer
, len
);
602 bf
->buf_ptr
= bf
->buffer
;
603 bf
->buf_end
= bf
->buffer
+ len
;
604 *bf
->buf_end
= CH_EOB
;
606 if (bf
->buf_ptr
< bf
->buf_end
) {
607 return bf
->buf_ptr
[0];
609 bf
->buf_ptr
= bf
->buf_end
;
614 /* read next char from current input file and handle end of input buffer */
615 ST_INLN
void inp(void)
617 ch
= *(++(file
->buf_ptr
));
618 /* end of buffer/file handling */
623 /* handle '\[\r]\n' */
624 static int handle_stray_noerror(void)
631 } else if (ch
== '\r') {
645 static void handle_stray(void)
647 if (handle_stray_noerror())
648 tcc_error("stray '\\' in program");
651 /* skip the stray and handle the \\n case. Output an error if
652 incorrect char after the stray */
653 static int handle_stray1(uint8_t *p
)
658 if (p
>= file
->buf_end
) {
665 if (handle_stray_noerror()) {
666 if (!(parse_flags
& PARSE_FLAG_ACCEPT_STRAYS
))
667 tcc_error("stray '\\' in program");
668 *--file
->buf_ptr
= '\\';
675 /* handle just the EOB case, but not stray */
676 #define PEEKC_EOB(c, p)\
687 /* handle the complicated stray case */
693 c = handle_stray1(p);\
698 /* input with '\[\r]\n' handling. Note that this function cannot
699 handle other characters after '\', so you cannot call it inside
700 strings or comments */
701 ST_FUNC
void minp(void)
708 /* single line C++ comments */
709 static uint8_t *parse_line_comment(uint8_t *p
)
717 if (c
== '\n' || c
== CH_EOF
) {
719 } else if (c
== '\\') {
728 } else if (c
== '\r') {
746 ST_FUNC
uint8_t *parse_comment(uint8_t *p
)
755 if (c
== '\n' || c
== '*' || c
== '\\')
759 if (c
== '\n' || c
== '*' || c
== '\\')
763 /* now we can handle all the cases */
767 } else if (c
== '*') {
773 } else if (c
== '/') {
775 } else if (c
== '\\') {
780 tcc_error("unexpected end of file in comment");
782 /* skip '\[\r]\n', otherwise just skip the stray */
788 } else if (c
== '\r') {
805 /* stray, eob or eof */
810 tcc_error("unexpected end of file in comment");
811 } else if (c
== '\\') {
821 ST_FUNC
void set_idnum(int c
, int val
)
823 isidnum_table
[c
- CH_EOF
] = val
;
828 static inline void skip_spaces(void)
830 while (isidnum_table
[ch
- CH_EOF
] & IS_SPC
)
834 static inline int check_space(int t
, int *spc
)
836 if (t
< 256 && (isidnum_table
[t
- CH_EOF
] & IS_SPC
)) {
845 /* parse a string without interpreting escapes */
846 static uint8_t *parse_pp_string(uint8_t *p
,
847 int sep
, CString
*str
)
855 } else if (c
== '\\') {
861 /* XXX: indicate line number of start of string */
862 tcc_error("missing terminating %c character", sep
);
863 } else if (c
== '\\') {
864 /* escape : just skip \[\r]\n */
869 } else if (c
== '\r') {
872 expect("'\n' after '\r'");
875 } else if (c
== CH_EOF
) {
876 goto unterminated_string
;
879 cstr_ccat(str
, '\\');
885 } else if (c
== '\n') {
888 } else if (c
== '\r') {
892 cstr_ccat(str
, '\r');
908 /* skip block of text until #else, #elif or #endif. skip also pairs of
910 static void preprocess_skip(void)
912 int a
, start_of_line
, c
, in_warn_or_error
;
919 in_warn_or_error
= 0;
940 } else if (c
== '\\') {
941 ch
= file
->buf_ptr
[0];
942 handle_stray_noerror();
949 if (in_warn_or_error
)
951 p
= parse_pp_string(p
, c
, NULL
);
955 if (in_warn_or_error
)
962 p
= parse_comment(p
);
963 } else if (ch
== '/') {
964 p
= parse_line_comment(p
);
974 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
976 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
978 else if (tok
== TOK_ENDIF
)
980 else if( tok
== TOK_ERROR
|| tok
== TOK_WARNING
)
981 in_warn_or_error
= 1;
982 else if (tok
== TOK_LINEFEED
)
984 else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
985 p
= parse_line_comment(p
- 1);
986 } else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
987 p
= parse_line_comment(p
- 1);
1000 /* ParseState handling */
1002 /* XXX: currently, no include file info is stored. Thus, we cannot display
1003 accurate messages if the function or data definition spans multiple
1006 /* save current parse state in 's' */
1007 ST_FUNC
void save_parse_state(ParseState
*s
)
1009 s
->line_num
= file
->line_num
;
1010 s
->macro_ptr
= macro_ptr
;
1015 /* restore parse state from 's' */
1016 ST_FUNC
void restore_parse_state(ParseState
*s
)
1018 file
->line_num
= s
->line_num
;
1019 macro_ptr
= s
->macro_ptr
;
1024 /* return the number of additional 'ints' necessary to store the
1026 static inline int tok_size(const int *p
)
1041 return 1 + ((sizeof(CString
) + ((CString
*)(p
+1))->size
+ 3) >> 2);
1047 return 1 + LDOUBLE_SIZE
/ 4;
1053 /* token string handling */
1055 ST_INLN
void tok_str_new(TokenString
*s
)
1059 s
->allocated_len
= 0;
1060 s
->last_line_num
= -1;
1063 ST_FUNC TokenString
*tok_str_alloc(void)
1065 TokenString
*str
= tal_realloc(tokstr_alloc
, 0, sizeof *str
);
1070 ST_FUNC
int *tok_str_dup(TokenString
*s
)
1074 str
= tal_realloc(tokstr_alloc
, 0, s
->len
* sizeof(int));
1075 memcpy(str
, s
->str
, s
->len
* sizeof(int));
1079 ST_FUNC
void tok_str_free_str(int *str
)
1081 tal_free(tokstr_alloc
, str
);
1084 ST_FUNC
void tok_str_free(TokenString
*str
)
1086 tok_str_free_str(str
->str
);
1087 tal_free(tokstr_alloc
, str
);
1090 ST_FUNC
int *tok_str_realloc(TokenString
*s
, int new_size
)
1094 size
= s
->allocated_len
;
1097 while (size
< new_size
)
1099 if (size
> s
->allocated_len
) {
1100 str
= tal_realloc(tokstr_alloc
, s
->str
, size
* sizeof(int));
1101 s
->allocated_len
= size
;
1107 ST_FUNC
void tok_str_add(TokenString
*s
, int t
)
1113 if (len
>= s
->allocated_len
)
1114 str
= tok_str_realloc(s
, len
+ 1);
1119 ST_FUNC
void begin_macro(TokenString
*str
, int alloc
)
1122 str
->prev
= macro_stack
;
1123 str
->prev_ptr
= macro_ptr
;
1124 macro_ptr
= str
->str
;
1128 ST_FUNC
void end_macro(void)
1130 TokenString
*str
= macro_stack
;
1131 macro_stack
= str
->prev
;
1132 macro_ptr
= str
->prev_ptr
;
1133 if (str
->alloc
== 2) {
1134 str
->alloc
= 3; /* just mark as finished */
1140 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
1147 /* allocate space for worst case */
1148 if (len
+ TOK_MAX_SIZE
>= s
->allocated_len
)
1149 str
= tok_str_realloc(s
, len
+ TOK_MAX_SIZE
+ 1);
1158 str
[len
++] = cv
->tab
[0];
1165 /* Insert the string into the int array. */
1167 1 + (cv
->str
.size
+ sizeof(int) - 1) / sizeof(int);
1168 if (len
+ nb_words
>= s
->allocated_len
)
1169 str
= tok_str_realloc(s
, len
+ nb_words
+ 1);
1170 str
[len
] = cv
->str
.size
;
1171 memcpy(&str
[len
+ 1], cv
->str
.data
, cv
->str
.size
);
1178 #if LDOUBLE_SIZE == 8
1181 str
[len
++] = cv
->tab
[0];
1182 str
[len
++] = cv
->tab
[1];
1184 #if LDOUBLE_SIZE == 12
1186 str
[len
++] = cv
->tab
[0];
1187 str
[len
++] = cv
->tab
[1];
1188 str
[len
++] = cv
->tab
[2];
1189 #elif LDOUBLE_SIZE == 16
1191 str
[len
++] = cv
->tab
[0];
1192 str
[len
++] = cv
->tab
[1];
1193 str
[len
++] = cv
->tab
[2];
1194 str
[len
++] = cv
->tab
[3];
1195 #elif LDOUBLE_SIZE != 8
1196 #error add long double size support
1205 /* add the current parse token in token string 's' */
1206 ST_FUNC
void tok_str_add_tok(TokenString
*s
)
1210 /* save line number info */
1211 if (file
->line_num
!= s
->last_line_num
) {
1212 s
->last_line_num
= file
->line_num
;
1213 cval
.i
= s
->last_line_num
;
1214 tok_str_add2(s
, TOK_LINENUM
, &cval
);
1216 tok_str_add2(s
, tok
, &tokc
);
1219 /* get a token from an integer array and increment pointer
1220 accordingly. we code it as a macro to avoid pointer aliasing. */
1221 static inline void TOK_GET(int *t
, const int **pp
, CValue
*cv
)
1240 cv
->str
.size
= *p
++;
1242 p
+= (cv
->str
.size
+ sizeof(int) - 1) / sizeof(int);
1250 #if LDOUBLE_SIZE == 16
1252 #elif LDOUBLE_SIZE == 12
1254 #elif LDOUBLE_SIZE == 8
1257 # error add long double size support
1270 /* Calling this function is expensive, but it is not possible
1271 to read a token string backwards. */
1272 static int tok_last(const int *str0
, const int *str1
)
1274 const int *str
= str0
;
1279 TOK_GET(&tok
, &str
, &cval
);
1283 static int macro_is_equal(const int *a
, const int *b
)
1292 /* first time preallocate macro_equal_buf, next time only reset position to start */
1293 cstr_reset(¯o_equal_buf
);
1294 TOK_GET(&t
, &a
, &cv
);
1295 cstr_cat(¯o_equal_buf
, get_tok_str(t
, &cv
), 0);
1296 TOK_GET(&t
, &b
, &cv
);
1297 if (strcmp(macro_equal_buf
.data
, get_tok_str(t
, &cv
)))
1303 /* defines handling */
1304 ST_INLN
void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
1309 s
= sym_push2(&define_stack
, v
, macro_type
, 0);
1311 s
->next
= first_arg
;
1312 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
1314 if (o
&& !macro_is_equal(o
->d
, s
->d
))
1315 tcc_warning("%s redefined", get_tok_str(v
, NULL
));
1318 /* undefined a define symbol. Its name is just set to zero */
1319 ST_FUNC
void define_undef(Sym
*s
)
1322 if (v
>= TOK_IDENT
&& v
< tok_ident
)
1323 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
1326 ST_INLN Sym
*define_find(int v
)
1329 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1331 return table_ident
[v
]->sym_define
;
1334 /* free define stack until top reaches 'b' */
1335 ST_FUNC
void free_defines(Sym
*b
)
1337 while (define_stack
!= b
) {
1338 Sym
*top
= define_stack
;
1339 define_stack
= top
->prev
;
1340 tok_str_free_str(top
->d
);
1345 /* restore remaining (-D or predefined) symbols if they were
1346 #undef'd in the file */
1349 if (v
>= TOK_IDENT
&& v
< tok_ident
) {
1350 Sym
**d
= &table_ident
[v
- TOK_IDENT
]->sym_define
;
1359 ST_FUNC Sym
*label_find(int v
)
1362 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1364 return table_ident
[v
]->sym_label
;
1367 ST_FUNC Sym
*label_push(Sym
**ptop
, int v
, int flags
)
1370 s
= sym_push2(ptop
, v
, 0, 0);
1372 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
1373 if (ptop
== &global_label_stack
) {
1374 /* modify the top most local identifier, so that
1375 sym_identifier will point to 's' when popped */
1377 ps
= &(*ps
)->prev_tok
;
1384 /* pop labels until element last is reached. Look if any labels are
1385 undefined. Define symbols if '&&label' was used. */
1386 ST_FUNC
void label_pop(Sym
**ptop
, Sym
*slast
)
1389 for(s
= *ptop
; s
!= slast
; s
= s1
) {
1391 if (s
->r
== LABEL_DECLARED
) {
1392 tcc_warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
1393 } else if (s
->r
== LABEL_FORWARD
) {
1394 tcc_error("label '%s' used but not defined",
1395 get_tok_str(s
->v
, NULL
));
1398 /* define corresponding symbol. A size of
1400 put_extern_sym(s
, cur_text_section
, s
->jnext
, 1);
1404 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
1410 /* eval an expression for #if/#elif */
1411 static int expr_preprocess(void)
1416 str
= tok_str_alloc();
1417 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1418 next(); /* do macro subst */
1419 if (tok
== TOK_DEFINED
) {
1424 c
= define_find(tok
) != 0;
1429 } else if (tok
>= TOK_IDENT
) {
1430 /* if undefined macro */
1434 tok_str_add_tok(str
);
1436 tok_str_add(str
, -1); /* simulate end of file */
1437 tok_str_add(str
, 0);
1438 /* now evaluate C constant expression */
1439 begin_macro(str
, 1);
1447 /* parse after #define */
1448 ST_FUNC
void parse_define(void)
1450 Sym
*s
, *first
, **ps
;
1451 int v
, t
, varg
, is_vaargs
, spc
;
1452 int saved_parse_flags
= parse_flags
;
1456 tcc_error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
1457 /* XXX: should check if same macro (ANSI) */
1460 /* We have to parse the whole define as if not in asm mode, in particular
1461 no line comment with '#' must be ignored. Also for function
1462 macros the argument list must be parsed without '.' being an ID
1464 parse_flags
= ((parse_flags
& ~PARSE_FLAG_ASM_FILE
) | PARSE_FLAG_SPACES
);
1465 /* '(' must be just after macro definition for MACRO_FUNC */
1471 if (tok
!= ')') for (;;) {
1475 if (varg
== TOK_DOTS
) {
1476 varg
= TOK___VA_ARGS__
;
1478 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
1482 if (varg
< TOK_IDENT
)
1484 tcc_error("bad macro parameter list");
1485 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
1490 if (tok
!= ',' || is_vaargs
)
1500 parse_flags
|= PARSE_FLAG_ACCEPT_STRAYS
| PARSE_FLAG_SPACES
| PARSE_FLAG_LINEFEED
;
1501 /* The body of a macro definition should be parsed such that identifiers
1502 are parsed like the file mode determines (i.e. with '.' being an
1503 ID character in asm mode). But '#' should be retained instead of
1504 regarded as line comment leader, so still don't set ASM_FILE
1506 set_idnum('.', (saved_parse_flags
& PARSE_FLAG_ASM_FILE
) ? IS_ID
: 0);
1507 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1508 /* remove spaces around ## and after '#' */
1509 if (TOK_TWOSHARPS
== tok
) {
1516 } else if ('#' == tok
) {
1518 } else if (check_space(tok
, &spc
)) {
1521 tok_str_add2(&tokstr_buf
, tok
, &tokc
);
1526 parse_flags
= saved_parse_flags
;
1528 --tokstr_buf
.len
; /* remove trailing space */
1529 tok_str_add(&tokstr_buf
, 0);
1532 tcc_error("'##' cannot appear at either end of macro");
1533 define_push(v
, t
, tok_str_dup(&tokstr_buf
), first
);
1536 static CachedInclude
*search_cached_include(TCCState
*s1
, const char *filename
, int add
)
1538 const unsigned char *s
;
1544 s
= (unsigned char *) filename
;
1547 h
= TOK_HASH_FUNC(h
, toup(*s
));
1549 h
= TOK_HASH_FUNC(h
, *s
);
1553 h
&= (CACHED_INCLUDES_HASH_SIZE
- 1);
1555 i
= s1
->cached_includes_hash
[h
];
1559 e
= s1
->cached_includes
[i
- 1];
1560 if (0 == PATHCMP(e
->filename
, filename
))
1567 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
1568 strcpy(e
->filename
, filename
);
1569 e
->ifndef_macro
= e
->once
= 0;
1570 dynarray_add(&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
1571 /* add in hash table */
1572 e
->hash_next
= s1
->cached_includes_hash
[h
];
1573 s1
->cached_includes_hash
[h
] = s1
->nb_cached_includes
;
1575 printf("adding cached '%s'\n", filename
);
1580 static void pragma_parse(TCCState
*s1
)
1583 if (tok
== TOK_push_macro
|| tok
== TOK_pop_macro
) {
1587 if (next(), tok
!= '(')
1589 if (next(), tok
!= TOK_STR
)
1591 v
= tok_alloc(tokc
.str
.data
, tokc
.str
.size
- 1)->tok
;
1592 if (next(), tok
!= ')')
1594 if (t
== TOK_push_macro
) {
1595 while (NULL
== (s
= define_find(v
)))
1596 define_push(v
, 0, NULL
, NULL
);
1597 s
->type
.ref
= s
; /* set push boundary */
1599 for (s
= define_stack
; s
; s
= s
->prev
)
1600 if (s
->v
== v
&& s
->type
.ref
== s
) {
1606 table_ident
[v
- TOK_IDENT
]->sym_define
= s
->d
? s
: NULL
;
1608 tcc_warning("unbalanced #pragma pop_macro");
1609 pp_debug_tok
= t
, pp_debug_symv
= v
;
1611 } else if (tok
== TOK_once
) {
1612 search_cached_include(s1
, file
->filename
, 1)->once
= pp_once
;
1614 } else if (s1
->ppfp
) {
1615 /* tcc -E: keep pragmas below unchanged */
1617 unget_tok(TOK_PRAGMA
);
1619 unget_tok(TOK_LINEFEED
);
1621 } else if (tok
== TOK_pack
) {
1623 #pragma pack(1) // set
1624 #pragma pack() // reset to default
1625 #pragma pack(push,1) // push & set
1626 #pragma pack(pop) // restore previous */
1629 if (tok
== TOK_ASM_pop
) {
1631 if (s1
->pack_stack_ptr
<= s1
->pack_stack
) {
1633 tcc_error("out of pack stack");
1635 s1
->pack_stack_ptr
--;
1639 if (tok
== TOK_ASM_push
) {
1641 if (s1
->pack_stack_ptr
>= s1
->pack_stack
+ PACK_STACK_SIZE
- 1)
1643 s1
->pack_stack_ptr
++;
1646 if (tok
!= TOK_CINT
)
1649 if (val
< 1 || val
> 16 || (val
& (val
- 1)) != 0)
1653 *s1
->pack_stack_ptr
= val
;
1658 } else if (tok
== TOK_comment
) {
1668 file
= tcc_strdup((char *)tokc
.str
.data
);
1669 dynarray_add(&s1
->pragma_libs
, &s1
->nb_pragma_libs
, file
);
1675 if (s1
->warn_unsupported
)
1676 tcc_warning("#pragma %s is ignored", get_tok_str(tok
, &tokc
));
1681 tcc_error("malformed #pragma directive");
1685 /* is_bof is true if first non space token at beginning of file */
1686 ST_FUNC
void preprocess(int is_bof
)
1688 TCCState
*s1
= tcc_state
;
1689 int i
, c
, n
, saved_parse_flags
;
1693 saved_parse_flags
= parse_flags
;
1694 parse_flags
= PARSE_FLAG_PREPROCESS
1695 | PARSE_FLAG_TOK_NUM
1696 | PARSE_FLAG_TOK_STR
1697 | PARSE_FLAG_LINEFEED
1698 | (parse_flags
& PARSE_FLAG_ASM_FILE
)
1707 pp_debug_symv
= tok
;
1713 pp_debug_symv
= tok
;
1714 s
= define_find(tok
);
1715 /* undefine symbol by putting an invalid name */
1720 case TOK_INCLUDE_NEXT
:
1721 ch
= file
->buf_ptr
[0];
1722 /* XXX: incorrect if comments : use next_nomacro with a special mode */
1727 } else if (ch
== '\"') {
1732 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
1733 if ((q
- buf
) < sizeof(buf
) - 1)
1736 if (handle_stray_noerror() == 0)
1744 /* eat all spaces and comments after include */
1745 /* XXX: slightly incorrect */
1746 while (ch1
!= '\n' && ch1
!= CH_EOF
)
1751 /* computed #include : concatenate everything up to linefeed,
1752 the result must be one of the two accepted forms.
1753 Don't convert pp-tokens to tokens here. */
1754 parse_flags
= (PARSE_FLAG_PREPROCESS
1755 | PARSE_FLAG_LINEFEED
1756 | (parse_flags
& PARSE_FLAG_ASM_FILE
));
1759 while (tok
!= TOK_LINEFEED
) {
1760 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
1764 /* check syntax and remove '<>|""' */
1765 if ((len
< 2 || ((buf
[0] != '"' || buf
[len
-1] != '"') &&
1766 (buf
[0] != '<' || buf
[len
-1] != '>'))))
1767 tcc_error("'#include' expects \"FILENAME\" or <FILENAME>");
1769 memmove(buf
, buf
+ 1, len
- 2);
1770 buf
[len
- 2] = '\0';
1773 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
1774 tcc_error("#include recursion too deep");
1775 /* store current file in stack, but increment stack later below */
1776 *s1
->include_stack_ptr
= file
;
1777 i
= tok
== TOK_INCLUDE_NEXT
? file
->include_next_index
: 0;
1778 n
= 2 + s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
1779 for (; i
< n
; ++i
) {
1780 char buf1
[sizeof file
->filename
];
1785 /* check absolute include path */
1786 if (!IS_ABSPATH(buf
))
1790 } else if (i
== 1) {
1791 /* search in file's dir if "header.h" */
1794 path
= file
->filename
;
1795 pstrncpy(buf1
, path
, tcc_basename(path
) - path
);
1798 /* search in all the include paths */
1799 int j
= i
- 2, k
= j
- s1
->nb_include_paths
;
1800 path
= k
< 0 ? s1
->include_paths
[j
] : s1
->sysinclude_paths
[k
];
1801 pstrcpy(buf1
, sizeof(buf1
), path
);
1802 pstrcat(buf1
, sizeof(buf1
), "/");
1805 pstrcat(buf1
, sizeof(buf1
), buf
);
1806 e
= search_cached_include(s1
, buf1
, 0);
1807 if (e
&& (define_find(e
->ifndef_macro
) || e
->once
== pp_once
)) {
1808 /* no need to parse the include because the 'ifndef macro'
1809 is defined (or had #pragma once) */
1811 printf("%s: skipping cached %s\n", file
->filename
, buf1
);
1816 if (tcc_open(s1
, buf1
) < 0)
1819 file
->include_next_index
= i
+ 1;
1821 printf("%s: including %s\n", file
->prev
->filename
, file
->filename
);
1823 /* update target deps */
1824 dynarray_add(&s1
->target_deps
, &s1
->nb_target_deps
,
1826 /* push current file in stack */
1827 ++s1
->include_stack_ptr
;
1828 /* add include file debug info */
1830 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1831 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
1832 ch
= file
->buf_ptr
[0];
1835 tcc_error("include file '%s' not found", buf
);
1842 c
= expr_preprocess();
1848 if (tok
< TOK_IDENT
)
1849 tcc_error("invalid argument for '#if%sdef'", c
? "n" : "");
1853 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
1855 file
->ifndef_macro
= tok
;
1858 c
= (define_find(tok
) != 0) ^ c
;
1860 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
1861 tcc_error("memory full (ifdef)");
1862 *s1
->ifdef_stack_ptr
++ = c
;
1865 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1866 tcc_error("#else without matching #if");
1867 if (s1
->ifdef_stack_ptr
[-1] & 2)
1868 tcc_error("#else after #else");
1869 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
1872 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1873 tcc_error("#elif without matching #if");
1874 c
= s1
->ifdef_stack_ptr
[-1];
1876 tcc_error("#elif after #else");
1877 /* last #if/#elif expression was true: we skip */
1881 c
= expr_preprocess();
1882 s1
->ifdef_stack_ptr
[-1] = c
;
1885 if (s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
+ 1)
1886 file
->ifndef_macro
= 0;
1895 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
1896 tcc_error("#endif without matching #if");
1897 s1
->ifdef_stack_ptr
--;
1898 /* '#ifndef macro' was at the start of file. Now we check if
1899 an '#endif' is exactly at the end of file */
1900 if (file
->ifndef_macro
&&
1901 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
1902 file
->ifndef_macro_saved
= file
->ifndef_macro
;
1903 /* need to set to zero to avoid false matches if another
1904 #ifndef at middle of file */
1905 file
->ifndef_macro
= 0;
1906 while (tok
!= TOK_LINEFEED
)
1908 tok_flags
|= TOK_FLAG_ENDIF
;
1913 n
= strtoul((char*)tokc
.str
.data
, &q
, 10);
1917 if (tok
!= TOK_CINT
)
1919 tcc_error("wrong #line format");
1923 if (tok
!= TOK_LINEFEED
) {
1925 pstrcpy(file
->filename
, sizeof(file
->filename
), (char *)tokc
.str
.data
);
1926 else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
1933 total_lines
+= file
->line_num
- n
;
1936 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1941 ch
= file
->buf_ptr
[0];
1944 while (ch
!= '\n' && ch
!= CH_EOF
) {
1945 if ((q
- buf
) < sizeof(buf
) - 1)
1948 if (handle_stray_noerror() == 0)
1955 tcc_error("#error %s", buf
);
1957 tcc_warning("#warning %s", buf
);
1965 /* ignore gas line comment in an 'S' file. */
1966 if (saved_parse_flags
& PARSE_FLAG_ASM_FILE
)
1968 if (tok
== '!' && is_bof
)
1969 /* '!' is ignored at beginning to allow C scripts. */
1971 tcc_warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
1973 file
->buf_ptr
= parse_line_comment(file
->buf_ptr
- 1);
1976 /* ignore other preprocess commands or #! for C scripts */
1977 while (tok
!= TOK_LINEFEED
)
1980 parse_flags
= saved_parse_flags
;
1983 /* evaluate escape codes in a string. */
1984 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
1999 case '0': case '1': case '2': case '3':
2000 case '4': case '5': case '6': case '7':
2001 /* at most three octal digits */
2006 n
= n
* 8 + c
- '0';
2010 n
= n
* 8 + c
- '0';
2015 goto add_char_nonext
;
2023 if (c
>= 'a' && c
<= 'f')
2025 else if (c
>= 'A' && c
<= 'F')
2035 goto add_char_nonext
;
2059 goto invalid_escape
;
2069 if (c
>= '!' && c
<= '~')
2070 tcc_warning("unknown escape sequence: \'\\%c\'", c
);
2072 tcc_warning("unknown escape sequence: \'\\x%x\'", c
);
2079 cstr_ccat(outstr
, c
);
2081 cstr_wccat(outstr
, c
);
2083 /* add a trailing '\0' */
2085 cstr_ccat(outstr
, '\0');
2087 cstr_wccat(outstr
, '\0');
2090 static void parse_string(const char *s
, int len
)
2092 uint8_t buf
[1000], *p
= buf
;
2095 if ((is_long
= *s
== 'L'))
2099 if (len
>= sizeof buf
)
2100 p
= tcc_malloc(len
+ 1);
2104 cstr_reset(&tokcstr
);
2105 parse_escape_string(&tokcstr
, p
, is_long
);
2111 /* XXX: make it portable */
2115 char_size
= sizeof(nwchar_t
);
2116 if (tokcstr
.size
<= char_size
)
2117 tcc_error("empty character constant");
2118 if (tokcstr
.size
> 2 * char_size
)
2119 tcc_warning("multi-character character constant");
2121 tokc
.i
= *(int8_t *)tokcstr
.data
;
2124 tokc
.i
= *(nwchar_t
*)tokcstr
.data
;
2128 tokc
.str
.size
= tokcstr
.size
;
2129 tokc
.str
.data
= tokcstr
.data
;
2137 /* we use 64 bit numbers */
2140 /* bn = (bn << shift) | or_val */
2141 static void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
2145 for(i
=0;i
<BN_SIZE
;i
++) {
2147 bn
[i
] = (v
<< shift
) | or_val
;
2148 or_val
= v
>> (32 - shift
);
2152 static void bn_zero(unsigned int *bn
)
2155 for(i
=0;i
<BN_SIZE
;i
++) {
2160 /* parse number in null terminated string 'p' and return it in the
2162 static void parse_number(const char *p
)
2164 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
2166 unsigned int bn
[BN_SIZE
];
2177 goto float_frac_parse
;
2178 } else if (t
== '0') {
2179 if (ch
== 'x' || ch
== 'X') {
2183 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
2189 /* parse all digits. cannot check octal numbers at this stage
2190 because of floating point constants */
2192 if (ch
>= 'a' && ch
<= 'f')
2194 else if (ch
>= 'A' && ch
<= 'F')
2202 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
2204 tcc_error("number too long");
2210 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
2211 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
2213 /* NOTE: strtox should support that for hexa numbers, but
2214 non ISOC99 libcs do not support it, so we prefer to do
2216 /* hexadecimal or binary floats */
2217 /* XXX: handle overflows */
2229 } else if (t
>= 'a') {
2231 } else if (t
>= 'A') {
2236 bn_lshift(bn
, shift
, t
);
2243 if (t
>= 'a' && t
<= 'f') {
2245 } else if (t
>= 'A' && t
<= 'F') {
2247 } else if (t
>= '0' && t
<= '9') {
2253 tcc_error("invalid digit");
2254 bn_lshift(bn
, shift
, t
);
2259 if (ch
!= 'p' && ch
!= 'P')
2266 } else if (ch
== '-') {
2270 if (ch
< '0' || ch
> '9')
2271 expect("exponent digits");
2272 while (ch
>= '0' && ch
<= '9') {
2273 exp_val
= exp_val
* 10 + ch
- '0';
2276 exp_val
= exp_val
* s
;
2278 /* now we can generate the number */
2279 /* XXX: should patch directly float number */
2280 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
2281 d
= ldexp(d
, exp_val
- frac_bits
);
2286 /* float : should handle overflow */
2288 } else if (t
== 'L') {
2290 #ifdef TCC_TARGET_PE
2295 /* XXX: not large enough */
2296 tokc
.ld
= (long double)d
;
2303 /* decimal floats */
2305 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2310 while (ch
>= '0' && ch
<= '9') {
2311 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2317 if (ch
== 'e' || ch
== 'E') {
2318 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2322 if (ch
== '-' || ch
== '+') {
2323 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2328 if (ch
< '0' || ch
> '9')
2329 expect("exponent digits");
2330 while (ch
>= '0' && ch
<= '9') {
2331 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2343 tokc
.f
= strtof(token_buf
, NULL
);
2344 } else if (t
== 'L') {
2346 #ifdef TCC_TARGET_PE
2348 tokc
.d
= strtod(token_buf
, NULL
);
2351 tokc
.ld
= strtold(token_buf
, NULL
);
2355 tokc
.d
= strtod(token_buf
, NULL
);
2359 unsigned long long n
, n1
;
2360 int lcount
, ucount
, must_64bit
;
2363 /* integer number */
2366 if (b
== 10 && *q
== '0') {
2373 /* no need for checks except for base 10 / 8 errors */
2383 tcc_error("invalid digit");
2386 /* detect overflow */
2387 /* XXX: this test is not reliable */
2389 tcc_error("integer constant overflow");
2392 /* Determine the characteristics (unsigned and/or 64bit) the type of
2393 the constant must have according to the constant suffix(es) */
2394 lcount
= ucount
= must_64bit
= 0;
2400 tcc_error("three 'l's in integer constant");
2401 if (lcount
&& *(p
- 1) != ch
)
2402 tcc_error("incorrect integer suffix: %s", p1
);
2404 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
2409 } else if (t
== 'U') {
2411 tcc_error("two 'u's in integer constant");
2419 /* Whether 64 bits are needed to hold the constant's value */
2420 if (n
& 0xffffffff00000000LL
|| must_64bit
) {
2428 /* Whether type must be unsigned to hold the constant's value */
2429 if (ucount
|| ((n1
>> 31) && (b
!= 10))) {
2430 if (tok
== TOK_CLLONG
)
2434 /* If decimal and no unsigned suffix, bump to 64 bits or throw error */
2435 } else if (n1
>> 31) {
2436 if (tok
== TOK_CINT
)
2439 tcc_error("integer constant overflow");
2445 tcc_error("invalid number\n");
2449 #define PARSE2(c1, tok1, c2, tok2) \
2460 /* return next token without macro substitution */
2461 static inline void next_nomacro1(void)
2463 int t
, c
, is_long
, len
;
2476 if (parse_flags
& PARSE_FLAG_SPACES
)
2477 goto keep_tok_flags
;
2478 while (isidnum_table
[*p
- CH_EOF
] & IS_SPC
)
2487 /* first look if it is in fact an end of buffer */
2488 c
= handle_stray1(p
);
2495 TCCState
*s1
= tcc_state
;
2496 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
2497 && !(tok_flags
& TOK_FLAG_EOF
)) {
2498 tok_flags
|= TOK_FLAG_EOF
;
2500 goto keep_tok_flags
;
2501 } else if (!(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2503 } else if (s1
->ifdef_stack_ptr
!= file
->ifdef_stack_ptr
) {
2504 tcc_error("missing #endif");
2505 } else if (s1
->include_stack_ptr
== s1
->include_stack
) {
2506 /* no include left : end of file. */
2509 tok_flags
&= ~TOK_FLAG_EOF
;
2510 /* pop include file */
2512 /* test if previous '#endif' was after a #ifdef at
2514 if (tok_flags
& TOK_FLAG_ENDIF
) {
2516 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
2518 search_cached_include(s1
, file
->filename
, 1)
2519 ->ifndef_macro
= file
->ifndef_macro_saved
;
2520 tok_flags
&= ~TOK_FLAG_ENDIF
;
2523 /* add end of include file debug info */
2524 if (tcc_state
->do_debug
) {
2525 put_stabd(N_EINCL
, 0, 0);
2527 /* pop include stack */
2529 s1
->include_stack_ptr
--;
2538 tok_flags
|= TOK_FLAG_BOL
;
2541 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
2544 goto keep_tok_flags
;
2549 if ((tok_flags
& TOK_FLAG_BOL
) &&
2550 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2552 preprocess(tok_flags
& TOK_FLAG_BOF
);
2558 tok
= TOK_TWOSHARPS
;
2560 if (parse_flags
& PARSE_FLAG_ASM_FILE
) {
2561 p
= parse_line_comment(p
- 1);
2570 /* dollar is allowed to start identifiers when not parsing asm */
2572 if (!(isidnum_table
[c
- CH_EOF
] & IS_ID
)
2573 || (parse_flags
& PARSE_FLAG_ASM_FILE
))
2576 case 'a': case 'b': case 'c': case 'd':
2577 case 'e': case 'f': case 'g': case 'h':
2578 case 'i': case 'j': case 'k': case 'l':
2579 case 'm': case 'n': case 'o': case 'p':
2580 case 'q': case 'r': case 's': case 't':
2581 case 'u': case 'v': case 'w': case 'x':
2583 case 'A': case 'B': case 'C': case 'D':
2584 case 'E': case 'F': case 'G': case 'H':
2585 case 'I': case 'J': case 'K':
2586 case 'M': case 'N': case 'O': case 'P':
2587 case 'Q': case 'R': case 'S': case 'T':
2588 case 'U': case 'V': case 'W': case 'X':
2594 h
= TOK_HASH_FUNC(h
, c
);
2595 while (c
= *++p
, isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2596 h
= TOK_HASH_FUNC(h
, c
);
2601 /* fast case : no stray found, so we have the full token
2602 and we have already hashed it */
2603 h
&= (TOK_HASH_SIZE
- 1);
2604 pts
= &hash_ident
[h
];
2609 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
2611 pts
= &(ts
->hash_next
);
2613 ts
= tok_alloc_new(pts
, (char *) p1
, len
);
2617 cstr_reset(&tokcstr
);
2618 cstr_cat(&tokcstr
, p1
, len
);
2622 while (isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2624 cstr_ccat(&tokcstr
, c
);
2627 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
2633 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
2635 goto parse_ident_fast
;
2638 if (c
== '\'' || c
== '\"') {
2642 cstr_reset(&tokcstr
);
2643 cstr_ccat(&tokcstr
, 'L');
2644 goto parse_ident_slow
;
2649 case '0': case '1': case '2': case '3':
2650 case '4': case '5': case '6': case '7':
2654 /* after the first digit, accept digits, alpha, '.' or sign if
2655 prefixed by 'eEpP' */
2657 cstr_reset(&tokcstr
);
2659 cstr_ccat(&tokcstr
, t
);
2660 if (!((isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2662 || ((c
== '+' || c
== '-')
2663 && (((t
== 'e' || t
== 'E')
2664 && !(parse_flags
& PARSE_FLAG_ASM_FILE
2665 /* 0xe+1 is 3 tokens in asm */
2666 && ((char*)tokcstr
.data
)[0] == '0'
2667 && toup(((char*)tokcstr
.data
)[1]) == 'X'))
2668 || t
== 'p' || t
== 'P'))))
2673 /* We add a trailing '\0' to ease parsing */
2674 cstr_ccat(&tokcstr
, '\0');
2675 tokc
.str
.size
= tokcstr
.size
;
2676 tokc
.str
.data
= tokcstr
.data
;
2681 /* special dot handling because it can also start a number */
2686 } else if ((isidnum_table
['.' - CH_EOF
] & IS_ID
)
2687 && (isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))) {
2689 goto parse_ident_fast
;
2690 } else if (c
== '.') {
2696 *--p
= '.'; /* may underflow into file->unget[] */
2707 cstr_reset(&tokcstr
);
2709 cstr_ccat(&tokcstr
, 'L');
2710 cstr_ccat(&tokcstr
, c
);
2711 p
= parse_pp_string(p
, c
, &tokcstr
);
2712 cstr_ccat(&tokcstr
, c
);
2713 cstr_ccat(&tokcstr
, '\0');
2714 tokc
.str
.size
= tokcstr
.size
;
2715 tokc
.str
.data
= tokcstr
.data
;
2724 } else if (c
== '<') {
2741 } else if (c
== '>') {
2759 } else if (c
== '=') {
2772 } else if (c
== '=') {
2785 } else if (c
== '=') {
2798 } else if (c
== '=') {
2801 } else if (c
== '>') {
2809 PARSE2('!', '!', '=', TOK_NE
)
2810 PARSE2('=', '=', '=', TOK_EQ
)
2811 PARSE2('*', '*', '=', TOK_A_MUL
)
2812 PARSE2('%', '%', '=', TOK_A_MOD
)
2813 PARSE2('^', '^', '=', TOK_A_XOR
)
2815 /* comments or operator */
2819 p
= parse_comment(p
);
2820 /* comments replaced by a blank */
2822 goto keep_tok_flags
;
2823 } else if (c
== '/') {
2824 p
= parse_line_comment(p
);
2826 goto keep_tok_flags
;
2827 } else if (c
== '=') {
2847 case '@': /* only used in assembler */
2853 if (c
>= 0x80 && c
<= 0xFF) /* utf8 identifiers */
2854 goto parse_ident_fast
;
2855 if (parse_flags
& PARSE_FLAG_ASM_FILE
)
2857 tcc_error("unrecognized character \\x%02x", c
);
2863 #if defined(PARSE_DEBUG)
2864 printf("token = %s\n", get_tok_str(tok
, &tokc
));
2868 /* return next token without macro substitution. Can read input from
2870 static void next_nomacro_spc(void)
2876 TOK_GET(&tok
, ¯o_ptr
, &tokc
);
2877 if (tok
== TOK_LINENUM
) {
2878 file
->line_num
= tokc
.i
;
2887 ST_FUNC
void next_nomacro(void)
2891 } while (tok
< 256 && (isidnum_table
[tok
- CH_EOF
] & IS_SPC
));
2895 static void macro_subst(
2896 TokenString
*tok_str
,
2898 const int *macro_str
,
2902 /* substitute arguments in replacement lists in macro_str by the values in
2903 args (field d) and return allocated string */
2904 static int *macro_arg_subst(Sym
**nested_list
, const int *macro_str
, Sym
*args
)
2916 TOK_GET(&t
, ¯o_str
, &cval
);
2921 TOK_GET(&t
, ¯o_str
, &cval
);
2924 s
= sym_find2(args
, t
);
2927 cstr_ccat(&cstr
, '\"');
2931 TOK_GET(&t
, &st
, &cval
);
2932 if (t
!= TOK_PLCHLDR
2934 && 0 == check_space(t
, &spc
)) {
2935 const char *s
= get_tok_str(t
, &cval
);
2937 if (t
== TOK_PPSTR
&& *s
!= '\'')
2938 add_char(&cstr
, *s
);
2940 cstr_ccat(&cstr
, *s
);
2946 cstr_ccat(&cstr
, '\"');
2947 cstr_ccat(&cstr
, '\0');
2949 printf("\nstringize: <%s>\n", (char *)cstr
.data
);
2952 cval
.str
.size
= cstr
.size
;
2953 cval
.str
.data
= cstr
.data
;
2954 tok_str_add2(&str
, TOK_PPSTR
, &cval
);
2958 expect("macro parameter after '#'");
2960 } else if (t
>= TOK_IDENT
) {
2961 s
= sym_find2(args
, t
);
2965 /* if '##' is present before or after, no arg substitution */
2966 if (*macro_str
== TOK_PPJOIN
|| t1
== TOK_PPJOIN
) {
2967 /* special case for var arg macros : ## eats the ','
2968 if empty VA_ARGS variable. */
2969 if (t1
== TOK_PPJOIN
&& t0
== ',' && gnu_ext
&& s
->type
.t
) {
2971 /* suppress ',' '##' */
2974 /* suppress '##' and add variable */
2981 TOK_GET(&t1
, &st
, &cval
);
2984 tok_str_add2(&str
, t1
, &cval
);
2990 /* NOTE: the stream cannot be read when macro
2991 substituing an argument */
2992 macro_subst(&str
, nested_list
, st
, 0);
2994 if (str
.len
== l0
) /* exanded to empty string */
2995 tok_str_add(&str
, TOK_PLCHLDR
);
2997 tok_str_add(&str
, t
);
3000 tok_str_add2(&str
, t
, &cval
);
3004 tok_str_add(&str
, 0);
3008 static char const ab_month_name
[12][4] =
3010 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
3011 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
3014 /* peek or read [ws_str == NULL] next token from function macro call,
3015 walking up macro levels up to the file if necessary */
3016 static int next_argstream(Sym
**nested_list
, int can_read_stream
, TokenString
*ws_str
)
3024 p
= macro_ptr
, t
= *p
;
3026 while (is_space(t
) || TOK_LINEFEED
== t
)
3027 tok_str_add(ws_str
, t
), t
= *++p
;
3029 if (t
== 0 && can_read_stream
) {
3031 /* also, end of scope for nested defined symbol */
3033 while (sa
&& sa
->v
== 0)
3042 while (is_space(ch
) || ch
== '\n' || ch
== '/') {
3045 uint8_t *p
= file
->buf_ptr
;
3048 p
= parse_comment(p
);
3049 file
->buf_ptr
= p
- 1;
3050 } else if (c
== '/') {
3051 p
= parse_line_comment(p
);
3052 file
->buf_ptr
= p
- 1;
3057 if (!(ch
== '\f' || ch
== '\v' || ch
== '\r'))
3058 tok_str_add(ws_str
, ch
);
3072 /* do macro substitution of current token with macro 's' and add
3073 result to (tok_str,tok_len). 'nested_list' is the list of all
3074 macros we got inside to avoid recursing. Return non zero if no
3075 substitution needs to be done */
3076 static int macro_subst_tok(
3077 TokenString
*tok_str
,
3080 int can_read_stream
)
3082 Sym
*args
, *sa
, *sa1
;
3083 int parlevel
, *mstr
, t
, t1
, spc
;
3090 /* if symbol is a macro, prepare substitution */
3091 /* special macros */
3092 if (tok
== TOK___LINE__
) {
3093 snprintf(buf
, sizeof(buf
), "%d", file
->line_num
);
3097 } else if (tok
== TOK___FILE__
) {
3098 cstrval
= file
->filename
;
3100 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
3105 tm
= localtime(&ti
);
3106 if (tok
== TOK___DATE__
) {
3107 snprintf(buf
, sizeof(buf
), "%s %2d %d",
3108 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
3110 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
3111 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
3118 cstr_cat(&cstr
, cstrval
, 0);
3119 cval
.str
.size
= cstr
.size
;
3120 cval
.str
.data
= cstr
.data
;
3121 tok_str_add2(tok_str
, t1
, &cval
);
3124 int saved_parse_flags
= parse_flags
;
3127 if (s
->type
.t
== MACRO_FUNC
) {
3128 /* whitespace between macro name and argument list */
3130 tok_str_new(&ws_str
);
3133 parse_flags
|= PARSE_FLAG_SPACES
| PARSE_FLAG_LINEFEED
3134 | PARSE_FLAG_ACCEPT_STRAYS
;
3136 /* get next token from argument stream */
3137 t
= next_argstream(nested_list
, can_read_stream
, &ws_str
);
3139 /* not a macro substitution after all, restore the
3140 * macro token plus all whitespace we've read.
3141 * whitespace is intentionally not merged to preserve
3143 parse_flags
= saved_parse_flags
;
3144 tok_str_add(tok_str
, tok
);
3145 if (parse_flags
& PARSE_FLAG_SPACES
) {
3147 for (i
= 0; i
< ws_str
.len
; i
++)
3148 tok_str_add(tok_str
, ws_str
.str
[i
]);
3150 tok_str_free_str(ws_str
.str
);
3153 tok_str_free_str(ws_str
.str
);
3155 next_nomacro(); /* eat '(' */
3157 /* argument macro */
3160 /* NOTE: empty args are allowed, except if no args */
3163 next_argstream(nested_list
, can_read_stream
, NULL
);
3164 } while (is_space(tok
) || TOK_LINEFEED
== tok
);
3166 /* handle '()' case */
3167 if (!args
&& !sa
&& tok
== ')')
3170 tcc_error("macro '%s' used with too many args",
3171 get_tok_str(s
->v
, 0));
3174 /* NOTE: non zero sa->t indicates VA_ARGS */
3175 while ((parlevel
> 0 ||
3177 (tok
!= ',' || sa
->type
.t
)))) {
3178 if (tok
== TOK_EOF
|| tok
== 0)
3182 else if (tok
== ')')
3184 if (tok
== TOK_LINEFEED
)
3186 if (!check_space(tok
, &spc
))
3187 tok_str_add2(&str
, tok
, &tokc
);
3188 next_argstream(nested_list
, can_read_stream
, NULL
);
3193 tok_str_add(&str
, 0);
3194 sa1
= sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, 0);
3198 /* special case for gcc var args: add an empty
3199 var arg argument if it is omitted */
3200 if (sa
&& sa
->type
.t
&& gnu_ext
)
3208 tcc_error("macro '%s' used with too few args",
3209 get_tok_str(s
->v
, 0));
3212 parse_flags
= saved_parse_flags
;
3214 /* now subst each arg */
3215 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
3220 tok_str_free_str(sa
->d
);
3226 sym_push2(nested_list
, s
->v
, 0, 0);
3227 parse_flags
= saved_parse_flags
;
3228 macro_subst(tok_str
, nested_list
, mstr
, can_read_stream
| 2);
3230 /* pop nested defined symbol */
3232 *nested_list
= sa1
->prev
;
3235 tok_str_free_str(mstr
);
3240 static int paste_tokens(int t1
, CValue
*v1
, int t2
, CValue
*v2
)
3246 if (t1
!= TOK_PLCHLDR
)
3247 cstr_cat(&cstr
, get_tok_str(t1
, v1
), -1);
3249 if (t2
!= TOK_PLCHLDR
)
3250 cstr_cat(&cstr
, get_tok_str(t2
, v2
), -1);
3251 cstr_ccat(&cstr
, '\0');
3253 tcc_open_bf(tcc_state
, ":paste:", cstr
.size
);
3254 memcpy(file
->buffer
, cstr
.data
, cstr
.size
);
3257 if (0 == *file
->buf_ptr
)
3261 tcc_warning("pasting \"%.*s\" and \"%s\" does not give a valid"
3262 " preprocessing token", n
, cstr
.data
, (char*)cstr
.data
+ n
);
3267 //printf("paste <%s>\n", (char*)cstr.data);
3272 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
3273 return the resulting string (which must be freed). */
3274 static inline int *macro_twosharps(const int *ptr0
)
3278 TokenString macro_str1
;
3279 int start_of_nosubsts
= -1;
3282 /* we search the first '##' */
3283 for (ptr
= ptr0
;;) {
3284 TOK_GET(&t
, &ptr
, &cval
);
3285 if (t
== TOK_PPJOIN
)
3291 tok_str_new(¯o_str1
);
3293 //tok_print(" $$$", ptr0);
3294 for (ptr
= ptr0
;;) {
3295 TOK_GET(&t
, &ptr
, &cval
);
3298 if (t
== TOK_PPJOIN
)
3300 while (*ptr
== TOK_PPJOIN
) {
3302 /* given 'a##b', remove nosubsts preceding 'a' */
3303 if (start_of_nosubsts
>= 0)
3304 macro_str1
.len
= start_of_nosubsts
;
3305 /* given 'a##b', remove nosubsts preceding 'b' */
3306 while ((t1
= *++ptr
) == TOK_NOSUBST
)
3308 if (t1
&& t1
!= TOK_PPJOIN
) {
3309 TOK_GET(&t1
, &ptr
, &cv1
);
3310 if (t
!= TOK_PLCHLDR
|| t1
!= TOK_PLCHLDR
) {
3311 if (paste_tokens(t
, &cval
, t1
, &cv1
)) {
3312 t
= tok
, cval
= tokc
;
3314 tok_str_add2(¯o_str1
, t
, &cval
);
3320 if (t
== TOK_NOSUBST
) {
3321 if (start_of_nosubsts
< 0)
3322 start_of_nosubsts
= macro_str1
.len
;
3324 start_of_nosubsts
= -1;
3326 tok_str_add2(¯o_str1
, t
, &cval
);
3328 tok_str_add(¯o_str1
, 0);
3329 //tok_print(" ###", macro_str1.str);
3330 return macro_str1
.str
;
3333 /* do macro substitution of macro_str and add result to
3334 (tok_str,tok_len). 'nested_list' is the list of all macros we got
3335 inside to avoid recursing. */
3336 static void macro_subst(
3337 TokenString
*tok_str
,
3339 const int *macro_str
,
3345 int t
, spc
, nosubst
;
3347 int *macro_str1
= NULL
;
3349 /* first scan for '##' operator handling */
3353 /* first scan for '##' operator handling */
3354 if (can_read_stream
) {
3355 macro_str1
= macro_twosharps(ptr
);
3361 TOK_GET(&t
, &ptr
, &cval
);
3365 if (t
>= TOK_IDENT
&& 0 == nosubst
) {
3370 /* if nested substitution, do nothing */
3371 if (sym_find2(*nested_list
, t
)) {
3372 /* and mark it as TOK_NOSUBST, so it doesn't get subst'd again */
3373 tok_str_add2(tok_str
, TOK_NOSUBST
, NULL
);
3379 str
.str
= (int*)ptr
;
3380 begin_macro(&str
, 2);
3383 macro_subst_tok(tok_str
, nested_list
, s
, can_read_stream
);
3385 if (str
.alloc
== 3) {
3386 /* already finished by reading function macro arguments */
3394 spc
= (tok_str
->len
&&
3395 is_space(tok_last(tok_str
->str
,
3396 tok_str
->str
+ tok_str
->len
)));
3400 if (t
== '\\' && !(parse_flags
& PARSE_FLAG_ACCEPT_STRAYS
))
3401 tcc_error("stray '\\' in program");
3404 if (!check_space(t
, &spc
))
3405 tok_str_add2(tok_str
, t
, &cval
);
3407 if (t
== TOK_NOSUBST
)
3412 tok_str_free_str(macro_str1
);
3416 /* return next token with macro substitution */
3417 ST_FUNC
void next(void)
3420 if (parse_flags
& PARSE_FLAG_SPACES
)
3426 if (tok
== TOK_NOSUBST
|| tok
== TOK_PLCHLDR
) {
3427 /* discard preprocessor markers */
3429 } else if (tok
== 0) {
3430 /* end of macro or unget token string */
3434 } else if (tok
>= TOK_IDENT
&& (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3436 /* if reading from file, try to substitute macros */
3437 s
= define_find(tok
);
3439 Sym
*nested_list
= NULL
;
3441 macro_subst_tok(&tokstr_buf
, &nested_list
, s
, 1);
3442 tok_str_add(&tokstr_buf
, 0);
3443 begin_macro(&tokstr_buf
, 2);
3447 /* convert preprocessor tokens into C tokens */
3448 if (tok
== TOK_PPNUM
) {
3449 if (parse_flags
& PARSE_FLAG_TOK_NUM
)
3450 parse_number((char *)tokc
.str
.data
);
3451 } else if (tok
== TOK_PPSTR
) {
3452 if (parse_flags
& PARSE_FLAG_TOK_STR
)
3453 parse_string((char *)tokc
.str
.data
, tokc
.str
.size
- 1);
3457 /* push back current token and set current token to 'last_tok'. Only
3458 identifier case handled for labels. */
3459 ST_INLN
void unget_tok(int last_tok
)
3462 TokenString
*str
= tok_str_alloc();
3463 tok_str_add2(str
, tok
, &tokc
);
3464 tok_str_add(str
, 0);
3465 begin_macro(str
, 1);
3469 ST_FUNC
void preprocess_start(TCCState
*s1
)
3473 s1
->include_stack_ptr
= s1
->include_stack
;
3474 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
3475 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
3477 pvtop
= vtop
= vstack
- 1;
3478 s1
->pack_stack
[0] = 0;
3479 s1
->pack_stack_ptr
= s1
->pack_stack
;
3481 set_idnum('$', s1
->dollars_in_identifiers
? IS_ID
: 0);
3482 set_idnum('.', (parse_flags
& PARSE_FLAG_ASM_FILE
) ? IS_ID
: 0);
3484 buf
= tcc_malloc(3 + strlen(file
->filename
));
3485 sprintf(buf
, "\"%s\"", file
->filename
);
3486 tcc_define_symbol(s1
, "__BASE_FILE__", buf
);
3489 if (s1
->nb_cmd_include_files
) {
3493 for (i
= 0; i
< s1
->nb_cmd_include_files
; i
++) {
3494 cstr_cat(&cstr
, "#include \"", -1);
3495 cstr_cat(&cstr
, s1
->cmd_include_files
[i
], -1);
3496 cstr_cat(&cstr
, "\"\n", -1);
3498 *s1
->include_stack_ptr
++ = file
;
3499 tcc_open_bf(s1
, "<command line>", cstr
.size
);
3500 memcpy(file
->buffer
, cstr
.data
, cstr
.size
);
3505 ST_FUNC
void tccpp_new(TCCState
*s
)
3510 /* might be used in error() before preprocess_start() */
3511 s
->include_stack_ptr
= s
->include_stack
;
3513 /* init isid table */
3514 for(i
= CH_EOF
; i
<128; i
++)
3516 is_space(i
) ? IS_SPC
3521 for(i
= 128; i
<256; i
++)
3522 set_idnum(i
, IS_ID
);
3524 /* init allocators */
3525 tal_new(&toksym_alloc
, TOKSYM_TAL_LIMIT
, TOKSYM_TAL_SIZE
);
3526 tal_new(&tokstr_alloc
, TOKSTR_TAL_LIMIT
, TOKSTR_TAL_SIZE
);
3527 tal_new(&cstr_alloc
, CSTR_TAL_LIMIT
, CSTR_TAL_SIZE
);
3529 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
3530 cstr_new(&cstr_buf
);
3531 cstr_realloc(&cstr_buf
, STRING_MAX_SIZE
);
3532 tok_str_new(&tokstr_buf
);
3533 tok_str_realloc(&tokstr_buf
, TOKSTR_MAX_SIZE
);
3535 tok_ident
= TOK_IDENT
;
3544 tok_alloc(p
, r
- p
- 1);
3549 ST_FUNC
void tccpp_delete(TCCState
*s
)
3553 /* free -D and compiler defines */
3556 /* cleanup from error/setjmp */
3565 n
= tok_ident
- TOK_IDENT
;
3566 for(i
= 0; i
< n
; i
++)
3567 tal_free(toksym_alloc
, table_ident
[i
]);
3568 tcc_free(table_ident
);
3571 /* free static buffers */
3572 cstr_free(&tokcstr
);
3573 cstr_free(&cstr_buf
);
3574 cstr_free(¯o_equal_buf
);
3575 tok_str_free_str(tokstr_buf
.str
);
3577 /* free allocators */
3578 tal_delete(toksym_alloc
);
3579 toksym_alloc
= NULL
;
3580 tal_delete(tokstr_alloc
);
3581 tokstr_alloc
= NULL
;
3582 tal_delete(cstr_alloc
);
3586 /* ------------------------------------------------------------------------- */
3587 /* tcc -E [-P[1]] [-dD} support */
3589 static void tok_print(const char *msg
, const int *str
)
3595 fp
= tcc_state
->ppfp
;
3596 if (!fp
|| !tcc_state
->dflag
)
3599 fprintf(fp
, "%s ", msg
);
3601 TOK_GET(&t
, &str
, &cval
);
3604 fprintf(fp
,"%s", get_tok_str(t
, &cval
));
3609 static void pp_line(TCCState
*s1
, BufferedFile
*f
, int level
)
3611 int d
= f
->line_num
- f
->line_ref
;
3616 if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_NONE
) {
3618 } else if (level
== 0 && f
->line_ref
&& d
< 8) {
3620 fputs("\n", s1
->ppfp
), --d
;
3621 } else if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_STD
) {
3622 fprintf(s1
->ppfp
, "#line %d \"%s\"\n", f
->line_num
, f
->filename
);
3624 fprintf(s1
->ppfp
, "# %d \"%s\"%s\n", f
->line_num
, f
->filename
,
3625 level
> 0 ? " 1" : level
< 0 ? " 2" : "");
3627 f
->line_ref
= f
->line_num
;
3630 static void define_print(TCCState
*s1
, int v
)
3636 if (NULL
== s
|| NULL
== s
->d
)
3640 fprintf(fp
, "#define %s", get_tok_str(v
, NULL
));
3641 if (s
->type
.t
== MACRO_FUNC
) {
3646 fprintf(fp
,"%s", get_tok_str(a
->v
& ~SYM_FIELD
, NULL
));
3653 tok_print("", s
->d
);
3656 static void pp_debug_defines(TCCState
*s1
)
3667 pp_line(s1
, file
, 0);
3668 file
->line_ref
= ++file
->line_num
;
3672 vs
= get_tok_str(v
, NULL
);
3673 if (t
== TOK_DEFINE
) {
3674 define_print(s1
, v
);
3675 } else if (t
== TOK_UNDEF
) {
3676 fprintf(fp
, "#undef %s\n", vs
);
3677 } else if (t
== TOK_push_macro
) {
3678 fprintf(fp
, "#pragma push_macro(\"%s\")\n", vs
);
3679 } else if (t
== TOK_pop_macro
) {
3680 fprintf(fp
, "#pragma pop_macro(\"%s\")\n", vs
);
3685 static void pp_debug_builtins(TCCState
*s1
)
3688 for (v
= TOK_IDENT
; v
< tok_ident
; ++v
)
3689 define_print(s1
, v
);
3692 /* Add a space between tokens a and b to avoid unwanted textual pasting */
3693 static int pp_need_space(int a
, int b
)
3695 return 'E' == a
? '+' == b
|| '-' == b
3696 : '+' == a
? TOK_INC
== b
|| '+' == b
3697 : '-' == a
? TOK_DEC
== b
|| '-' == b
3698 : a
>= TOK_IDENT
? b
>= TOK_IDENT
3702 /* maybe hex like 0x1e */
3703 static int pp_check_he0xE(int t
, const char *p
)
3705 if (t
== TOK_PPNUM
&& toup(strchr(p
, 0)[-1]) == 'E')
3710 /* Preprocess the current file */
3711 ST_FUNC
int tcc_preprocess(TCCState
*s1
)
3713 BufferedFile
**iptr
;
3714 int token_seen
, spcs
, level
;
3718 define_start
= define_stack
;
3719 preprocess_start(s1
);
3721 ch
= file
->buf_ptr
[0];
3722 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
3723 parse_flags
= PARSE_FLAG_PREPROCESS
3724 | (parse_flags
& PARSE_FLAG_ASM_FILE
)
3725 | PARSE_FLAG_LINEFEED
3727 | PARSE_FLAG_ACCEPT_STRAYS
3730 /* Credits to Fabrice Bellard's initial revision to demonstrate its
3731 capability to compile and run itself, provided all numbers are
3732 given as decimals. tcc -E -P10 will do. */
3733 if (s1
->Pflag
== 1 + 10)
3734 parse_flags
|= PARSE_FLAG_TOK_NUM
, s1
->Pflag
= 1;
3737 /* for PP benchmarks */
3738 do next(); while (tok
!= TOK_EOF
);
3739 free_defines(define_start
);
3743 if (s1
->dflag
& 1) {
3744 pp_debug_builtins(s1
);
3748 token_seen
= TOK_LINEFEED
, spcs
= 0;
3749 pp_line(s1
, file
, 0);
3752 iptr
= s1
->include_stack_ptr
;
3756 level
= s1
->include_stack_ptr
- iptr
;
3759 pp_line(s1
, *iptr
, 0);
3760 pp_line(s1
, file
, level
);
3764 pp_debug_defines(s1
);
3769 if (token_seen
== TOK_LINEFEED
) {
3774 if (tok
== TOK_LINEFEED
) {
3778 pp_line(s1
, file
, 0);
3779 } else if (tok
== TOK_LINEFEED
) {
3782 spcs
= pp_need_space(token_seen
, tok
);
3786 fputs(" ", s1
->ppfp
), --spcs
;
3787 fputs(p
= get_tok_str(tok
, &tokc
), s1
->ppfp
);
3788 token_seen
= pp_check_he0xE(tok
, p
);;
3790 /* reset define stack, but keep -D and built-ins */
3791 free_defines(define_start
);
3795 /* ------------------------------------------------------------------------- */