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
24 /********************************************************/
25 /* global variables */
27 ST_DATA
int tok_flags
;
28 ST_DATA
int parse_flags
;
30 ST_DATA
struct BufferedFile
*file
;
33 ST_DATA
const int *macro_ptr
;
34 ST_DATA CString tokcstr
; /* current parsed string, if any */
36 /* display benchmark infos */
37 ST_DATA
int tok_ident
;
38 ST_DATA TokenSym
**table_ident
;
40 /* ------------------------------------------------------------------------- */
42 static TokenSym
*hash_ident
[TOK_HASH_SIZE
];
43 static char token_buf
[STRING_MAX_SIZE
+ 1];
44 static CString cstr_buf
;
45 static CString macro_equal_buf
;
46 static TokenString tokstr_buf
;
47 static unsigned char isidnum_table
[256 - CH_EOF
];
48 static int pp_debug_tok
, pp_debug_symv
;
51 static int pp_counter
;
52 static void tok_print(const char *msg
, const int *str
);
54 static struct TinyAlloc
*toksym_alloc
;
55 static struct TinyAlloc
*tokstr_alloc
;
57 static TokenString
*macro_stack
;
59 static const char tcc_keywords
[] =
60 #define DEF(id, str) str "\0"
65 /* WARNING: the content of this string encodes token numbers */
66 static const unsigned char tok_two_chars
[] =
68 "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253"
69 "-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
91 '#','#', TOK_TWOSHARPS
,
95 static void next_nomacro(void);
97 ST_FUNC
void skip(int c
)
100 tcc_error("'%c' expected (got \"%s\")", c
, get_tok_str(tok
, &tokc
));
104 ST_FUNC
void expect(const char *msg
)
106 tcc_error("%s expected", msg
);
109 /* ------------------------------------------------------------------------- */
110 /* Custom allocator for tiny objects */
115 #define tal_free(al, p) tcc_free(p)
116 #define tal_realloc(al, p, size) tcc_realloc(p, size)
117 #define tal_new(a,b,c)
118 #define tal_delete(a)
120 #if !defined(MEM_DEBUG)
121 #define tal_free(al, p) tal_free_impl(al, p)
122 #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size)
123 #define TAL_DEBUG_PARAMS
126 //#define TAL_INFO 1 /* collect and dump allocators stats */
127 #define tal_free(al, p) tal_free_impl(al, p, __FILE__, __LINE__)
128 #define tal_realloc(al, p, size) tal_realloc_impl(&al, p, size, __FILE__, __LINE__)
129 #define TAL_DEBUG_PARAMS , const char *file, int line
130 #define TAL_DEBUG_FILE_LEN 40
133 #define TOKSYM_TAL_SIZE (768 * 1024) /* allocator for tiny TokenSym in table_ident */
134 #define TOKSTR_TAL_SIZE (768 * 1024) /* allocator for tiny TokenString instances */
135 #define CSTR_TAL_SIZE (256 * 1024) /* allocator for tiny CString instances */
136 #define TOKSYM_TAL_LIMIT 256 /* prefer unique limits to distinguish allocators debug msgs */
137 #define TOKSTR_TAL_LIMIT 128 /* 32 * sizeof(int) */
138 #define CSTR_TAL_LIMIT 1024
140 typedef struct TinyAlloc
{
146 struct TinyAlloc
*next
, *top
;
155 typedef struct tal_header_t
{
158 int line_num
; /* negative line_num used for double free check */
159 char file_name
[TAL_DEBUG_FILE_LEN
+ 1];
163 /* ------------------------------------------------------------------------- */
165 static TinyAlloc
*tal_new(TinyAlloc
**pal
, unsigned limit
, unsigned size
)
167 TinyAlloc
*al
= tcc_mallocz(sizeof(TinyAlloc
));
168 al
->p
= al
->buffer
= tcc_malloc(size
);
175 static void tal_delete(TinyAlloc
*al
)
183 fprintf(stderr
, "limit=%5d, size=%5g MB, nb_peak=%6d, nb_total=%8d, nb_missed=%6d, usage=%5.1f%%\n",
184 al
->limit
, al
->size
/ 1024.0 / 1024.0, al
->nb_peak
, al
->nb_total
, al
->nb_missed
,
185 (al
->peak_p
- al
->buffer
) * 100.0 / al
->size
);
188 if (al
->nb_allocs
> 0) {
190 fprintf(stderr
, "TAL_DEBUG: memory leak %d chunk(s) (limit= %d)\n",
191 al
->nb_allocs
, al
->limit
);
194 tal_header_t
*header
= (tal_header_t
*)p
;
195 if (header
->line_num
> 0) {
196 fprintf(stderr
, "%s:%d: chunk of %d bytes leaked\n",
197 header
->file_name
, header
->line_num
, header
->size
);
199 p
+= header
->size
+ sizeof(tal_header_t
);
207 tcc_free(al
->buffer
);
213 static void tal_free_impl(TinyAlloc
*al
, void *p TAL_DEBUG_PARAMS
)
218 if (al
->buffer
<= (uint8_t *)p
&& (uint8_t *)p
< al
->buffer
+ al
->size
) {
220 tal_header_t
*header
= (((tal_header_t
*)p
) - 1);
221 if (header
->line_num
< 0) {
222 fprintf(stderr
, "%s:%d: TAL_DEBUG: double frees chunk from\n",
224 fprintf(stderr
, "%s:%d: %d bytes\n",
225 header
->file_name
, (int)-header
->line_num
, (int)header
->size
);
227 header
->line_num
= -header
->line_num
;
232 } else if (al
->next
) {
240 static void *tal_realloc_impl(TinyAlloc
**pal
, void *p
, unsigned size TAL_DEBUG_PARAMS
)
242 tal_header_t
*header
;
245 unsigned adj_size
= (size
+ 3) & -4;
246 TinyAlloc
*al
= *pal
;
249 is_own
= (al
->buffer
<= (uint8_t *)p
&& (uint8_t *)p
< al
->buffer
+ al
->size
);
250 if ((!p
|| is_own
) && size
<= al
->limit
) {
251 if (al
->p
- al
->buffer
+ adj_size
+ sizeof(tal_header_t
) < al
->size
) {
252 header
= (tal_header_t
*)al
->p
;
253 header
->size
= adj_size
;
255 { int ofs
= strlen(file
) - TAL_DEBUG_FILE_LEN
;
256 strncpy(header
->file_name
, file
+ (ofs
> 0 ? ofs
: 0), TAL_DEBUG_FILE_LEN
);
257 header
->file_name
[TAL_DEBUG_FILE_LEN
] = 0;
258 header
->line_num
= line
; }
260 ret
= al
->p
+ sizeof(tal_header_t
);
261 al
->p
+= adj_size
+ sizeof(tal_header_t
);
263 header
= (((tal_header_t
*)p
) - 1);
264 if (p
) memcpy(ret
, p
, header
->size
);
266 header
->line_num
= -header
->line_num
;
272 if (al
->nb_peak
< al
->nb_allocs
)
273 al
->nb_peak
= al
->nb_allocs
;
274 if (al
->peak_p
< al
->p
)
281 ret
= tal_realloc(*pal
, 0, size
);
282 header
= (((tal_header_t
*)p
) - 1);
283 if (p
) memcpy(ret
, p
, header
->size
);
285 header
->line_num
= -header
->line_num
;
292 TinyAlloc
*bottom
= al
, *next
= al
->top
? al
->top
: al
;
294 al
= tal_new(pal
, next
->limit
, next
->size
* 2);
302 ret
= tcc_malloc(size
);
303 header
= (((tal_header_t
*)p
) - 1);
304 if (p
) memcpy(ret
, p
, header
->size
);
306 header
->line_num
= -header
->line_num
;
308 } else if (al
->next
) {
312 ret
= tcc_realloc(p
, size
);
321 /* ------------------------------------------------------------------------- */
322 /* CString handling */
323 static void cstr_realloc(CString
*cstr
, int new_size
)
327 size
= cstr
->size_allocated
;
329 size
= 8; /* no need to allocate a too small first string */
330 while (size
< new_size
)
332 cstr
->data
= tcc_realloc(cstr
->data
, size
);
333 cstr
->size_allocated
= size
;
337 ST_INLN
void cstr_ccat(CString
*cstr
, int ch
)
340 size
= cstr
->size
+ 1;
341 if (size
> cstr
->size_allocated
)
342 cstr_realloc(cstr
, size
);
343 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
347 ST_FUNC
void cstr_cat(CString
*cstr
, const char *str
, int len
)
351 len
= strlen(str
) + 1 + len
;
352 size
= cstr
->size
+ len
;
353 if (size
> cstr
->size_allocated
)
354 cstr_realloc(cstr
, size
);
355 memmove(((unsigned char *)cstr
->data
) + cstr
->size
, str
, len
);
359 /* add a wide char */
360 ST_FUNC
void cstr_wccat(CString
*cstr
, int ch
)
363 size
= cstr
->size
+ sizeof(nwchar_t
);
364 if (size
> cstr
->size_allocated
)
365 cstr_realloc(cstr
, size
);
366 *(nwchar_t
*)(((unsigned char *)cstr
->data
) + size
- sizeof(nwchar_t
)) = ch
;
370 ST_FUNC
void cstr_new(CString
*cstr
)
372 memset(cstr
, 0, sizeof(CString
));
375 /* free string and reset it to NULL */
376 ST_FUNC
void cstr_free(CString
*cstr
)
378 tcc_free(cstr
->data
);
382 /* reset string to empty */
383 ST_FUNC
void cstr_reset(CString
*cstr
)
388 ST_FUNC
int cstr_printf(CString
*cstr
, const char *fmt
, ...)
394 len
= vsnprintf(NULL
, 0, fmt
, v
);
396 size
= cstr
->size
+ len
+ 1;
397 if (size
> cstr
->size_allocated
)
398 cstr_realloc(cstr
, size
);
400 vsnprintf((char*)cstr
->data
+ cstr
->size
, size
, fmt
, v
);
407 static void add_char(CString
*cstr
, int c
)
409 if (c
== '\'' || c
== '\"' || c
== '\\') {
410 /* XXX: could be more precise if char or string */
411 cstr_ccat(cstr
, '\\');
413 if (c
>= 32 && c
<= 126) {
416 cstr_ccat(cstr
, '\\');
418 cstr_ccat(cstr
, 'n');
420 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
421 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
422 cstr_ccat(cstr
, '0' + (c
& 7));
427 /* ------------------------------------------------------------------------- */
428 /* allocate a new token */
429 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
431 TokenSym
*ts
, **ptable
;
434 if (tok_ident
>= SYM_FIRST_ANOM
)
435 tcc_error("memory full (symbols)");
437 /* expand token table if needed */
438 i
= tok_ident
- TOK_IDENT
;
439 if ((i
% TOK_ALLOC_INCR
) == 0) {
440 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
441 table_ident
= ptable
;
444 ts
= tal_realloc(toksym_alloc
, 0, sizeof(TokenSym
) + len
);
446 ts
->tok
= tok_ident
++;
447 ts
->sym_define
= NULL
;
448 ts
->sym_label
= NULL
;
449 ts
->sym_struct
= NULL
;
450 ts
->sym_identifier
= NULL
;
452 ts
->hash_next
= NULL
;
453 memcpy(ts
->str
, str
, len
);
459 #define TOK_HASH_INIT 1
460 #define TOK_HASH_FUNC(h, c) ((h) + ((h) << 5) + ((h) >> 27) + (c))
463 /* find a token and add it if not found */
464 ST_FUNC TokenSym
*tok_alloc(const char *str
, int len
)
472 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
473 h
&= (TOK_HASH_SIZE
- 1);
475 pts
= &hash_ident
[h
];
480 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
482 pts
= &(ts
->hash_next
);
484 return tok_alloc_new(pts
, str
, len
);
487 /* XXX: buffer overflow */
488 /* XXX: float tokens */
489 ST_FUNC
const char *get_tok_str(int v
, CValue
*cv
)
494 cstr_reset(&cstr_buf
);
504 /* XXX: not quite exact, but only useful for testing */
506 sprintf(p
, "%u", (unsigned)cv
->i
);
508 sprintf(p
, "%llu", (unsigned long long)cv
->i
);
512 cstr_ccat(&cstr_buf
, 'L');
514 cstr_ccat(&cstr_buf
, '\'');
515 add_char(&cstr_buf
, cv
->i
);
516 cstr_ccat(&cstr_buf
, '\'');
517 cstr_ccat(&cstr_buf
, '\0');
521 return (char*)cv
->str
.data
;
523 cstr_ccat(&cstr_buf
, 'L');
525 cstr_ccat(&cstr_buf
, '\"');
527 len
= cv
->str
.size
- 1;
529 add_char(&cstr_buf
, ((unsigned char *)cv
->str
.data
)[i
]);
531 len
= (cv
->str
.size
/ sizeof(nwchar_t
)) - 1;
533 add_char(&cstr_buf
, ((nwchar_t
*)cv
->str
.data
)[i
]);
535 cstr_ccat(&cstr_buf
, '\"');
536 cstr_ccat(&cstr_buf
, '\0');
540 cstr_cat(&cstr_buf
, "<float>", 0);
543 cstr_cat(&cstr_buf
, "<double>", 0);
546 cstr_cat(&cstr_buf
, "<long double>", 0);
549 cstr_cat(&cstr_buf
, "<linenumber>", 0);
552 /* above tokens have value, the ones below don't */
560 return strcpy(p
, "...");
562 return strcpy(p
, "<<=");
564 return strcpy(p
, ">>=");
566 return strcpy(p
, "<eof>");
569 /* search in two bytes table */
570 const unsigned char *q
= tok_two_chars
;
576 return cstr_buf
.data
;
581 sprintf(cstr_buf
.data
, "<%02x>", v
);
582 return cstr_buf
.data
;
587 } else if (v
< tok_ident
) {
588 return table_ident
[v
- TOK_IDENT
]->str
;
589 } else if (v
>= SYM_FIRST_ANOM
) {
590 /* special name for anonymous symbol */
591 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
593 /* should never happen */
598 return cstr_buf
.data
;
601 /* return the current character, handling end of block if necessary
603 static int handle_eob(void)
605 BufferedFile
*bf
= file
;
608 /* only tries to read if really end of buffer */
609 if (bf
->buf_ptr
>= bf
->buf_end
) {
611 #if defined(PARSE_DEBUG)
616 len
= read(bf
->fd
, bf
->buffer
, len
);
623 bf
->buf_ptr
= bf
->buffer
;
624 bf
->buf_end
= bf
->buffer
+ len
;
625 *bf
->buf_end
= CH_EOB
;
627 if (bf
->buf_ptr
< bf
->buf_end
) {
628 return bf
->buf_ptr
[0];
630 bf
->buf_ptr
= bf
->buf_end
;
635 /* read next char from current input file and handle end of input buffer */
636 static inline void inp(void)
638 ch
= *(++(file
->buf_ptr
));
639 /* end of buffer/file handling */
644 /* handle '\[\r]\n' */
645 static int handle_stray_noerror(void)
652 } else if (ch
== '\r') {
666 static void handle_stray(void)
668 if (handle_stray_noerror())
669 tcc_error("stray '\\' in program");
672 /* skip the stray and handle the \\n case. Output an error if
673 incorrect char after the stray */
674 static int handle_stray1(uint8_t *p
)
679 if (p
>= file
->buf_end
) {
686 if (handle_stray_noerror()) {
687 if (!(parse_flags
& PARSE_FLAG_ACCEPT_STRAYS
))
688 tcc_error("stray '\\' in program");
689 *--file
->buf_ptr
= '\\';
696 /* handle just the EOB case, but not stray */
697 #define PEEKC_EOB(c, p)\
708 /* handle the complicated stray case */
714 c = handle_stray1(p);\
719 /* input with '\[\r]\n' handling. Note that this function cannot
720 handle other characters after '\', so you cannot call it inside
721 strings or comments */
722 static void minp(void)
729 /* single line C++ comments */
730 static uint8_t *parse_line_comment(uint8_t *p
)
738 if (c
== '\n' || c
== CH_EOF
) {
740 } else if (c
== '\\') {
749 } else if (c
== '\r') {
767 static uint8_t *parse_comment(uint8_t *p
)
776 if (c
== '\n' || c
== '*' || c
== '\\')
780 if (c
== '\n' || c
== '*' || c
== '\\')
784 /* now we can handle all the cases */
788 } else if (c
== '*') {
794 } else if (c
== '/') {
796 } else if (c
== '\\') {
801 tcc_error("unexpected end of file in comment");
803 /* skip '\[\r]\n', otherwise just skip the stray */
809 } else if (c
== '\r') {
826 /* stray, eob or eof */
831 tcc_error("unexpected end of file in comment");
832 } else if (c
== '\\') {
842 ST_FUNC
int set_idnum(int c
, int val
)
844 int prev
= isidnum_table
[c
- CH_EOF
];
845 isidnum_table
[c
- CH_EOF
] = val
;
851 static inline void skip_spaces(void)
853 while (isidnum_table
[ch
- CH_EOF
] & IS_SPC
)
857 static inline int check_space(int t
, int *spc
)
859 if (t
< 256 && (isidnum_table
[t
- CH_EOF
] & IS_SPC
)) {
868 /* parse a string without interpreting escapes */
869 static uint8_t *parse_pp_string(uint8_t *p
,
870 int sep
, CString
*str
)
878 } else if (c
== '\\') {
884 /* XXX: indicate line number of start of string */
885 tcc_error("missing terminating %c character", sep
);
886 } else if (c
== '\\') {
887 /* escape : just skip \[\r]\n */
892 } else if (c
== '\r') {
895 expect("'\n' after '\r'");
898 } else if (c
== CH_EOF
) {
899 goto unterminated_string
;
902 cstr_ccat(str
, '\\');
908 } else if (c
== '\n') {
911 } else if (c
== '\r') {
915 cstr_ccat(str
, '\r');
931 /* skip block of text until #else, #elif or #endif. skip also pairs of
933 static void preprocess_skip(void)
935 int a
, start_of_line
, c
, in_warn_or_error
;
942 in_warn_or_error
= 0;
963 } else if (c
== '\\') {
964 ch
= file
->buf_ptr
[0];
965 handle_stray_noerror();
972 if (in_warn_or_error
)
974 p
= parse_pp_string(p
, c
, NULL
);
978 if (in_warn_or_error
)
985 p
= parse_comment(p
);
986 } else if (ch
== '/') {
987 p
= parse_line_comment(p
);
997 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
999 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
1001 else if (tok
== TOK_ENDIF
)
1003 else if( tok
== TOK_ERROR
|| tok
== TOK_WARNING
)
1004 in_warn_or_error
= 1;
1005 else if (tok
== TOK_LINEFEED
)
1007 else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
1008 p
= parse_line_comment(p
- 1);
1009 } else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
1010 p
= parse_line_comment(p
- 1);
1024 /* return the number of additional 'ints' necessary to store the
1026 static inline int tok_size(const int *p
)
1041 return 1 + ((sizeof(CString
) + ((CString
*)(p
+1))->size
+ 3) >> 2);
1044 return 1 + LONG_SIZE
/ 4;
1050 return 1 + LDOUBLE_SIZE
/ 4;
1057 /* token string handling */
1058 ST_INLN
void tok_str_new(TokenString
*s
)
1061 s
->len
= s
->lastlen
= 0;
1062 s
->allocated_len
= 0;
1063 s
->last_line_num
= -1;
1066 ST_FUNC TokenString
*tok_str_alloc(void)
1068 TokenString
*str
= tal_realloc(tokstr_alloc
, 0, sizeof *str
);
1073 ST_FUNC
int *tok_str_dup(TokenString
*s
)
1077 str
= tal_realloc(tokstr_alloc
, 0, s
->len
* sizeof(int));
1078 memcpy(str
, s
->str
, s
->len
* sizeof(int));
1082 ST_FUNC
void tok_str_free_str(int *str
)
1084 tal_free(tokstr_alloc
, str
);
1087 ST_FUNC
void tok_str_free(TokenString
*str
)
1089 tok_str_free_str(str
->str
);
1090 tal_free(tokstr_alloc
, str
);
1093 ST_FUNC
int *tok_str_realloc(TokenString
*s
, int new_size
)
1097 size
= s
->allocated_len
;
1100 while (size
< new_size
)
1102 if (size
> s
->allocated_len
) {
1103 str
= tal_realloc(tokstr_alloc
, s
->str
, size
* sizeof(int));
1104 s
->allocated_len
= size
;
1110 ST_FUNC
void tok_str_add(TokenString
*s
, int t
)
1116 if (len
>= s
->allocated_len
)
1117 str
= tok_str_realloc(s
, len
+ 1);
1122 ST_FUNC
void begin_macro(TokenString
*str
, int alloc
)
1125 str
->prev
= macro_stack
;
1126 str
->prev_ptr
= macro_ptr
;
1127 str
->save_line_num
= file
->line_num
;
1128 macro_ptr
= str
->str
;
1132 ST_FUNC
void end_macro(void)
1134 TokenString
*str
= macro_stack
;
1135 macro_stack
= str
->prev
;
1136 macro_ptr
= str
->prev_ptr
;
1137 file
->line_num
= str
->save_line_num
;
1138 if (str
->alloc
!= 0) {
1139 if (str
->alloc
== 2)
1140 str
->str
= NULL
; /* don't free */
1145 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
1149 len
= s
->lastlen
= s
->len
;
1152 /* allocate space for worst case */
1153 if (len
+ TOK_MAX_SIZE
>= s
->allocated_len
)
1154 str
= tok_str_realloc(s
, len
+ TOK_MAX_SIZE
+ 1);
1167 str
[len
++] = cv
->tab
[0];
1174 /* Insert the string into the int array. */
1176 1 + (cv
->str
.size
+ sizeof(int) - 1) / sizeof(int);
1177 if (len
+ nb_words
>= s
->allocated_len
)
1178 str
= tok_str_realloc(s
, len
+ nb_words
+ 1);
1179 str
[len
] = cv
->str
.size
;
1180 memcpy(&str
[len
+ 1], cv
->str
.data
, cv
->str
.size
);
1191 #if LDOUBLE_SIZE == 8
1194 str
[len
++] = cv
->tab
[0];
1195 str
[len
++] = cv
->tab
[1];
1197 #if LDOUBLE_SIZE == 12
1199 str
[len
++] = cv
->tab
[0];
1200 str
[len
++] = cv
->tab
[1];
1201 str
[len
++] = cv
->tab
[2];
1202 #elif LDOUBLE_SIZE == 16
1204 str
[len
++] = cv
->tab
[0];
1205 str
[len
++] = cv
->tab
[1];
1206 str
[len
++] = cv
->tab
[2];
1207 str
[len
++] = cv
->tab
[3];
1208 #elif LDOUBLE_SIZE != 8
1209 #error add long double size support
1218 /* add the current parse token in token string 's' */
1219 ST_FUNC
void tok_str_add_tok(TokenString
*s
)
1223 /* save line number info */
1224 if (file
->line_num
!= s
->last_line_num
) {
1225 s
->last_line_num
= file
->line_num
;
1226 cval
.i
= s
->last_line_num
;
1227 tok_str_add2(s
, TOK_LINENUM
, &cval
);
1229 tok_str_add2(s
, tok
, &tokc
);
1232 /* get a token from an integer array and increment pointer. */
1233 static inline void tok_get(int *t
, const int **pp
, CValue
*cv
)
1253 cv
->i
= (unsigned)*p
++;
1262 cv
->str
.size
= *p
++;
1264 p
+= (cv
->str
.size
+ sizeof(int) - 1) / sizeof(int);
1276 #if LDOUBLE_SIZE == 16
1278 #elif LDOUBLE_SIZE == 12
1280 #elif LDOUBLE_SIZE == 8
1283 # error add long double size support
1297 # define TOK_GET(t,p,c) tok_get(t,p,c)
1299 # define TOK_GET(t,p,c) do { \
1301 if (TOK_HAS_VALUE(_t)) \
1304 *(t) = _t, ++*(p); \
1308 static int macro_is_equal(const int *a
, const int *b
)
1317 /* first time preallocate macro_equal_buf, next time only reset position to start */
1318 cstr_reset(¯o_equal_buf
);
1319 TOK_GET(&t
, &a
, &cv
);
1320 cstr_cat(¯o_equal_buf
, get_tok_str(t
, &cv
), 0);
1321 TOK_GET(&t
, &b
, &cv
);
1322 if (strcmp(macro_equal_buf
.data
, get_tok_str(t
, &cv
)))
1328 /* defines handling */
1329 ST_INLN
void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
1334 s
= sym_push2(&define_stack
, v
, macro_type
, 0);
1336 s
->next
= first_arg
;
1337 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
1339 if (o
&& !macro_is_equal(o
->d
, s
->d
))
1340 tcc_warning("%s redefined", get_tok_str(v
, NULL
));
1343 /* undefined a define symbol. Its name is just set to zero */
1344 ST_FUNC
void define_undef(Sym
*s
)
1347 if (v
>= TOK_IDENT
&& v
< tok_ident
)
1348 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
1351 ST_INLN Sym
*define_find(int v
)
1354 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1356 return table_ident
[v
]->sym_define
;
1359 /* free define stack until top reaches 'b' */
1360 ST_FUNC
void free_defines(Sym
*b
)
1362 while (define_stack
!= b
) {
1363 Sym
*top
= define_stack
;
1364 define_stack
= top
->prev
;
1365 tok_str_free_str(top
->d
);
1372 ST_FUNC Sym
*label_find(int v
)
1375 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1377 return table_ident
[v
]->sym_label
;
1380 ST_FUNC Sym
*label_push(Sym
**ptop
, int v
, int flags
)
1383 s
= sym_push2(ptop
, v
, 0, 0);
1385 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
1386 if (ptop
== &global_label_stack
) {
1387 /* modify the top most local identifier, so that
1388 sym_identifier will point to 's' when popped */
1390 ps
= &(*ps
)->prev_tok
;
1397 /* pop labels until element last is reached. Look if any labels are
1398 undefined. Define symbols if '&&label' was used. */
1399 ST_FUNC
void label_pop(Sym
**ptop
, Sym
*slast
, int keep
)
1402 for(s
= *ptop
; s
!= slast
; s
= s1
) {
1404 if (s
->r
== LABEL_DECLARED
) {
1405 tcc_warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
1406 } else if (s
->r
== LABEL_FORWARD
) {
1407 tcc_error("label '%s' used but not defined",
1408 get_tok_str(s
->v
, NULL
));
1411 /* define corresponding symbol. A size of
1413 put_extern_sym(s
, cur_text_section
, s
->jnext
, 1);
1417 if (s
->r
!= LABEL_GONE
)
1418 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
1428 /* fake the nth "#if defined test_..." for tcc -dt -run */
1429 static void maybe_run_test(TCCState
*s
)
1432 if (s
->include_stack_ptr
!= s
->include_stack
)
1434 p
= get_tok_str(tok
, NULL
);
1435 if (0 != memcmp(p
, "test_", 5))
1437 if (0 != --s
->run_test
)
1439 fprintf(s
->ppfp
, "\n[%s]\n" + !(s
->dflag
& 32), p
), fflush(s
->ppfp
);
1440 define_push(tok
, MACRO_OBJ
, NULL
, NULL
);
1443 /* eval an expression for #if/#elif */
1444 static int expr_preprocess(void)
1449 str
= tok_str_alloc();
1451 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1452 next(); /* do macro subst */
1453 if (tok
== TOK_DEFINED
) {
1458 if (tok
< TOK_IDENT
)
1459 expect("identifier");
1460 if (tcc_state
->run_test
)
1461 maybe_run_test(tcc_state
);
1462 c
= define_find(tok
) != 0;
1470 } else if (tok
>= TOK_IDENT
) {
1471 /* if undefined macro */
1475 tok_str_add_tok(str
);
1478 tok_str_add(str
, -1); /* simulate end of file */
1479 tok_str_add(str
, 0);
1480 /* now evaluate C constant expression */
1481 begin_macro(str
, 1);
1489 /* parse after #define */
1490 ST_FUNC
void parse_define(void)
1492 Sym
*s
, *first
, **ps
;
1493 int v
, t
, varg
, is_vaargs
, spc
;
1494 int saved_parse_flags
= parse_flags
;
1497 if (v
< TOK_IDENT
|| v
== TOK_DEFINED
)
1498 tcc_error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
1499 /* XXX: should check if same macro (ANSI) */
1502 /* We have to parse the whole define as if not in asm mode, in particular
1503 no line comment with '#' must be ignored. Also for function
1504 macros the argument list must be parsed without '.' being an ID
1506 parse_flags
= ((parse_flags
& ~PARSE_FLAG_ASM_FILE
) | PARSE_FLAG_SPACES
);
1507 /* '(' must be just after macro definition for MACRO_FUNC */
1509 parse_flags
&= ~PARSE_FLAG_SPACES
;
1511 int dotid
= set_idnum('.', 0);
1514 if (tok
!= ')') for (;;) {
1518 if (varg
== TOK_DOTS
) {
1519 varg
= TOK___VA_ARGS__
;
1521 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
1525 if (varg
< TOK_IDENT
)
1527 tcc_error("bad macro parameter list");
1528 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
1533 if (tok
!= ',' || is_vaargs
)
1537 parse_flags
|= PARSE_FLAG_SPACES
;
1540 set_idnum('.', dotid
);
1545 parse_flags
|= PARSE_FLAG_ACCEPT_STRAYS
| PARSE_FLAG_SPACES
| PARSE_FLAG_LINEFEED
;
1546 /* The body of a macro definition should be parsed such that identifiers
1547 are parsed like the file mode determines (i.e. with '.' being an
1548 ID character in asm mode). But '#' should be retained instead of
1549 regarded as line comment leader, so still don't set ASM_FILE
1551 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1552 /* remove spaces around ## and after '#' */
1553 if (TOK_TWOSHARPS
== tok
) {
1560 } else if ('#' == tok
) {
1562 } else if (check_space(tok
, &spc
)) {
1565 tok_str_add2(&tokstr_buf
, tok
, &tokc
);
1570 parse_flags
= saved_parse_flags
;
1572 --tokstr_buf
.len
; /* remove trailing space */
1573 tok_str_add(&tokstr_buf
, 0);
1576 tcc_error("'##' cannot appear at either end of macro");
1577 define_push(v
, t
, tok_str_dup(&tokstr_buf
), first
);
1580 static CachedInclude
*search_cached_include(TCCState
*s1
, const char *filename
, int add
)
1582 const unsigned char *s
;
1588 s
= (unsigned char *) filename
;
1591 h
= TOK_HASH_FUNC(h
, toup(*s
));
1593 h
= TOK_HASH_FUNC(h
, *s
);
1597 h
&= (CACHED_INCLUDES_HASH_SIZE
- 1);
1599 i
= s1
->cached_includes_hash
[h
];
1603 e
= s1
->cached_includes
[i
- 1];
1604 if (0 == PATHCMP(e
->filename
, filename
))
1611 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
1612 strcpy(e
->filename
, filename
);
1613 e
->ifndef_macro
= e
->once
= 0;
1614 dynarray_add(&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
1615 /* add in hash table */
1616 e
->hash_next
= s1
->cached_includes_hash
[h
];
1617 s1
->cached_includes_hash
[h
] = s1
->nb_cached_includes
;
1619 printf("adding cached '%s'\n", filename
);
1624 static void pragma_parse(TCCState
*s1
)
1627 if (tok
== TOK_push_macro
|| tok
== TOK_pop_macro
) {
1631 if (next(), tok
!= '(')
1633 if (next(), tok
!= TOK_STR
)
1635 v
= tok_alloc(tokc
.str
.data
, tokc
.str
.size
- 1)->tok
;
1636 if (next(), tok
!= ')')
1638 if (t
== TOK_push_macro
) {
1639 while (NULL
== (s
= define_find(v
)))
1640 define_push(v
, 0, NULL
, NULL
);
1641 s
->type
.ref
= s
; /* set push boundary */
1643 for (s
= define_stack
; s
; s
= s
->prev
)
1644 if (s
->v
== v
&& s
->type
.ref
== s
) {
1650 table_ident
[v
- TOK_IDENT
]->sym_define
= s
->d
? s
: NULL
;
1652 tcc_warning("unbalanced #pragma pop_macro");
1653 pp_debug_tok
= t
, pp_debug_symv
= v
;
1655 } else if (tok
== TOK_once
) {
1656 search_cached_include(s1
, file
->filename
, 1)->once
= pp_once
;
1658 } else if (s1
->output_type
== TCC_OUTPUT_PREPROCESS
) {
1659 /* tcc -E: keep pragmas below unchanged */
1661 unget_tok(TOK_PRAGMA
);
1663 unget_tok(TOK_LINEFEED
);
1665 } else if (tok
== TOK_pack
) {
1667 #pragma pack(1) // set
1668 #pragma pack() // reset to default
1669 #pragma pack(push,1) // push & set
1670 #pragma pack(pop) // restore previous */
1673 if (tok
== TOK_ASM_pop
) {
1675 if (s1
->pack_stack_ptr
<= s1
->pack_stack
) {
1677 tcc_error("out of pack stack");
1679 s1
->pack_stack_ptr
--;
1683 if (tok
== TOK_ASM_push
) {
1685 if (s1
->pack_stack_ptr
>= s1
->pack_stack
+ PACK_STACK_SIZE
- 1)
1687 s1
->pack_stack_ptr
++;
1690 if (tok
!= TOK_CINT
)
1693 if (val
< 1 || val
> 16 || (val
& (val
- 1)) != 0)
1697 *s1
->pack_stack_ptr
= val
;
1702 } else if (tok
== TOK_comment
) {
1711 p
= tcc_strdup((char *)tokc
.str
.data
);
1716 dynarray_add(&s1
->pragma_libs
, &s1
->nb_pragma_libs
, p
);
1718 if (t
== TOK_option
)
1719 tcc_set_options(s1
, p
);
1723 } else if (s1
->warn_unsupported
) {
1724 tcc_warning("#pragma %s is ignored", get_tok_str(tok
, &tokc
));
1729 tcc_error("malformed #pragma directive");
1733 /* is_bof is true if first non space token at beginning of file */
1734 ST_FUNC
void preprocess(int is_bof
)
1736 TCCState
*s1
= tcc_state
;
1737 int i
, c
, n
, saved_parse_flags
;
1741 saved_parse_flags
= parse_flags
;
1742 parse_flags
= PARSE_FLAG_PREPROCESS
1743 | PARSE_FLAG_TOK_NUM
1744 | PARSE_FLAG_TOK_STR
1745 | PARSE_FLAG_LINEFEED
1746 | (parse_flags
& PARSE_FLAG_ASM_FILE
)
1755 pp_debug_symv
= tok
;
1761 pp_debug_symv
= tok
;
1762 s
= define_find(tok
);
1763 /* undefine symbol by putting an invalid name */
1768 case TOK_INCLUDE_NEXT
:
1769 ch
= file
->buf_ptr
[0];
1770 /* XXX: incorrect if comments : use next_nomacro with a special mode */
1775 } else if (ch
== '\"') {
1780 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
1781 if ((q
- buf
) < sizeof(buf
) - 1)
1784 if (handle_stray_noerror() == 0)
1792 /* eat all spaces and comments after include */
1793 /* XXX: slightly incorrect */
1794 while (ch1
!= '\n' && ch1
!= CH_EOF
)
1799 /* computed #include : concatenate everything up to linefeed,
1800 the result must be one of the two accepted forms.
1801 Don't convert pp-tokens to tokens here. */
1802 parse_flags
= (PARSE_FLAG_PREPROCESS
1803 | PARSE_FLAG_LINEFEED
1804 | (parse_flags
& PARSE_FLAG_ASM_FILE
));
1807 while (tok
!= TOK_LINEFEED
) {
1808 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
1812 /* check syntax and remove '<>|""' */
1813 if ((len
< 2 || ((buf
[0] != '"' || buf
[len
-1] != '"') &&
1814 (buf
[0] != '<' || buf
[len
-1] != '>'))))
1815 tcc_error("'#include' expects \"FILENAME\" or <FILENAME>");
1817 memmove(buf
, buf
+ 1, len
- 2);
1818 buf
[len
- 2] = '\0';
1821 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
1822 tcc_error("#include recursion too deep");
1823 /* push current file on stack */
1824 *s1
->include_stack_ptr
++ = file
;
1825 i
= tok
== TOK_INCLUDE_NEXT
? file
->include_next_index
+ 1 : 0;
1826 n
= 2 + s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
1827 for (; i
< n
; ++i
) {
1828 char buf1
[sizeof file
->filename
];
1833 /* check absolute include path */
1834 if (!IS_ABSPATH(buf
))
1838 } else if (i
== 1) {
1839 /* search in file's dir if "header.h" */
1842 /* https://savannah.nongnu.org/bugs/index.php?50847 */
1843 path
= file
->true_filename
;
1844 pstrncpy(buf1
, path
, tcc_basename(path
) - path
);
1847 /* search in all the include paths */
1848 int j
= i
- 2, k
= j
- s1
->nb_include_paths
;
1849 path
= k
< 0 ? s1
->include_paths
[j
] : s1
->sysinclude_paths
[k
];
1850 pstrcpy(buf1
, sizeof(buf1
), path
);
1851 pstrcat(buf1
, sizeof(buf1
), "/");
1854 pstrcat(buf1
, sizeof(buf1
), buf
);
1855 e
= search_cached_include(s1
, buf1
, 0);
1856 if (e
&& (define_find(e
->ifndef_macro
) || e
->once
== pp_once
)) {
1857 /* no need to parse the include because the 'ifndef macro'
1858 is defined (or had #pragma once) */
1860 printf("%s: skipping cached %s\n", file
->filename
, buf1
);
1865 if (tcc_open(s1
, buf1
) < 0)
1868 file
->include_next_index
= i
;
1870 printf("%s: including %s\n", file
->prev
->filename
, file
->filename
);
1872 /* update target deps */
1874 BufferedFile
*bf
= file
;
1875 while (i
== 1 && (bf
= bf
->prev
))
1876 i
= bf
->include_next_index
;
1877 /* skip system include files */
1878 if (n
- i
> s1
->nb_sysinclude_paths
)
1879 dynarray_add(&s1
->target_deps
, &s1
->nb_target_deps
,
1882 /* add include file debug info */
1883 tcc_debug_bincl(tcc_state
);
1884 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
1885 ch
= file
->buf_ptr
[0];
1888 tcc_error("include file '%s' not found", buf
);
1890 --s1
->include_stack_ptr
;
1896 c
= expr_preprocess();
1902 if (tok
< TOK_IDENT
)
1903 tcc_error("invalid argument for '#if%sdef'", c
? "n" : "");
1907 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
1909 file
->ifndef_macro
= tok
;
1912 c
= (define_find(tok
) != 0) ^ c
;
1914 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
1915 tcc_error("memory full (ifdef)");
1916 *s1
->ifdef_stack_ptr
++ = c
;
1919 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1920 tcc_error("#else without matching #if");
1921 if (s1
->ifdef_stack_ptr
[-1] & 2)
1922 tcc_error("#else after #else");
1923 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
1926 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1927 tcc_error("#elif without matching #if");
1928 c
= s1
->ifdef_stack_ptr
[-1];
1930 tcc_error("#elif after #else");
1931 /* last #if/#elif expression was true: we skip */
1935 c
= expr_preprocess();
1936 s1
->ifdef_stack_ptr
[-1] = c
;
1939 if (s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
+ 1)
1940 file
->ifndef_macro
= 0;
1949 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
1950 tcc_error("#endif without matching #if");
1951 s1
->ifdef_stack_ptr
--;
1952 /* '#ifndef macro' was at the start of file. Now we check if
1953 an '#endif' is exactly at the end of file */
1954 if (file
->ifndef_macro
&&
1955 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
1956 file
->ifndef_macro_saved
= file
->ifndef_macro
;
1957 /* need to set to zero to avoid false matches if another
1958 #ifndef at middle of file */
1959 file
->ifndef_macro
= 0;
1960 while (tok
!= TOK_LINEFEED
)
1962 tok_flags
|= TOK_FLAG_ENDIF
;
1967 n
= strtoul((char*)tokc
.str
.data
, &q
, 10);
1971 if (tok
!= TOK_CINT
)
1973 tcc_error("wrong #line format");
1977 if (tok
!= TOK_LINEFEED
) {
1978 if (tok
== TOK_STR
) {
1979 if (file
->true_filename
== file
->filename
)
1980 file
->true_filename
= tcc_strdup(file
->filename
);
1981 /* prepend directory from real file */
1982 pstrcpy(buf
, sizeof buf
, file
->true_filename
);
1983 *tcc_basename(buf
) = 0;
1984 pstrcat(buf
, sizeof buf
, (char *)tokc
.str
.data
);
1985 tcc_debug_putfile(s1
, buf
);
1986 } else if (parse_flags
& PARSE_FLAG_ASM_FILE
)
1993 total_lines
+= file
->line_num
- n
;
1999 ch
= file
->buf_ptr
[0];
2002 while (ch
!= '\n' && ch
!= CH_EOF
) {
2003 if ((q
- buf
) < sizeof(buf
) - 1)
2006 if (handle_stray_noerror() == 0)
2013 tcc_error("#error %s", buf
);
2015 tcc_warning("#warning %s", buf
);
2023 /* ignore gas line comment in an 'S' file. */
2024 if (saved_parse_flags
& PARSE_FLAG_ASM_FILE
)
2026 if (tok
== '!' && is_bof
)
2027 /* '!' is ignored at beginning to allow C scripts. */
2029 tcc_warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
2031 file
->buf_ptr
= parse_line_comment(file
->buf_ptr
- 1);
2034 /* ignore other preprocess commands or #! for C scripts */
2035 while (tok
!= TOK_LINEFEED
)
2038 parse_flags
= saved_parse_flags
;
2041 /* evaluate escape codes in a string. */
2042 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
2057 case '0': case '1': case '2': case '3':
2058 case '4': case '5': case '6': case '7':
2059 /* at most three octal digits */
2064 n
= n
* 8 + c
- '0';
2068 n
= n
* 8 + c
- '0';
2073 goto add_char_nonext
;
2081 if (c
>= 'a' && c
<= 'f')
2083 else if (c
>= 'A' && c
<= 'F')
2093 goto add_char_nonext
;
2117 goto invalid_escape
;
2127 if (c
>= '!' && c
<= '~')
2128 tcc_warning("unknown escape sequence: \'\\%c\'", c
);
2130 tcc_warning("unknown escape sequence: \'\\x%x\'", c
);
2133 } else if (is_long
&& c
>= 0x80) {
2134 /* assume we are processing UTF-8 sequence */
2135 /* reference: The Unicode Standard, Version 10.0, ch3.9 */
2137 int cont
; /* count of continuation bytes */
2138 int skip
; /* how many bytes should skip when error occurred */
2141 /* decode leading byte */
2143 skip
= 1; goto invalid_utf8_sequence
;
2144 } else if (c
<= 0xDF) {
2145 cont
= 1; n
= c
& 0x1f;
2146 } else if (c
<= 0xEF) {
2147 cont
= 2; n
= c
& 0xf;
2148 } else if (c
<= 0xF4) {
2149 cont
= 3; n
= c
& 0x7;
2151 skip
= 1; goto invalid_utf8_sequence
;
2154 /* decode continuation bytes */
2155 for (i
= 1; i
<= cont
; i
++) {
2156 int l
= 0x80, h
= 0xBF;
2158 /* adjust limit for second byte */
2161 case 0xE0: l
= 0xA0; break;
2162 case 0xED: h
= 0x9F; break;
2163 case 0xF0: l
= 0x90; break;
2164 case 0xF4: h
= 0x8F; break;
2168 if (p
[i
] < l
|| p
[i
] > h
) {
2169 skip
= i
; goto invalid_utf8_sequence
;
2172 n
= (n
<< 6) | (p
[i
] & 0x3f);
2175 /* advance pointer */
2178 goto add_char_nonext
;
2180 /* error handling */
2181 invalid_utf8_sequence
:
2182 tcc_warning("ill-formed UTF-8 subsequence starting with: \'\\x%x\'", c
);
2185 goto add_char_nonext
;
2191 cstr_ccat(outstr
, c
);
2193 #ifdef TCC_TARGET_PE
2194 /* store as UTF-16 */
2196 cstr_wccat(outstr
, c
);
2199 cstr_wccat(outstr
, (c
>> 10) + 0xD800);
2200 cstr_wccat(outstr
, (c
& 0x3FF) + 0xDC00);
2203 cstr_wccat(outstr
, c
);
2207 /* add a trailing '\0' */
2209 cstr_ccat(outstr
, '\0');
2211 cstr_wccat(outstr
, '\0');
2214 static void parse_string(const char *s
, int len
)
2216 uint8_t buf
[1000], *p
= buf
;
2219 if ((is_long
= *s
== 'L'))
2223 if (len
>= sizeof buf
)
2224 p
= tcc_malloc(len
+ 1);
2228 cstr_reset(&tokcstr
);
2229 parse_escape_string(&tokcstr
, p
, is_long
);
2234 int char_size
, i
, n
, c
;
2235 /* XXX: make it portable */
2237 tok
= TOK_CCHAR
, char_size
= 1;
2239 tok
= TOK_LCHAR
, char_size
= sizeof(nwchar_t
);
2240 n
= tokcstr
.size
/ char_size
- 1;
2242 tcc_error("empty character constant");
2244 tcc_warning("multi-character character constant");
2245 for (c
= i
= 0; i
< n
; ++i
) {
2247 c
= ((nwchar_t
*)tokcstr
.data
)[i
];
2249 c
= (c
<< 8) | ((char *)tokcstr
.data
)[i
];
2253 tokc
.str
.size
= tokcstr
.size
;
2254 tokc
.str
.data
= tokcstr
.data
;
2262 /* we use 64 bit numbers */
2265 /* bn = (bn << shift) | or_val */
2266 static void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
2270 for(i
=0;i
<BN_SIZE
;i
++) {
2272 bn
[i
] = (v
<< shift
) | or_val
;
2273 or_val
= v
>> (32 - shift
);
2277 static void bn_zero(unsigned int *bn
)
2280 for(i
=0;i
<BN_SIZE
;i
++) {
2285 /* parse number in null terminated string 'p' and return it in the
2287 static void parse_number(const char *p
)
2289 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
2291 unsigned int bn
[BN_SIZE
];
2302 goto float_frac_parse
;
2303 } else if (t
== '0') {
2304 if (ch
== 'x' || ch
== 'X') {
2308 } else if (tcc_state
->tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
2314 /* parse all digits. cannot check octal numbers at this stage
2315 because of floating point constants */
2317 if (ch
>= 'a' && ch
<= 'f')
2319 else if (ch
>= 'A' && ch
<= 'F')
2327 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
2329 tcc_error("number too long");
2335 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
2336 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
2338 /* NOTE: strtox should support that for hexa numbers, but
2339 non ISOC99 libcs do not support it, so we prefer to do
2341 /* hexadecimal or binary floats */
2342 /* XXX: handle overflows */
2354 } else if (t
>= 'a') {
2356 } else if (t
>= 'A') {
2361 bn_lshift(bn
, shift
, t
);
2368 if (t
>= 'a' && t
<= 'f') {
2370 } else if (t
>= 'A' && t
<= 'F') {
2372 } else if (t
>= '0' && t
<= '9') {
2378 tcc_error("invalid digit");
2379 bn_lshift(bn
, shift
, t
);
2384 if (ch
!= 'p' && ch
!= 'P')
2391 } else if (ch
== '-') {
2395 if (ch
< '0' || ch
> '9')
2396 expect("exponent digits");
2397 while (ch
>= '0' && ch
<= '9') {
2398 exp_val
= exp_val
* 10 + ch
- '0';
2401 exp_val
= exp_val
* s
;
2403 /* now we can generate the number */
2404 /* XXX: should patch directly float number */
2405 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
2406 d
= ldexp(d
, exp_val
- frac_bits
);
2411 /* float : should handle overflow */
2413 } else if (t
== 'L') {
2415 #ifdef TCC_TARGET_PE
2420 /* XXX: not large enough */
2421 tokc
.ld
= (long double)d
;
2428 /* decimal floats */
2430 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2435 while (ch
>= '0' && ch
<= '9') {
2436 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2442 if (ch
== 'e' || ch
== 'E') {
2443 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2447 if (ch
== '-' || ch
== '+') {
2448 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2453 if (ch
< '0' || ch
> '9')
2454 expect("exponent digits");
2455 while (ch
>= '0' && ch
<= '9') {
2456 if (q
>= token_buf
+ STRING_MAX_SIZE
)
2468 tokc
.f
= strtof(token_buf
, NULL
);
2469 } else if (t
== 'L') {
2471 #ifdef TCC_TARGET_PE
2473 tokc
.d
= strtod(token_buf
, NULL
);
2476 tokc
.ld
= strtold(token_buf
, NULL
);
2480 tokc
.d
= strtod(token_buf
, NULL
);
2484 unsigned long long n
, n1
;
2485 int lcount
, ucount
, ov
= 0;
2488 /* integer number */
2491 if (b
== 10 && *q
== '0') {
2498 /* no need for checks except for base 10 / 8 errors */
2508 tcc_error("invalid digit");
2511 /* detect overflow */
2512 if (n1
>= 0x1000000000000000ULL
&& n
/ b
!= n1
)
2516 /* Determine the characteristics (unsigned and/or 64bit) the type of
2517 the constant must have according to the constant suffix(es) */
2518 lcount
= ucount
= 0;
2524 tcc_error("three 'l's in integer constant");
2525 if (lcount
&& *(p
- 1) != ch
)
2526 tcc_error("incorrect integer suffix: %s", p1
);
2529 } else if (t
== 'U') {
2531 tcc_error("two 'u's in integer constant");
2539 /* Determine if it needs 64 bits and/or unsigned in order to fit */
2540 if (ucount
== 0 && b
== 10) {
2541 if (lcount
<= (LONG_SIZE
== 4)) {
2542 if (n
>= 0x80000000U
)
2543 lcount
= (LONG_SIZE
== 4) + 1;
2545 if (n
>= 0x8000000000000000ULL
)
2548 if (lcount
<= (LONG_SIZE
== 4)) {
2549 if (n
>= 0x100000000ULL
)
2550 lcount
= (LONG_SIZE
== 4) + 1;
2551 else if (n
>= 0x80000000U
)
2554 if (n
>= 0x8000000000000000ULL
)
2559 tcc_warning("integer constant overflow");
2568 ++tok
; /* TOK_CU... */
2572 tcc_error("invalid number\n");
2576 #define PARSE2(c1, tok1, c2, tok2) \
2587 /* return next token without macro substitution */
2588 static inline void next_nomacro1(void)
2590 int t
, c
, is_long
, len
;
2604 if (parse_flags
& PARSE_FLAG_SPACES
)
2605 goto keep_tok_flags
;
2606 while (isidnum_table
[*p
- CH_EOF
] & IS_SPC
)
2615 /* first look if it is in fact an end of buffer */
2616 c
= handle_stray1(p
);
2623 TCCState
*s1
= tcc_state
;
2624 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
2625 && !(tok_flags
& TOK_FLAG_EOF
)) {
2626 tok_flags
|= TOK_FLAG_EOF
;
2628 goto keep_tok_flags
;
2629 } else if (!(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2631 } else if (s1
->ifdef_stack_ptr
!= file
->ifdef_stack_ptr
) {
2632 tcc_error("missing #endif");
2633 } else if (s1
->include_stack_ptr
== s1
->include_stack
) {
2634 /* no include left : end of file. */
2637 tok_flags
&= ~TOK_FLAG_EOF
;
2638 /* pop include file */
2640 /* test if previous '#endif' was after a #ifdef at
2642 if (tok_flags
& TOK_FLAG_ENDIF
) {
2644 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
2646 search_cached_include(s1
, file
->filename
, 1)
2647 ->ifndef_macro
= file
->ifndef_macro_saved
;
2648 tok_flags
&= ~TOK_FLAG_ENDIF
;
2651 /* add end of include file debug info */
2652 tcc_debug_eincl(tcc_state
);
2653 /* pop include stack */
2655 s1
->include_stack_ptr
--;
2657 if (p
== file
->buffer
)
2658 tok_flags
= TOK_FLAG_BOF
|TOK_FLAG_BOL
;
2666 tok_flags
|= TOK_FLAG_BOL
;
2669 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
2672 goto keep_tok_flags
;
2677 if ((tok_flags
& TOK_FLAG_BOL
) &&
2678 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2680 preprocess(tok_flags
& TOK_FLAG_BOF
);
2686 tok
= TOK_TWOSHARPS
;
2688 if (parse_flags
& PARSE_FLAG_ASM_FILE
) {
2689 p
= parse_line_comment(p
- 1);
2698 /* dollar is allowed to start identifiers when not parsing asm */
2700 if (!(isidnum_table
[c
- CH_EOF
] & IS_ID
)
2701 || (parse_flags
& PARSE_FLAG_ASM_FILE
))
2704 case 'a': case 'b': case 'c': case 'd':
2705 case 'e': case 'f': case 'g': case 'h':
2706 case 'i': case 'j': case 'k': case 'l':
2707 case 'm': case 'n': case 'o': case 'p':
2708 case 'q': case 'r': case 's': case 't':
2709 case 'u': case 'v': case 'w': case 'x':
2711 case 'A': case 'B': case 'C': case 'D':
2712 case 'E': case 'F': case 'G': case 'H':
2713 case 'I': case 'J': case 'K':
2714 case 'M': case 'N': case 'O': case 'P':
2715 case 'Q': case 'R': case 'S': case 'T':
2716 case 'U': case 'V': case 'W': case 'X':
2722 h
= TOK_HASH_FUNC(h
, c
);
2723 while (c
= *++p
, isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2724 h
= TOK_HASH_FUNC(h
, c
);
2729 /* fast case : no stray found, so we have the full token
2730 and we have already hashed it */
2731 h
&= (TOK_HASH_SIZE
- 1);
2732 pts
= &hash_ident
[h
];
2737 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
2739 pts
= &(ts
->hash_next
);
2741 ts
= tok_alloc_new(pts
, (char *) p1
, len
);
2745 cstr_reset(&tokcstr
);
2746 cstr_cat(&tokcstr
, (char *) p1
, len
);
2750 while (isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2752 cstr_ccat(&tokcstr
, c
);
2755 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
2761 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
2763 goto parse_ident_fast
;
2766 if (c
== '\'' || c
== '\"') {
2770 cstr_reset(&tokcstr
);
2771 cstr_ccat(&tokcstr
, 'L');
2772 goto parse_ident_slow
;
2777 case '0': case '1': case '2': case '3':
2778 case '4': case '5': case '6': case '7':
2782 /* after the first digit, accept digits, alpha, '.' or sign if
2783 prefixed by 'eEpP' */
2785 cstr_reset(&tokcstr
);
2787 cstr_ccat(&tokcstr
, t
);
2788 if (!((isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))
2790 || ((c
== '+' || c
== '-')
2791 && (((t
== 'e' || t
== 'E')
2792 && !(parse_flags
& PARSE_FLAG_ASM_FILE
2793 /* 0xe+1 is 3 tokens in asm */
2794 && ((char*)tokcstr
.data
)[0] == '0'
2795 && toup(((char*)tokcstr
.data
)[1]) == 'X'))
2796 || t
== 'p' || t
== 'P'))))
2801 /* We add a trailing '\0' to ease parsing */
2802 cstr_ccat(&tokcstr
, '\0');
2803 tokc
.str
.size
= tokcstr
.size
;
2804 tokc
.str
.data
= tokcstr
.data
;
2809 /* special dot handling because it can also start a number */
2814 } else if ((isidnum_table
['.' - CH_EOF
] & IS_ID
)
2815 && (isidnum_table
[c
- CH_EOF
] & (IS_ID
|IS_NUM
))) {
2817 goto parse_ident_fast
;
2818 } else if (c
== '.') {
2824 *--p
= '.'; /* may underflow into file->unget[] */
2835 cstr_reset(&tokcstr
);
2837 cstr_ccat(&tokcstr
, 'L');
2838 cstr_ccat(&tokcstr
, c
);
2839 p
= parse_pp_string(p
, c
, &tokcstr
);
2840 cstr_ccat(&tokcstr
, c
);
2841 cstr_ccat(&tokcstr
, '\0');
2842 tokc
.str
.size
= tokcstr
.size
;
2843 tokc
.str
.data
= tokcstr
.data
;
2852 } else if (c
== '<') {
2869 } else if (c
== '>') {
2887 } else if (c
== '=') {
2900 } else if (c
== '=') {
2913 } else if (c
== '=') {
2926 } else if (c
== '=') {
2929 } else if (c
== '>') {
2937 PARSE2('!', '!', '=', TOK_NE
)
2938 PARSE2('=', '=', '=', TOK_EQ
)
2939 PARSE2('*', '*', '=', TOK_A_MUL
)
2940 PARSE2('%', '%', '=', TOK_A_MOD
)
2941 PARSE2('^', '^', '=', TOK_A_XOR
)
2943 /* comments or operator */
2947 p
= parse_comment(p
);
2948 /* comments replaced by a blank */
2951 } else if (c
== '/') {
2952 p
= parse_line_comment(p
);
2955 } else if (c
== '=') {
2975 case '@': /* only used in assembler */
2981 if (c
>= 0x80 && c
<= 0xFF) /* utf8 identifiers */
2982 goto parse_ident_fast
;
2983 if (parse_flags
& PARSE_FLAG_ASM_FILE
)
2985 tcc_error("unrecognized character \\x%02x", c
);
2991 #if defined(PARSE_DEBUG)
2992 printf("token = %d %s\n", tok
, get_tok_str(tok
, &tokc
));
2996 static void macro_subst(
2997 TokenString
*tok_str
,
2999 const int *macro_str
3002 /* substitute arguments in replacement lists in macro_str by the values in
3003 args (field d) and return allocated string */
3004 static int *macro_arg_subst(Sym
**nested_list
, const int *macro_str
, Sym
*args
)
3016 TOK_GET(&t
, ¯o_str
, &cval
);
3021 TOK_GET(&t
, ¯o_str
, &cval
);
3024 s
= sym_find2(args
, t
);
3027 cstr_ccat(&cstr
, '\"');
3031 TOK_GET(&t
, &st
, &cval
);
3032 if (t
!= TOK_PLCHLDR
3034 && 0 == check_space(t
, &spc
)) {
3035 const char *s
= get_tok_str(t
, &cval
);
3037 if (t
== TOK_PPSTR
&& *s
!= '\'')
3038 add_char(&cstr
, *s
);
3040 cstr_ccat(&cstr
, *s
);
3046 cstr_ccat(&cstr
, '\"');
3047 cstr_ccat(&cstr
, '\0');
3049 printf("\nstringize: <%s>\n", (char *)cstr
.data
);
3052 cval
.str
.size
= cstr
.size
;
3053 cval
.str
.data
= cstr
.data
;
3054 tok_str_add2(&str
, TOK_PPSTR
, &cval
);
3058 expect("macro parameter after '#'");
3060 } else if (t
>= TOK_IDENT
) {
3061 s
= sym_find2(args
, t
);
3065 /* if '##' is present before or after, no arg substitution */
3066 if (*macro_str
== TOK_PPJOIN
|| t1
== TOK_PPJOIN
) {
3067 /* special case for var arg macros : ## eats the ','
3068 if empty VA_ARGS variable. */
3069 if (t1
== TOK_PPJOIN
&& t0
== ',' && gnu_ext
&& s
->type
.t
) {
3071 /* suppress ',' '##' */
3074 /* suppress '##' and add variable */
3082 /* Expand arguments tokens and store them. In most
3083 cases we could also re-expand each argument if
3084 used multiple times, but not if the argument
3085 contains the __COUNTER__ macro. */
3087 sym_push2(&s
->next
, s
->v
, s
->type
.t
, 0);
3089 macro_subst(&str2
, nested_list
, st
);
3090 tok_str_add(&str2
, 0);
3091 s
->next
->d
= str2
.str
;
3097 TOK_GET(&t2
, &st
, &cval
);
3100 tok_str_add2(&str
, t2
, &cval
);
3102 if (str
.len
== l0
) /* expanded to empty string */
3103 tok_str_add(&str
, TOK_PLCHLDR
);
3105 tok_str_add(&str
, t
);
3108 tok_str_add2(&str
, t
, &cval
);
3112 tok_str_add(&str
, 0);
3116 static char const ab_month_name
[12][4] =
3118 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
3119 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
3122 static int paste_tokens(int t1
, CValue
*v1
, int t2
, CValue
*v2
)
3128 if (t1
!= TOK_PLCHLDR
)
3129 cstr_cat(&cstr
, get_tok_str(t1
, v1
), -1);
3131 if (t2
!= TOK_PLCHLDR
)
3132 cstr_cat(&cstr
, get_tok_str(t2
, v2
), -1);
3133 cstr_ccat(&cstr
, '\0');
3135 tcc_open_bf(tcc_state
, ":paste:", cstr
.size
);
3136 memcpy(file
->buffer
, cstr
.data
, cstr
.size
);
3140 if (0 == *file
->buf_ptr
)
3144 tcc_warning("pasting \"%.*s\" and \"%s\" does not give a valid"
3145 " preprocessing token", n
, (char *)cstr
.data
, (char*)cstr
.data
+ n
);
3150 //printf("paste <%s>\n", (char*)cstr.data);
3155 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
3156 return the resulting string (which must be freed). */
3157 static inline int *macro_twosharps(const int *ptr0
)
3161 TokenString macro_str1
;
3162 int start_of_nosubsts
= -1;
3165 /* we search the first '##' */
3166 for (ptr
= ptr0
;;) {
3167 TOK_GET(&t
, &ptr
, &cval
);
3168 if (t
== TOK_PPJOIN
)
3174 tok_str_new(¯o_str1
);
3176 //tok_print(" $$$", ptr0);
3177 for (ptr
= ptr0
;;) {
3178 TOK_GET(&t
, &ptr
, &cval
);
3181 if (t
== TOK_PPJOIN
)
3183 while (*ptr
== TOK_PPJOIN
) {
3185 /* given 'a##b', remove nosubsts preceding 'a' */
3186 if (start_of_nosubsts
>= 0)
3187 macro_str1
.len
= start_of_nosubsts
;
3188 /* given 'a##b', remove nosubsts preceding 'b' */
3189 while ((t1
= *++ptr
) == TOK_NOSUBST
)
3191 if (t1
&& t1
!= TOK_PPJOIN
) {
3192 TOK_GET(&t1
, &ptr
, &cv1
);
3193 if (t
!= TOK_PLCHLDR
|| t1
!= TOK_PLCHLDR
) {
3194 if (paste_tokens(t
, &cval
, t1
, &cv1
)) {
3195 t
= tok
, cval
= tokc
;
3197 tok_str_add2(¯o_str1
, t
, &cval
);
3203 if (t
== TOK_NOSUBST
) {
3204 if (start_of_nosubsts
< 0)
3205 start_of_nosubsts
= macro_str1
.len
;
3207 start_of_nosubsts
= -1;
3209 tok_str_add2(¯o_str1
, t
, &cval
);
3211 tok_str_add(¯o_str1
, 0);
3212 //tok_print(" ###", macro_str1.str);
3213 return macro_str1
.str
;
3216 /* peek or read [ws_str == NULL] next token from function macro call,
3217 walking up macro levels up to the file if necessary */
3218 static int next_argstream(Sym
**nested_list
, TokenString
*ws_str
)
3226 p
= macro_ptr
, t
= *p
;
3228 while (is_space(t
) || TOK_LINEFEED
== t
|| TOK_PLCHLDR
== t
)
3229 tok_str_add(ws_str
, t
), t
= *++p
;
3233 /* also, end of scope for nested defined symbol */
3235 while (sa
&& sa
->v
== 0)
3244 while (is_space(ch
) || ch
== '\n' || ch
== '/') {
3247 uint8_t *p
= file
->buf_ptr
;
3250 p
= parse_comment(p
);
3251 file
->buf_ptr
= p
- 1;
3252 } else if (c
== '/') {
3253 p
= parse_line_comment(p
);
3254 file
->buf_ptr
= p
- 1;
3261 if (!(ch
== '\f' || ch
== '\v' || ch
== '\r'))
3262 tok_str_add(ws_str
, ch
);
3276 /* do macro substitution of current token with macro 's' and add
3277 result to (tok_str,tok_len). 'nested_list' is the list of all
3278 macros we got inside to avoid recursing. Return non zero if no
3279 substitution needs to be done */
3280 static int macro_subst_tok(
3281 TokenString
*tok_str
,
3285 Sym
*args
, *sa
, *sa1
;
3286 int parlevel
, t
, t1
, spc
;
3293 /* if symbol is a macro, prepare substitution */
3294 /* special macros */
3295 if (tok
== TOK___LINE__
|| tok
== TOK___COUNTER__
) {
3296 t
= tok
== TOK___LINE__
? file
->line_num
: pp_counter
++;
3297 snprintf(buf
, sizeof(buf
), "%d", t
);
3301 } else if (tok
== TOK___FILE__
) {
3302 cstrval
= file
->filename
;
3304 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
3309 tm
= localtime(&ti
);
3310 if (tok
== TOK___DATE__
) {
3311 snprintf(buf
, sizeof(buf
), "%s %2d %d",
3312 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
3314 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
3315 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
3322 cstr_cat(&cstr
, cstrval
, 0);
3323 cval
.str
.size
= cstr
.size
;
3324 cval
.str
.data
= cstr
.data
;
3325 tok_str_add2(tok_str
, t1
, &cval
);
3328 int saved_parse_flags
= parse_flags
;
3329 int *joined_str
= NULL
;
3332 if (s
->type
.t
== MACRO_FUNC
) {
3333 /* whitespace between macro name and argument list */
3335 tok_str_new(&ws_str
);
3338 parse_flags
|= PARSE_FLAG_SPACES
| PARSE_FLAG_LINEFEED
3339 | PARSE_FLAG_ACCEPT_STRAYS
;
3341 /* get next token from argument stream */
3342 t
= next_argstream(nested_list
, &ws_str
);
3344 /* not a macro substitution after all, restore the
3345 * macro token plus all whitespace we've read.
3346 * whitespace is intentionally not merged to preserve
3348 parse_flags
= saved_parse_flags
;
3349 tok_str_add(tok_str
, tok
);
3350 if (parse_flags
& PARSE_FLAG_SPACES
) {
3352 for (i
= 0; i
< ws_str
.len
; i
++)
3353 tok_str_add(tok_str
, ws_str
.str
[i
]);
3355 tok_str_free_str(ws_str
.str
);
3358 tok_str_free_str(ws_str
.str
);
3361 next_nomacro(); /* eat '(' */
3362 } while (tok
== TOK_PLCHLDR
|| is_space(tok
));
3364 /* argument macro */
3367 /* NOTE: empty args are allowed, except if no args */
3370 next_argstream(nested_list
, NULL
);
3371 } while (is_space(tok
) || TOK_LINEFEED
== tok
);
3373 /* handle '()' case */
3374 if (!args
&& !sa
&& tok
== ')')
3377 tcc_error("macro '%s' used with too many args",
3378 get_tok_str(s
->v
, 0));
3381 /* NOTE: non zero sa->t indicates VA_ARGS */
3382 while ((parlevel
> 0 ||
3384 (tok
!= ',' || sa
->type
.t
)))) {
3385 if (tok
== TOK_EOF
|| tok
== 0)
3389 else if (tok
== ')')
3391 if (tok
== TOK_LINEFEED
)
3393 if (!check_space(tok
, &spc
))
3394 tok_str_add2(&str
, tok
, &tokc
);
3395 next_argstream(nested_list
, NULL
);
3400 tok_str_add(&str
, -1);
3401 tok_str_add(&str
, 0);
3402 sa1
= sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, 0);
3406 /* special case for gcc var args: add an empty
3407 var arg argument if it is omitted */
3408 if (sa
&& sa
->type
.t
&& gnu_ext
)
3416 tcc_error("macro '%s' used with too few args",
3417 get_tok_str(s
->v
, 0));
3420 /* now subst each arg */
3421 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
3426 tok_str_free_str(sa
->d
);
3428 tok_str_free_str(sa
->next
->d
);
3434 parse_flags
= saved_parse_flags
;
3437 sym_push2(nested_list
, s
->v
, 0, 0);
3438 parse_flags
= saved_parse_flags
;
3439 joined_str
= macro_twosharps(mstr
);
3440 macro_subst(tok_str
, nested_list
, joined_str
? joined_str
: mstr
);
3442 /* pop nested defined symbol */
3444 *nested_list
= sa1
->prev
;
3447 tok_str_free_str(joined_str
);
3449 tok_str_free_str(mstr
);
3454 /* do macro substitution of macro_str and add result to
3455 (tok_str,tok_len). 'nested_list' is the list of all macros we got
3456 inside to avoid recursing. */
3457 static void macro_subst(
3458 TokenString
*tok_str
,
3460 const int *macro_str
3464 int t
, spc
, nosubst
;
3470 TOK_GET(&t
, ¯o_str
, &cval
);
3474 if (t
>= TOK_IDENT
&& 0 == nosubst
) {
3479 /* if nested substitution, do nothing */
3480 if (sym_find2(*nested_list
, t
)) {
3481 /* and mark it as TOK_NOSUBST, so it doesn't get subst'd again */
3482 tok_str_add2(tok_str
, TOK_NOSUBST
, NULL
);
3487 TokenString
*str
= tok_str_alloc();
3488 str
->str
= (int*)macro_str
;
3489 begin_macro(str
, 2);
3492 macro_subst_tok(tok_str
, nested_list
, s
);
3494 if (macro_stack
!= str
) {
3495 /* already finished by reading function macro arguments */
3499 macro_str
= macro_ptr
;
3503 spc
= is_space(t
= tok_str
->str
[tok_str
->lastlen
]);
3506 if (!check_space(t
, &spc
))
3507 tok_str_add2(tok_str
, t
, &cval
);
3510 if (nosubst
> 1 && (spc
|| (++nosubst
== 3 && t
== '(')))
3514 if (t
== TOK_NOSUBST
)
3517 /* GCC supports 'defined' as result of a macro substitution */
3518 if (t
== TOK_DEFINED
&& pp_expr
)
3523 /* return next token without macro substitution. Can read input from
3525 static void next_nomacro(void)
3531 if (TOK_HAS_VALUE(t
)) {
3532 tok_get(&tok
, ¯o_ptr
, &tokc
);
3533 if (t
== TOK_LINENUM
) {
3534 file
->line_num
= tokc
.i
;
3539 if (t
< TOK_IDENT
) {
3540 if (!(parse_flags
& PARSE_FLAG_SPACES
)
3541 && (isidnum_table
[t
- CH_EOF
] & IS_SPC
))
3551 /* return next token with macro substitution */
3552 ST_FUNC
void next(void)
3559 if (!TOK_HAS_VALUE(t
)) {
3560 if (t
== TOK_NOSUBST
|| t
== TOK_PLCHLDR
) {
3561 /* discard preprocessor markers */
3563 } else if (t
== 0) {
3564 /* end of macro or unget token string */
3567 } else if (t
== '\\') {
3568 if (!(parse_flags
& PARSE_FLAG_ACCEPT_STRAYS
))
3569 tcc_error("stray '\\' in program");
3573 } else if (t
>= TOK_IDENT
&& (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
3574 /* if reading from file, try to substitute macros */
3575 Sym
*s
= define_find(t
);
3577 Sym
*nested_list
= NULL
;
3579 macro_subst_tok(&tokstr_buf
, &nested_list
, s
);
3580 tok_str_add(&tokstr_buf
, 0);
3581 begin_macro(&tokstr_buf
, 0);
3586 /* convert preprocessor tokens into C tokens */
3587 if (t
== TOK_PPNUM
) {
3588 if (parse_flags
& PARSE_FLAG_TOK_NUM
)
3589 parse_number((char *)tokc
.str
.data
);
3590 } else if (t
== TOK_PPSTR
) {
3591 if (parse_flags
& PARSE_FLAG_TOK_STR
)
3592 parse_string((char *)tokc
.str
.data
, tokc
.str
.size
- 1);
3596 /* push back current token and set current token to 'last_tok'. Only
3597 identifier case handled for labels. */
3598 ST_INLN
void unget_tok(int last_tok
)
3601 TokenString
*str
= tok_str_alloc();
3602 tok_str_add2(str
, tok
, &tokc
);
3603 tok_str_add(str
, 0);
3604 begin_macro(str
, 1);
3608 static void tcc_predefs(CString
*cstr
)
3611 #if defined TCC_TARGET_X86_64
3612 #ifndef TCC_TARGET_PE
3613 /* GCC compatible definition of va_list. This should be in sync
3614 with the declaration in our lib/libtcc1.c */
3616 "unsigned gp_offset,fp_offset;\n"
3618 "unsigned overflow_offset;\n"
3619 "char*overflow_arg_area;\n"
3621 "char*reg_save_area;\n"
3622 "}__builtin_va_list[1];\n"
3623 "void*__va_arg(__builtin_va_list ap,int arg_type,int size,int align);\n"
3624 "#define __builtin_va_start(ap,last) (*(ap)=*(__builtin_va_list)((char*)__builtin_frame_address(0)-24))\n"
3625 "#define __builtin_va_arg(ap,t) (*(t*)(__va_arg(ap,__builtin_va_arg_types(t),sizeof(t),__alignof__(t))))\n"
3626 "#define __builtin_va_copy(dest,src) (*(dest)=*(src))\n"
3627 #else /* TCC_TARGET_PE */
3628 "typedef char*__builtin_va_list;\n"
3629 "#define __builtin_va_arg(ap,t) ((sizeof(t)>8||(sizeof(t)&(sizeof(t)-1)))?**(t**)((ap+=8)-8):*(t*)((ap+=8)-8))\n"
3630 "#define __builtin_va_copy(dest,src) (dest)=(src)\n"
3632 #elif defined TCC_TARGET_ARM
3633 "typedef char*__builtin_va_list;\n"
3634 "#define _tcc_alignof(type) ((int)&((struct{char c;type x;}*)0)->x)\n"
3635 "#define _tcc_align(addr,type) (((unsigned)addr+_tcc_alignof(type)-1)&~(_tcc_alignof(type)-1))\n"
3636 "#define __builtin_va_start(ap,last) (ap=((char*)&(last))+((sizeof(last)+3)&~3))\n"
3637 "#define __builtin_va_arg(ap,type) (ap=(void*)((_tcc_align(ap,type)+sizeof(type)+3)&~3),*(type*)(ap-((sizeof(type)+3)&~3)))\n"
3638 "#define __builtin_va_copy(dest,src) (dest)=(src)\n"
3639 #elif defined TCC_TARGET_ARM64
3641 "void*__stack,*__gr_top,*__vr_top;\n"
3642 "int __gr_offs,__vr_offs;\n"
3643 "}__builtin_va_list;\n"
3644 "#define __builtin_va_copy(dest,src) (dest)=(src)\n"
3645 #elif defined TCC_TARGET_RISCV64
3646 "typedef char*__builtin_va_list;\n"
3647 "#define __va_reg_size (__riscv_xlen>>3)\n"
3648 "#define _tcc_align(addr,type) (((unsigned long)addr+__alignof__(type)-1)&-(__alignof__(type)))\n"
3649 "#define __builtin_va_arg(ap,type) (*(sizeof(type)>(2*__va_reg_size)?*(type**)((ap+=__va_reg_size)-__va_reg_size):(ap=(va_list)(_tcc_align(ap,type)+(sizeof(type)+__va_reg_size-1)&-__va_reg_size),(type*)(ap-((sizeof(type)+__va_reg_size-1)&-__va_reg_size)))))\n"
3650 "#define __builtin_va_copy(dest,src) (dest)=(src)\n"
3651 #else /* TCC_TARGET_I386 */
3652 "typedef char*__builtin_va_list;\n"
3653 "#define __builtin_va_start(ap,last) (ap=((char*)&(last))+((sizeof(last)+3)&~3))\n"
3654 "#define __builtin_va_arg(ap,t) (*(t*)((ap+=(sizeof(t)+3)&~3)-((sizeof(t)+3)&~3)))\n"
3655 "#define __builtin_va_copy(dest,src) (dest)=(src)\n"
3657 "#define __builtin_va_end(ap) (void)(ap)\n"
3661 ST_FUNC
void preprocess_start(TCCState
*s1
, int is_asm
)
3667 s1
->include_stack_ptr
= s1
->include_stack
;
3668 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
3669 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
3672 pp_debug_tok
= pp_debug_symv
= 0;
3674 s1
->pack_stack
[0] = 0;
3675 s1
->pack_stack_ptr
= s1
->pack_stack
;
3677 set_idnum('$', s1
->dollars_in_identifiers
? IS_ID
: 0);
3678 set_idnum('.', is_asm
? IS_ID
: 0);
3681 if (s1
->cmdline_defs
.size
)
3682 cstr_cat(&cstr
, s1
->cmdline_defs
.data
, s1
->cmdline_defs
.size
);
3683 cstr_printf(&cstr
, "#define __BASE_FILE__ \"%s\"\n", file
->filename
);
3685 cstr_printf(&cstr
, "#define __ASSEMBLER__ 1\n");
3686 if (s1
->output_type
== TCC_OUTPUT_MEMORY
)
3687 cstr_printf(&cstr
, "#define __TCC_RUN__ 1\n");
3688 if (!is_asm
&& s1
->output_type
!= TCC_OUTPUT_PREPROCESS
)
3690 if (s1
->cmdline_incl
.size
)
3691 cstr_cat(&cstr
, s1
->cmdline_incl
.data
, s1
->cmdline_incl
.size
);
3692 //printf("%s\n", (char*)cstr.data);
3693 *s1
->include_stack_ptr
++ = file
;
3694 tcc_open_bf(s1
, "<command line>", cstr
.size
);
3695 memcpy(file
->buffer
, cstr
.data
, cstr
.size
);
3698 parse_flags
= is_asm
? PARSE_FLAG_ASM_FILE
: 0;
3699 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
3702 /* cleanup from error/setjmp */
3703 ST_FUNC
void preprocess_end(TCCState
*s1
)
3713 ST_FUNC
void tccpp_new(TCCState
*s
)
3718 /* init isid table */
3719 for(i
= CH_EOF
; i
<128; i
++)
3721 is_space(i
) ? IS_SPC
3726 for(i
= 128; i
<256; i
++)
3727 set_idnum(i
, IS_ID
);
3729 /* init allocators */
3730 tal_new(&toksym_alloc
, TOKSYM_TAL_LIMIT
, TOKSYM_TAL_SIZE
);
3731 tal_new(&tokstr_alloc
, TOKSTR_TAL_LIMIT
, TOKSTR_TAL_SIZE
);
3733 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
3734 memset(s
->cached_includes_hash
, 0, sizeof s
->cached_includes_hash
);
3736 cstr_new(&cstr_buf
);
3737 cstr_realloc(&cstr_buf
, STRING_MAX_SIZE
);
3738 tok_str_new(&tokstr_buf
);
3739 tok_str_realloc(&tokstr_buf
, TOKSTR_MAX_SIZE
);
3741 tok_ident
= TOK_IDENT
;
3750 tok_alloc(p
, r
- p
- 1);
3754 /* we add dummy defines for some special macros to speed up tests
3755 and to have working defined() */
3756 define_push(TOK___LINE__
, MACRO_OBJ
, NULL
, NULL
);
3757 define_push(TOK___FILE__
, MACRO_OBJ
, NULL
, NULL
);
3758 define_push(TOK___DATE__
, MACRO_OBJ
, NULL
, NULL
);
3759 define_push(TOK___TIME__
, MACRO_OBJ
, NULL
, NULL
);
3760 define_push(TOK___COUNTER__
, MACRO_OBJ
, NULL
, NULL
);
3763 ST_FUNC
void tccpp_delete(TCCState
*s
)
3767 dynarray_reset(&s
->cached_includes
, &s
->nb_cached_includes
);
3770 n
= tok_ident
- TOK_IDENT
;
3771 if (n
> total_idents
)
3773 for(i
= 0; i
< n
; i
++)
3774 tal_free(toksym_alloc
, table_ident
[i
]);
3775 tcc_free(table_ident
);
3778 /* free static buffers */
3779 cstr_free(&tokcstr
);
3780 cstr_free(&cstr_buf
);
3781 cstr_free(¯o_equal_buf
);
3782 tok_str_free_str(tokstr_buf
.str
);
3784 /* free allocators */
3785 tal_delete(toksym_alloc
);
3786 toksym_alloc
= NULL
;
3787 tal_delete(tokstr_alloc
);
3788 tokstr_alloc
= NULL
;
3791 /* ------------------------------------------------------------------------- */
3792 /* tcc -E [-P[1]] [-dD} support */
3794 static void tok_print(const char *msg
, const int *str
)
3800 fp
= tcc_state
->ppfp
;
3801 fprintf(fp
, "%s", msg
);
3803 TOK_GET(&t
, &str
, &cval
);
3806 fprintf(fp
, " %s" + s
, get_tok_str(t
, &cval
)), s
= 1;
3811 static void pp_line(TCCState
*s1
, BufferedFile
*f
, int level
)
3813 int d
= f
->line_num
- f
->line_ref
;
3818 if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_NONE
) {
3820 } else if (level
== 0 && f
->line_ref
&& d
< 8) {
3822 fputs("\n", s1
->ppfp
), --d
;
3823 } else if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_STD
) {
3824 fprintf(s1
->ppfp
, "#line %d \"%s\"\n", f
->line_num
, f
->filename
);
3826 fprintf(s1
->ppfp
, "# %d \"%s\"%s\n", f
->line_num
, f
->filename
,
3827 level
> 0 ? " 1" : level
< 0 ? " 2" : "");
3829 f
->line_ref
= f
->line_num
;
3832 static void define_print(TCCState
*s1
, int v
)
3838 if (NULL
== s
|| NULL
== s
->d
)
3842 fprintf(fp
, "#define %s", get_tok_str(v
, NULL
));
3843 if (s
->type
.t
== MACRO_FUNC
) {
3848 fprintf(fp
,"%s", get_tok_str(a
->v
& ~SYM_FIELD
, NULL
));
3855 tok_print("", s
->d
);
3858 static void pp_debug_defines(TCCState
*s1
)
3869 pp_line(s1
, file
, 0);
3870 file
->line_ref
= ++file
->line_num
;
3874 vs
= get_tok_str(v
, NULL
);
3875 if (t
== TOK_DEFINE
) {
3876 define_print(s1
, v
);
3877 } else if (t
== TOK_UNDEF
) {
3878 fprintf(fp
, "#undef %s\n", vs
);
3879 } else if (t
== TOK_push_macro
) {
3880 fprintf(fp
, "#pragma push_macro(\"%s\")\n", vs
);
3881 } else if (t
== TOK_pop_macro
) {
3882 fprintf(fp
, "#pragma pop_macro(\"%s\")\n", vs
);
3887 static void pp_debug_builtins(TCCState
*s1
)
3890 for (v
= TOK_IDENT
; v
< tok_ident
; ++v
)
3891 define_print(s1
, v
);
3894 /* Add a space between tokens a and b to avoid unwanted textual pasting */
3895 static int pp_need_space(int a
, int b
)
3897 return 'E' == a
? '+' == b
|| '-' == b
3898 : '+' == a
? TOK_INC
== b
|| '+' == b
3899 : '-' == a
? TOK_DEC
== b
|| '-' == b
3900 : a
>= TOK_IDENT
? b
>= TOK_IDENT
3901 : a
== TOK_PPNUM
? b
>= TOK_IDENT
3905 /* maybe hex like 0x1e */
3906 static int pp_check_he0xE(int t
, const char *p
)
3908 if (t
== TOK_PPNUM
&& toup(strchr(p
, 0)[-1]) == 'E')
3913 /* Preprocess the current file */
3914 ST_FUNC
int tcc_preprocess(TCCState
*s1
)
3916 BufferedFile
**iptr
;
3917 int token_seen
, spcs
, level
;
3921 parse_flags
= PARSE_FLAG_PREPROCESS
3922 | (parse_flags
& PARSE_FLAG_ASM_FILE
)
3923 | PARSE_FLAG_LINEFEED
3925 | PARSE_FLAG_ACCEPT_STRAYS
3927 /* Credits to Fabrice Bellard's initial revision to demonstrate its
3928 capability to compile and run itself, provided all numbers are
3929 given as decimals. tcc -E -P10 will do. */
3930 if (s1
->Pflag
== LINE_MACRO_OUTPUT_FORMAT_P10
)
3931 parse_flags
|= PARSE_FLAG_TOK_NUM
, s1
->Pflag
= 1;
3934 /* for PP benchmarks */
3935 do next(); while (tok
!= TOK_EOF
);
3939 if (s1
->dflag
& 1) {
3940 pp_debug_builtins(s1
);
3944 token_seen
= TOK_LINEFEED
, spcs
= 0, level
= 0;
3946 pp_line(s1
, file
->prev
, level
++);
3947 pp_line(s1
, file
, level
);
3949 iptr
= s1
->include_stack_ptr
;
3954 level
= s1
->include_stack_ptr
- iptr
;
3957 pp_line(s1
, *iptr
, 0);
3958 pp_line(s1
, file
, level
);
3960 if (s1
->dflag
& 7) {
3961 pp_debug_defines(s1
);
3966 if (is_space(tok
)) {
3967 if (spcs
< sizeof white
- 1)
3968 white
[spcs
++] = tok
;
3970 } else if (tok
== TOK_LINEFEED
) {
3972 if (token_seen
== TOK_LINEFEED
)
3975 } else if (token_seen
== TOK_LINEFEED
) {
3976 pp_line(s1
, file
, 0);
3977 } else if (spcs
== 0 && pp_need_space(token_seen
, tok
)) {
3978 white
[spcs
++] = ' ';
3981 white
[spcs
] = 0, fputs(white
, s1
->ppfp
), spcs
= 0;
3982 fputs(p
= get_tok_str(tok
, &tokc
), s1
->ppfp
);
3983 token_seen
= pp_check_he0xE(tok
, p
);
3988 /* ------------------------------------------------------------------------- */