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 TokenString tokstr_buf
;
47 static unsigned char isidnum_table
[256 - CH_EOF
];
48 static int pp_debug_tok
, pp_debug_symv
;
50 static void tok_print(const char *msg
, const int *str
);
52 static struct TinyAlloc
*toksym_alloc
;
53 static struct TinyAlloc
*tokstr_alloc
;
54 static struct TinyAlloc
*cstr_alloc
;
56 /* isidnum_table flags: */
61 static TokenString
*macro_stack
;
63 static const char tcc_keywords
[] =
64 #define DEF(id, str) str "\0"
69 /* WARNING: the content of this string encodes token numbers */
70 static const unsigned char tok_two_chars
[] =
72 "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253"
73 "-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
94 '.','.', 0xa8, // C++ token ?
95 '#','#', TOK_TWOSHARPS
,
99 static void next_nomacro_spc(void);
101 ST_FUNC
void skip(int c
)
104 tcc_error("'%c' expected (got \"%s\")", c
, get_tok_str(tok
, &tokc
));
108 ST_FUNC
void expect(const char *msg
)
110 tcc_error("%s expected", msg
);
113 /* ------------------------------------------------------------------------- */
114 /* Custom allocator for tiny objects */
119 #define tal_free(al, p) tcc_free(p)
120 #define tal_realloc(al, p, size) tcc_realloc(p, size)
121 #define tal_new(a,b,c)
122 #define tal_delete(a)
124 #if !defined(MEM_DEBUG)
125 #define tal_free(al, p) tal_free_impl(al, p)
126 #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size)
127 #define TAL_DEBUG_PARAMS
130 //#define TAL_INFO 1 /* collect and dump allocators stats */
131 #define tal_free(al, p) tal_free_impl(al, p, __FILE__, __LINE__)
132 #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size, __FILE__, __LINE__)
133 #define TAL_DEBUG_PARAMS , const char *file, int line
134 #define TAL_DEBUG_FILE_LEN 15
137 #define TOKSYM_TAL_SIZE (768 * 1024) /* allocator for tiny TokenSym in table_ident */
138 #define TOKSTR_TAL_SIZE (768 * 1024) /* allocator for tiny TokenString instances */
139 #define CSTR_TAL_SIZE (256 * 1024) /* allocator for tiny CString instances */
140 #define TOKSYM_TAL_LIMIT 256 /* prefer unique limits to distinguish allocators debug msgs */
141 #define TOKSTR_TAL_LIMIT 128 /* 32 * sizeof(int) */
142 #define CSTR_TAL_LIMIT 1024
144 typedef struct TinyAlloc
{
150 struct TinyAlloc
*next
, *top
;
159 typedef struct tal_header_t
{
162 int line_num
; /* negative line_num used for double free check */
163 char file_name
[TAL_DEBUG_FILE_LEN
+ 1];
167 /* ------------------------------------------------------------------------- */
169 ST_FUNC TinyAlloc
*tal_new(TinyAlloc
**pal
, size_t limit
, size_t size
)
171 TinyAlloc
*al
= tcc_mallocz(sizeof(TinyAlloc
));
172 al
->p
= al
->buffer
= tcc_malloc(size
);
179 ST_FUNC
void tal_delete(TinyAlloc
*al
)
187 fprintf(stderr
, "limit=%5d, size=%5g MB, nb_peak=%6d, nb_total=%8d, nb_missed=%6d, usage=%5.1f%%\n",
188 al
->limit
, al
->size
/ 1024.0 / 1024.0, al
->nb_peak
, al
->nb_total
, al
->nb_missed
,
189 (al
->peak_p
- al
->buffer
) * 100.0 / al
->size
);
192 if (al
->nb_allocs
> 0) {
194 fprintf(stderr
, "TAL_DEBUG: mem leak %d chunks (limit= %d)\n",
195 al
->nb_allocs
, al
->limit
);
198 tal_header_t
*header
= (tal_header_t
*)p
;
199 if (header
->line_num
> 0) {
200 fprintf(stderr
, " file %s, line %u: %u bytes\n",
201 header
->file_name
, header
->line_num
, header
->size
);
203 p
+= header
->size
+ sizeof(tal_header_t
);
208 tcc_free(al
->buffer
);
214 ST_FUNC
void tal_free_impl(TinyAlloc
*al
, void *p TAL_DEBUG_PARAMS
)
219 if (al
->buffer
<= (uint8_t *)p
&& (uint8_t *)p
< al
->buffer
+ al
->size
) {
221 tal_header_t
*header
= (((tal_header_t
*)p
) - 1);
222 if (header
->line_num
< 0) {
223 fprintf(stderr
, "TAL_DEBUG: file %s, line %u double frees chunk from\n",
225 fprintf(stderr
, " file %s, line %u: %u bytes\n",
226 header
->file_name
, -header
->line_num
, header
->size
);
228 header
->line_num
= -header
->line_num
;
233 } else if (al
->next
) {
241 ST_FUNC
void *tal_realloc_impl(TinyAlloc
**pal
, void *p
, size_t size TAL_DEBUG_PARAMS
)
243 tal_header_t
*header
;
246 size_t adj_size
= (size
+ 3) & -4;
247 TinyAlloc
*al
= *pal
;
250 is_own
= (al
->buffer
<= (uint8_t *)p
&& (uint8_t *)p
< al
->buffer
+ al
->size
);
251 if ((!p
|| is_own
) && size
<= al
->limit
) {
252 if (al
->p
+ adj_size
+ sizeof(tal_header_t
) < al
->buffer
+ al
->size
) {
253 header
= (tal_header_t
*)al
->p
;
254 header
->size
= adj_size
;
256 { int ofs
= strlen(file
) - TAL_DEBUG_FILE_LEN
;
257 strncpy(header
->file_name
, file
+ (ofs
> 0 ? ofs
: 0), TAL_DEBUG_FILE_LEN
);
258 header
->file_name
[TAL_DEBUG_FILE_LEN
] = 0;
259 header
->line_num
= line
; }
261 ret
= al
->p
+ sizeof(tal_header_t
);
262 al
->p
+= adj_size
+ sizeof(tal_header_t
);
264 header
= (((tal_header_t
*)p
) - 1);
265 memcpy(ret
, p
, header
->size
);
267 header
->line_num
= -header
->line_num
;
273 if (al
->nb_peak
< al
->nb_allocs
)
274 al
->nb_peak
= al
->nb_allocs
;
275 if (al
->peak_p
< al
->p
)
282 ret
= tal_realloc(*pal
, 0, size
);
283 header
= (((tal_header_t
*)p
) - 1);
284 memcpy(ret
, p
, header
->size
);
286 header
->line_num
= -header
->line_num
;
293 TinyAlloc
*bottom
= al
, *next
= al
->top
? al
->top
: al
;
295 al
= tal_new(pal
, next
->limit
, next
->size
* 2);
303 ret
= tcc_malloc(size
);
304 header
= (((tal_header_t
*)p
) - 1);
305 memcpy(ret
, p
, header
->size
);
307 header
->line_num
= -header
->line_num
;
309 } else if (al
->next
) {
313 ret
= tcc_realloc(p
, size
);
322 /* ------------------------------------------------------------------------- */
323 /* CString handling */
324 static void cstr_realloc(CString
*cstr
, int new_size
)
328 size
= cstr
->size_allocated
;
330 size
= 8; /* no need to allocate a too small first string */
331 while (size
< new_size
)
333 cstr
->data
= tal_realloc(cstr_alloc
, cstr
->data
, size
);
334 cstr
->size_allocated
= size
;
338 ST_INLN
void cstr_ccat(CString
*cstr
, int ch
)
341 size
= cstr
->size
+ 1;
342 if (size
> cstr
->size_allocated
)
343 cstr_realloc(cstr
, size
);
344 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
348 ST_FUNC
void cstr_cat(CString
*cstr
, const char *str
, int len
)
352 len
= strlen(str
) + 1 + len
;
353 size
= cstr
->size
+ len
;
354 if (size
> cstr
->size_allocated
)
355 cstr_realloc(cstr
, size
);
356 memmove(((unsigned char *)cstr
->data
) + cstr
->size
, str
, len
);
360 /* add a wide char */
361 ST_FUNC
void cstr_wccat(CString
*cstr
, int ch
)
364 size
= cstr
->size
+ sizeof(nwchar_t
);
365 if (size
> cstr
->size_allocated
)
366 cstr_realloc(cstr
, size
);
367 *(nwchar_t
*)(((unsigned char *)cstr
->data
) + size
- sizeof(nwchar_t
)) = ch
;
371 ST_FUNC
void cstr_new(CString
*cstr
)
373 memset(cstr
, 0, sizeof(CString
));
376 /* free string and reset it to NULL */
377 ST_FUNC
void cstr_free(CString
*cstr
)
379 tal_free(cstr_alloc
, cstr
->data
);
383 /* reset string to empty */
384 ST_FUNC
void cstr_reset(CString
*cstr
)
390 static void add_char(CString
*cstr
, int c
)
392 if (c
== '\'' || c
== '\"' || c
== '\\') {
393 /* XXX: could be more precise if char or string */
394 cstr_ccat(cstr
, '\\');
396 if (c
>= 32 && c
<= 126) {
399 cstr_ccat(cstr
, '\\');
401 cstr_ccat(cstr
, 'n');
403 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
404 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
405 cstr_ccat(cstr
, '0' + (c
& 7));
410 /* ------------------------------------------------------------------------- */
411 /* allocate a new token */
412 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
414 TokenSym
*ts
, **ptable
;
417 if (tok_ident
>= SYM_FIRST_ANOM
)
418 tcc_error("memory full (symbols)");
420 /* expand token table if needed */
421 i
= tok_ident
- TOK_IDENT
;
422 if ((i
% TOK_ALLOC_INCR
) == 0) {
423 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
424 table_ident
= ptable
;
427 ts
= tal_realloc(toksym_alloc
, 0, sizeof(TokenSym
) + len
);
429 ts
->tok
= tok_ident
++;
430 ts
->sym_define
= NULL
;
431 ts
->sym_label
= NULL
;
432 ts
->sym_struct
= NULL
;
433 ts
->sym_identifier
= NULL
;
435 ts
->hash_next
= NULL
;
436 memcpy(ts
->str
, str
, len
);
442 #define TOK_HASH_INIT 1
443 #define TOK_HASH_FUNC(h, c) ((h) + ((h) << 5) + ((h) >> 27) + (c))
446 /* find a token and add it if not found */
447 ST_FUNC TokenSym
*tok_alloc(const char *str
, int len
)
455 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
456 h
&= (TOK_HASH_SIZE
- 1);
458 pts
= &hash_ident
[h
];
463 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
465 pts
= &(ts
->hash_next
);
467 return tok_alloc_new(pts
, str
, len
);
470 /* XXX: buffer overflow */
471 /* XXX: float tokens */
472 ST_FUNC
const char *get_tok_str(int v
, CValue
*cv
)
477 cstr_reset(&cstr_buf
);
485 /* XXX: not quite exact, but only useful for testing */
487 sprintf(p
, "%u", (unsigned)cv
->i
);
489 sprintf(p
, "%llu", (unsigned long long)cv
->i
);
493 cstr_ccat(&cstr_buf
, 'L');
495 cstr_ccat(&cstr_buf
, '\'');
496 add_char(&cstr_buf
, cv
->i
);
497 cstr_ccat(&cstr_buf
, '\'');
498 cstr_ccat(&cstr_buf
, '\0');
502 return (char*)cv
->str
.data
;
504 cstr_ccat(&cstr_buf
, 'L');
506 cstr_ccat(&cstr_buf
, '\"');
508 len
= cv
->str
.size
- 1;
510 add_char(&cstr_buf
, ((unsigned char *)cv
->str
.data
)[i
]);
512 len
= (cv
->str
.size
/ sizeof(nwchar_t
)) - 1;
514 add_char(&cstr_buf
, ((nwchar_t
*)cv
->str
.data
)[i
]);
516 cstr_ccat(&cstr_buf
, '\"');
517 cstr_ccat(&cstr_buf
, '\0');
521 cstr_cat(&cstr_buf
, "<float>", 0);
524 cstr_cat(&cstr_buf
, "<double>", 0);
527 cstr_cat(&cstr_buf
, "<long double>", 0);
530 cstr_cat(&cstr_buf
, "<linenumber>", 0);
533 /* above tokens have value, the ones below don't */
542 return strcpy(p
, "...");
544 return strcpy(p
, "<<=");
546 return strcpy(p
, ">>=");
549 /* search in two bytes table */
550 const unsigned char *q
= tok_two_chars
;
556 return cstr_buf
.data
;
561 sprintf(cstr_buf
.data
, "<%02x>", v
);
562 return cstr_buf
.data
;
567 } else if (v
< tok_ident
) {
568 return table_ident
[v
- TOK_IDENT
]->str
;
569 } else if (v
>= SYM_FIRST_ANOM
) {
570 /* special name for anonymous symbol */
571 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
573 /* should never happen */
578 return cstr_buf
.data
;
581 /* return the current character, handling end of block if necessary
583 ST_FUNC
int handle_eob(void)
585 BufferedFile
*bf
= file
;
588 /* only tries to read if really end of buffer */
589 if (bf
->buf_ptr
>= bf
->buf_end
) {
591 #if defined(PARSE_DEBUG)
596 len
= read(bf
->fd
, bf
->buffer
, len
);
603 bf
->buf_ptr
= bf
->buffer
;
604 bf
->buf_end
= bf
->buffer
+ len
;
605 *bf
->buf_end
= CH_EOB
;
607 if (bf
->buf_ptr
< bf
->buf_end
) {
608 return bf
->buf_ptr
[0];
610 bf
->buf_ptr
= bf
->buf_end
;
615 /* read next char from current input file and handle end of input buffer */
616 ST_INLN
void inp(void)
618 ch
= *(++(file
->buf_ptr
));
619 /* end of buffer/file handling */
624 /* handle '\[\r]\n' */
625 static int handle_stray_noerror(void)
632 } else if (ch
== '\r') {
646 static void handle_stray(void)
648 if (handle_stray_noerror())
649 tcc_error("stray '\\' in program");
652 /* skip the stray and handle the \\n case. Output an error if
653 incorrect char after the stray */
654 static int handle_stray1(uint8_t *p
)
659 if (p
>= file
->buf_end
) {
666 if (handle_stray_noerror()) {
667 if (!(parse_flags
& PARSE_FLAG_ACCEPT_STRAYS
))
668 tcc_error("stray '\\' in program");
669 *--file
->buf_ptr
= '\\';
676 /* handle just the EOB case, but not stray */
677 #define PEEKC_EOB(c, p)\
688 /* handle the complicated stray case */
694 c = handle_stray1(p);\
699 /* input with '\[\r]\n' handling. Note that this function cannot
700 handle other characters after '\', so you cannot call it inside
701 strings or comments */
702 ST_FUNC
void minp(void)
709 /* single line C++ comments */
710 static uint8_t *parse_line_comment(uint8_t *p
)
718 if (c
== '\n' || c
== CH_EOF
) {
720 } else if (c
== '\\') {
729 } else if (c
== '\r') {
747 ST_FUNC
uint8_t *parse_comment(uint8_t *p
)
756 if (c
== '\n' || c
== '*' || c
== '\\')
760 if (c
== '\n' || c
== '*' || c
== '\\')
764 /* now we can handle all the cases */
768 } else if (c
== '*') {
774 } else if (c
== '/') {
776 } else if (c
== '\\') {
781 tcc_error("unexpected end of file in comment");
783 /* skip '\[\r]\n', otherwise just skip the stray */
789 } else if (c
== '\r') {
806 /* stray, eob or eof */
811 tcc_error("unexpected end of file in comment");
812 } else if (c
== '\\') {
824 static inline void skip_spaces(void)
826 while (isidnum_table
[ch
- CH_EOF
] & IS_SPC
)
830 static inline int check_space(int t
, int *spc
)
832 if (t
< 256 && (isidnum_table
[t
- CH_EOF
] & IS_SPC
)) {
841 /* parse a string without interpreting escapes */
842 static uint8_t *parse_pp_string(uint8_t *p
,
843 int sep
, CString
*str
)
851 } else if (c
== '\\') {
857 /* XXX: indicate line number of start of string */
858 tcc_error("missing terminating %c character", sep
);
859 } else if (c
== '\\') {
860 /* escape : just skip \[\r]\n */
865 } else if (c
== '\r') {
868 expect("'\n' after '\r'");
871 } else if (c
== CH_EOF
) {
872 goto unterminated_string
;
875 cstr_ccat(str
, '\\');
881 } else if (c
== '\n') {
884 } else if (c
== '\r') {
888 cstr_ccat(str
, '\r');
904 /* skip block of text until #else, #elif or #endif. skip also pairs of
906 static void preprocess_skip(void)
908 int a
, start_of_line
, c
, in_warn_or_error
;
915 in_warn_or_error
= 0;
936 } else if (c
== '\\') {
937 ch
= file
->buf_ptr
[0];
938 handle_stray_noerror();
945 if (in_warn_or_error
)
947 p
= parse_pp_string(p
, c
, NULL
);
951 if (in_warn_or_error
)
958 p
= parse_comment(p
);
959 } else if (ch
== '/') {
960 p
= parse_line_comment(p
);
970 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
972 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
974 else if (tok
== TOK_ENDIF
)
976 else if( tok
== TOK_ERROR
|| tok
== TOK_WARNING
)
977 in_warn_or_error
= 1;
978 else if (tok
== TOK_LINEFEED
)
980 else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
981 p
= parse_line_comment(p
- 1);
982 } else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
983 p
= parse_line_comment(p
- 1);
996 /* ParseState handling */
998 /* XXX: currently, no include file info is stored. Thus, we cannot display
999 accurate messages if the function or data definition spans multiple
1002 /* save current parse state in 's' */
1003 ST_FUNC
void save_parse_state(ParseState
*s
)
1005 s
->line_num
= file
->line_num
;
1006 s
->macro_ptr
= macro_ptr
;
1011 /* restore parse state from 's' */
1012 ST_FUNC
void restore_parse_state(ParseState
*s
)
1014 file
->line_num
= s
->line_num
;
1015 macro_ptr
= s
->macro_ptr
;
1020 /* return the number of additional 'ints' necessary to store the
1022 static inline int tok_size(const int *p
)
1037 return 1 + ((sizeof(CString
) + ((CString
*)(p
+1))->size
+ 3) >> 2);
1043 return 1 + LDOUBLE_SIZE
/ 4;
1049 /* token string handling */
1051 ST_INLN
void tok_str_new(TokenString
*s
)
1055 s
->allocated_len
= 0;
1056 s
->last_line_num
= -1;
1059 ST_FUNC TokenString
*tok_str_alloc(void)
1061 TokenString
*str
= tal_realloc(tokstr_alloc
, 0, sizeof *str
);
1066 ST_FUNC
int *tok_str_dup(TokenString
*s
)
1070 str
= tal_realloc(tokstr_alloc
, 0, s
->len
* sizeof(int));
1071 memcpy(str
, s
->str
, s
->len
* sizeof(int));
1075 ST_FUNC
void tok_str_free(int *str
)
1077 tal_free(tokstr_alloc
, str
);
1080 ST_FUNC
int *tok_str_realloc(TokenString
*s
, int new_size
)
1084 size
= s
->allocated_len
;
1087 while (size
< new_size
)
1089 if (size
> s
->allocated_len
) {
1090 str
= tal_realloc(tokstr_alloc
, s
->str
, size
* sizeof(int));
1091 s
->allocated_len
= size
;
1097 ST_FUNC
void tok_str_add(TokenString
*s
, int t
)
1103 if (len
>= s
->allocated_len
)
1104 str
= tok_str_realloc(s
, len
+ 1);
1109 ST_FUNC
void begin_macro(TokenString
*str
, int alloc
)
1112 str
->prev
= macro_stack
;
1113 str
->prev_ptr
= macro_ptr
;
1114 macro_ptr
= str
->str
;
1118 ST_FUNC
void end_macro(void)
1120 TokenString
*str
= macro_stack
;
1121 macro_stack
= str
->prev
;
1122 macro_ptr
= str
->prev_ptr
;
1123 if (str
->alloc
== 2) {
1124 str
->alloc
= 3; /* just mark as finished */
1126 tok_str_free(str
->str
);
1127 if (str
->alloc
== 1)
1128 tal_free(tokstr_alloc
, str
);
1132 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
1139 /* allocate space for worst case */
1140 if (len
+ TOK_MAX_SIZE
>= s
->allocated_len
)
1141 str
= tok_str_realloc(s
, len
+ TOK_MAX_SIZE
+ 1);
1150 str
[len
++] = cv
->tab
[0];
1157 /* Insert the string into the int array. */
1159 1 + (cv
->str
.size
+ sizeof(int) - 1) / sizeof(int);
1160 if (len
+ nb_words
>= s
->allocated_len
)
1161 str
= tok_str_realloc(s
, len
+ nb_words
+ 1);
1162 str
[len
] = cv
->str
.size
;
1163 memcpy(&str
[len
+ 1], cv
->str
.data
, cv
->str
.size
);
1170 #if LDOUBLE_SIZE == 8
1173 str
[len
++] = cv
->tab
[0];
1174 str
[len
++] = cv
->tab
[1];
1176 #if LDOUBLE_SIZE == 12
1178 str
[len
++] = cv
->tab
[0];
1179 str
[len
++] = cv
->tab
[1];
1180 str
[len
++] = cv
->tab
[2];
1181 #elif LDOUBLE_SIZE == 16
1183 str
[len
++] = cv
->tab
[0];
1184 str
[len
++] = cv
->tab
[1];
1185 str
[len
++] = cv
->tab
[2];
1186 str
[len
++] = cv
->tab
[3];
1187 #elif LDOUBLE_SIZE != 8
1188 #error add long double size support
1197 /* add the current parse token in token string 's' */
1198 ST_FUNC
void tok_str_add_tok(TokenString
*s
)
1202 /* save line number info */
1203 if (file
->line_num
!= s
->last_line_num
) {
1204 s
->last_line_num
= file
->line_num
;
1205 cval
.i
= s
->last_line_num
;
1206 tok_str_add2(s
, TOK_LINENUM
, &cval
);
1208 tok_str_add2(s
, tok
, &tokc
);
1211 /* get a token from an integer array and increment pointer
1212 accordingly. we code it as a macro to avoid pointer aliasing. */
1213 static inline void TOK_GET(int *t
, const int **pp
, CValue
*cv
)
1232 cv
->str
.size
= *p
++;
1234 p
+= (cv
->str
.size
+ sizeof(int) - 1) / sizeof(int);
1242 #if LDOUBLE_SIZE == 16
1244 #elif LDOUBLE_SIZE == 12
1246 #elif LDOUBLE_SIZE == 8
1249 # error add long double size support
1262 /* Calling this function is expensive, but it is not possible
1263 to read a token string backwards. */
1264 static int tok_last(const int *str0
, const int *str1
)
1266 const int *str
= str0
;
1271 TOK_GET(&tok
, &str
, &cval
);
1275 static int macro_is_equal(const int *a
, const int *b
)
1284 /* first time preallocate static cstr_buf, next time only reset position to start */
1285 cstr_reset(&cstr_buf
);
1286 TOK_GET(&t
, &a
, &cv
);
1287 cstr_cat(&cstr_buf
, get_tok_str(t
, &cv
), 0);
1288 TOK_GET(&t
, &b
, &cv
);
1289 if (strcmp(cstr_buf
.data
, get_tok_str(t
, &cv
)))
1295 /* defines handling */
1296 ST_INLN
void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
1301 s
= sym_push2(&define_stack
, v
, macro_type
, 0);
1303 s
->next
= first_arg
;
1304 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
1306 if (o
&& !macro_is_equal(o
->d
, s
->d
))
1307 tcc_warning("%s redefined", get_tok_str(v
, NULL
));
1310 /* undefined a define symbol. Its name is just set to zero */
1311 ST_FUNC
void define_undef(Sym
*s
)
1314 if (v
>= TOK_IDENT
&& v
< tok_ident
)
1315 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
1318 ST_INLN Sym
*define_find(int v
)
1321 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1323 return table_ident
[v
]->sym_define
;
1326 /* free define stack until top reaches 'b' */
1327 ST_FUNC
void free_defines(Sym
*b
)
1329 while (define_stack
!= b
) {
1330 Sym
*top
= define_stack
;
1331 define_stack
= top
->prev
;
1332 tok_str_free(top
->d
);
1337 /* restore remaining (-D or predefined) symbols */
1340 if (v
>= TOK_IDENT
&& v
< tok_ident
) {
1341 Sym
**d
= &table_ident
[v
- TOK_IDENT
]->sym_define
;
1350 ST_FUNC Sym
*label_find(int v
)
1353 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1355 return table_ident
[v
]->sym_label
;
1358 ST_FUNC Sym
*label_push(Sym
**ptop
, int v
, int flags
)
1361 s
= sym_push2(ptop
, v
, 0, 0);
1363 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
1364 if (ptop
== &global_label_stack
) {
1365 /* modify the top most local identifier, so that
1366 sym_identifier will point to 's' when popped */
1368 ps
= &(*ps
)->prev_tok
;
1375 /* pop labels until element last is reached. Look if any labels are
1376 undefined. Define symbols if '&&label' was used. */
1377 ST_FUNC
void label_pop(Sym
**ptop
, Sym
*slast
)
1380 for(s
= *ptop
; s
!= slast
; s
= s1
) {
1382 if (s
->r
== LABEL_DECLARED
) {
1383 tcc_warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
1384 } else if (s
->r
== LABEL_FORWARD
) {
1385 tcc_error("label '%s' used but not defined",
1386 get_tok_str(s
->v
, NULL
));
1389 /* define corresponding symbol. A size of
1391 put_extern_sym(s
, cur_text_section
, s
->jnext
, 1);
1395 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
1401 /* eval an expression for #if/#elif */
1402 static int expr_preprocess(void)
1407 str
= tok_str_alloc();
1408 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1409 next(); /* do macro subst */
1410 if (tok
== TOK_DEFINED
) {
1415 c
= define_find(tok
) != 0;
1420 } else if (tok
>= TOK_IDENT
) {
1421 /* if undefined macro */
1425 tok_str_add_tok(str
);
1427 tok_str_add(str
, -1); /* simulate end of file */
1428 tok_str_add(str
, 0);
1429 /* now evaluate C constant expression */
1430 begin_macro(str
, 1);
1438 /* parse after #define */
1439 ST_FUNC
void parse_define(void)
1441 Sym
*s
, *first
, **ps
;
1442 int v
, t
, varg
, is_vaargs
, spc
;
1443 int saved_parse_flags
= parse_flags
;
1447 tcc_error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
1448 /* XXX: should check if same macro (ANSI) */
1451 /* '(' must be just after macro definition for MACRO_FUNC */
1452 parse_flags
|= PARSE_FLAG_SPACES
;
1455 /* must be able to parse TOK_DOTS (in asm mode '.' can be part of identifier) */
1456 parse_flags
&= ~PARSE_FLAG_ASM_FILE
;
1457 isidnum_table
['.' - CH_EOF
] = 0;
1460 if (tok
!= ')') for (;;) {
1464 if (varg
== TOK_DOTS
) {
1465 varg
= TOK___VA_ARGS__
;
1467 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
1471 if (varg
< TOK_IDENT
)
1473 tcc_error("bad macro parameter list");
1474 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
1479 if (tok
!= ',' || is_vaargs
)
1485 parse_flags
|= (saved_parse_flags
& PARSE_FLAG_ASM_FILE
);
1486 isidnum_table
['.' - CH_EOF
] =
1487 (parse_flags
& PARSE_FLAG_ASM_FILE
) ? IS_ID
: 0;
1492 parse_flags
|= PARSE_FLAG_ACCEPT_STRAYS
| PARSE_FLAG_SPACES
| PARSE_FLAG_LINEFEED
;
1493 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1494 /* remove spaces around ## and after '#' */
1495 if (TOK_TWOSHARPS
== tok
) {
1501 } else if ('#' == tok
) {
1503 } else if (check_space(tok
, &spc
)) {
1506 tok_str_add2(&tokstr_buf
, tok
, &tokc
);
1511 parse_flags
= saved_parse_flags
;
1513 --tokstr_buf
.len
; /* remove trailing space */
1514 tok_str_add(&tokstr_buf
, 0);
1517 tcc_error("'##' cannot appear at either end of macro");
1518 define_push(v
, t
, tok_str_dup(&tokstr_buf
), first
);
1521 static CachedInclude
*search_cached_include(TCCState
*s1
, const char *filename
, int add
)
1523 const unsigned char *s
;
1529 s
= (unsigned char *) filename
;
1532 h
= TOK_HASH_FUNC(h
, toup(*s
));
1534 h
= TOK_HASH_FUNC(h
, *s
);
1538 h
&= (CACHED_INCLUDES_HASH_SIZE
- 1);
1540 i
= s1
->cached_includes_hash
[h
];
1544 e
= s1
->cached_includes
[i
- 1];
1545 if (0 == PATHCMP(e
->filename
, filename
))
1552 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
1553 strcpy(e
->filename
, filename
);
1554 e
->ifndef_macro
= e
->once
= 0;
1555 dynarray_add((void ***)&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
1556 /* add in hash table */
1557 e
->hash_next
= s1
->cached_includes_hash
[h
];
1558 s1
->cached_includes_hash
[h
] = s1
->nb_cached_includes
;
1560 printf("adding cached '%s'\n", filename
);
1565 static void pragma_parse(TCCState
*s1
)
1568 if (tok
== TOK_push_macro
|| tok
== TOK_pop_macro
) {
1572 if (next(), tok
!= '(')
1574 if (next(), tok
!= TOK_STR
)
1576 v
= tok_alloc(tokc
.str
.data
, tokc
.str
.size
- 1)->tok
;
1577 if (next(), tok
!= ')')
1579 if (t
== TOK_push_macro
) {
1580 while (NULL
== (s
= define_find(v
)))
1581 define_push(v
, 0, NULL
, NULL
);
1582 s
->type
.ref
= s
; /* set push boundary */
1584 for (s
= define_stack
; s
; s
= s
->prev
)
1585 if (s
->v
== v
&& s
->type
.ref
== s
) {
1591 table_ident
[v
- TOK_IDENT
]->sym_define
= s
->d
? s
: NULL
;
1593 tcc_warning("unbalanced #pragma pop_macro");
1594 pp_debug_tok
= t
, pp_debug_symv
= v
;
1596 } else if (tok
== TOK_once
) {
1597 search_cached_include(s1
, file
->filename
, 1)->once
= pp_once
;
1599 } else if (s1
->ppfp
) {
1600 /* tcc -E: keep pragmas below unchanged */
1602 unget_tok(TOK_PRAGMA
);
1604 unget_tok(TOK_LINEFEED
);
1606 } else if (tok
== TOK_pack
) {
1608 #pragma pack(1) // set
1609 #pragma pack() // reset to default
1610 #pragma pack(push,1) // push & set
1611 #pragma pack(pop) // restore previous */
1614 if (tok
== TOK_ASM_pop
) {
1616 if (s1
->pack_stack_ptr
<= s1
->pack_stack
) {
1618 tcc_error("out of pack stack");
1620 s1
->pack_stack_ptr
--;
1624 if (tok
== TOK_ASM_push
) {
1626 if (s1
->pack_stack_ptr
>= s1
->pack_stack
+ PACK_STACK_SIZE
- 1)
1628 s1
->pack_stack_ptr
++;
1631 if (tok
!= TOK_CINT
)
1634 if (val
< 1 || val
> 16 || (val
& (val
- 1)) != 0)
1638 *s1
->pack_stack_ptr
= val
;
1643 } else if (tok
== TOK_comment
) {
1653 file
= tcc_strdup((char *)tokc
.str
.data
);
1654 dynarray_add((void ***)&s1
->pragma_libs
, &s1
->nb_pragma_libs
, file
);
1660 if (s1
->warn_unsupported
)
1661 tcc_warning("#pragma %s is ignored", get_tok_str(tok
, &tokc
));
1666 tcc_error("malformed #pragma directive");
1670 /* is_bof is true if first non space token at beginning of file */
1671 ST_FUNC
void preprocess(int is_bof
)
1673 TCCState
*s1
= tcc_state
;
1674 int i
, c
, n
, saved_parse_flags
;
1678 saved_parse_flags
= parse_flags
;
1679 parse_flags
= PARSE_FLAG_PREPROCESS
1680 | PARSE_FLAG_TOK_NUM
1681 | PARSE_FLAG_TOK_STR
1682 | PARSE_FLAG_LINEFEED
1683 | (parse_flags
& PARSE_FLAG_ASM_FILE
)
1692 pp_debug_symv
= tok
;
1698 pp_debug_symv
= tok
;
1699 s
= define_find(tok
);
1700 /* undefine symbol by putting an invalid name */
1705 case TOK_INCLUDE_NEXT
:
1706 ch
= file
->buf_ptr
[0];
1707 /* XXX: incorrect if comments : use next_nomacro with a special mode */
1712 } else if (ch
== '\"') {
1717 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
1718 if ((q
- buf
) < sizeof(buf
) - 1)
1721 if (handle_stray_noerror() == 0)
1729 /* eat all spaces and comments after include */
1730 /* XXX: slightly incorrect */
1731 while (ch1
!= '\n' && ch1
!= CH_EOF
)
1735 /* computed #include : either we have only strings or
1736 we have anything enclosed in '<>' */
1739 if (tok
== TOK_STR
) {
1740 while (tok
!= TOK_LINEFEED
) {
1741 if (tok
!= TOK_STR
) {
1743 tcc_error("'#include' expects \"FILENAME\" or <FILENAME>");
1745 pstrcat(buf
, sizeof(buf
), (char *)tokc
.str
.data
);
1751 while (tok
!= TOK_LINEFEED
) {
1752 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
1756 /* check syntax and remove '<>' */
1757 if (len
< 2 || buf
[0] != '<' || buf
[len
- 1] != '>')
1758 goto include_syntax
;
1759 memmove(buf
, buf
+ 1, len
- 2);
1760 buf
[len
- 2] = '\0';
1765 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
1766 tcc_error("#include recursion too deep");
1767 /* store current file in stack, but increment stack later below */
1768 *s1
->include_stack_ptr
= file
;
1769 i
= tok
== TOK_INCLUDE_NEXT
? file
->include_next_index
: 0;
1770 n
= 2 + s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
1771 for (; i
< n
; ++i
) {
1772 char buf1
[sizeof file
->filename
];
1777 /* check absolute include path */
1778 if (!IS_ABSPATH(buf
))
1782 } else if (i
== 1) {
1783 /* search in file's dir if "header.h" */
1786 path
= file
->filename
;
1787 pstrncpy(buf1
, path
, tcc_basename(path
) - path
);
1790 /* search in all the include paths */
1791 int j
= i
- 2, k
= j
- s1
->nb_include_paths
;
1792 path
= k
< 0 ? s1
->include_paths
[j
] : s1
->sysinclude_paths
[k
];
1793 pstrcpy(buf1
, sizeof(buf1
), path
);
1794 pstrcat(buf1
, sizeof(buf1
), "/");
1797 pstrcat(buf1
, sizeof(buf1
), buf
);
1798 e
= search_cached_include(s1
, buf1
, 0);
1799 if (e
&& (define_find(e
->ifndef_macro
) || e
->once
== pp_once
)) {
1800 /* no need to parse the include because the 'ifndef macro'
1801 is defined (or had #pragma once) */
1803 printf("%s: skipping cached %s\n", file
->filename
, buf1
);
1808 if (tcc_open(s1
, buf1
) < 0)
1811 file
->include_next_index
= i
+ 1;
1813 printf("%s: including %s\n", file
->prev
->filename
, file
->filename
);
1815 /* update target deps */
1816 dynarray_add((void ***)&s1
->target_deps
, &s1
->nb_target_deps
,
1818 /* push current file in stack */
1819 ++s1
->include_stack_ptr
;
1820 /* add include file debug info */
1822 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1823 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
1824 ch
= file
->buf_ptr
[0];
1827 tcc_error("include file '%s' not found", buf
);
1834 c
= expr_preprocess();
1840 if (tok
< TOK_IDENT
)
1841 tcc_error("invalid argument for '#if%sdef'", c
? "n" : "");
1845 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
1847 file
->ifndef_macro
= tok
;
1850 c
= (define_find(tok
) != 0) ^ c
;
1852 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
1853 tcc_error("memory full (ifdef)");
1854 *s1
->ifdef_stack_ptr
++ = c
;
1857 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1858 tcc_error("#else without matching #if");
1859 if (s1
->ifdef_stack_ptr
[-1] & 2)
1860 tcc_error("#else after #else");
1861 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
1864 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1865 tcc_error("#elif without matching #if");
1866 c
= s1
->ifdef_stack_ptr
[-1];
1868 tcc_error("#elif after #else");
1869 /* last #if/#elif expression was true: we skip */
1873 c
= expr_preprocess();
1874 s1
->ifdef_stack_ptr
[-1] = c
;
1877 if (s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
+ 1)
1878 file
->ifndef_macro
= 0;
1887 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
1888 tcc_error("#endif without matching #if");
1889 s1
->ifdef_stack_ptr
--;
1890 /* '#ifndef macro' was at the start of file. Now we check if
1891 an '#endif' is exactly at the end of file */
1892 if (file
->ifndef_macro
&&
1893 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
1894 file
->ifndef_macro_saved
= file
->ifndef_macro
;
1895 /* need to set to zero to avoid false matches if another
1896 #ifndef at middle of file */
1897 file
->ifndef_macro
= 0;
1898 while (tok
!= TOK_LINEFEED
)
1900 tok_flags
|= TOK_FLAG_ENDIF
;
1905 n
= strtoul((char*)tokc
.str
.data
, &q
, 10);
1909 if (tok
!= TOK_CINT
)
1911 tcc_error("wrong #line format");
1915 if (tok
!= TOK_LINEFEED
) {
1917 pstrcpy(file
->filename
, sizeof(file
->filename
), (char *)tokc
.str
.data
);
1918 else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
1925 total_lines
+= file
->line_num
- n
;
1928 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1933 ch
= file
->buf_ptr
[0];
1936 while (ch
!= '\n' && ch
!= CH_EOF
) {
1937 if ((q
- buf
) < sizeof(buf
) - 1)
1940 if (handle_stray_noerror() == 0)
1947 tcc_error("#error %s", buf
);
1949 tcc_warning("#warning %s", buf
);
1957 /* ignore gas line comment in an 'S' file. */
1958 if (saved_parse_flags
& PARSE_FLAG_ASM_FILE
)
1960 if (tok
== '!' && is_bof
)
1961 /* '!' is ignored at beginning to allow C scripts. */
1963 tcc_warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
1965 file
->buf_ptr
= parse_line_comment(file
->buf_ptr
- 1);
1968 /* ignore other preprocess commands or #! for C scripts */
1969 while (tok
!= TOK_LINEFEED
)
1972 parse_flags
= saved_parse_flags
;
1975 /* evaluate escape codes in a string. */
1976 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
1991 case '0': case '1': case '2': case '3':
1992 case '4': case '5': case '6': case '7':
1993 /* at most three octal digits */
1998 n
= n
* 8 + c
- '0';
2002 n
= n
* 8 + c
- '0';
2007 goto add_char_nonext
;
2015 if (c
>= 'a' && c
<= 'f')
2017 else if (c
>= 'A' && c
<= 'F')
2027 goto add_char_nonext
;
2051 goto invalid_escape
;
2061 if (c
>= '!' && c
<= '~')
2062 tcc_warning("unknown escape sequence: \'\\%c\'", c
);
2064 tcc_warning("unknown escape sequence: \'\\x%x\'", c
);
2071 cstr_ccat(outstr
, c
);
2073 cstr_wccat(outstr
, c
);
2075 /* add a trailing '\0' */
2077 cstr_ccat(outstr
, '\0');
2079 cstr_wccat(outstr
, '\0');
2082 static void parse_string(const char *s
, int len
)
2084 uint8_t buf
[1000], *p
= buf
;
2087 if ((is_long
= *s
== 'L'))
2091 if (len
>= sizeof buf
)
2092 p
= tcc_malloc(len
+ 1);
2096 cstr_reset(&tokcstr
);
2097 parse_escape_string(&tokcstr
, p
, is_long
);
2103 /* XXX: make it portable */
2107 char_size
= sizeof(nwchar_t
);
2108 if (tokcstr
.size
<= char_size
)
2109 tcc_error("empty character constant");
2110 if (tokcstr
.size
> 2 * char_size
)
2111 tcc_warning("multi-character character constant");
2113 tokc
.i
= *(int8_t *)tokcstr
.data
;
2116 tokc
.i
= *(nwchar_t
*)tokcstr
.data
;
2120 tokc
.str
.size
= tokcstr
.size
;
2121 tokc
.str
.data
= tokcstr
.data
;
2129 /* we use 64 bit numbers */
2132 /* bn = (bn << shift) | or_val */
2133 static void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
2137 for(i
=0;i
<BN_SIZE
;i
++) {
2139 bn
[i
] = (v
<< shift
) | or_val
;
2140 or_val
= v
>> (32 - shift
);
2144 static void bn_zero(unsigned int *bn
)
2147 for(i
=0;i
<BN_SIZE
;i
++) {
2152 /* parse number in null terminated string 'p' and return it in the
2154 static void parse_number(const char *p
)
2156 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
2158 unsigned int bn
[BN_SIZE
];
2169 goto float_frac_parse
;
2170 } else if (t
== '0') {
2171 if (ch
== 'x' || ch
== 'X') {
2175 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
2181 /* parse all digits. cannot check octal numbers at this stage
2182 because of floating point constants */
2184 if (ch
>= 'a' && ch
<= 'f')
2186 else if (ch
>= 'A' && ch
<= 'F')
2194 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
2196 tcc_error("number too long");
2202 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
2203 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
2205 /* NOTE: strtox should support that for hexa numbers, but
2206 non ISOC99 libcs do not support it, so we prefer to do
2208 /* hexadecimal or binary floats */
2209 /* XXX: handle overflows */
2221 } else if (t
>= 'a') {
2223 } else if (t
>= 'A') {
2228 bn_lshift(bn
, shift
, t
);
2235 if (t
>= 'a' && t
<= 'f') {
2237 } else if (t
>= 'A' && t
<= 'F') {
2239 } else if (t
>= '0' && t
<= '9') {
2245 tcc_error("invalid digit");
2246 bn_lshift(bn
, shift
, t
);
2251 if (ch
!= 'p' && ch
!= 'P')
2258 } else if (ch
== '-') {
2262 if (ch
< '0' || ch
> '9')
2263 expect("exponent digits");
2264 while (ch
>= '0' && ch
<= '9') {
2265 exp_val
= exp_val
* 10 + ch
- '0';
2268 exp_val
= exp_val
* s
;
2270 /* now we can generate the number */
2271 /* XXX: should patch directly float number */
2272 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
2273 d
= ldexp(d
, exp_val
- frac_bits
);
2278 /* float : should handle overflow */
2280 } else if (t
== 'L') {
2282 #ifdef TCC_TARGET_PE
2287 /* XXX: not large enough */
2288 tokc
.ld
= (long double)d
;
2295 /* decimal floats */
2297 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2302 while (ch
>= '0' && ch
<= '9') {
2303 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2309 if (ch
== 'e' || ch
== 'E') {
2310 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2314 if (ch
== '-' || ch
== '+') {
2315 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2320 if (ch
< '0' || ch
> '9')
2321 expect("exponent digits");
2322 while (ch
>= '0' && ch
<= '9') {
2323 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2335 tokc
.f
= strtof(token_buf
, NULL
);
2336 } else if (t
== 'L') {
2338 #ifdef TCC_TARGET_PE
2340 tokc
.d
= strtod(token_buf
, NULL
);
2343 tokc
.ld
= strtold(token_buf
, NULL
);
2347 tokc
.d
= strtod(token_buf
, NULL
);
2351 unsigned long long n
, n1
;
2352 int lcount
, ucount
, must_64bit
;
2355 /* integer number */
2358 if (b
== 10 && *q
== '0') {
2365 /* no need for checks except for base 10 / 8 errors */
2375 tcc_error("invalid digit");
2378 /* detect overflow */
2379 /* XXX: this test is not reliable */
2381 tcc_error("integer constant overflow");
2384 /* Determine the characteristics (unsigned and/or 64bit) the type of
2385 the constant must have according to the constant suffix(es) */
2386 lcount
= ucount
= must_64bit
= 0;
2392 tcc_error("three 'l's in integer constant");
2393 if (lcount
&& *(p
- 1) != ch
)
2394 tcc_error("incorrect integer suffix: %s", p1
);
2396 #if !defined TCC_TARGET_X86_64 || defined TCC_TARGET_PE
2401 } else if (t
== 'U') {
2403 tcc_error("two 'u's in integer constant");
2411 /* Whether 64 bits are needed to hold the constant's value */
2412 if (n
& 0xffffffff00000000LL
|| must_64bit
) {
2420 /* Whether type must be unsigned to hold the constant's value */
2421 if (ucount
|| ((n1
>> 31) && (b
!= 10))) {
2422 if (tok
== TOK_CLLONG
)
2426 /* If decimal and no unsigned suffix, bump to 64 bits or throw error */
2427 } else if (n1
>> 31) {
2428 if (tok
== TOK_CINT
)
2431 tcc_error("integer constant overflow");
2437 tcc_error("invalid number\n");
2441 #define PARSE2(c1, tok1, c2, tok2) \
2452 /* return next token without macro substitution */
2453 static inline void next_nomacro1(void)
2455 int t
, c
, is_long
, len
;
2468 if (parse_flags
& PARSE_FLAG_SPACES
)
2469 goto keep_tok_flags
;
2470 while (isidnum_table
[*p
- CH_EOF
] & IS_SPC
)
2479 /* first look if it is in fact an end of buffer */
2480 c
= handle_stray1(p
);
2487 TCCState
*s1
= tcc_state
;
2488 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
2489 && !(tok_flags
& TOK_FLAG_EOF
)) {
2490 tok_flags
|= TOK_FLAG_EOF
;
2492 goto keep_tok_flags
;
2493 } else if (!(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2495 } else if (s1
->ifdef_stack_ptr
!= file
->ifdef_stack_ptr
) {
2496 tcc_error("missing #endif");
2497 } else if (s1
->include_stack_ptr
== s1
->include_stack
) {
2498 /* no include left : end of file. */
2501 tok_flags
&= ~TOK_FLAG_EOF
;
2502 /* pop include file */
2504 /* test if previous '#endif' was after a #ifdef at
2506 if (tok_flags
& TOK_FLAG_ENDIF
) {
2508 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
2510 search_cached_include(s1
, file
->filename
, 1)
2511 ->ifndef_macro
= file
->ifndef_macro_saved
;
2512 tok_flags
&= ~TOK_FLAG_ENDIF
;
2515 /* add end of include file debug info */
2516 if (tcc_state
->do_debug
) {
2517 put_stabd(N_EINCL
, 0, 0);
2519 /* pop include stack */
2521 s1
->include_stack_ptr
--;
2530 tok_flags
|= TOK_FLAG_BOL
;
2533 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
2536 goto keep_tok_flags
;
2541 if ((tok_flags
& TOK_FLAG_BOL
) &&
2542 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2544 preprocess(tok_flags
& TOK_FLAG_BOF
);
2550 tok
= TOK_TWOSHARPS
;
2552 if (parse_flags
& PARSE_FLAG_ASM_FILE
) {
2553 p
= parse_line_comment(p
- 1);
2562 /* dollar is allowed to start identifiers when not parsing asm */
2564 if (!(isidnum_table
[c
- CH_EOF
] & IS_ID
)
2565 || (parse_flags
& PARSE_FLAG_ASM_FILE
))
2568 case 'a': case 'b': case 'c': case 'd':
2569 case 'e': case 'f': case 'g': case 'h':
2570 case 'i': case 'j': case 'k': case 'l':
2571 case 'm': case 'n': case 'o': case 'p':
2572 case 'q': case 'r': case 's': case 't':
2573 case 'u': case 'v': case 'w': case 'x':
2575 case 'A': case 'B': case 'C': case 'D':
2576 case 'E': case 'F': case 'G': case 'H':
2577 case 'I': case 'J': case 'K':
2578 case 'M': case 'N': case 'O': case 'P':
2579 case 'Q': case 'R': case 'S': case 'T':
2580 case 'U': case 'V': case 'W': case 'X':
2586 h
= TOK_HASH_FUNC(h
, c
);
2587 while (c
= *++p
, isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2588 h
= TOK_HASH_FUNC(h
, c
);
2593 /* fast case : no stray found, so we have the full token
2594 and we have already hashed it */
2595 h
&= (TOK_HASH_SIZE
- 1);
2596 pts
= &hash_ident
[h
];
2601 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
2603 pts
= &(ts
->hash_next
);
2605 ts
= tok_alloc_new(pts
, (char *) p1
, len
);
2609 cstr_reset(&tokcstr
);
2610 cstr_cat(&tokcstr
, p1
, len
);
2614 while (isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2616 cstr_ccat(&tokcstr
, c
);
2619 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
2625 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
2627 goto parse_ident_fast
;
2630 if (c
== '\'' || c
== '\"') {
2634 cstr_reset(&tokcstr
);
2635 cstr_ccat(&tokcstr
, 'L');
2636 goto parse_ident_slow
;
2641 case '0': case '1': case '2': case '3':
2642 case '4': case '5': case '6': case '7':
2646 /* after the first digit, accept digits, alpha, '.' or sign if
2647 prefixed by 'eEpP' */
2649 cstr_reset(&tokcstr
);
2651 cstr_ccat(&tokcstr
, t
);
2652 if (!((isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2654 || ((c
== '+' || c
== '-')
2655 && (((t
== 'e' || t
== 'E')
2656 && !(parse_flags
& PARSE_FLAG_ASM_FILE
2657 /* 0xe+1 is 3 tokens in asm */
2658 && ((char*)tokcstr
.data
)[0] == '0'
2659 && toup(((char*)tokcstr
.data
)[1]) == 'X'))
2660 || t
== 'p' || t
== 'P'))))
2665 /* We add a trailing '\0' to ease parsing */
2666 cstr_ccat(&tokcstr
, '\0');
2667 tokc
.str
.size
= tokcstr
.size
;
2668 tokc
.str
.data
= tokcstr
.data
;
2673 /* special dot handling because it can also start a number */
2678 } else if ((parse_flags
& PARSE_FLAG_ASM_FILE
)
2679 && (isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))) {
2681 goto parse_ident_fast
;
2682 } else if (c
== '.') {
2688 *--p
= '.'; /* may underflow into file->unget[] */
2699 cstr_reset(&tokcstr
);
2701 cstr_ccat(&tokcstr
, 'L');
2702 cstr_ccat(&tokcstr
, c
);
2703 p
= parse_pp_string(p
, c
, &tokcstr
);
2704 cstr_ccat(&tokcstr
, c
);
2705 cstr_ccat(&tokcstr
, '\0');
2706 tokc
.str
.size
= tokcstr
.size
;
2707 tokc
.str
.data
= tokcstr
.data
;
2716 } else if (c
== '<') {
2733 } else if (c
== '>') {
2751 } else if (c
== '=') {
2764 } else if (c
== '=') {
2777 } else if (c
== '=') {
2790 } else if (c
== '=') {
2793 } else if (c
== '>') {
2801 PARSE2('!', '!', '=', TOK_NE
)
2802 PARSE2('=', '=', '=', TOK_EQ
)
2803 PARSE2('*', '*', '=', TOK_A_MUL
)
2804 PARSE2('%', '%', '=', TOK_A_MOD
)
2805 PARSE2('^', '^', '=', TOK_A_XOR
)
2807 /* comments or operator */
2811 p
= parse_comment(p
);
2812 /* comments replaced by a blank */
2814 goto keep_tok_flags
;
2815 } else if (c
== '/') {
2816 p
= parse_line_comment(p
);
2818 goto keep_tok_flags
;
2819 } else if (c
== '=') {
2839 case '@': /* only used in assembler */
2845 if (c
>= 0x80 && c
<= 0xFF) /* utf8 identifiers */
2846 goto parse_ident_fast
;
2847 if (parse_flags
& PARSE_FLAG_ASM_FILE
)
2849 tcc_error("unrecognized character \\x%02x", c
);
2855 #if defined(PARSE_DEBUG)
2856 printf("token = %s\n", get_tok_str(tok
, &tokc
));
2860 /* return next token without macro substitution. Can read input from
2862 static void next_nomacro_spc(void)
2868 TOK_GET(&tok
, ¯o_ptr
, &tokc
);
2869 if (tok
== TOK_LINENUM
) {
2870 file
->line_num
= tokc
.i
;
2879 ST_FUNC
void next_nomacro(void)
2883 } while (tok
< 256 && (isidnum_table
[tok
- CH_EOF
] & IS_SPC
));
2887 static void macro_subst(
2888 TokenString
*tok_str
,
2890 const int *macro_str
,
2894 /* substitute arguments in replacement lists in macro_str by the values in
2895 args (field d) and return allocated string */
2896 static int *macro_arg_subst(Sym
**nested_list
, const int *macro_str
, Sym
*args
)
2908 TOK_GET(&t
, ¯o_str
, &cval
);
2913 TOK_GET(&t
, ¯o_str
, &cval
);
2916 s
= sym_find2(args
, t
);
2919 cstr_ccat(&cstr
, '\"');
2923 TOK_GET(&t
, &st
, &cval
);
2924 if (t
!= TOK_PLCHLDR
2926 && 0 == check_space(t
, &spc
)) {
2927 const char *s
= get_tok_str(t
, &cval
);
2929 if (t
== TOK_PPSTR
&& *s
!= '\'')
2930 add_char(&cstr
, *s
);
2932 cstr_ccat(&cstr
, *s
);
2938 cstr_ccat(&cstr
, '\"');
2939 cstr_ccat(&cstr
, '\0');
2941 printf("\nstringize: <%s>\n", (char *)cstr
.data
);
2944 cval
.str
.size
= cstr
.size
;
2945 cval
.str
.data
= cstr
.data
;
2946 tok_str_add2(&str
, TOK_PPSTR
, &cval
);
2950 expect("macro parameter after '#'");
2952 } else if (t
>= TOK_IDENT
) {
2953 s
= sym_find2(args
, t
);
2957 /* if '##' is present before or after, no arg substitution */
2958 if (*macro_str
== TOK_TWOSHARPS
|| t1
== TOK_TWOSHARPS
) {
2959 /* special case for var arg macros : ## eats the ','
2960 if empty VA_ARGS variable. */
2961 if (t1
== TOK_TWOSHARPS
&& t0
== ',' && gnu_ext
&& s
->type
.t
) {
2963 /* suppress ',' '##' */
2966 /* suppress '##' and add variable */
2973 TOK_GET(&t1
, &st
, &cval
);
2976 tok_str_add2(&str
, t1
, &cval
);
2982 /* NOTE: the stream cannot be read when macro
2983 substituing an argument */
2984 macro_subst(&str
, nested_list
, st
, 0);
2986 if (str
.len
== l0
) /* exanded to empty string */
2987 tok_str_add(&str
, TOK_PLCHLDR
);
2989 tok_str_add(&str
, t
);
2992 tok_str_add2(&str
, t
, &cval
);
2996 tok_str_add(&str
, 0);
3000 static char const ab_month_name
[12][4] =
3002 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
3003 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
3006 /* peek or read [ws_str == NULL] next token from function macro call,
3007 walking up macro levels up to the file if necessary */
3008 static int next_argstream(Sym
**nested_list
, int can_read_stream
, TokenString
*ws_str
)
3016 p
= macro_ptr
, t
= *p
;
3018 while (is_space(t
) || TOK_LINEFEED
== t
)
3019 tok_str_add(ws_str
, t
), t
= *++p
;
3021 if (t
== 0 && can_read_stream
) {
3023 /* also, end of scope for nested defined symbol */
3025 while (sa
&& sa
->v
== 0)
3034 while (is_space(ch
) || ch
== '\n' || ch
== '/') {
3037 uint8_t *p
= file
->buf_ptr
;
3040 p
= parse_comment(p
);
3041 file
->buf_ptr
= p
- 1;
3042 } else if (c
== '/') {
3043 p
= parse_line_comment(p
);
3044 file
->buf_ptr
= p
- 1;
3049 if (!(ch
== '\f' || ch
== '\v' || ch
== '\r'))
3050 tok_str_add(ws_str
, ch
);
3064 /* do macro substitution of current token with macro 's' and add
3065 result to (tok_str,tok_len). 'nested_list' is the list of all
3066 macros we got inside to avoid recursing. Return non zero if no
3067 substitution needs to be done */
3068 static int macro_subst_tok(
3069 TokenString
*tok_str
,
3072 int can_read_stream
)
3074 Sym
*args
, *sa
, *sa1
;
3075 int parlevel
, *mstr
, t
, t1
, spc
;
3082 /* if symbol is a macro, prepare substitution */
3083 /* special macros */
3084 if (tok
== TOK___LINE__
) {
3085 snprintf(buf
, sizeof(buf
), "%d", file
->line_num
);
3089 } else if (tok
== TOK___FILE__
) {
3090 cstrval
= file
->filename
;
3092 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
3097 tm
= localtime(&ti
);
3098 if (tok
== TOK___DATE__
) {
3099 snprintf(buf
, sizeof(buf
), "%s %2d %d",
3100 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
3102 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
3103 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
3110 cstr_cat(&cstr
, cstrval
, 0);
3111 cval
.str
.size
= cstr
.size
;
3112 cval
.str
.data
= cstr
.data
;
3113 tok_str_add2(tok_str
, t1
, &cval
);
3116 int saved_parse_flags
= parse_flags
;
3119 if (s
->type
.t
== MACRO_FUNC
) {
3120 /* whitespace between macro name and argument list */
3122 tok_str_new(&ws_str
);
3125 parse_flags
|= PARSE_FLAG_SPACES
| PARSE_FLAG_LINEFEED
3126 | PARSE_FLAG_ACCEPT_STRAYS
;
3128 /* get next token from argument stream */
3129 t
= next_argstream(nested_list
, can_read_stream
, &ws_str
);
3131 /* not a macro substitution after all, restore the
3132 * macro token plus all whitespace we've read.
3133 * whitespace is intentionally not merged to preserve
3135 parse_flags
= saved_parse_flags
;
3136 tok_str_add(tok_str
, tok
);
3137 if (parse_flags
& PARSE_FLAG_SPACES
) {
3139 for (i
= 0; i
< ws_str
.len
; i
++)
3140 tok_str_add(tok_str
, ws_str
.str
[i
]);
3142 tok_str_free(ws_str
.str
);
3145 tok_str_free(ws_str
.str
);
3147 next_nomacro(); /* eat '(' */
3149 /* argument macro */
3152 /* NOTE: empty args are allowed, except if no args */
3155 next_argstream(nested_list
, can_read_stream
, NULL
);
3156 } while (is_space(tok
) || TOK_LINEFEED
== tok
);
3158 /* handle '()' case */
3159 if (!args
&& !sa
&& tok
== ')')
3162 tcc_error("macro '%s' used with too many args",
3163 get_tok_str(s
->v
, 0));
3166 /* NOTE: non zero sa->t indicates VA_ARGS */
3167 while ((parlevel
> 0 ||
3169 (tok
!= ',' || sa
->type
.t
)))) {
3170 if (tok
== TOK_EOF
|| tok
== 0)
3174 else if (tok
== ')')
3176 if (tok
== TOK_LINEFEED
)
3178 if (!check_space(tok
, &spc
))
3179 tok_str_add2(&str
, tok
, &tokc
);
3180 next_argstream(nested_list
, can_read_stream
, NULL
);
3185 tok_str_add(&str
, 0);
3186 sa1
= sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, 0);
3190 /* special case for gcc var args: add an empty
3191 var arg argument if it is omitted */
3192 if (sa
&& sa
->type
.t
&& gnu_ext
)
3200 tcc_error("macro '%s' used with too few args",
3201 get_tok_str(s
->v
, 0));
3204 parse_flags
= saved_parse_flags
;
3206 /* now subst each arg */
3207 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
3212 tok_str_free(sa
->d
);
3218 sym_push2(nested_list
, s
->v
, 0, 0);
3219 parse_flags
= saved_parse_flags
;
3220 macro_subst(tok_str
, nested_list
, mstr
, can_read_stream
| 2);
3222 /* pop nested defined symbol */
3224 *nested_list
= sa1
->prev
;
3232 static int paste_tokens(int t1
, CValue
*v1
, int t2
, CValue
*v2
)
3238 if (t1
!= TOK_PLCHLDR
)
3239 cstr_cat(&cstr
, get_tok_str(t1
, v1
), -1);
3241 if (t2
!= TOK_PLCHLDR
)
3242 cstr_cat(&cstr
, get_tok_str(t2
, v2
), -1);
3243 cstr_ccat(&cstr
, '\0');
3245 tcc_open_bf(tcc_state
, ":paste:", cstr
.size
);
3246 memcpy(file
->buffer
, cstr
.data
, cstr
.size
);
3249 if (0 == *file
->buf_ptr
)
3253 tcc_warning("pasting \"%.*s\" and \"%s\" does not give a valid"
3254 " preprocessing token", n
, cstr
.data
, (char*)cstr
.data
+ n
);
3259 //printf("paste <%s>\n", (char*)cstr.data);
3264 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
3265 return the resulting string (which must be freed). */
3266 static inline int *macro_twosharps(const int *ptr0
)
3270 TokenString macro_str1
;
3271 int start_of_nosubsts
= -1;
3274 /* we search the first '##' */
3275 for (ptr
= ptr0
;;) {
3276 TOK_GET(&t
, &ptr
, &cval
);
3277 if (t
== TOK_TWOSHARPS
)
3283 tok_str_new(¯o_str1
);
3285 //tok_print(" $$$", ptr0);
3286 for (ptr
= ptr0
;;) {
3287 TOK_GET(&t
, &ptr
, &cval
);
3290 if (t
== TOK_TWOSHARPS
)
3292 while (*ptr
== TOK_TWOSHARPS
) {
3294 /* given 'a##b', remove nosubsts preceding 'a' */
3295 if (start_of_nosubsts
>= 0)
3296 macro_str1
.len
= start_of_nosubsts
;
3297 /* given 'a##b', remove nosubsts preceding 'b' */
3298 while ((t1
= *++ptr
) == TOK_NOSUBST
)
3300 if (t1
&& t1
!= TOK_TWOSHARPS
) {
3301 TOK_GET(&t1
, &ptr
, &cv1
);
3302 if (t
!= TOK_PLCHLDR
|| t1
!= TOK_PLCHLDR
) {
3303 if (paste_tokens(t
, &cval
, t1
, &cv1
)) {
3304 t
= tok
, cval
= tokc
;
3306 tok_str_add2(¯o_str1
, t
, &cval
);
3312 if (t
== TOK_NOSUBST
) {
3313 if (start_of_nosubsts
< 0)
3314 start_of_nosubsts
= macro_str1
.len
;
3316 start_of_nosubsts
= -1;
3318 tok_str_add2(¯o_str1
, t
, &cval
);
3320 tok_str_add(¯o_str1
, 0);
3321 //tok_print(" ###", macro_str1.str);
3322 return macro_str1
.str
;
3325 /* do macro substitution of macro_str and add result to
3326 (tok_str,tok_len). 'nested_list' is the list of all macros we got
3327 inside to avoid recursing. */
3328 static void macro_subst(
3329 TokenString
*tok_str
,
3331 const int *macro_str
,
3337 int t
, spc
, nosubst
;
3339 int *macro_str1
= NULL
;
3341 /* first scan for '##' operator handling */
3345 /* first scan for '##' operator handling */
3346 if (can_read_stream
& 1) {
3347 macro_str1
= macro_twosharps(ptr
);
3353 TOK_GET(&t
, &ptr
, &cval
);
3357 if (t
>= TOK_IDENT
&& 0 == nosubst
) {
3362 /* if nested substitution, do nothing */
3363 if (sym_find2(*nested_list
, t
)) {
3364 /* and mark it as TOK_NOSUBST, so it doesn't get subst'd again */
3365 tok_str_add2(tok_str
, TOK_NOSUBST
, NULL
);
3371 str
.str
= (int*)ptr
;
3372 begin_macro(&str
, 2);
3375 macro_subst_tok(tok_str
, nested_list
, s
, can_read_stream
);
3377 if (str
.alloc
== 3) {
3378 /* already finished by reading function macro arguments */
3386 spc
= (tok_str
->len
&&
3387 is_space(tok_last(tok_str
->str
,
3388 tok_str
->str
+ tok_str
->len
)));
3392 if (t
== '\\' && !(parse_flags
& PARSE_FLAG_ACCEPT_STRAYS
))
3393 tcc_error("stray '\\' in program");
3396 if (!check_space(t
, &spc
))
3397 tok_str_add2(tok_str
, t
, &cval
);
3399 if (t
== TOK_NOSUBST
)
3404 tok_str_free(macro_str1
);
3408 /* return next token with macro substitution */
3409 ST_FUNC
void next(void)
3412 if (parse_flags
& PARSE_FLAG_SPACES
)
3418 if (tok
== TOK_NOSUBST
|| tok
== TOK_PLCHLDR
) {
3419 /* discard preprocessor markers */
3421 } else if (tok
== 0) {
3422 /* end of macro or unget token string */
3426 } else if (tok
>= TOK_IDENT
&& (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3428 /* if reading from file, try to substitute macros */
3429 s
= define_find(tok
);
3431 Sym
*nested_list
= NULL
;
3433 macro_subst_tok(&tokstr_buf
, &nested_list
, s
, 1);
3434 tok_str_add(&tokstr_buf
, 0);
3435 begin_macro(&tokstr_buf
, 2);
3439 /* convert preprocessor tokens into C tokens */
3440 if (tok
== TOK_PPNUM
) {
3441 if (parse_flags
& PARSE_FLAG_TOK_NUM
)
3442 parse_number((char *)tokc
.str
.data
);
3443 } else if (tok
== TOK_PPSTR
) {
3444 if (parse_flags
& PARSE_FLAG_TOK_STR
)
3445 parse_string((char *)tokc
.str
.data
, tokc
.str
.size
- 1);
3449 /* push back current token and set current token to 'last_tok'. Only
3450 identifier case handled for labels. */
3451 ST_INLN
void unget_tok(int last_tok
)
3454 TokenString
*str
= tok_str_alloc();
3455 tok_str_add2(str
, tok
, &tokc
);
3456 tok_str_add(str
, 0);
3457 begin_macro(str
, 1);
3461 ST_FUNC
void preprocess_start(TCCState
*s1
)
3463 s1
->include_stack_ptr
= s1
->include_stack
;
3464 /* XXX: move that before to avoid having to initialize
3465 file->ifdef_stack_ptr ? */
3466 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
3467 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
3470 pvtop
= vtop
= vstack
- 1;
3471 s1
->pack_stack
[0] = 0;
3472 s1
->pack_stack_ptr
= s1
->pack_stack
;
3474 isidnum_table
['$' - CH_EOF
] =
3475 s1
->dollars_in_identifiers
? IS_ID
: 0;
3476 isidnum_table
['.' - CH_EOF
] =
3477 (parse_flags
& PARSE_FLAG_ASM_FILE
) ? IS_ID
: 0;
3480 ST_FUNC
void tccpp_new(TCCState
*s
)
3485 /* might be used in error() before preprocess_start() */
3486 s
->include_stack_ptr
= s
->include_stack
;
3488 /* init isid table */
3489 for(i
= CH_EOF
; i
<128; i
++)
3490 isidnum_table
[i
- CH_EOF
]
3491 = is_space(i
) ? IS_SPC
3496 for(i
= 128; i
<256; i
++)
3497 isidnum_table
[i
- CH_EOF
] = IS_ID
;
3499 /* init allocators */
3500 tal_new(&toksym_alloc
, TOKSYM_TAL_LIMIT
, TOKSYM_TAL_SIZE
);
3501 tal_new(&tokstr_alloc
, TOKSTR_TAL_LIMIT
, TOKSTR_TAL_SIZE
);
3502 tal_new(&cstr_alloc
, CSTR_TAL_LIMIT
, CSTR_TAL_SIZE
);
3504 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
3505 cstr_new(&cstr_buf
);
3506 cstr_realloc(&cstr_buf
, STRING_MAX_SIZE
);
3507 tok_str_new(&tokstr_buf
);
3508 tok_str_realloc(&tokstr_buf
, TOKSTR_MAX_SIZE
);
3510 tok_ident
= TOK_IDENT
;
3519 tok_alloc(p
, r
- p
- 1);
3524 ST_FUNC
void tccpp_delete(TCCState
*s
)
3528 /* free -D and compiler defines */
3531 /* cleanup from error/setjmp */
3537 n
= tok_ident
- TOK_IDENT
;
3538 for(i
= 0; i
< n
; i
++)
3539 tal_free(toksym_alloc
, table_ident
[i
]);
3540 tcc_free(table_ident
);
3543 /* free static buffers */
3544 cstr_free(&tokcstr
);
3545 cstr_free(&cstr_buf
);
3546 tok_str_free(tokstr_buf
.str
);
3548 /* free allocators */
3549 tal_delete(toksym_alloc
);
3550 toksym_alloc
= NULL
;
3551 tal_delete(tokstr_alloc
);
3552 tokstr_alloc
= NULL
;
3553 tal_delete(cstr_alloc
);
3557 /* ------------------------------------------------------------------------- */
3558 /* tcc -E [-P[1]] [-dD} support */
3560 static void tok_print(const char *msg
, const int *str
)
3566 fp
= tcc_state
->ppfp
;
3567 if (!fp
|| !tcc_state
->dflag
)
3570 fprintf(fp
, "%s ", msg
);
3572 TOK_GET(&t
, &str
, &cval
);
3575 fprintf(fp
,"%s", get_tok_str(t
, &cval
));
3580 static void pp_line(TCCState
*s1
, BufferedFile
*f
, int level
)
3582 int d
= f
->line_num
- f
->line_ref
;
3587 if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_NONE
) {
3589 } else if (level
== 0 && f
->line_ref
&& d
< 8) {
3591 fputs("\n", s1
->ppfp
), --d
;
3592 } else if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_STD
) {
3593 fprintf(s1
->ppfp
, "#line %d \"%s\"\n", f
->line_num
, f
->filename
);
3595 fprintf(s1
->ppfp
, "# %d \"%s\"%s\n", f
->line_num
, f
->filename
,
3596 level
> 0 ? " 1" : level
< 0 ? " 2" : "");
3598 f
->line_ref
= f
->line_num
;
3601 static void define_print(TCCState
*s1
, int v
)
3607 if (NULL
== s
|| NULL
== s
->d
)
3611 fprintf(fp
, "#define %s", get_tok_str(v
, NULL
));
3612 if (s
->type
.t
== MACRO_FUNC
) {
3617 fprintf(fp
,"%s", get_tok_str(a
->v
& ~SYM_FIELD
, NULL
));
3624 tok_print("", s
->d
);
3627 static void pp_debug_defines(TCCState
*s1
)
3638 pp_line(s1
, file
, 0);
3639 file
->line_ref
= ++file
->line_num
;
3643 vs
= get_tok_str(v
, NULL
);
3644 if (t
== TOK_DEFINE
) {
3645 define_print(s1
, v
);
3646 } else if (t
== TOK_UNDEF
) {
3647 fprintf(fp
, "#undef %s\n", vs
);
3648 } else if (t
== TOK_push_macro
) {
3649 fprintf(fp
, "#pragma push_macro(\"%s\")\n", vs
);
3650 } else if (t
== TOK_pop_macro
) {
3651 fprintf(fp
, "#pragma pop_macro(\"%s\")\n", vs
);
3656 static void pp_debug_builtins(TCCState
*s1
)
3659 for (v
= TOK_IDENT
; v
< tok_ident
; ++v
)
3660 define_print(s1
, v
);
3663 /* Add a space between tokens a and b to avoid unwanted textual pasting */
3664 static int pp_need_space(int a
, int b
)
3666 return 'E' == a
? '+' == b
|| '-' == b
3667 : '+' == a
? TOK_INC
== b
|| '+' == b
3668 : '-' == a
? TOK_DEC
== b
|| '-' == b
3669 : a
>= TOK_IDENT
? b
>= TOK_IDENT
3673 /* maybe hex like 0x1e */
3674 static int pp_check_he0xE(int t
, const char *p
)
3676 if (t
== TOK_PPNUM
&& toup(strchr(p
, 0)[-1]) == 'E')
3681 /* Preprocess the current file */
3682 ST_FUNC
int tcc_preprocess(TCCState
*s1
)
3684 BufferedFile
**iptr
;
3685 int token_seen
, spcs
, level
;
3689 preprocess_start(s1
);
3690 ch
= file
->buf_ptr
[0];
3691 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
3692 parse_flags
= PARSE_FLAG_PREPROCESS
3693 | (parse_flags
& PARSE_FLAG_ASM_FILE
)
3694 | PARSE_FLAG_LINEFEED
3696 | PARSE_FLAG_ACCEPT_STRAYS
3698 define_start
= define_stack
;
3700 /* Credits to Fabrice Bellard's initial revision to demonstrate its
3701 capability to compile and run itself, provided all numbers are
3702 given as decimals. tcc -E -P10 will do. */
3703 if (s1
->Pflag
== 1 + 10)
3704 parse_flags
|= PARSE_FLAG_TOK_NUM
, s1
->Pflag
= 1;
3707 /* for PP benchmarks */
3708 do next(); while (tok
!= TOK_EOF
); return 0;
3711 if (s1
->dflag
& 1) {
3712 pp_debug_builtins(s1
);
3716 token_seen
= TOK_LINEFEED
, spcs
= 0;
3717 pp_line(s1
, file
, 0);
3720 iptr
= s1
->include_stack_ptr
;
3724 level
= s1
->include_stack_ptr
- iptr
;
3727 pp_line(s1
, *iptr
, 0);
3728 pp_line(s1
, file
, level
);
3732 pp_debug_defines(s1
);
3737 if (token_seen
== TOK_LINEFEED
) {
3742 if (tok
== TOK_LINEFEED
) {
3746 pp_line(s1
, file
, 0);
3747 } else if (tok
== TOK_LINEFEED
) {
3750 spcs
= pp_need_space(token_seen
, tok
);
3754 fputs(" ", s1
->ppfp
), --spcs
;
3755 fputs(p
= get_tok_str(tok
, &tokc
), s1
->ppfp
);
3756 token_seen
= pp_check_he0xE(tok
, p
);;
3758 /* reset define stack, but keep -D and built-ins */
3759 free_defines(define_start
);
3763 /* ------------------------------------------------------------------------- */