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
;
52 static int pp_counter
;
53 static void tok_print(const char *msg
, const int *str
);
55 static struct TinyAlloc
*toksym_alloc
;
56 static struct TinyAlloc
*tokstr_alloc
;
57 static struct TinyAlloc
*cstr_alloc
;
59 static TokenString
*macro_stack
;
61 static const char tcc_keywords
[] =
62 #define DEF(id, str) str "\0"
67 /* WARNING: the content of this string encodes token numbers */
68 static const unsigned char tok_two_chars
[] =
70 "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253"
71 "-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
93 '#','#', TOK_TWOSHARPS
,
97 static void next_nomacro_spc(void);
99 ST_FUNC
void skip(int c
)
102 tcc_error("'%c' expected (got \"%s\")", c
, get_tok_str(tok
, &tokc
));
106 ST_FUNC
void expect(const char *msg
)
108 tcc_error("%s expected", msg
);
111 /* ------------------------------------------------------------------------- */
112 /* Custom allocator for tiny objects */
117 #define tal_free(al, p) tcc_free(p)
118 #define tal_realloc(al, p, size) tcc_realloc(p, size)
119 #define tal_new(a,b,c)
120 #define tal_delete(a)
122 #if !defined(MEM_DEBUG)
123 #define tal_free(al, p) tal_free_impl(al, p)
124 #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size)
125 #define TAL_DEBUG_PARAMS
128 //#define TAL_INFO 1 /* collect and dump allocators stats */
129 #define tal_free(al, p) tal_free_impl(al, p, __FILE__, __LINE__)
130 #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size, __FILE__, __LINE__)
131 #define TAL_DEBUG_PARAMS , const char *file, int line
132 #define TAL_DEBUG_FILE_LEN 40
135 #define TOKSYM_TAL_SIZE (768 * 1024) /* allocator for tiny TokenSym in table_ident */
136 #define TOKSTR_TAL_SIZE (768 * 1024) /* allocator for tiny TokenString instances */
137 #define CSTR_TAL_SIZE (256 * 1024) /* allocator for tiny CString instances */
138 #define TOKSYM_TAL_LIMIT 256 /* prefer unique limits to distinguish allocators debug msgs */
139 #define TOKSTR_TAL_LIMIT 128 /* 32 * sizeof(int) */
140 #define CSTR_TAL_LIMIT 1024
142 typedef struct TinyAlloc
{
148 struct TinyAlloc
*next
, *top
;
157 typedef struct tal_header_t
{
160 int line_num
; /* negative line_num used for double free check */
161 char file_name
[TAL_DEBUG_FILE_LEN
+ 1];
165 /* ------------------------------------------------------------------------- */
167 static TinyAlloc
*tal_new(TinyAlloc
**pal
, unsigned limit
, unsigned size
)
169 TinyAlloc
*al
= tcc_mallocz(sizeof(TinyAlloc
));
170 al
->p
= al
->buffer
= tcc_malloc(size
);
177 static void tal_delete(TinyAlloc
*al
)
185 fprintf(stderr
, "limit=%5d, size=%5g MB, nb_peak=%6d, nb_total=%8d, nb_missed=%6d, usage=%5.1f%%\n",
186 al
->limit
, al
->size
/ 1024.0 / 1024.0, al
->nb_peak
, al
->nb_total
, al
->nb_missed
,
187 (al
->peak_p
- al
->buffer
) * 100.0 / al
->size
);
190 if (al
->nb_allocs
> 0) {
192 fprintf(stderr
, "TAL_DEBUG: memory leak %d chunk(s) (limit= %d)\n",
193 al
->nb_allocs
, al
->limit
);
196 tal_header_t
*header
= (tal_header_t
*)p
;
197 if (header
->line_num
> 0) {
198 fprintf(stderr
, "%s:%d: chunk of %d bytes leaked\n",
199 header
->file_name
, header
->line_num
, header
->size
);
201 p
+= header
->size
+ sizeof(tal_header_t
);
209 tcc_free(al
->buffer
);
215 static void tal_free_impl(TinyAlloc
*al
, void *p TAL_DEBUG_PARAMS
)
220 if (al
->buffer
<= (uint8_t *)p
&& (uint8_t *)p
< al
->buffer
+ al
->size
) {
222 tal_header_t
*header
= (((tal_header_t
*)p
) - 1);
223 if (header
->line_num
< 0) {
224 fprintf(stderr
, "%s:%d: TAL_DEBUG: double frees chunk from\n",
226 fprintf(stderr
, "%s:%d: %d bytes\n",
227 header
->file_name
, (int)-header
->line_num
, (int)header
->size
);
229 header
->line_num
= -header
->line_num
;
234 } else if (al
->next
) {
242 static void *tal_realloc_impl(TinyAlloc
**pal
, void *p
, unsigned size TAL_DEBUG_PARAMS
)
244 tal_header_t
*header
;
247 unsigned adj_size
= (size
+ 3) & -4;
248 TinyAlloc
*al
= *pal
;
251 is_own
= (al
->buffer
<= (uint8_t *)p
&& (uint8_t *)p
< al
->buffer
+ al
->size
);
252 if ((!p
|| is_own
) && size
<= al
->limit
) {
253 if (al
->p
+ adj_size
+ sizeof(tal_header_t
) < al
->buffer
+ al
->size
) {
254 header
= (tal_header_t
*)al
->p
;
255 header
->size
= adj_size
;
257 { int ofs
= strlen(file
) - TAL_DEBUG_FILE_LEN
;
258 strncpy(header
->file_name
, file
+ (ofs
> 0 ? ofs
: 0), TAL_DEBUG_FILE_LEN
);
259 header
->file_name
[TAL_DEBUG_FILE_LEN
] = 0;
260 header
->line_num
= line
; }
262 ret
= al
->p
+ sizeof(tal_header_t
);
263 al
->p
+= adj_size
+ sizeof(tal_header_t
);
265 header
= (((tal_header_t
*)p
) - 1);
266 memcpy(ret
, p
, header
->size
);
268 header
->line_num
= -header
->line_num
;
274 if (al
->nb_peak
< al
->nb_allocs
)
275 al
->nb_peak
= al
->nb_allocs
;
276 if (al
->peak_p
< al
->p
)
283 ret
= tal_realloc(*pal
, 0, size
);
284 header
= (((tal_header_t
*)p
) - 1);
285 memcpy(ret
, p
, header
->size
);
287 header
->line_num
= -header
->line_num
;
294 TinyAlloc
*bottom
= al
, *next
= al
->top
? al
->top
: al
;
296 al
= tal_new(pal
, next
->limit
, next
->size
* 2);
304 ret
= tcc_malloc(size
);
305 header
= (((tal_header_t
*)p
) - 1);
306 memcpy(ret
, p
, header
->size
);
308 header
->line_num
= -header
->line_num
;
310 } else if (al
->next
) {
314 ret
= tcc_realloc(p
, size
);
323 /* ------------------------------------------------------------------------- */
324 /* CString handling */
325 static void cstr_realloc(CString
*cstr
, int new_size
)
329 size
= cstr
->size_allocated
;
331 size
= 8; /* no need to allocate a too small first string */
332 while (size
< new_size
)
334 cstr
->data
= tal_realloc(cstr_alloc
, cstr
->data
, size
);
335 cstr
->size_allocated
= size
;
339 ST_INLN
void cstr_ccat(CString
*cstr
, int ch
)
342 size
= cstr
->size
+ 1;
343 if (size
> cstr
->size_allocated
)
344 cstr_realloc(cstr
, size
);
345 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
349 ST_FUNC
void cstr_cat(CString
*cstr
, const char *str
, int len
)
353 len
= strlen(str
) + 1 + len
;
354 size
= cstr
->size
+ len
;
355 if (size
> cstr
->size_allocated
)
356 cstr_realloc(cstr
, size
);
357 memmove(((unsigned char *)cstr
->data
) + cstr
->size
, str
, len
);
361 /* add a wide char */
362 ST_FUNC
void cstr_wccat(CString
*cstr
, int ch
)
365 size
= cstr
->size
+ sizeof(nwchar_t
);
366 if (size
> cstr
->size_allocated
)
367 cstr_realloc(cstr
, size
);
368 *(nwchar_t
*)(((unsigned char *)cstr
->data
) + size
- sizeof(nwchar_t
)) = ch
;
372 ST_FUNC
void cstr_new(CString
*cstr
)
374 memset(cstr
, 0, sizeof(CString
));
377 /* free string and reset it to NULL */
378 ST_FUNC
void cstr_free(CString
*cstr
)
380 tal_free(cstr_alloc
, cstr
->data
);
384 /* reset string to empty */
385 ST_FUNC
void cstr_reset(CString
*cstr
)
391 static void add_char(CString
*cstr
, int c
)
393 if (c
== '\'' || c
== '\"' || c
== '\\') {
394 /* XXX: could be more precise if char or string */
395 cstr_ccat(cstr
, '\\');
397 if (c
>= 32 && c
<= 126) {
400 cstr_ccat(cstr
, '\\');
402 cstr_ccat(cstr
, 'n');
404 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
405 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
406 cstr_ccat(cstr
, '0' + (c
& 7));
411 /* ------------------------------------------------------------------------- */
412 /* allocate a new token */
413 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
415 TokenSym
*ts
, **ptable
;
418 if (tok_ident
>= SYM_FIRST_ANOM
)
419 tcc_error("memory full (symbols)");
421 /* expand token table if needed */
422 i
= tok_ident
- TOK_IDENT
;
423 if ((i
% TOK_ALLOC_INCR
) == 0) {
424 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
425 table_ident
= ptable
;
428 ts
= tal_realloc(toksym_alloc
, 0, sizeof(TokenSym
) + len
);
430 ts
->tok
= tok_ident
++;
431 ts
->sym_define
= NULL
;
432 ts
->sym_label
= NULL
;
433 ts
->sym_struct
= NULL
;
434 ts
->sym_identifier
= NULL
;
436 ts
->hash_next
= NULL
;
437 memcpy(ts
->str
, str
, len
);
443 #define TOK_HASH_INIT 1
444 #define TOK_HASH_FUNC(h, c) ((h) + ((h) << 5) + ((h) >> 27) + (c))
447 /* find a token and add it if not found */
448 ST_FUNC TokenSym
*tok_alloc(const char *str
, int len
)
456 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
457 h
&= (TOK_HASH_SIZE
- 1);
459 pts
= &hash_ident
[h
];
464 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
466 pts
= &(ts
->hash_next
);
468 return tok_alloc_new(pts
, str
, len
);
471 /* XXX: buffer overflow */
472 /* XXX: float tokens */
473 ST_FUNC
const char *get_tok_str(int v
, CValue
*cv
)
478 cstr_reset(&cstr_buf
);
488 /* XXX: not quite exact, but only useful for testing */
490 sprintf(p
, "%u", (unsigned)cv
->i
);
492 sprintf(p
, "%llu", (unsigned long long)cv
->i
);
496 cstr_ccat(&cstr_buf
, 'L');
498 cstr_ccat(&cstr_buf
, '\'');
499 add_char(&cstr_buf
, cv
->i
);
500 cstr_ccat(&cstr_buf
, '\'');
501 cstr_ccat(&cstr_buf
, '\0');
505 return (char*)cv
->str
.data
;
507 cstr_ccat(&cstr_buf
, 'L');
509 cstr_ccat(&cstr_buf
, '\"');
511 len
= cv
->str
.size
- 1;
513 add_char(&cstr_buf
, ((unsigned char *)cv
->str
.data
)[i
]);
515 len
= (cv
->str
.size
/ sizeof(nwchar_t
)) - 1;
517 add_char(&cstr_buf
, ((nwchar_t
*)cv
->str
.data
)[i
]);
519 cstr_ccat(&cstr_buf
, '\"');
520 cstr_ccat(&cstr_buf
, '\0');
524 cstr_cat(&cstr_buf
, "<float>", 0);
527 cstr_cat(&cstr_buf
, "<double>", 0);
530 cstr_cat(&cstr_buf
, "<long double>", 0);
533 cstr_cat(&cstr_buf
, "<linenumber>", 0);
536 /* above tokens have value, the ones below don't */
544 return strcpy(p
, "...");
546 return strcpy(p
, "<<=");
548 return strcpy(p
, ">>=");
550 return strcpy(p
, "<eof>");
553 /* search in two bytes table */
554 const unsigned char *q
= tok_two_chars
;
560 return cstr_buf
.data
;
565 sprintf(cstr_buf
.data
, "<%02x>", v
);
566 return cstr_buf
.data
;
571 } else if (v
< tok_ident
) {
572 return table_ident
[v
- TOK_IDENT
]->str
;
573 } else if (v
>= SYM_FIRST_ANOM
) {
574 /* special name for anonymous symbol */
575 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
577 /* should never happen */
582 return cstr_buf
.data
;
585 /* return the current character, handling end of block if necessary
587 ST_FUNC
int handle_eob(void)
589 BufferedFile
*bf
= file
;
592 /* only tries to read if really end of buffer */
593 if (bf
->buf_ptr
>= bf
->buf_end
) {
595 #if defined(PARSE_DEBUG)
600 len
= read(bf
->fd
, bf
->buffer
, len
);
607 bf
->buf_ptr
= bf
->buffer
;
608 bf
->buf_end
= bf
->buffer
+ len
;
609 *bf
->buf_end
= CH_EOB
;
611 if (bf
->buf_ptr
< bf
->buf_end
) {
612 return bf
->buf_ptr
[0];
614 bf
->buf_ptr
= bf
->buf_end
;
619 /* read next char from current input file and handle end of input buffer */
620 ST_INLN
void inp(void)
622 ch
= *(++(file
->buf_ptr
));
623 /* end of buffer/file handling */
628 /* handle '\[\r]\n' */
629 static int handle_stray_noerror(void)
636 } else if (ch
== '\r') {
650 static void handle_stray(void)
652 if (handle_stray_noerror())
653 tcc_error("stray '\\' in program");
656 /* skip the stray and handle the \\n case. Output an error if
657 incorrect char after the stray */
658 static int handle_stray1(uint8_t *p
)
663 if (p
>= file
->buf_end
) {
670 if (handle_stray_noerror()) {
671 if (!(parse_flags
& PARSE_FLAG_ACCEPT_STRAYS
))
672 tcc_error("stray '\\' in program");
673 *--file
->buf_ptr
= '\\';
680 /* handle just the EOB case, but not stray */
681 #define PEEKC_EOB(c, p)\
692 /* handle the complicated stray case */
698 c = handle_stray1(p);\
703 /* input with '\[\r]\n' handling. Note that this function cannot
704 handle other characters after '\', so you cannot call it inside
705 strings or comments */
706 ST_FUNC
void minp(void)
713 /* single line C++ comments */
714 static uint8_t *parse_line_comment(uint8_t *p
)
722 if (c
== '\n' || c
== CH_EOF
) {
724 } else if (c
== '\\') {
733 } else if (c
== '\r') {
751 ST_FUNC
uint8_t *parse_comment(uint8_t *p
)
760 if (c
== '\n' || c
== '*' || c
== '\\')
764 if (c
== '\n' || c
== '*' || c
== '\\')
768 /* now we can handle all the cases */
772 } else if (c
== '*') {
778 } else if (c
== '/') {
780 } else if (c
== '\\') {
785 tcc_error("unexpected end of file in comment");
787 /* skip '\[\r]\n', otherwise just skip the stray */
793 } else if (c
== '\r') {
810 /* stray, eob or eof */
815 tcc_error("unexpected end of file in comment");
816 } else if (c
== '\\') {
826 ST_FUNC
int set_idnum(int c
, int val
)
828 int prev
= isidnum_table
[c
- CH_EOF
];
829 isidnum_table
[c
- CH_EOF
] = val
;
835 static inline void skip_spaces(void)
837 while (isidnum_table
[ch
- CH_EOF
] & IS_SPC
)
841 static inline int check_space(int t
, int *spc
)
843 if (t
< 256 && (isidnum_table
[t
- CH_EOF
] & IS_SPC
)) {
852 /* parse a string without interpreting escapes */
853 static uint8_t *parse_pp_string(uint8_t *p
,
854 int sep
, CString
*str
)
862 } else if (c
== '\\') {
868 /* XXX: indicate line number of start of string */
869 tcc_error("missing terminating %c character", sep
);
870 } else if (c
== '\\') {
871 /* escape : just skip \[\r]\n */
876 } else if (c
== '\r') {
879 expect("'\n' after '\r'");
882 } else if (c
== CH_EOF
) {
883 goto unterminated_string
;
886 cstr_ccat(str
, '\\');
892 } else if (c
== '\n') {
895 } else if (c
== '\r') {
899 cstr_ccat(str
, '\r');
915 /* skip block of text until #else, #elif or #endif. skip also pairs of
917 static void preprocess_skip(void)
919 int a
, start_of_line
, c
, in_warn_or_error
;
926 in_warn_or_error
= 0;
947 } else if (c
== '\\') {
948 ch
= file
->buf_ptr
[0];
949 handle_stray_noerror();
956 if (in_warn_or_error
)
958 p
= parse_pp_string(p
, c
, NULL
);
962 if (in_warn_or_error
)
969 p
= parse_comment(p
);
970 } else if (ch
== '/') {
971 p
= parse_line_comment(p
);
981 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
983 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
985 else if (tok
== TOK_ENDIF
)
987 else if( tok
== TOK_ERROR
|| tok
== TOK_WARNING
)
988 in_warn_or_error
= 1;
989 else if (tok
== TOK_LINEFEED
)
991 else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
992 p
= parse_line_comment(p
- 1);
993 } else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
994 p
= parse_line_comment(p
- 1);
1008 /* return the number of additional 'ints' necessary to store the
1010 static inline int tok_size(const int *p
)
1025 return 1 + ((sizeof(CString
) + ((CString
*)(p
+1))->size
+ 3) >> 2);
1028 return 1 + LONG_SIZE
/ 4;
1034 return 1 + LDOUBLE_SIZE
/ 4;
1041 /* token string handling */
1042 ST_INLN
void tok_str_new(TokenString
*s
)
1045 s
->len
= s
->lastlen
= 0;
1046 s
->allocated_len
= 0;
1047 s
->last_line_num
= -1;
1050 ST_FUNC TokenString
*tok_str_alloc(void)
1052 TokenString
*str
= tal_realloc(tokstr_alloc
, 0, sizeof *str
);
1057 ST_FUNC
int *tok_str_dup(TokenString
*s
)
1061 str
= tal_realloc(tokstr_alloc
, 0, s
->len
* sizeof(int));
1062 memcpy(str
, s
->str
, s
->len
* sizeof(int));
1066 ST_FUNC
void tok_str_free_str(int *str
)
1068 tal_free(tokstr_alloc
, str
);
1071 ST_FUNC
void tok_str_free(TokenString
*str
)
1073 tok_str_free_str(str
->str
);
1074 tal_free(tokstr_alloc
, str
);
1077 ST_FUNC
int *tok_str_realloc(TokenString
*s
, int new_size
)
1081 size
= s
->allocated_len
;
1084 while (size
< new_size
)
1086 if (size
> s
->allocated_len
) {
1087 str
= tal_realloc(tokstr_alloc
, s
->str
, size
* sizeof(int));
1088 s
->allocated_len
= size
;
1094 ST_FUNC
void tok_str_add(TokenString
*s
, int t
)
1100 if (len
>= s
->allocated_len
)
1101 str
= tok_str_realloc(s
, len
+ 1);
1106 ST_FUNC
void begin_macro(TokenString
*str
, int alloc
)
1109 str
->prev
= macro_stack
;
1110 str
->prev_ptr
= macro_ptr
;
1111 str
->save_line_num
= file
->line_num
;
1112 macro_ptr
= str
->str
;
1116 ST_FUNC
void end_macro(void)
1118 TokenString
*str
= macro_stack
;
1119 macro_stack
= str
->prev
;
1120 macro_ptr
= str
->prev_ptr
;
1121 file
->line_num
= str
->save_line_num
;
1122 if (str
->alloc
== 2) {
1123 str
->alloc
= 3; /* just mark as finished */
1129 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
1133 len
= s
->lastlen
= s
->len
;
1136 /* allocate space for worst case */
1137 if (len
+ TOK_MAX_SIZE
>= s
->allocated_len
)
1138 str
= tok_str_realloc(s
, len
+ TOK_MAX_SIZE
+ 1);
1151 str
[len
++] = cv
->tab
[0];
1158 /* Insert the string into the int array. */
1160 1 + (cv
->str
.size
+ sizeof(int) - 1) / sizeof(int);
1161 if (len
+ nb_words
>= s
->allocated_len
)
1162 str
= tok_str_realloc(s
, len
+ nb_words
+ 1);
1163 str
[len
] = cv
->str
.size
;
1164 memcpy(&str
[len
+ 1], cv
->str
.data
, cv
->str
.size
);
1175 #if LDOUBLE_SIZE == 8
1178 str
[len
++] = cv
->tab
[0];
1179 str
[len
++] = cv
->tab
[1];
1181 #if LDOUBLE_SIZE == 12
1183 str
[len
++] = cv
->tab
[0];
1184 str
[len
++] = cv
->tab
[1];
1185 str
[len
++] = cv
->tab
[2];
1186 #elif LDOUBLE_SIZE == 16
1188 str
[len
++] = cv
->tab
[0];
1189 str
[len
++] = cv
->tab
[1];
1190 str
[len
++] = cv
->tab
[2];
1191 str
[len
++] = cv
->tab
[3];
1192 #elif LDOUBLE_SIZE != 8
1193 #error add long double size support
1202 /* add the current parse token in token string 's' */
1203 ST_FUNC
void tok_str_add_tok(TokenString
*s
)
1207 /* save line number info */
1208 if (file
->line_num
!= s
->last_line_num
) {
1209 s
->last_line_num
= file
->line_num
;
1210 cval
.i
= s
->last_line_num
;
1211 tok_str_add2(s
, TOK_LINENUM
, &cval
);
1213 tok_str_add2(s
, tok
, &tokc
);
1216 /* get a token from an integer array and increment pointer. */
1217 static inline void TOK_GET(int *t
, const int **pp
, CValue
*cv
)
1237 cv
->i
= (unsigned)*p
++;
1246 cv
->str
.size
= *p
++;
1248 p
+= (cv
->str
.size
+ sizeof(int) - 1) / sizeof(int);
1260 #if LDOUBLE_SIZE == 16
1262 #elif LDOUBLE_SIZE == 12
1264 #elif LDOUBLE_SIZE == 8
1267 # error add long double size support
1280 static int macro_is_equal(const int *a
, const int *b
)
1289 /* first time preallocate macro_equal_buf, next time only reset position to start */
1290 cstr_reset(¯o_equal_buf
);
1291 TOK_GET(&t
, &a
, &cv
);
1292 cstr_cat(¯o_equal_buf
, get_tok_str(t
, &cv
), 0);
1293 TOK_GET(&t
, &b
, &cv
);
1294 if (strcmp(macro_equal_buf
.data
, get_tok_str(t
, &cv
)))
1300 /* defines handling */
1301 ST_INLN
void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
1306 s
= sym_push2(&define_stack
, v
, macro_type
, 0);
1308 s
->next
= first_arg
;
1309 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
1311 if (o
&& !macro_is_equal(o
->d
, s
->d
))
1312 tcc_warning("%s redefined", get_tok_str(v
, NULL
));
1315 /* undefined a define symbol. Its name is just set to zero */
1316 ST_FUNC
void define_undef(Sym
*s
)
1319 if (v
>= TOK_IDENT
&& v
< tok_ident
)
1320 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
1323 ST_INLN Sym
*define_find(int v
)
1326 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1328 return table_ident
[v
]->sym_define
;
1331 /* free define stack until top reaches 'b' */
1332 ST_FUNC
void free_defines(Sym
*b
)
1334 while (define_stack
!= b
) {
1335 Sym
*top
= define_stack
;
1336 define_stack
= top
->prev
;
1337 tok_str_free_str(top
->d
);
1342 /* restore remaining (-D or predefined) symbols if they were
1343 #undef'd in the file */
1346 if (v
>= TOK_IDENT
&& v
< tok_ident
) {
1347 Sym
**d
= &table_ident
[v
- TOK_IDENT
]->sym_define
;
1356 ST_FUNC Sym
*label_find(int v
)
1359 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1361 return table_ident
[v
]->sym_label
;
1364 ST_FUNC Sym
*label_push(Sym
**ptop
, int v
, int flags
)
1367 s
= sym_push2(ptop
, v
, 0, 0);
1369 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
1370 if (ptop
== &global_label_stack
) {
1371 /* modify the top most local identifier, so that
1372 sym_identifier will point to 's' when popped */
1374 ps
= &(*ps
)->prev_tok
;
1381 /* pop labels until element last is reached. Look if any labels are
1382 undefined. Define symbols if '&&label' was used. */
1383 ST_FUNC
void label_pop(Sym
**ptop
, Sym
*slast
, int keep
)
1386 for(s
= *ptop
; s
!= slast
; s
= s1
) {
1388 if (s
->r
== LABEL_DECLARED
) {
1389 tcc_warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
1390 } else if (s
->r
== LABEL_FORWARD
) {
1391 tcc_error("label '%s' used but not defined",
1392 get_tok_str(s
->v
, NULL
));
1395 /* define corresponding symbol. A size of
1397 put_extern_sym(s
, cur_text_section
, s
->jnext
, 1);
1401 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
1409 /* fake the nth "#if defined test_..." for tcc -dt -run */
1410 static void maybe_run_test(TCCState
*s
)
1413 if (s
->include_stack_ptr
!= s
->include_stack
)
1415 p
= get_tok_str(tok
, NULL
);
1416 if (0 != memcmp(p
, "test_", 5))
1418 if (0 != --s
->run_test
)
1420 fprintf(s
->ppfp
, "\n[%s]\n" + !(s
->dflag
& 32), p
), fflush(s
->ppfp
);
1421 define_push(tok
, MACRO_OBJ
, NULL
, NULL
);
1424 /* eval an expression for #if/#elif */
1425 static int expr_preprocess(void)
1430 str
= tok_str_alloc();
1432 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1433 next(); /* do macro subst */
1434 if (tok
== TOK_DEFINED
) {
1439 if (tok
< TOK_IDENT
)
1440 expect("identifier");
1441 if (tcc_state
->run_test
)
1442 maybe_run_test(tcc_state
);
1443 c
= define_find(tok
) != 0;
1451 } else if (tok
>= TOK_IDENT
) {
1452 /* if undefined macro */
1456 tok_str_add_tok(str
);
1459 tok_str_add(str
, -1); /* simulate end of file */
1460 tok_str_add(str
, 0);
1461 /* now evaluate C constant expression */
1462 begin_macro(str
, 1);
1470 /* parse after #define */
1471 ST_FUNC
void parse_define(void)
1473 Sym
*s
, *first
, **ps
;
1474 int v
, t
, varg
, is_vaargs
, spc
;
1475 int saved_parse_flags
= parse_flags
;
1478 if (v
< TOK_IDENT
|| v
== TOK_DEFINED
)
1479 tcc_error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
1480 /* XXX: should check if same macro (ANSI) */
1483 /* We have to parse the whole define as if not in asm mode, in particular
1484 no line comment with '#' must be ignored. Also for function
1485 macros the argument list must be parsed without '.' being an ID
1487 parse_flags
= ((parse_flags
& ~PARSE_FLAG_ASM_FILE
) | PARSE_FLAG_SPACES
);
1488 /* '(' must be just after macro definition for MACRO_FUNC */
1491 int dotid
= set_idnum('.', 0);
1494 if (tok
!= ')') for (;;) {
1498 if (varg
== TOK_DOTS
) {
1499 varg
= TOK___VA_ARGS__
;
1501 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
1505 if (varg
< TOK_IDENT
)
1507 tcc_error("bad macro parameter list");
1508 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
1513 if (tok
!= ',' || is_vaargs
)
1519 set_idnum('.', dotid
);
1524 parse_flags
|= PARSE_FLAG_ACCEPT_STRAYS
| PARSE_FLAG_SPACES
| PARSE_FLAG_LINEFEED
;
1525 /* The body of a macro definition should be parsed such that identifiers
1526 are parsed like the file mode determines (i.e. with '.' being an
1527 ID character in asm mode). But '#' should be retained instead of
1528 regarded as line comment leader, so still don't set ASM_FILE
1530 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1531 /* remove spaces around ## and after '#' */
1532 if (TOK_TWOSHARPS
== tok
) {
1539 } else if ('#' == tok
) {
1541 } else if (check_space(tok
, &spc
)) {
1544 tok_str_add2(&tokstr_buf
, tok
, &tokc
);
1549 parse_flags
= saved_parse_flags
;
1551 --tokstr_buf
.len
; /* remove trailing space */
1552 tok_str_add(&tokstr_buf
, 0);
1555 tcc_error("'##' cannot appear at either end of macro");
1556 define_push(v
, t
, tok_str_dup(&tokstr_buf
), first
);
1559 static CachedInclude
*search_cached_include(TCCState
*s1
, const char *filename
, int add
)
1561 const unsigned char *s
;
1567 s
= (unsigned char *) filename
;
1570 h
= TOK_HASH_FUNC(h
, toup(*s
));
1572 h
= TOK_HASH_FUNC(h
, *s
);
1576 h
&= (CACHED_INCLUDES_HASH_SIZE
- 1);
1578 i
= s1
->cached_includes_hash
[h
];
1582 e
= s1
->cached_includes
[i
- 1];
1583 if (0 == PATHCMP(e
->filename
, filename
))
1590 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
1591 strcpy(e
->filename
, filename
);
1592 e
->ifndef_macro
= e
->once
= 0;
1593 dynarray_add(&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
1594 /* add in hash table */
1595 e
->hash_next
= s1
->cached_includes_hash
[h
];
1596 s1
->cached_includes_hash
[h
] = s1
->nb_cached_includes
;
1598 printf("adding cached '%s'\n", filename
);
1603 static void pragma_parse(TCCState
*s1
)
1606 if (tok
== TOK_push_macro
|| tok
== TOK_pop_macro
) {
1610 if (next(), tok
!= '(')
1612 if (next(), tok
!= TOK_STR
)
1614 v
= tok_alloc(tokc
.str
.data
, tokc
.str
.size
- 1)->tok
;
1615 if (next(), tok
!= ')')
1617 if (t
== TOK_push_macro
) {
1618 while (NULL
== (s
= define_find(v
)))
1619 define_push(v
, 0, NULL
, NULL
);
1620 s
->type
.ref
= s
; /* set push boundary */
1622 for (s
= define_stack
; s
; s
= s
->prev
)
1623 if (s
->v
== v
&& s
->type
.ref
== s
) {
1629 table_ident
[v
- TOK_IDENT
]->sym_define
= s
->d
? s
: NULL
;
1631 tcc_warning("unbalanced #pragma pop_macro");
1632 pp_debug_tok
= t
, pp_debug_symv
= v
;
1634 } else if (tok
== TOK_once
) {
1635 search_cached_include(s1
, file
->filename
, 1)->once
= pp_once
;
1637 } else if (s1
->output_type
== TCC_OUTPUT_PREPROCESS
) {
1638 /* tcc -E: keep pragmas below unchanged */
1640 unget_tok(TOK_PRAGMA
);
1642 unget_tok(TOK_LINEFEED
);
1644 } else if (tok
== TOK_pack
) {
1646 #pragma pack(1) // set
1647 #pragma pack() // reset to default
1648 #pragma pack(push,1) // push & set
1649 #pragma pack(pop) // restore previous */
1652 if (tok
== TOK_ASM_pop
) {
1654 if (s1
->pack_stack_ptr
<= s1
->pack_stack
) {
1656 tcc_error("out of pack stack");
1658 s1
->pack_stack_ptr
--;
1662 if (tok
== TOK_ASM_push
) {
1664 if (s1
->pack_stack_ptr
>= s1
->pack_stack
+ PACK_STACK_SIZE
- 1)
1666 s1
->pack_stack_ptr
++;
1669 if (tok
!= TOK_CINT
)
1672 if (val
< 1 || val
> 16 || (val
& (val
- 1)) != 0)
1676 *s1
->pack_stack_ptr
= val
;
1681 } else if (tok
== TOK_comment
) {
1690 p
= tcc_strdup((char *)tokc
.str
.data
);
1695 dynarray_add(&s1
->pragma_libs
, &s1
->nb_pragma_libs
, p
);
1697 if (t
== TOK_option
)
1698 tcc_set_options(s1
, p
);
1702 } else if (s1
->warn_unsupported
) {
1703 tcc_warning("#pragma %s is ignored", get_tok_str(tok
, &tokc
));
1708 tcc_error("malformed #pragma directive");
1712 /* is_bof is true if first non space token at beginning of file */
1713 ST_FUNC
void preprocess(int is_bof
)
1715 TCCState
*s1
= tcc_state
;
1716 int i
, c
, n
, saved_parse_flags
;
1720 saved_parse_flags
= parse_flags
;
1721 parse_flags
= PARSE_FLAG_PREPROCESS
1722 | PARSE_FLAG_TOK_NUM
1723 | PARSE_FLAG_TOK_STR
1724 | PARSE_FLAG_LINEFEED
1725 | (parse_flags
& PARSE_FLAG_ASM_FILE
)
1734 pp_debug_symv
= tok
;
1740 pp_debug_symv
= tok
;
1741 s
= define_find(tok
);
1742 /* undefine symbol by putting an invalid name */
1747 case TOK_INCLUDE_NEXT
:
1748 ch
= file
->buf_ptr
[0];
1749 /* XXX: incorrect if comments : use next_nomacro with a special mode */
1754 } else if (ch
== '\"') {
1759 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
1760 if ((q
- buf
) < sizeof(buf
) - 1)
1763 if (handle_stray_noerror() == 0)
1771 /* eat all spaces and comments after include */
1772 /* XXX: slightly incorrect */
1773 while (ch1
!= '\n' && ch1
!= CH_EOF
)
1778 /* computed #include : concatenate everything up to linefeed,
1779 the result must be one of the two accepted forms.
1780 Don't convert pp-tokens to tokens here. */
1781 parse_flags
= (PARSE_FLAG_PREPROCESS
1782 | PARSE_FLAG_LINEFEED
1783 | (parse_flags
& PARSE_FLAG_ASM_FILE
));
1786 while (tok
!= TOK_LINEFEED
) {
1787 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
1791 /* check syntax and remove '<>|""' */
1792 if ((len
< 2 || ((buf
[0] != '"' || buf
[len
-1] != '"') &&
1793 (buf
[0] != '<' || buf
[len
-1] != '>'))))
1794 tcc_error("'#include' expects \"FILENAME\" or <FILENAME>");
1796 memmove(buf
, buf
+ 1, len
- 2);
1797 buf
[len
- 2] = '\0';
1800 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
1801 tcc_error("#include recursion too deep");
1802 /* store current file in stack, but increment stack later below */
1803 *s1
->include_stack_ptr
= file
;
1804 i
= tok
== TOK_INCLUDE_NEXT
? file
->include_next_index
: 0;
1805 n
= 2 + s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
1806 for (; i
< n
; ++i
) {
1807 char buf1
[sizeof file
->filename
];
1812 /* check absolute include path */
1813 if (!IS_ABSPATH(buf
))
1817 } else if (i
== 1) {
1818 /* search in file's dir if "header.h" */
1821 /* https://savannah.nongnu.org/bugs/index.php?50847 */
1822 path
= file
->true_filename
;
1823 pstrncpy(buf1
, path
, tcc_basename(path
) - path
);
1826 /* search in all the include paths */
1827 int j
= i
- 2, k
= j
- s1
->nb_include_paths
;
1828 path
= k
< 0 ? s1
->include_paths
[j
] : s1
->sysinclude_paths
[k
];
1829 pstrcpy(buf1
, sizeof(buf1
), path
);
1830 pstrcat(buf1
, sizeof(buf1
), "/");
1833 pstrcat(buf1
, sizeof(buf1
), buf
);
1834 e
= search_cached_include(s1
, buf1
, 0);
1835 if (e
&& (define_find(e
->ifndef_macro
) || e
->once
== pp_once
)) {
1836 /* no need to parse the include because the 'ifndef macro'
1837 is defined (or had #pragma once) */
1839 printf("%s: skipping cached %s\n", file
->filename
, buf1
);
1844 if (tcc_open(s1
, buf1
) < 0)
1847 file
->include_next_index
= i
+ 1;
1849 printf("%s: including %s\n", file
->prev
->filename
, file
->filename
);
1851 /* update target deps */
1852 dynarray_add(&s1
->target_deps
, &s1
->nb_target_deps
,
1854 /* push current file in stack */
1855 ++s1
->include_stack_ptr
;
1856 /* add include file debug info */
1858 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1859 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
1860 ch
= file
->buf_ptr
[0];
1863 tcc_error("include file '%s' not found", buf
);
1870 c
= expr_preprocess();
1876 if (tok
< TOK_IDENT
)
1877 tcc_error("invalid argument for '#if%sdef'", c
? "n" : "");
1881 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
1883 file
->ifndef_macro
= tok
;
1886 c
= (define_find(tok
) != 0) ^ c
;
1888 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
1889 tcc_error("memory full (ifdef)");
1890 *s1
->ifdef_stack_ptr
++ = c
;
1893 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1894 tcc_error("#else without matching #if");
1895 if (s1
->ifdef_stack_ptr
[-1] & 2)
1896 tcc_error("#else after #else");
1897 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
1900 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1901 tcc_error("#elif without matching #if");
1902 c
= s1
->ifdef_stack_ptr
[-1];
1904 tcc_error("#elif after #else");
1905 /* last #if/#elif expression was true: we skip */
1909 c
= expr_preprocess();
1910 s1
->ifdef_stack_ptr
[-1] = c
;
1913 if (s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
+ 1)
1914 file
->ifndef_macro
= 0;
1923 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
1924 tcc_error("#endif without matching #if");
1925 s1
->ifdef_stack_ptr
--;
1926 /* '#ifndef macro' was at the start of file. Now we check if
1927 an '#endif' is exactly at the end of file */
1928 if (file
->ifndef_macro
&&
1929 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
1930 file
->ifndef_macro_saved
= file
->ifndef_macro
;
1931 /* need to set to zero to avoid false matches if another
1932 #ifndef at middle of file */
1933 file
->ifndef_macro
= 0;
1934 while (tok
!= TOK_LINEFEED
)
1936 tok_flags
|= TOK_FLAG_ENDIF
;
1941 n
= strtoul((char*)tokc
.str
.data
, &q
, 10);
1945 if (tok
!= TOK_CINT
)
1947 tcc_error("wrong #line format");
1951 if (tok
!= TOK_LINEFEED
) {
1952 if (tok
== TOK_STR
) {
1953 if (file
->true_filename
== file
->filename
)
1954 file
->true_filename
= tcc_strdup(file
->filename
);
1955 pstrcpy(file
->filename
, sizeof(file
->filename
), (char *)tokc
.str
.data
);
1956 } else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
1963 total_lines
+= file
->line_num
- n
;
1966 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1971 ch
= file
->buf_ptr
[0];
1974 while (ch
!= '\n' && ch
!= CH_EOF
) {
1975 if ((q
- buf
) < sizeof(buf
) - 1)
1978 if (handle_stray_noerror() == 0)
1985 tcc_error("#error %s", buf
);
1987 tcc_warning("#warning %s", buf
);
1995 /* ignore gas line comment in an 'S' file. */
1996 if (saved_parse_flags
& PARSE_FLAG_ASM_FILE
)
1998 if (tok
== '!' && is_bof
)
1999 /* '!' is ignored at beginning to allow C scripts. */
2001 tcc_warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
2003 file
->buf_ptr
= parse_line_comment(file
->buf_ptr
- 1);
2006 /* ignore other preprocess commands or #! for C scripts */
2007 while (tok
!= TOK_LINEFEED
)
2010 parse_flags
= saved_parse_flags
;
2013 /* evaluate escape codes in a string. */
2014 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
2029 case '0': case '1': case '2': case '3':
2030 case '4': case '5': case '6': case '7':
2031 /* at most three octal digits */
2036 n
= n
* 8 + c
- '0';
2040 n
= n
* 8 + c
- '0';
2045 goto add_char_nonext
;
2053 if (c
>= 'a' && c
<= 'f')
2055 else if (c
>= 'A' && c
<= 'F')
2065 goto add_char_nonext
;
2089 goto invalid_escape
;
2099 if (c
>= '!' && c
<= '~')
2100 tcc_warning("unknown escape sequence: \'\\%c\'", c
);
2102 tcc_warning("unknown escape sequence: \'\\x%x\'", c
);
2105 } else if (is_long
&& c
>= 0x80) {
2106 /* assume we are processing UTF-8 sequence */
2107 /* reference: The Unicode Standard, Version 10.0, ch3.9 */
2109 int cont
; /* count of continuation bytes */
2110 int skip
; /* how many bytes should skip when error occurred */
2113 /* decode leading byte */
2115 skip
= 1; goto invalid_utf8_sequence
;
2116 } else if (c
<= 0xDF) {
2117 cont
= 1; n
= c
& 0x1f;
2118 } else if (c
<= 0xEF) {
2119 cont
= 2; n
= c
& 0xf;
2120 } else if (c
<= 0xF4) {
2121 cont
= 3; n
= c
& 0x7;
2123 skip
= 1; goto invalid_utf8_sequence
;
2126 /* decode continuation bytes */
2127 for (i
= 1; i
<= cont
; i
++) {
2128 int l
= 0x80, h
= 0xBF;
2130 /* adjust limit for second byte */
2133 case 0xE0: l
= 0xA0; break;
2134 case 0xED: h
= 0x9F; break;
2135 case 0xF0: l
= 0x90; break;
2136 case 0xF4: h
= 0x8F; break;
2140 if (p
[i
] < l
|| p
[i
] > h
) {
2141 skip
= i
; goto invalid_utf8_sequence
;
2144 n
= (n
<< 6) | (p
[i
] & 0x3f);
2147 /* advance pointer */
2150 goto add_char_nonext
;
2152 /* error handling */
2153 invalid_utf8_sequence
:
2154 tcc_warning("ill-formed UTF-8 subsequence starting with: \'\\x%x\'", c
);
2157 goto add_char_nonext
;
2163 cstr_ccat(outstr
, c
);
2165 #ifdef TCC_TARGET_PE
2166 /* store as UTF-16 */
2168 cstr_wccat(outstr
, c
);
2171 cstr_wccat(outstr
, (c
>> 10) + 0xD800);
2172 cstr_wccat(outstr
, (c
& 0x3FF) + 0xDC00);
2175 cstr_wccat(outstr
, c
);
2179 /* add a trailing '\0' */
2181 cstr_ccat(outstr
, '\0');
2183 cstr_wccat(outstr
, '\0');
2186 static void parse_string(const char *s
, int len
)
2188 uint8_t buf
[1000], *p
= buf
;
2191 if ((is_long
= *s
== 'L'))
2195 if (len
>= sizeof buf
)
2196 p
= tcc_malloc(len
+ 1);
2200 cstr_reset(&tokcstr
);
2201 parse_escape_string(&tokcstr
, p
, is_long
);
2206 int char_size
, i
, n
, c
;
2207 /* XXX: make it portable */
2209 tok
= TOK_CCHAR
, char_size
= 1;
2211 tok
= TOK_LCHAR
, char_size
= sizeof(nwchar_t
);
2212 n
= tokcstr
.size
/ char_size
- 1;
2214 tcc_error("empty character constant");
2216 tcc_warning("multi-character character constant");
2217 for (c
= i
= 0; i
< n
; ++i
) {
2219 c
= ((nwchar_t
*)tokcstr
.data
)[i
];
2221 c
= (c
<< 8) | ((char *)tokcstr
.data
)[i
];
2225 tokc
.str
.size
= tokcstr
.size
;
2226 tokc
.str
.data
= tokcstr
.data
;
2234 /* we use 64 bit numbers */
2237 /* bn = (bn << shift) | or_val */
2238 static void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
2242 for(i
=0;i
<BN_SIZE
;i
++) {
2244 bn
[i
] = (v
<< shift
) | or_val
;
2245 or_val
= v
>> (32 - shift
);
2249 static void bn_zero(unsigned int *bn
)
2252 for(i
=0;i
<BN_SIZE
;i
++) {
2257 /* parse number in null terminated string 'p' and return it in the
2259 static void parse_number(const char *p
)
2261 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
2263 unsigned int bn
[BN_SIZE
];
2274 goto float_frac_parse
;
2275 } else if (t
== '0') {
2276 if (ch
== 'x' || ch
== 'X') {
2280 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
2286 /* parse all digits. cannot check octal numbers at this stage
2287 because of floating point constants */
2289 if (ch
>= 'a' && ch
<= 'f')
2291 else if (ch
>= 'A' && ch
<= 'F')
2299 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
2301 tcc_error("number too long");
2307 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
2308 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
2310 /* NOTE: strtox should support that for hexa numbers, but
2311 non ISOC99 libcs do not support it, so we prefer to do
2313 /* hexadecimal or binary floats */
2314 /* XXX: handle overflows */
2326 } else if (t
>= 'a') {
2328 } else if (t
>= 'A') {
2333 bn_lshift(bn
, shift
, t
);
2340 if (t
>= 'a' && t
<= 'f') {
2342 } else if (t
>= 'A' && t
<= 'F') {
2344 } else if (t
>= '0' && t
<= '9') {
2350 tcc_error("invalid digit");
2351 bn_lshift(bn
, shift
, t
);
2356 if (ch
!= 'p' && ch
!= 'P')
2363 } else if (ch
== '-') {
2367 if (ch
< '0' || ch
> '9')
2368 expect("exponent digits");
2369 while (ch
>= '0' && ch
<= '9') {
2370 exp_val
= exp_val
* 10 + ch
- '0';
2373 exp_val
= exp_val
* s
;
2375 /* now we can generate the number */
2376 /* XXX: should patch directly float number */
2377 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
2378 d
= ldexp(d
, exp_val
- frac_bits
);
2383 /* float : should handle overflow */
2385 } else if (t
== 'L') {
2387 #ifdef TCC_TARGET_PE
2392 /* XXX: not large enough */
2393 tokc
.ld
= (long double)d
;
2400 /* decimal floats */
2402 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2407 while (ch
>= '0' && ch
<= '9') {
2408 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2414 if (ch
== 'e' || ch
== 'E') {
2415 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2419 if (ch
== '-' || ch
== '+') {
2420 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2425 if (ch
< '0' || ch
> '9')
2426 expect("exponent digits");
2427 while (ch
>= '0' && ch
<= '9') {
2428 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2440 tokc
.f
= strtof(token_buf
, NULL
);
2441 } else if (t
== 'L') {
2443 #ifdef TCC_TARGET_PE
2445 tokc
.d
= strtod(token_buf
, NULL
);
2448 tokc
.ld
= strtold(token_buf
, NULL
);
2452 tokc
.d
= strtod(token_buf
, NULL
);
2456 unsigned long long n
, n1
;
2457 int lcount
, ucount
, ov
= 0;
2460 /* integer number */
2463 if (b
== 10 && *q
== '0') {
2470 /* no need for checks except for base 10 / 8 errors */
2480 tcc_error("invalid digit");
2483 /* detect overflow */
2484 if (n1
>= 0x1000000000000000ULL
&& n
/ b
!= n1
)
2488 /* Determine the characteristics (unsigned and/or 64bit) the type of
2489 the constant must have according to the constant suffix(es) */
2490 lcount
= ucount
= 0;
2496 tcc_error("three 'l's in integer constant");
2497 if (lcount
&& *(p
- 1) != ch
)
2498 tcc_error("incorrect integer suffix: %s", p1
);
2501 } else if (t
== 'U') {
2503 tcc_error("two 'u's in integer constant");
2511 /* Determine if it needs 64 bits and/or unsigned in order to fit */
2512 if (ucount
== 0 && b
== 10) {
2513 if (lcount
<= (LONG_SIZE
== 4)) {
2514 if (n
>= 0x80000000U
)
2515 lcount
= (LONG_SIZE
== 4) + 1;
2517 if (n
>= 0x8000000000000000ULL
)
2520 if (lcount
<= (LONG_SIZE
== 4)) {
2521 if (n
>= 0x100000000ULL
)
2522 lcount
= (LONG_SIZE
== 4) + 1;
2523 else if (n
>= 0x80000000U
)
2526 if (n
>= 0x8000000000000000ULL
)
2531 tcc_warning("integer constant overflow");
2540 ++tok
; /* TOK_CU... */
2544 tcc_error("invalid number\n");
2548 #define PARSE2(c1, tok1, c2, tok2) \
2559 /* return next token without macro substitution */
2560 static inline void next_nomacro1(void)
2562 int t
, c
, is_long
, len
;
2575 if (parse_flags
& PARSE_FLAG_SPACES
)
2576 goto keep_tok_flags
;
2577 while (isidnum_table
[*p
- CH_EOF
] & IS_SPC
)
2586 /* first look if it is in fact an end of buffer */
2587 c
= handle_stray1(p
);
2594 TCCState
*s1
= tcc_state
;
2595 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
2596 && !(tok_flags
& TOK_FLAG_EOF
)) {
2597 tok_flags
|= TOK_FLAG_EOF
;
2599 goto keep_tok_flags
;
2600 } else if (!(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2602 } else if (s1
->ifdef_stack_ptr
!= file
->ifdef_stack_ptr
) {
2603 tcc_error("missing #endif");
2604 } else if (s1
->include_stack_ptr
== s1
->include_stack
) {
2605 /* no include left : end of file. */
2608 tok_flags
&= ~TOK_FLAG_EOF
;
2609 /* pop include file */
2611 /* test if previous '#endif' was after a #ifdef at
2613 if (tok_flags
& TOK_FLAG_ENDIF
) {
2615 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
2617 search_cached_include(s1
, file
->filename
, 1)
2618 ->ifndef_macro
= file
->ifndef_macro_saved
;
2619 tok_flags
&= ~TOK_FLAG_ENDIF
;
2622 /* add end of include file debug info */
2623 if (tcc_state
->do_debug
) {
2624 put_stabd(N_EINCL
, 0, 0);
2626 /* pop include stack */
2628 s1
->include_stack_ptr
--;
2630 if (p
== file
->buffer
)
2631 tok_flags
= TOK_FLAG_BOF
|TOK_FLAG_BOL
;
2639 tok_flags
|= TOK_FLAG_BOL
;
2642 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
2645 goto keep_tok_flags
;
2650 if ((tok_flags
& TOK_FLAG_BOL
) &&
2651 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2653 preprocess(tok_flags
& TOK_FLAG_BOF
);
2659 tok
= TOK_TWOSHARPS
;
2661 if (parse_flags
& PARSE_FLAG_ASM_FILE
) {
2662 p
= parse_line_comment(p
- 1);
2671 /* dollar is allowed to start identifiers when not parsing asm */
2673 if (!(isidnum_table
[c
- CH_EOF
] & IS_ID
)
2674 || (parse_flags
& PARSE_FLAG_ASM_FILE
))
2677 case 'a': case 'b': case 'c': case 'd':
2678 case 'e': case 'f': case 'g': case 'h':
2679 case 'i': case 'j': case 'k': case 'l':
2680 case 'm': case 'n': case 'o': case 'p':
2681 case 'q': case 'r': case 's': case 't':
2682 case 'u': case 'v': case 'w': case 'x':
2684 case 'A': case 'B': case 'C': case 'D':
2685 case 'E': case 'F': case 'G': case 'H':
2686 case 'I': case 'J': case 'K':
2687 case 'M': case 'N': case 'O': case 'P':
2688 case 'Q': case 'R': case 'S': case 'T':
2689 case 'U': case 'V': case 'W': case 'X':
2695 h
= TOK_HASH_FUNC(h
, c
);
2696 while (c
= *++p
, isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2697 h
= TOK_HASH_FUNC(h
, c
);
2702 /* fast case : no stray found, so we have the full token
2703 and we have already hashed it */
2704 h
&= (TOK_HASH_SIZE
- 1);
2705 pts
= &hash_ident
[h
];
2710 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
2712 pts
= &(ts
->hash_next
);
2714 ts
= tok_alloc_new(pts
, (char *) p1
, len
);
2718 cstr_reset(&tokcstr
);
2719 cstr_cat(&tokcstr
, (char *) p1
, len
);
2723 while (isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2725 cstr_ccat(&tokcstr
, c
);
2728 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
2734 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
2736 goto parse_ident_fast
;
2739 if (c
== '\'' || c
== '\"') {
2743 cstr_reset(&tokcstr
);
2744 cstr_ccat(&tokcstr
, 'L');
2745 goto parse_ident_slow
;
2750 case '0': case '1': case '2': case '3':
2751 case '4': case '5': case '6': case '7':
2755 /* after the first digit, accept digits, alpha, '.' or sign if
2756 prefixed by 'eEpP' */
2758 cstr_reset(&tokcstr
);
2760 cstr_ccat(&tokcstr
, t
);
2761 if (!((isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2763 || ((c
== '+' || c
== '-')
2764 && (((t
== 'e' || t
== 'E')
2765 && !(parse_flags
& PARSE_FLAG_ASM_FILE
2766 /* 0xe+1 is 3 tokens in asm */
2767 && ((char*)tokcstr
.data
)[0] == '0'
2768 && toup(((char*)tokcstr
.data
)[1]) == 'X'))
2769 || t
== 'p' || t
== 'P'))))
2774 /* We add a trailing '\0' to ease parsing */
2775 cstr_ccat(&tokcstr
, '\0');
2776 tokc
.str
.size
= tokcstr
.size
;
2777 tokc
.str
.data
= tokcstr
.data
;
2782 /* special dot handling because it can also start a number */
2787 } else if ((isidnum_table
['.' - CH_EOF
] & IS_ID
)
2788 && (isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))) {
2790 goto parse_ident_fast
;
2791 } else if (c
== '.') {
2797 *--p
= '.'; /* may underflow into file->unget[] */
2808 cstr_reset(&tokcstr
);
2810 cstr_ccat(&tokcstr
, 'L');
2811 cstr_ccat(&tokcstr
, c
);
2812 p
= parse_pp_string(p
, c
, &tokcstr
);
2813 cstr_ccat(&tokcstr
, c
);
2814 cstr_ccat(&tokcstr
, '\0');
2815 tokc
.str
.size
= tokcstr
.size
;
2816 tokc
.str
.data
= tokcstr
.data
;
2825 } else if (c
== '<') {
2842 } else if (c
== '>') {
2860 } else if (c
== '=') {
2873 } else if (c
== '=') {
2886 } else if (c
== '=') {
2899 } else if (c
== '=') {
2902 } else if (c
== '>') {
2910 PARSE2('!', '!', '=', TOK_NE
)
2911 PARSE2('=', '=', '=', TOK_EQ
)
2912 PARSE2('*', '*', '=', TOK_A_MUL
)
2913 PARSE2('%', '%', '=', TOK_A_MOD
)
2914 PARSE2('^', '^', '=', TOK_A_XOR
)
2916 /* comments or operator */
2920 p
= parse_comment(p
);
2921 /* comments replaced by a blank */
2923 goto keep_tok_flags
;
2924 } else if (c
== '/') {
2925 p
= parse_line_comment(p
);
2927 goto keep_tok_flags
;
2928 } else if (c
== '=') {
2948 case '@': /* only used in assembler */
2954 if (c
>= 0x80 && c
<= 0xFF) /* utf8 identifiers */
2955 goto parse_ident_fast
;
2956 if (parse_flags
& PARSE_FLAG_ASM_FILE
)
2958 tcc_error("unrecognized character \\x%02x", c
);
2964 #if defined(PARSE_DEBUG)
2965 printf("token = %d %s\n", tok
, get_tok_str(tok
, &tokc
));
2969 /* return next token without macro substitution. Can read input from
2971 static void next_nomacro_spc(void)
2977 TOK_GET(&tok
, ¯o_ptr
, &tokc
);
2978 if (tok
== TOK_LINENUM
) {
2979 file
->line_num
= tokc
.i
;
2986 //printf("token = %s\n", get_tok_str(tok, &tokc));
2989 ST_FUNC
void next_nomacro(void)
2993 } while (tok
< 256 && (isidnum_table
[tok
- CH_EOF
] & IS_SPC
));
2997 static void macro_subst(
2998 TokenString
*tok_str
,
3000 const int *macro_str
3003 /* substitute arguments in replacement lists in macro_str by the values in
3004 args (field d) and return allocated string */
3005 static int *macro_arg_subst(Sym
**nested_list
, const int *macro_str
, Sym
*args
)
3017 TOK_GET(&t
, ¯o_str
, &cval
);
3022 TOK_GET(&t
, ¯o_str
, &cval
);
3025 s
= sym_find2(args
, t
);
3028 cstr_ccat(&cstr
, '\"');
3032 TOK_GET(&t
, &st
, &cval
);
3033 if (t
!= TOK_PLCHLDR
3035 && 0 == check_space(t
, &spc
)) {
3036 const char *s
= get_tok_str(t
, &cval
);
3038 if (t
== TOK_PPSTR
&& *s
!= '\'')
3039 add_char(&cstr
, *s
);
3041 cstr_ccat(&cstr
, *s
);
3047 cstr_ccat(&cstr
, '\"');
3048 cstr_ccat(&cstr
, '\0');
3050 printf("\nstringize: <%s>\n", (char *)cstr
.data
);
3053 cval
.str
.size
= cstr
.size
;
3054 cval
.str
.data
= cstr
.data
;
3055 tok_str_add2(&str
, TOK_PPSTR
, &cval
);
3059 expect("macro parameter after '#'");
3061 } else if (t
>= TOK_IDENT
) {
3062 s
= sym_find2(args
, t
);
3066 /* if '##' is present before or after, no arg substitution */
3067 if (*macro_str
== TOK_PPJOIN
|| t1
== TOK_PPJOIN
) {
3068 /* special case for var arg macros : ## eats the ','
3069 if empty VA_ARGS variable. */
3070 if (t1
== TOK_PPJOIN
&& t0
== ',' && gnu_ext
&& s
->type
.t
) {
3072 /* suppress ',' '##' */
3075 /* suppress '##' and add variable */
3083 /* Expand arguments tokens and store them. In most
3084 cases we could also re-expand each argument if
3085 used multiple times, but not if the argument
3086 contains the __COUNTER__ macro. */
3088 sym_push2(&s
->next
, s
->v
, s
->type
.t
, 0);
3090 macro_subst(&str2
, nested_list
, st
);
3091 tok_str_add(&str2
, 0);
3092 s
->next
->d
= str2
.str
;
3098 TOK_GET(&t2
, &st
, &cval
);
3101 tok_str_add2(&str
, t2
, &cval
);
3103 if (str
.len
== l0
) /* expanded to empty string */
3104 tok_str_add(&str
, TOK_PLCHLDR
);
3106 tok_str_add(&str
, t
);
3109 tok_str_add2(&str
, t
, &cval
);
3113 tok_str_add(&str
, 0);
3117 static char const ab_month_name
[12][4] =
3119 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
3120 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
3123 static int paste_tokens(int t1
, CValue
*v1
, int t2
, CValue
*v2
)
3129 if (t1
!= TOK_PLCHLDR
)
3130 cstr_cat(&cstr
, get_tok_str(t1
, v1
), -1);
3132 if (t2
!= TOK_PLCHLDR
)
3133 cstr_cat(&cstr
, get_tok_str(t2
, v2
), -1);
3134 cstr_ccat(&cstr
, '\0');
3136 tcc_open_bf(tcc_state
, ":paste:", cstr
.size
);
3137 memcpy(file
->buffer
, cstr
.data
, cstr
.size
);
3141 if (0 == *file
->buf_ptr
)
3145 tcc_warning("pasting \"%.*s\" and \"%s\" does not give a valid"
3146 " preprocessing token", n
, cstr
.data
, (char*)cstr
.data
+ n
);
3151 //printf("paste <%s>\n", (char*)cstr.data);
3156 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
3157 return the resulting string (which must be freed). */
3158 static inline int *macro_twosharps(const int *ptr0
)
3162 TokenString macro_str1
;
3163 int start_of_nosubsts
= -1;
3166 /* we search the first '##' */
3167 for (ptr
= ptr0
;;) {
3168 TOK_GET(&t
, &ptr
, &cval
);
3169 if (t
== TOK_PPJOIN
)
3175 tok_str_new(¯o_str1
);
3177 //tok_print(" $$$", ptr0);
3178 for (ptr
= ptr0
;;) {
3179 TOK_GET(&t
, &ptr
, &cval
);
3182 if (t
== TOK_PPJOIN
)
3184 while (*ptr
== TOK_PPJOIN
) {
3186 /* given 'a##b', remove nosubsts preceding 'a' */
3187 if (start_of_nosubsts
>= 0)
3188 macro_str1
.len
= start_of_nosubsts
;
3189 /* given 'a##b', remove nosubsts preceding 'b' */
3190 while ((t1
= *++ptr
) == TOK_NOSUBST
)
3192 if (t1
&& t1
!= TOK_PPJOIN
) {
3193 TOK_GET(&t1
, &ptr
, &cv1
);
3194 if (t
!= TOK_PLCHLDR
|| t1
!= TOK_PLCHLDR
) {
3195 if (paste_tokens(t
, &cval
, t1
, &cv1
)) {
3196 t
= tok
, cval
= tokc
;
3198 tok_str_add2(¯o_str1
, t
, &cval
);
3204 if (t
== TOK_NOSUBST
) {
3205 if (start_of_nosubsts
< 0)
3206 start_of_nosubsts
= macro_str1
.len
;
3208 start_of_nosubsts
= -1;
3210 tok_str_add2(¯o_str1
, t
, &cval
);
3212 tok_str_add(¯o_str1
, 0);
3213 //tok_print(" ###", macro_str1.str);
3214 return macro_str1
.str
;
3217 /* peek or read [ws_str == NULL] next token from function macro call,
3218 walking up macro levels up to the file if necessary */
3219 static int next_argstream(Sym
**nested_list
, TokenString
*ws_str
)
3227 p
= macro_ptr
, t
= *p
;
3229 while (is_space(t
) || TOK_LINEFEED
== t
|| TOK_PLCHLDR
== t
)
3230 tok_str_add(ws_str
, t
), t
= *++p
;
3234 /* also, end of scope for nested defined symbol */
3236 while (sa
&& sa
->v
== 0)
3245 while (is_space(ch
) || ch
== '\n' || ch
== '/') {
3248 uint8_t *p
= file
->buf_ptr
;
3251 p
= parse_comment(p
);
3252 file
->buf_ptr
= p
- 1;
3253 } else if (c
== '/') {
3254 p
= parse_line_comment(p
);
3255 file
->buf_ptr
= p
- 1;
3262 if (!(ch
== '\f' || ch
== '\v' || ch
== '\r'))
3263 tok_str_add(ws_str
, ch
);
3277 /* do macro substitution of current token with macro 's' and add
3278 result to (tok_str,tok_len). 'nested_list' is the list of all
3279 macros we got inside to avoid recursing. Return non zero if no
3280 substitution needs to be done */
3281 static int macro_subst_tok(
3282 TokenString
*tok_str
,
3286 Sym
*args
, *sa
, *sa1
;
3287 int parlevel
, t
, t1
, spc
;
3294 /* if symbol is a macro, prepare substitution */
3295 /* special macros */
3296 if (tok
== TOK___LINE__
|| tok
== TOK___COUNTER__
) {
3297 t
= tok
== TOK___LINE__
? file
->line_num
: pp_counter
++;
3298 snprintf(buf
, sizeof(buf
), "%d", t
);
3302 } else if (tok
== TOK___FILE__
) {
3303 cstrval
= file
->filename
;
3305 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
3310 tm
= localtime(&ti
);
3311 if (tok
== TOK___DATE__
) {
3312 snprintf(buf
, sizeof(buf
), "%s %2d %d",
3313 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
3315 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
3316 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
3323 cstr_cat(&cstr
, cstrval
, 0);
3324 cval
.str
.size
= cstr
.size
;
3325 cval
.str
.data
= cstr
.data
;
3326 tok_str_add2(tok_str
, t1
, &cval
);
3329 int saved_parse_flags
= parse_flags
;
3330 int *joined_str
= NULL
;
3333 if (s
->type
.t
== MACRO_FUNC
) {
3334 /* whitespace between macro name and argument list */
3336 tok_str_new(&ws_str
);
3339 parse_flags
|= PARSE_FLAG_SPACES
| PARSE_FLAG_LINEFEED
3340 | PARSE_FLAG_ACCEPT_STRAYS
;
3342 /* get next token from argument stream */
3343 t
= next_argstream(nested_list
, &ws_str
);
3345 /* not a macro substitution after all, restore the
3346 * macro token plus all whitespace we've read.
3347 * whitespace is intentionally not merged to preserve
3349 parse_flags
= saved_parse_flags
;
3350 tok_str_add(tok_str
, tok
);
3351 if (parse_flags
& PARSE_FLAG_SPACES
) {
3353 for (i
= 0; i
< ws_str
.len
; i
++)
3354 tok_str_add(tok_str
, ws_str
.str
[i
]);
3356 tok_str_free_str(ws_str
.str
);
3359 tok_str_free_str(ws_str
.str
);
3362 next_nomacro(); /* eat '(' */
3363 } while (tok
== TOK_PLCHLDR
);
3365 /* argument macro */
3368 /* NOTE: empty args are allowed, except if no args */
3371 next_argstream(nested_list
, NULL
);
3372 } while (is_space(tok
) || TOK_LINEFEED
== tok
);
3374 /* handle '()' case */
3375 if (!args
&& !sa
&& tok
== ')')
3378 tcc_error("macro '%s' used with too many args",
3379 get_tok_str(s
->v
, 0));
3382 /* NOTE: non zero sa->t indicates VA_ARGS */
3383 while ((parlevel
> 0 ||
3385 (tok
!= ',' || sa
->type
.t
)))) {
3386 if (tok
== TOK_EOF
|| tok
== 0)
3390 else if (tok
== ')')
3392 if (tok
== TOK_LINEFEED
)
3394 if (!check_space(tok
, &spc
))
3395 tok_str_add2(&str
, tok
, &tokc
);
3396 next_argstream(nested_list
, NULL
);
3401 tok_str_add(&str
, -1);
3402 tok_str_add(&str
, 0);
3403 sa1
= sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, 0);
3407 /* special case for gcc var args: add an empty
3408 var arg argument if it is omitted */
3409 if (sa
&& sa
->type
.t
&& gnu_ext
)
3417 tcc_error("macro '%s' used with too few args",
3418 get_tok_str(s
->v
, 0));
3421 parse_flags
= saved_parse_flags
;
3423 /* now subst each arg */
3424 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
3429 tok_str_free_str(sa
->d
);
3431 tok_str_free_str(sa
->next
->d
);
3439 sym_push2(nested_list
, s
->v
, 0, 0);
3440 parse_flags
= saved_parse_flags
;
3441 joined_str
= macro_twosharps(mstr
);
3442 macro_subst(tok_str
, nested_list
, joined_str
? joined_str
: mstr
);
3444 /* pop nested defined symbol */
3446 *nested_list
= sa1
->prev
;
3449 tok_str_free_str(joined_str
);
3451 tok_str_free_str(mstr
);
3456 /* do macro substitution of macro_str and add result to
3457 (tok_str,tok_len). 'nested_list' is the list of all macros we got
3458 inside to avoid recursing. */
3459 static void macro_subst(
3460 TokenString
*tok_str
,
3462 const int *macro_str
3466 int t
, spc
, nosubst
;
3472 TOK_GET(&t
, ¯o_str
, &cval
);
3476 if (t
>= TOK_IDENT
&& 0 == nosubst
) {
3481 /* if nested substitution, do nothing */
3482 if (sym_find2(*nested_list
, t
)) {
3483 /* and mark it as TOK_NOSUBST, so it doesn't get subst'd again */
3484 tok_str_add2(tok_str
, TOK_NOSUBST
, NULL
);
3490 str
.str
= (int*)macro_str
;
3491 begin_macro(&str
, 2);
3494 macro_subst_tok(tok_str
, nested_list
, s
);
3496 if (str
.alloc
== 3) {
3497 /* already finished by reading function macro arguments */
3501 macro_str
= macro_ptr
;
3505 spc
= is_space(t
= tok_str
->str
[tok_str
->lastlen
]);
3507 if (t
== '\\' && !(parse_flags
& PARSE_FLAG_ACCEPT_STRAYS
))
3508 tcc_error("stray '\\' in program");
3510 if (!check_space(t
, &spc
))
3511 tok_str_add2(tok_str
, t
, &cval
);
3514 if (nosubst
> 1 && (spc
|| (++nosubst
== 3 && t
== '(')))
3518 if (t
== TOK_NOSUBST
)
3521 /* GCC supports 'defined' as result of a macro substitution */
3522 if (t
== TOK_DEFINED
&& pp_expr
)
3527 /* return next token with macro substitution */
3528 ST_FUNC
void next(void)
3530 /* generate line number info */
3531 if (tcc_state
->do_debug
)
3532 tcc_debug_line(tcc_state
);
3534 if (parse_flags
& PARSE_FLAG_SPACES
)
3540 if (tok
== TOK_NOSUBST
|| tok
== TOK_PLCHLDR
) {
3541 /* discard preprocessor markers */
3543 } else if (tok
== 0) {
3544 /* end of macro or unget token string */
3548 } else if (tok
>= TOK_IDENT
&& (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3550 /* if reading from file, try to substitute macros */
3551 s
= define_find(tok
);
3553 Sym
*nested_list
= NULL
;
3555 macro_subst_tok(&tokstr_buf
, &nested_list
, s
);
3556 tok_str_add(&tokstr_buf
, 0);
3557 begin_macro(&tokstr_buf
, 2);
3561 /* convert preprocessor tokens into C tokens */
3562 if (tok
== TOK_PPNUM
) {
3563 if (parse_flags
& PARSE_FLAG_TOK_NUM
)
3564 parse_number((char *)tokc
.str
.data
);
3565 } else if (tok
== TOK_PPSTR
) {
3566 if (parse_flags
& PARSE_FLAG_TOK_STR
)
3567 parse_string((char *)tokc
.str
.data
, tokc
.str
.size
- 1);
3571 /* push back current token and set current token to 'last_tok'. Only
3572 identifier case handled for labels. */
3573 ST_INLN
void unget_tok(int last_tok
)
3576 TokenString
*str
= tok_str_alloc();
3577 tok_str_add2(str
, tok
, &tokc
);
3578 tok_str_add(str
, 0);
3579 begin_macro(str
, 1);
3583 ST_FUNC
void preprocess_start(TCCState
*s1
, int is_asm
)
3588 s1
->include_stack_ptr
= s1
->include_stack
;
3589 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
3590 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
3593 pp_debug_tok
= pp_debug_symv
= 0;
3595 pvtop
= vtop
= vstack
- 1;
3596 s1
->pack_stack
[0] = 0;
3597 s1
->pack_stack_ptr
= s1
->pack_stack
;
3599 set_idnum('$', s1
->dollars_in_identifiers
? IS_ID
: 0);
3600 set_idnum('.', is_asm
? IS_ID
: 0);
3603 cstr_cat(&cstr
, "\"", -1);
3604 cstr_cat(&cstr
, file
->filename
, -1);
3605 cstr_cat(&cstr
, "\"", 0);
3606 tcc_define_symbol(s1
, "__BASE_FILE__", cstr
.data
);
3609 for (i
= 0; i
< s1
->nb_cmd_include_files
; i
++) {
3610 cstr_cat(&cstr
, "#include \"", -1);
3611 cstr_cat(&cstr
, s1
->cmd_include_files
[i
], -1);
3612 cstr_cat(&cstr
, "\"\n", -1);
3615 *s1
->include_stack_ptr
++ = file
;
3616 tcc_open_bf(s1
, "<command line>", cstr
.size
);
3617 memcpy(file
->buffer
, cstr
.data
, cstr
.size
);
3622 tcc_define_symbol(s1
, "__ASSEMBLER__", NULL
);
3624 parse_flags
= is_asm
? PARSE_FLAG_ASM_FILE
: 0;
3625 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
3628 /* cleanup from error/setjmp */
3629 ST_FUNC
void preprocess_end(TCCState
*s1
)
3631 /* Normally macro_stack is NULL here, except if an
3632 error was thrown; then it can point to allocated storage
3633 or to some stack variables, but those are unwound via
3634 setjmp already, so can't be accessed. Only two choices:
3635 either we leak memory or we access invalid memory. The
3636 former is the better choice. */
3641 ST_FUNC
void tccpp_new(TCCState
*s
)
3646 /* might be used in error() before preprocess_start() */
3647 s
->include_stack_ptr
= s
->include_stack
;
3650 /* init isid table */
3651 for(i
= CH_EOF
; i
<128; i
++)
3653 is_space(i
) ? IS_SPC
3658 for(i
= 128; i
<256; i
++)
3659 set_idnum(i
, IS_ID
);
3661 /* init allocators */
3662 tal_new(&toksym_alloc
, TOKSYM_TAL_LIMIT
, TOKSYM_TAL_SIZE
);
3663 tal_new(&tokstr_alloc
, TOKSTR_TAL_LIMIT
, TOKSTR_TAL_SIZE
);
3664 tal_new(&cstr_alloc
, CSTR_TAL_LIMIT
, CSTR_TAL_SIZE
);
3666 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
3667 cstr_new(&cstr_buf
);
3668 cstr_realloc(&cstr_buf
, STRING_MAX_SIZE
);
3669 tok_str_new(&tokstr_buf
);
3670 tok_str_realloc(&tokstr_buf
, TOKSTR_MAX_SIZE
);
3672 tok_ident
= TOK_IDENT
;
3681 tok_alloc(p
, r
- p
- 1);
3686 ST_FUNC
void tccpp_delete(TCCState
*s
)
3690 /* free -D and compiler defines */
3694 n
= tok_ident
- TOK_IDENT
;
3695 for(i
= 0; i
< n
; i
++)
3696 tal_free(toksym_alloc
, table_ident
[i
]);
3697 tcc_free(table_ident
);
3700 /* free static buffers */
3701 cstr_free(&tokcstr
);
3702 cstr_free(&cstr_buf
);
3703 cstr_free(¯o_equal_buf
);
3704 tok_str_free_str(tokstr_buf
.str
);
3706 /* free allocators */
3707 tal_delete(toksym_alloc
);
3708 toksym_alloc
= NULL
;
3709 tal_delete(tokstr_alloc
);
3710 tokstr_alloc
= NULL
;
3711 tal_delete(cstr_alloc
);
3715 /* ------------------------------------------------------------------------- */
3716 /* tcc -E [-P[1]] [-dD} support */
3718 static void tok_print(const char *msg
, const int *str
)
3724 fp
= tcc_state
->ppfp
;
3725 fprintf(fp
, "%s", msg
);
3727 TOK_GET(&t
, &str
, &cval
);
3730 fprintf(fp
, " %s" + s
, get_tok_str(t
, &cval
)), s
= 1;
3735 static void pp_line(TCCState
*s1
, BufferedFile
*f
, int level
)
3737 int d
= f
->line_num
- f
->line_ref
;
3742 if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_NONE
) {
3744 } else if (level
== 0 && f
->line_ref
&& d
< 8) {
3746 fputs("\n", s1
->ppfp
), --d
;
3747 } else if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_STD
) {
3748 fprintf(s1
->ppfp
, "#line %d \"%s\"\n", f
->line_num
, f
->filename
);
3750 fprintf(s1
->ppfp
, "# %d \"%s\"%s\n", f
->line_num
, f
->filename
,
3751 level
> 0 ? " 1" : level
< 0 ? " 2" : "");
3753 f
->line_ref
= f
->line_num
;
3756 static void define_print(TCCState
*s1
, int v
)
3762 if (NULL
== s
|| NULL
== s
->d
)
3766 fprintf(fp
, "#define %s", get_tok_str(v
, NULL
));
3767 if (s
->type
.t
== MACRO_FUNC
) {
3772 fprintf(fp
,"%s", get_tok_str(a
->v
& ~SYM_FIELD
, NULL
));
3779 tok_print("", s
->d
);
3782 static void pp_debug_defines(TCCState
*s1
)
3793 pp_line(s1
, file
, 0);
3794 file
->line_ref
= ++file
->line_num
;
3798 vs
= get_tok_str(v
, NULL
);
3799 if (t
== TOK_DEFINE
) {
3800 define_print(s1
, v
);
3801 } else if (t
== TOK_UNDEF
) {
3802 fprintf(fp
, "#undef %s\n", vs
);
3803 } else if (t
== TOK_push_macro
) {
3804 fprintf(fp
, "#pragma push_macro(\"%s\")\n", vs
);
3805 } else if (t
== TOK_pop_macro
) {
3806 fprintf(fp
, "#pragma pop_macro(\"%s\")\n", vs
);
3811 static void pp_debug_builtins(TCCState
*s1
)
3814 for (v
= TOK_IDENT
; v
< tok_ident
; ++v
)
3815 define_print(s1
, v
);
3818 /* Add a space between tokens a and b to avoid unwanted textual pasting */
3819 static int pp_need_space(int a
, int b
)
3821 return 'E' == a
? '+' == b
|| '-' == b
3822 : '+' == a
? TOK_INC
== b
|| '+' == b
3823 : '-' == a
? TOK_DEC
== b
|| '-' == b
3824 : a
>= TOK_IDENT
? b
>= TOK_IDENT
3825 : a
== TOK_PPNUM
? b
>= TOK_IDENT
3829 /* maybe hex like 0x1e */
3830 static int pp_check_he0xE(int t
, const char *p
)
3832 if (t
== TOK_PPNUM
&& toup(strchr(p
, 0)[-1]) == 'E')
3837 /* Preprocess the current file */
3838 ST_FUNC
int tcc_preprocess(TCCState
*s1
)
3840 BufferedFile
**iptr
;
3841 int token_seen
, spcs
, level
;
3845 parse_flags
= PARSE_FLAG_PREPROCESS
3846 | (parse_flags
& PARSE_FLAG_ASM_FILE
)
3847 | PARSE_FLAG_LINEFEED
3849 | PARSE_FLAG_ACCEPT_STRAYS
3851 /* Credits to Fabrice Bellard's initial revision to demonstrate its
3852 capability to compile and run itself, provided all numbers are
3853 given as decimals. tcc -E -P10 will do. */
3854 if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_P10
)
3855 parse_flags
|= PARSE_FLAG_TOK_NUM
, s1
->Pflag
= 1;
3858 /* for PP benchmarks */
3859 do next(); while (tok
!= TOK_EOF
);
3863 if (s1
->dflag
& 1) {
3864 pp_debug_builtins(s1
);
3868 token_seen
= TOK_LINEFEED
, spcs
= 0;
3869 pp_line(s1
, file
, 0);
3871 iptr
= s1
->include_stack_ptr
;
3876 level
= s1
->include_stack_ptr
- iptr
;
3879 pp_line(s1
, *iptr
, 0);
3880 pp_line(s1
, file
, level
);
3882 if (s1
->dflag
& 7) {
3883 pp_debug_defines(s1
);
3888 if (is_space(tok
)) {
3889 if (spcs
< sizeof white
- 1)
3890 white
[spcs
++] = tok
;
3892 } else if (tok
== TOK_LINEFEED
) {
3894 if (token_seen
== TOK_LINEFEED
)
3897 } else if (token_seen
== TOK_LINEFEED
) {
3898 pp_line(s1
, file
, 0);
3899 } else if (spcs
== 0 && pp_need_space(token_seen
, tok
)) {
3900 white
[spcs
++] = ' ';
3903 white
[spcs
] = 0, fputs(white
, s1
->ppfp
), spcs
= 0;
3904 fputs(p
= get_tok_str(tok
, &tokc
), s1
->ppfp
);
3905 token_seen
= pp_check_he0xE(tok
, p
);
3910 /* ------------------------------------------------------------------------- */