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 /* additional informations about token */
28 #define TOK_FLAG_BOL 0x0001 /* beginning of line before */
29 #define TOK_FLAG_BOF 0x0002 /* beginning of file before */
30 #define TOK_FLAG_ENDIF 0x0004 /* a endif was found matching starting #ifdef */
31 #define TOK_FLAG_EOF 0x0008 /* end of file */
33 ST_DATA
int parse_flags
;
34 #define PARSE_FLAG_PREPROCESS 0x0001 /* activate preprocessing */
35 #define PARSE_FLAG_TOK_NUM 0x0002 /* return numbers instead of TOK_PPNUM */
36 #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a
37 token. line feed is also
39 #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */
40 #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */
42 ST_DATA
struct BufferedFile
*file
;
45 ST_DATA
const int *macro_ptr
;
46 ST_DATA CString tokcstr
; /* current parsed string, if any */
48 /* display benchmark infos */
49 ST_DATA
int total_lines
;
50 ST_DATA
int total_bytes
;
51 ST_DATA
int tok_ident
;
52 ST_DATA TokenSym
**table_ident
;
54 /* ------------------------------------------------------------------------- */
56 static int *macro_ptr_allocated
;
57 static const int *unget_saved_macro_ptr
;
58 static int unget_saved_buffer
[TOK_MAX_SIZE
+ 1];
59 static int unget_buffer_enabled
;
60 static TokenSym
*hash_ident
[TOK_HASH_SIZE
];
61 static char token_buf
[STRING_MAX_SIZE
+ 1];
62 /* true if isid(c) || isnum(c) */
63 static unsigned char isidnum_table
[256-CH_EOF
];
65 static const char tcc_keywords
[] =
66 #define DEF(id, str) str "\0"
71 /* WARNING: the content of this string encodes token numbers */
72 static const unsigned char tok_two_chars
[] =
73 "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253"
74 "-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
77 struct macro_level
*prev
;
81 ST_FUNC
void next_nomacro(void);
82 static void next_nomacro_spc(void);
83 static void macro_subst(
87 struct macro_level
**can_read_stream
90 ST_FUNC
void skip(int c
)
93 error("'%c' expected (got \"%s\")", c
, get_tok_str(tok
, NULL
));
97 /* ------------------------------------------------------------------------- */
98 /* CString handling */
99 static void cstr_realloc(CString
*cstr
, int new_size
)
104 size
= cstr
->size_allocated
;
106 size
= 8; /* no need to allocate a too small first string */
107 while (size
< new_size
)
109 data
= tcc_realloc(cstr
->data_allocated
, size
);
111 error("memory full");
112 cstr
->data_allocated
= data
;
113 cstr
->size_allocated
= size
;
118 ST_INLN
void cstr_ccat(CString
*cstr
, int ch
)
121 size
= cstr
->size
+ 1;
122 if (size
> cstr
->size_allocated
)
123 cstr_realloc(cstr
, size
);
124 ((unsigned char *)cstr
->data
)[size
- 1] = ch
;
128 ST_FUNC
void cstr_cat(CString
*cstr
, const char *str
)
140 /* add a wide char */
141 ST_FUNC
void cstr_wccat(CString
*cstr
, int ch
)
144 size
= cstr
->size
+ sizeof(nwchar_t
);
145 if (size
> cstr
->size_allocated
)
146 cstr_realloc(cstr
, size
);
147 *(nwchar_t
*)(((unsigned char *)cstr
->data
) + size
- sizeof(nwchar_t
)) = ch
;
151 ST_FUNC
void cstr_new(CString
*cstr
)
153 memset(cstr
, 0, sizeof(CString
));
156 /* free string and reset it to NULL */
157 ST_FUNC
void cstr_free(CString
*cstr
)
159 tcc_free(cstr
->data_allocated
);
164 ST_FUNC
void add_char(CString
*cstr
, int c
)
166 if (c
== '\'' || c
== '\"' || c
== '\\') {
167 /* XXX: could be more precise if char or string */
168 cstr_ccat(cstr
, '\\');
170 if (c
>= 32 && c
<= 126) {
173 cstr_ccat(cstr
, '\\');
175 cstr_ccat(cstr
, 'n');
177 cstr_ccat(cstr
, '0' + ((c
>> 6) & 7));
178 cstr_ccat(cstr
, '0' + ((c
>> 3) & 7));
179 cstr_ccat(cstr
, '0' + (c
& 7));
184 /* ------------------------------------------------------------------------- */
185 /* allocate a new token */
186 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
188 TokenSym
*ts
, **ptable
;
191 if (tok_ident
>= SYM_FIRST_ANOM
)
192 error("memory full");
194 /* expand token table if needed */
195 i
= tok_ident
- TOK_IDENT
;
196 if ((i
% TOK_ALLOC_INCR
) == 0) {
197 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
199 error("memory full");
200 table_ident
= ptable
;
203 ts
= tcc_malloc(sizeof(TokenSym
) + len
);
205 ts
->tok
= tok_ident
++;
206 ts
->sym_define
= NULL
;
207 ts
->sym_label
= NULL
;
208 ts
->sym_struct
= NULL
;
209 ts
->sym_identifier
= NULL
;
211 ts
->hash_next
= NULL
;
212 memcpy(ts
->str
, str
, len
);
218 #define TOK_HASH_INIT 1
219 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
221 /* find a token and add it if not found */
222 ST_FUNC TokenSym
*tok_alloc(const char *str
, int len
)
230 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
231 h
&= (TOK_HASH_SIZE
- 1);
233 pts
= &hash_ident
[h
];
238 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
240 pts
= &(ts
->hash_next
);
242 return tok_alloc_new(pts
, str
, len
);
245 /* XXX: buffer overflow */
246 /* XXX: float tokens */
247 ST_FUNC
char *get_tok_str(int v
, CValue
*cv
)
249 static char buf
[STRING_MAX_SIZE
+ 1];
250 static CString cstr_buf
;
255 /* NOTE: to go faster, we give a fixed buffer for small strings */
256 cstr_reset(&cstr_buf
);
258 cstr_buf
.size_allocated
= sizeof(buf
);
264 /* XXX: not quite exact, but only useful for testing */
265 sprintf(p
, "%u", cv
->ui
);
269 /* XXX: not quite exact, but only useful for testing */
271 sprintf(p
, "%u", (unsigned)cv
->ull
);
273 sprintf(p
, "%Lu", cv
->ull
);
277 cstr_ccat(&cstr_buf
, 'L');
279 cstr_ccat(&cstr_buf
, '\'');
280 add_char(&cstr_buf
, cv
->i
);
281 cstr_ccat(&cstr_buf
, '\'');
282 cstr_ccat(&cstr_buf
, '\0');
286 len
= cstr
->size
- 1;
288 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
289 cstr_ccat(&cstr_buf
, '\0');
292 cstr_ccat(&cstr_buf
, 'L');
295 cstr_ccat(&cstr_buf
, '\"');
297 len
= cstr
->size
- 1;
299 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
301 len
= (cstr
->size
/ sizeof(nwchar_t
)) - 1;
303 add_char(&cstr_buf
, ((nwchar_t
*)cstr
->data
)[i
]);
305 cstr_ccat(&cstr_buf
, '\"');
306 cstr_ccat(&cstr_buf
, '\0');
315 return strcpy(p
, "...");
317 return strcpy(p
, "<<=");
319 return strcpy(p
, ">>=");
322 /* search in two bytes table */
323 const unsigned char *q
= tok_two_chars
;
336 } else if (v
< tok_ident
) {
337 return table_ident
[v
- TOK_IDENT
]->str
;
338 } else if (v
>= SYM_FIRST_ANOM
) {
339 /* special name for anonymous symbol */
340 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
342 /* should never happen */
347 return cstr_buf
.data
;
350 /* fill input buffer and peek next char */
351 static int tcc_peekc_slow(BufferedFile
*bf
)
354 /* only tries to read if really end of buffer */
355 if (bf
->buf_ptr
>= bf
->buf_end
) {
357 #if defined(PARSE_DEBUG)
362 len
= read(bf
->fd
, bf
->buffer
, len
);
369 bf
->buf_ptr
= bf
->buffer
;
370 bf
->buf_end
= bf
->buffer
+ len
;
371 *bf
->buf_end
= CH_EOB
;
373 if (bf
->buf_ptr
< bf
->buf_end
) {
374 return bf
->buf_ptr
[0];
376 bf
->buf_ptr
= bf
->buf_end
;
381 /* return the current character, handling end of block if necessary
383 ST_FUNC
int handle_eob(void)
385 return tcc_peekc_slow(file
);
388 /* read next char from current input file and handle end of input buffer */
389 ST_INLN
void inp(void)
391 ch
= *(++(file
->buf_ptr
));
392 /* end of buffer/file handling */
397 /* handle '\[\r]\n' */
398 static int handle_stray_noerror(void)
405 } else if (ch
== '\r') {
419 static void handle_stray(void)
421 if (handle_stray_noerror())
422 error("stray '\\' in program");
425 /* skip the stray and handle the \\n case. Output an error if
426 incorrect char after the stray */
427 static int handle_stray1(uint8_t *p
)
431 if (p
>= file
->buf_end
) {
448 /* handle just the EOB case, but not stray */
449 #define PEEKC_EOB(c, p)\
460 /* handle the complicated stray case */
466 c = handle_stray1(p);\
471 /* input with '\[\r]\n' handling. Note that this function cannot
472 handle other characters after '\', so you cannot call it inside
473 strings or comments */
474 ST_FUNC
void minp(void)
482 /* single line C++ comments */
483 static uint8_t *parse_line_comment(uint8_t *p
)
491 if (c
== '\n' || c
== CH_EOF
) {
493 } else if (c
== '\\') {
502 } else if (c
== '\r') {
520 ST_FUNC
uint8_t *parse_comment(uint8_t *p
)
529 if (c
== '\n' || c
== '*' || c
== '\\')
533 if (c
== '\n' || c
== '*' || c
== '\\')
537 /* now we can handle all the cases */
541 } else if (c
== '*') {
547 } else if (c
== '/') {
549 } else if (c
== '\\') {
554 /* skip '\[\r]\n', otherwise just skip the stray */
560 } else if (c
== '\r') {
577 /* stray, eob or eof */
582 error("unexpected end of file in comment");
583 } else if (c
== '\\') {
595 static inline void skip_spaces(void)
601 static inline int check_space(int t
, int *spc
)
612 /* parse a string without interpreting escapes */
613 static uint8_t *parse_pp_string(uint8_t *p
,
614 int sep
, CString
*str
)
622 } else if (c
== '\\') {
628 /* XXX: indicate line number of start of string */
629 error("missing terminating %c character", sep
);
630 } else if (c
== '\\') {
631 /* escape : just skip \[\r]\n */
636 } else if (c
== '\r') {
639 expect("'\n' after '\r'");
642 } else if (c
== CH_EOF
) {
643 goto unterminated_string
;
646 cstr_ccat(str
, '\\');
652 } else if (c
== '\n') {
655 } else if (c
== '\r') {
659 cstr_ccat(str
, '\r');
675 /* skip block of text until #else, #elif or #endif. skip also pairs of
677 static void preprocess_skip(void)
679 int a
, start_of_line
, c
, in_warn_or_error
;
686 in_warn_or_error
= 0;
707 } else if (c
== '\\') {
708 ch
= file
->buf_ptr
[0];
709 handle_stray_noerror();
716 if (in_warn_or_error
)
718 p
= parse_pp_string(p
, c
, NULL
);
722 if (in_warn_or_error
)
729 p
= parse_comment(p
);
730 } else if (ch
== '/') {
731 p
= parse_line_comment(p
);
741 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
743 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
745 else if (tok
== TOK_ENDIF
)
747 else if( tok
== TOK_ERROR
|| tok
== TOK_WARNING
)
748 in_warn_or_error
= 1;
762 /* ParseState handling */
764 /* XXX: currently, no include file info is stored. Thus, we cannot display
765 accurate messages if the function or data definition spans multiple
768 /* save current parse state in 's' */
769 ST_FUNC
void save_parse_state(ParseState
*s
)
771 s
->line_num
= file
->line_num
;
772 s
->macro_ptr
= macro_ptr
;
777 /* restore parse state from 's' */
778 ST_FUNC
void restore_parse_state(ParseState
*s
)
780 file
->line_num
= s
->line_num
;
781 macro_ptr
= s
->macro_ptr
;
786 /* return the number of additional 'ints' necessary to store the
788 static inline int tok_ext_size(int t
)
802 error("unsupported token");
809 return LDOUBLE_SIZE
/ 4;
815 /* token string handling */
817 ST_INLN
void tok_str_new(TokenString
*s
)
821 s
->allocated_len
= 0;
822 s
->last_line_num
= -1;
825 ST_FUNC
void tok_str_free(int *str
)
830 static int *tok_str_realloc(TokenString
*s
)
834 if (s
->allocated_len
== 0) {
837 len
= s
->allocated_len
* 2;
839 str
= tcc_realloc(s
->str
, len
* sizeof(int));
841 error("memory full");
842 s
->allocated_len
= len
;
847 ST_FUNC
void tok_str_add(TokenString
*s
, int t
)
853 if (len
>= s
->allocated_len
)
854 str
= tok_str_realloc(s
);
859 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
866 /* allocate space for worst case */
867 if (len
+ TOK_MAX_SIZE
> s
->allocated_len
)
868 str
= tok_str_realloc(s
);
877 str
[len
++] = cv
->tab
[0];
886 nb_words
= (sizeof(CString
) + cv
->cstr
->size
+ 3) >> 2;
887 while ((len
+ nb_words
) > s
->allocated_len
)
888 str
= tok_str_realloc(s
);
889 cstr
= (CString
*)(str
+ len
);
891 cstr
->size
= cv
->cstr
->size
;
892 cstr
->data_allocated
= NULL
;
893 cstr
->size_allocated
= cstr
->size
;
894 memcpy((char *)cstr
+ sizeof(CString
),
895 cv
->cstr
->data
, cstr
->size
);
902 #if LDOUBLE_SIZE == 8
905 str
[len
++] = cv
->tab
[0];
906 str
[len
++] = cv
->tab
[1];
908 #if LDOUBLE_SIZE == 12
910 str
[len
++] = cv
->tab
[0];
911 str
[len
++] = cv
->tab
[1];
912 str
[len
++] = cv
->tab
[2];
913 #elif LDOUBLE_SIZE == 16
915 str
[len
++] = cv
->tab
[0];
916 str
[len
++] = cv
->tab
[1];
917 str
[len
++] = cv
->tab
[2];
918 str
[len
++] = cv
->tab
[3];
919 #elif LDOUBLE_SIZE != 8
920 #error add long double size support
929 /* add the current parse token in token string 's' */
930 ST_FUNC
void tok_str_add_tok(TokenString
*s
)
934 /* save line number info */
935 if (file
->line_num
!= s
->last_line_num
) {
936 s
->last_line_num
= file
->line_num
;
937 cval
.i
= s
->last_line_num
;
938 tok_str_add2(s
, TOK_LINENUM
, &cval
);
940 tok_str_add2(s
, tok
, &tokc
);
943 /* get a token from an integer array and increment pointer
944 accordingly. we code it as a macro to avoid pointer aliasing. */
945 static inline void TOK_GET(int *t
, const int **pp
, CValue
*cv
)
963 cv
->cstr
= (CString
*)p
;
964 cv
->cstr
->data
= (char *)p
+ sizeof(CString
);
965 p
+= (sizeof(CString
) + cv
->cstr
->size
+ 3) >> 2;
973 #if LDOUBLE_SIZE == 16
975 #elif LDOUBLE_SIZE == 12
977 #elif LDOUBLE_SIZE == 8
980 # error add long double size support
993 static int macro_is_equal(const int *a
, const int *b
)
995 char buf
[STRING_MAX_SIZE
+ 1];
999 TOK_GET(&t
, &a
, &cv
);
1000 pstrcpy(buf
, sizeof buf
, get_tok_str(t
, &cv
));
1001 TOK_GET(&t
, &b
, &cv
);
1002 if (strcmp(buf
, get_tok_str(t
, &cv
)))
1008 /* defines handling */
1009 ST_INLN
void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
1014 if (s
&& !macro_is_equal(s
->d
, str
))
1015 warning("%s redefined", get_tok_str(v
, NULL
));
1017 s
= sym_push2(&define_stack
, v
, macro_type
, 0);
1019 s
->next
= first_arg
;
1020 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
1023 /* undefined a define symbol. Its name is just set to zero */
1024 ST_FUNC
void define_undef(Sym
*s
)
1028 if (v
>= TOK_IDENT
&& v
< tok_ident
)
1029 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
1033 ST_INLN Sym
*define_find(int v
)
1036 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1038 return table_ident
[v
]->sym_define
;
1041 /* free define stack until top reaches 'b' */
1042 ST_FUNC
void free_defines(Sym
*b
)
1050 /* do not free args or predefined defines */
1052 tok_str_free(top
->d
);
1054 if (v
>= TOK_IDENT
&& v
< tok_ident
)
1055 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
1063 ST_FUNC Sym
*label_find(int v
)
1066 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
1068 return table_ident
[v
]->sym_label
;
1071 ST_FUNC Sym
*label_push(Sym
**ptop
, int v
, int flags
)
1074 s
= sym_push2(ptop
, v
, 0, 0);
1076 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
1077 if (ptop
== &global_label_stack
) {
1078 /* modify the top most local identifier, so that
1079 sym_identifier will point to 's' when popped */
1081 ps
= &(*ps
)->prev_tok
;
1088 /* pop labels until element last is reached. Look if any labels are
1089 undefined. Define symbols if '&&label' was used. */
1090 ST_FUNC
void label_pop(Sym
**ptop
, Sym
*slast
)
1093 for(s
= *ptop
; s
!= slast
; s
= s1
) {
1095 if (s
->r
== LABEL_DECLARED
) {
1096 warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
1097 } else if (s
->r
== LABEL_FORWARD
) {
1098 error("label '%s' used but not defined",
1099 get_tok_str(s
->v
, NULL
));
1102 /* define corresponding symbol. A size of
1104 put_extern_sym(s
, cur_text_section
, s
->jnext
, 1);
1108 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
1114 /* eval an expression for #if/#elif */
1115 static int expr_preprocess(void)
1121 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1122 next(); /* do macro subst */
1123 if (tok
== TOK_DEFINED
) {
1128 c
= define_find(tok
) != 0;
1133 } else if (tok
>= TOK_IDENT
) {
1134 /* if undefined macro */
1138 tok_str_add_tok(&str
);
1140 tok_str_add(&str
, -1); /* simulate end of file */
1141 tok_str_add(&str
, 0);
1142 /* now evaluate C constant expression */
1143 macro_ptr
= str
.str
;
1147 tok_str_free(str
.str
);
1151 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
1152 static void tok_print(int *str
)
1159 TOK_GET(&t
, &str
, &cval
);
1162 printf("%s", get_tok_str(t
, &cval
));
1168 /* parse after #define */
1169 ST_FUNC
void parse_define(void)
1171 Sym
*s
, *first
, **ps
;
1172 int v
, t
, varg
, is_vaargs
, spc
;
1177 error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
1178 /* XXX: should check if same macro (ANSI) */
1181 /* '(' must be just after macro definition for MACRO_FUNC */
1186 while (tok
!= ')') {
1190 if (varg
== TOK_DOTS
) {
1191 varg
= TOK___VA_ARGS__
;
1193 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
1197 if (varg
< TOK_IDENT
)
1198 error("badly punctuated parameter list");
1199 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
1212 /* EOF testing necessary for '-D' handling */
1213 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1214 /* remove spaces around ## and after '#' */
1215 if (TOK_TWOSHARPS
== tok
) {
1219 } else if ('#' == tok
) {
1221 } else if (check_space(tok
, &spc
)) {
1224 tok_str_add2(&str
, tok
, &tokc
);
1229 --str
.len
; /* remove trailing space */
1230 tok_str_add(&str
, 0);
1232 printf("define %s %d: ", get_tok_str(v
, NULL
), t
);
1235 define_push(v
, t
, str
.str
, first
);
1238 static inline int hash_cached_include(int type
, const char *filename
)
1240 const unsigned char *s
;
1244 h
= TOK_HASH_FUNC(h
, type
);
1247 h
= TOK_HASH_FUNC(h
, *s
);
1250 h
&= (CACHED_INCLUDES_HASH_SIZE
- 1);
1254 /* XXX: use a token or a hash table to accelerate matching ? */
1255 static CachedInclude
*search_cached_include(TCCState
*s1
,
1256 int type
, const char *filename
)
1260 h
= hash_cached_include(type
, filename
);
1261 i
= s1
->cached_includes_hash
[h
];
1265 e
= s1
->cached_includes
[i
- 1];
1266 if (e
->type
== type
&& !PATHCMP(e
->filename
, filename
))
1273 static inline void add_cached_include(TCCState
*s1
, int type
,
1274 const char *filename
, int ifndef_macro
)
1279 if (search_cached_include(s1
, type
, filename
))
1282 printf("adding cached '%s' %s\n", filename
, get_tok_str(ifndef_macro
, NULL
));
1284 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
1288 strcpy(e
->filename
, filename
);
1289 e
->ifndef_macro
= ifndef_macro
;
1290 dynarray_add((void ***)&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
1291 /* add in hash table */
1292 h
= hash_cached_include(type
, filename
);
1293 e
->hash_next
= s1
->cached_includes_hash
[h
];
1294 s1
->cached_includes_hash
[h
] = s1
->nb_cached_includes
;
1297 static void pragma_parse(TCCState
*s1
)
1302 if (tok
== TOK_pack
) {
1305 #pragma pack(1) // set
1306 #pragma pack() // reset to default
1307 #pragma pack(push,1) // push & set
1308 #pragma pack(pop) // restore previous
1312 if (tok
== TOK_ASM_pop
) {
1314 if (s1
->pack_stack_ptr
<= s1
->pack_stack
) {
1316 error("out of pack stack");
1318 s1
->pack_stack_ptr
--;
1322 if (tok
== TOK_ASM_push
) {
1324 if (s1
->pack_stack_ptr
>= s1
->pack_stack
+ PACK_STACK_SIZE
- 1)
1326 s1
->pack_stack_ptr
++;
1329 if (tok
!= TOK_CINT
) {
1331 error("invalid pack pragma");
1334 if (val
< 1 || val
> 16 || (val
& (val
- 1)) != 0)
1338 *s1
->pack_stack_ptr
= val
;
1344 /* is_bof is true if first non space token at beginning of file */
1345 ST_FUNC
void preprocess(int is_bof
)
1347 TCCState
*s1
= tcc_state
;
1348 int i
, c
, n
, saved_parse_flags
;
1352 saved_parse_flags
= parse_flags
;
1353 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
|
1354 PARSE_FLAG_LINEFEED
;
1364 s
= define_find(tok
);
1365 /* undefine symbol by putting an invalid name */
1370 case TOK_INCLUDE_NEXT
:
1371 ch
= file
->buf_ptr
[0];
1372 /* XXX: incorrect if comments : use next_nomacro with a special mode */
1377 } else if (ch
== '\"') {
1382 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
1383 if ((q
- buf
) < sizeof(buf
) - 1)
1386 if (handle_stray_noerror() == 0)
1394 /* eat all spaces and comments after include */
1395 /* XXX: slightly incorrect */
1396 while (ch1
!= '\n' && ch1
!= CH_EOF
)
1400 /* computed #include : either we have only strings or
1401 we have anything enclosed in '<>' */
1404 if (tok
== TOK_STR
) {
1405 while (tok
!= TOK_LINEFEED
) {
1406 if (tok
!= TOK_STR
) {
1408 error("'#include' expects \"FILENAME\" or <FILENAME>");
1410 pstrcat(buf
, sizeof(buf
), (char *)tokc
.cstr
->data
);
1416 while (tok
!= TOK_LINEFEED
) {
1417 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
1421 /* check syntax and remove '<>' */
1422 if (len
< 2 || buf
[0] != '<' || buf
[len
- 1] != '>')
1423 goto include_syntax
;
1424 memmove(buf
, buf
+ 1, len
- 2);
1425 buf
[len
- 2] = '\0';
1430 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
1431 error("#include recursion too deep");
1433 n
= s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
1434 for (i
= -2; i
< n
; ++i
) {
1435 char buf1
[sizeof file
->filename
];
1442 /* check absolute include path */
1443 if (!IS_ABSPATH(buf
))
1447 } else if (i
== -1) {
1448 /* search in current dir if "header.h" */
1451 size
= tcc_basename(file
->filename
) - file
->filename
;
1452 memcpy(buf1
, file
->filename
, size
);
1456 /* search in all the include paths */
1457 if (i
< s1
->nb_include_paths
)
1458 path
= s1
->include_paths
[i
];
1460 path
= s1
->sysinclude_paths
[i
- s1
->nb_include_paths
];
1461 pstrcpy(buf1
, sizeof(buf1
), path
);
1462 pstrcat(buf1
, sizeof(buf1
), "/");
1465 pstrcat(buf1
, sizeof(buf1
), buf
);
1467 e
= search_cached_include(s1
, c
, buf1
);
1468 if (e
&& define_find(e
->ifndef_macro
)) {
1469 /* no need to parse the include because the 'ifndef macro'
1472 printf("%s: skipping %s\n", file
->filename
, buf
);
1476 f
= tcc_open(s1
, buf1
);
1481 if (tok
== TOK_INCLUDE_NEXT
) {
1492 printf("%s: including %s\n", file
->filename
, buf1
);
1494 /* update target deps */
1495 dynarray_add((void ***)&s1
->target_deps
, &s1
->nb_target_deps
,
1498 /* XXX: fix current line init */
1499 /* push current file in stack */
1500 *s1
->include_stack_ptr
++ = file
;
1502 pstrcpy(f
->inc_filename
, sizeof(f
->inc_filename
), buf1
);
1504 /* add include file debug info */
1506 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1508 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
1509 ch
= file
->buf_ptr
[0];
1512 error("include file '%s' not found", buf
);
1519 c
= expr_preprocess();
1525 if (tok
< TOK_IDENT
)
1526 error("invalid argument for '#if%sdef'", c
? "n" : "");
1530 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
1532 file
->ifndef_macro
= tok
;
1535 c
= (define_find(tok
) != 0) ^ c
;
1537 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
1538 error("memory full");
1539 *s1
->ifdef_stack_ptr
++ = c
;
1542 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1543 error("#else without matching #if");
1544 if (s1
->ifdef_stack_ptr
[-1] & 2)
1545 error("#else after #else");
1546 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
1549 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1550 error("#elif without matching #if");
1551 c
= s1
->ifdef_stack_ptr
[-1];
1553 error("#elif after #else");
1554 /* last #if/#elif expression was true: we skip */
1557 c
= expr_preprocess();
1558 s1
->ifdef_stack_ptr
[-1] = c
;
1560 if (s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
+ 1)
1561 file
->ifndef_macro
= 0;
1571 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
1572 error("#endif without matching #if");
1573 s1
->ifdef_stack_ptr
--;
1574 /* '#ifndef macro' was at the start of file. Now we check if
1575 an '#endif' is exactly at the end of file */
1576 if (file
->ifndef_macro
&&
1577 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
1578 file
->ifndef_macro_saved
= file
->ifndef_macro
;
1579 /* need to set to zero to avoid false matches if another
1580 #ifndef at middle of file */
1581 file
->ifndef_macro
= 0;
1582 while (tok
!= TOK_LINEFEED
)
1584 tok_flags
|= TOK_FLAG_ENDIF
;
1590 if (tok
!= TOK_CINT
)
1592 file
->line_num
= tokc
.i
- 1; /* the line number will be incremented after */
1594 if (tok
!= TOK_LINEFEED
) {
1597 pstrcpy(file
->filename
, sizeof(file
->filename
),
1598 (char *)tokc
.cstr
->data
);
1604 ch
= file
->buf_ptr
[0];
1607 while (ch
!= '\n' && ch
!= CH_EOF
) {
1608 if ((q
- buf
) < sizeof(buf
) - 1)
1611 if (handle_stray_noerror() == 0)
1618 error("#error %s", buf
);
1620 warning("#warning %s", buf
);
1626 if (tok
== TOK_LINEFEED
|| tok
== '!' || tok
== TOK_PPNUM
) {
1627 /* '!' is ignored to allow C scripts. numbers are ignored
1628 to emulate cpp behaviour */
1630 if (!(saved_parse_flags
& PARSE_FLAG_ASM_COMMENTS
))
1631 warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
1635 /* ignore other preprocess commands or #! for C scripts */
1636 while (tok
!= TOK_LINEFEED
)
1639 parse_flags
= saved_parse_flags
;
1642 /* evaluate escape codes in a string. */
1643 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
1658 case '0': case '1': case '2': case '3':
1659 case '4': case '5': case '6': case '7':
1660 /* at most three octal digits */
1665 n
= n
* 8 + c
- '0';
1669 n
= n
* 8 + c
- '0';
1674 goto add_char_nonext
;
1682 if (c
>= 'a' && c
<= 'f')
1684 else if (c
>= 'A' && c
<= 'F')
1694 goto add_char_nonext
;
1718 goto invalid_escape
;
1728 if (c
>= '!' && c
<= '~')
1729 warning("unknown escape sequence: \'\\%c\'", c
);
1731 warning("unknown escape sequence: \'\\x%x\'", c
);
1738 cstr_ccat(outstr
, c
);
1740 cstr_wccat(outstr
, c
);
1742 /* add a trailing '\0' */
1744 cstr_ccat(outstr
, '\0');
1746 cstr_wccat(outstr
, '\0');
1749 /* we use 64 bit numbers */
1752 /* bn = (bn << shift) | or_val */
1753 static void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
1757 for(i
=0;i
<BN_SIZE
;i
++) {
1759 bn
[i
] = (v
<< shift
) | or_val
;
1760 or_val
= v
>> (32 - shift
);
1764 static void bn_zero(unsigned int *bn
)
1767 for(i
=0;i
<BN_SIZE
;i
++) {
1772 /* parse number in null terminated string 'p' and return it in the
1774 static void parse_number(const char *p
)
1776 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
1778 unsigned int bn
[BN_SIZE
];
1789 goto float_frac_parse
;
1790 } else if (t
== '0') {
1791 if (ch
== 'x' || ch
== 'X') {
1795 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
1801 /* parse all digits. cannot check octal numbers at this stage
1802 because of floating point constants */
1804 if (ch
>= 'a' && ch
<= 'f')
1806 else if (ch
>= 'A' && ch
<= 'F')
1814 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
1816 error("number too long");
1822 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
1823 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
1825 /* NOTE: strtox should support that for hexa numbers, but
1826 non ISOC99 libcs do not support it, so we prefer to do
1828 /* hexadecimal or binary floats */
1829 /* XXX: handle overflows */
1841 } else if (t
>= 'a') {
1843 } else if (t
>= 'A') {
1848 bn_lshift(bn
, shift
, t
);
1855 if (t
>= 'a' && t
<= 'f') {
1857 } else if (t
>= 'A' && t
<= 'F') {
1859 } else if (t
>= '0' && t
<= '9') {
1865 error("invalid digit");
1866 bn_lshift(bn
, shift
, t
);
1871 if (ch
!= 'p' && ch
!= 'P')
1878 } else if (ch
== '-') {
1882 if (ch
< '0' || ch
> '9')
1883 expect("exponent digits");
1884 while (ch
>= '0' && ch
<= '9') {
1885 exp_val
= exp_val
* 10 + ch
- '0';
1888 exp_val
= exp_val
* s
;
1890 /* now we can generate the number */
1891 /* XXX: should patch directly float number */
1892 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
1893 d
= ldexp(d
, exp_val
- frac_bits
);
1898 /* float : should handle overflow */
1900 } else if (t
== 'L') {
1902 #ifdef TCC_TARGET_PE
1907 /* XXX: not large enough */
1908 tokc
.ld
= (long double)d
;
1915 /* decimal floats */
1917 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1922 while (ch
>= '0' && ch
<= '9') {
1923 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1929 if (ch
== 'e' || ch
== 'E') {
1930 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1934 if (ch
== '-' || ch
== '+') {
1935 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1940 if (ch
< '0' || ch
> '9')
1941 expect("exponent digits");
1942 while (ch
>= '0' && ch
<= '9') {
1943 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1955 tokc
.f
= strtof(token_buf
, NULL
);
1956 } else if (t
== 'L') {
1958 #ifdef TCC_TARGET_PE
1960 tokc
.d
= strtod(token_buf
, NULL
);
1963 tokc
.ld
= strtold(token_buf
, NULL
);
1967 tokc
.d
= strtod(token_buf
, NULL
);
1971 unsigned long long n
, n1
;
1974 /* integer number */
1977 if (b
== 10 && *q
== '0') {
1984 /* no need for checks except for base 10 / 8 errors */
1987 } else if (t
>= 'a') {
1989 } else if (t
>= 'A') {
1994 error("invalid digit");
1998 /* detect overflow */
1999 /* XXX: this test is not reliable */
2001 error("integer constant overflow");
2004 /* XXX: not exactly ANSI compliant */
2005 if ((n
& 0xffffffff00000000LL
) != 0) {
2010 } else if (n
> 0x7fffffff) {
2021 error("three 'l's in integer constant");
2024 if (tok
== TOK_CINT
)
2026 else if (tok
== TOK_CUINT
)
2030 } else if (t
== 'U') {
2032 error("two 'u's in integer constant");
2034 if (tok
== TOK_CINT
)
2036 else if (tok
== TOK_CLLONG
)
2043 if (tok
== TOK_CINT
|| tok
== TOK_CUINT
)
2049 error("invalid number\n");
2053 #define PARSE2(c1, tok1, c2, tok2) \
2064 /* return next token without macro substitution */
2065 static inline void next_nomacro1(void)
2080 goto keep_tok_flags
;
2087 /* first look if it is in fact an end of buffer */
2088 if (p
>= file
->buf_end
) {
2092 if (p
>= file
->buf_end
)
2105 TCCState
*s1
= tcc_state
;
2106 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
2107 && !(tok_flags
& TOK_FLAG_EOF
)) {
2108 tok_flags
|= TOK_FLAG_EOF
;
2110 goto keep_tok_flags
;
2111 } else if (!(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2113 } else if (s1
->ifdef_stack_ptr
!= file
->ifdef_stack_ptr
) {
2114 error("missing #endif");
2115 } else if (s1
->include_stack_ptr
== s1
->include_stack
) {
2116 /* no include left : end of file. */
2119 tok_flags
&= ~TOK_FLAG_EOF
;
2120 /* pop include file */
2122 /* test if previous '#endif' was after a #ifdef at
2124 if (tok_flags
& TOK_FLAG_ENDIF
) {
2126 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
2128 add_cached_include(s1
, file
->inc_type
, file
->inc_filename
,
2129 file
->ifndef_macro_saved
);
2132 /* add end of include file debug info */
2133 if (tcc_state
->do_debug
) {
2134 put_stabd(N_EINCL
, 0, 0);
2136 /* pop include stack */
2138 s1
->include_stack_ptr
--;
2139 file
= *s1
->include_stack_ptr
;
2148 tok_flags
|= TOK_FLAG_BOL
;
2151 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
2154 goto keep_tok_flags
;
2159 if ((tok_flags
& TOK_FLAG_BOL
) &&
2160 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2162 preprocess(tok_flags
& TOK_FLAG_BOF
);
2168 tok
= TOK_TWOSHARPS
;
2170 if (parse_flags
& PARSE_FLAG_ASM_COMMENTS
) {
2171 p
= parse_line_comment(p
- 1);
2180 case 'a': case 'b': case 'c': case 'd':
2181 case 'e': case 'f': case 'g': case 'h':
2182 case 'i': case 'j': case 'k': case 'l':
2183 case 'm': case 'n': case 'o': case 'p':
2184 case 'q': case 'r': case 's': case 't':
2185 case 'u': case 'v': case 'w': case 'x':
2187 case 'A': case 'B': case 'C': case 'D':
2188 case 'E': case 'F': case 'G': case 'H':
2189 case 'I': case 'J': case 'K':
2190 case 'M': case 'N': case 'O': case 'P':
2191 case 'Q': case 'R': case 'S': case 'T':
2192 case 'U': case 'V': case 'W': case 'X':
2198 h
= TOK_HASH_FUNC(h
, c
);
2202 if (!isidnum_table
[c
-CH_EOF
])
2204 h
= TOK_HASH_FUNC(h
, c
);
2211 /* fast case : no stray found, so we have the full token
2212 and we have already hashed it */
2214 h
&= (TOK_HASH_SIZE
- 1);
2215 pts
= &hash_ident
[h
];
2220 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
2222 pts
= &(ts
->hash_next
);
2224 ts
= tok_alloc_new(pts
, p1
, len
);
2228 cstr_reset(&tokcstr
);
2231 cstr_ccat(&tokcstr
, *p1
);
2237 while (isidnum_table
[c
-CH_EOF
]) {
2238 cstr_ccat(&tokcstr
, c
);
2241 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
2247 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
2249 goto parse_ident_fast
;
2252 if (c
== '\'' || c
== '\"') {
2256 cstr_reset(&tokcstr
);
2257 cstr_ccat(&tokcstr
, 'L');
2258 goto parse_ident_slow
;
2262 case '0': case '1': case '2': case '3':
2263 case '4': case '5': case '6': case '7':
2266 cstr_reset(&tokcstr
);
2267 /* after the first digit, accept digits, alpha, '.' or sign if
2268 prefixed by 'eEpP' */
2272 cstr_ccat(&tokcstr
, c
);
2274 if (!(isnum(c
) || isid(c
) || c
== '.' ||
2275 ((c
== '+' || c
== '-') &&
2276 (t
== 'e' || t
== 'E' || t
== 'p' || t
== 'P'))))
2279 /* We add a trailing '\0' to ease parsing */
2280 cstr_ccat(&tokcstr
, '\0');
2281 tokc
.cstr
= &tokcstr
;
2285 /* special dot handling because it can also start a number */
2288 cstr_reset(&tokcstr
);
2289 cstr_ccat(&tokcstr
, '.');
2291 } else if (c
== '.') {
2311 /* parse the string */
2313 p
= parse_pp_string(p
, sep
, &str
);
2314 cstr_ccat(&str
, '\0');
2316 /* eval the escape (should be done as TOK_PPNUM) */
2317 cstr_reset(&tokcstr
);
2318 parse_escape_string(&tokcstr
, str
.data
, is_long
);
2323 /* XXX: make it portable */
2327 char_size
= sizeof(nwchar_t
);
2328 if (tokcstr
.size
<= char_size
)
2329 error("empty character constant");
2330 if (tokcstr
.size
> 2 * char_size
)
2331 warning("multi-character character constant");
2333 tokc
.i
= *(int8_t *)tokcstr
.data
;
2336 tokc
.i
= *(nwchar_t
*)tokcstr
.data
;
2340 tokc
.cstr
= &tokcstr
;
2354 } else if (c
== '<') {
2372 } else if (c
== '>') {
2390 } else if (c
== '=') {
2403 } else if (c
== '=') {
2416 } else if (c
== '=') {
2429 } else if (c
== '=') {
2432 } else if (c
== '>') {
2440 PARSE2('!', '!', '=', TOK_NE
)
2441 PARSE2('=', '=', '=', TOK_EQ
)
2442 PARSE2('*', '*', '=', TOK_A_MUL
)
2443 PARSE2('%', '%', '=', TOK_A_MOD
)
2444 PARSE2('^', '^', '=', TOK_A_XOR
)
2446 /* comments or operator */
2450 p
= parse_comment(p
);
2452 } else if (c
== '/') {
2453 p
= parse_line_comment(p
);
2455 } else if (c
== '=') {
2475 case '$': /* only used in assembler */
2476 case '@': /* dito */
2481 error("unrecognized character \\x%02x", c
);
2487 #if defined(PARSE_DEBUG)
2488 printf("token = %s\n", get_tok_str(tok
, &tokc
));
2492 /* return next token without macro substitution. Can read input from
2494 static void next_nomacro_spc(void)
2500 TOK_GET(&tok
, ¯o_ptr
, &tokc
);
2501 if (tok
== TOK_LINENUM
) {
2502 file
->line_num
= tokc
.i
;
2511 ST_FUNC
void next_nomacro(void)
2515 } while (is_space(tok
));
2518 /* substitute args in macro_str and return allocated string */
2519 static int *macro_arg_subst(Sym
**nested_list
, const int *macro_str
, Sym
*args
)
2521 int last_tok
, t
, spc
;
2531 TOK_GET(&t
, ¯o_str
, &cval
);
2536 TOK_GET(&t
, ¯o_str
, &cval
);
2539 s
= sym_find2(args
, t
);
2545 TOK_GET(&t
, &st
, &cval
);
2546 if (!check_space(t
, &spc
))
2547 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
2550 cstr_ccat(&cstr
, '\0');
2552 printf("stringize: %s\n", (char *)cstr
.data
);
2556 tok_str_add2(&str
, TOK_STR
, &cval
);
2559 tok_str_add2(&str
, t
, &cval
);
2561 } else if (t
>= TOK_IDENT
) {
2562 s
= sym_find2(args
, t
);
2565 /* if '##' is present before or after, no arg substitution */
2566 if (*macro_str
== TOK_TWOSHARPS
|| last_tok
== TOK_TWOSHARPS
) {
2567 /* special case for var arg macros : ## eats the
2568 ',' if empty VA_ARGS variable. */
2569 /* XXX: test of the ',' is not 100%
2570 reliable. should fix it to avoid security
2572 if (gnu_ext
&& s
->type
.t
&&
2573 last_tok
== TOK_TWOSHARPS
&&
2574 str
.len
>= 2 && str
.str
[str
.len
- 2] == ',') {
2576 /* suppress ',' '##' */
2579 /* suppress '##' and add variable */
2587 TOK_GET(&t1
, &st
, &cval
);
2590 tok_str_add2(&str
, t1
, &cval
);
2594 /* NOTE: the stream cannot be read when macro
2595 substituing an argument */
2596 macro_subst(&str
, nested_list
, st
, NULL
);
2599 tok_str_add(&str
, t
);
2602 tok_str_add2(&str
, t
, &cval
);
2606 tok_str_add(&str
, 0);
2610 static char const ab_month_name
[12][4] =
2612 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2613 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2616 /* do macro substitution of current token with macro 's' and add
2617 result to (tok_str,tok_len). 'nested_list' is the list of all
2618 macros we got inside to avoid recursing. Return non zero if no
2619 substitution needs to be done */
2620 static int macro_subst_tok(TokenString
*tok_str
,
2621 Sym
**nested_list
, Sym
*s
, struct macro_level
**can_read_stream
)
2623 Sym
*args
, *sa
, *sa1
;
2624 int mstr_allocated
, parlevel
, *mstr
, t
, t1
, spc
;
2632 /* if symbol is a macro, prepare substitution */
2633 /* special macros */
2634 if (tok
== TOK___LINE__
) {
2635 snprintf(buf
, sizeof(buf
), "%d", file
->line_num
);
2639 } else if (tok
== TOK___FILE__
) {
2640 cstrval
= file
->filename
;
2642 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
2647 tm
= localtime(&ti
);
2648 if (tok
== TOK___DATE__
) {
2649 snprintf(buf
, sizeof(buf
), "%s %2d %d",
2650 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
2652 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
2653 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
2660 cstr_cat(&cstr
, cstrval
);
2661 cstr_ccat(&cstr
, '\0');
2663 tok_str_add2(tok_str
, t1
, &cval
);
2668 if (s
->type
.t
== MACRO_FUNC
) {
2669 /* NOTE: we do not use next_nomacro to avoid eating the
2670 next token. XXX: find better solution */
2674 while (is_space(t
= *p
) || TOK_LINEFEED
== t
)
2676 if (t
== 0 && can_read_stream
) {
2677 /* end of macro stream: we must look at the token
2678 after in the file */
2679 struct macro_level
*ml
= *can_read_stream
;
2685 *can_read_stream
= ml
-> prev
;
2690 /* XXX: incorrect with comments */
2691 ch
= file
->buf_ptr
[0];
2692 while (is_space(ch
) || ch
== '\n')
2696 if (t
!= '(') /* no macro subst */
2699 /* argument macro */
2704 /* NOTE: empty args are allowed, except if no args */
2706 /* handle '()' case */
2707 if (!args
&& !sa
&& tok
== ')')
2710 error("macro '%s' used with too many args",
2711 get_tok_str(s
->v
, 0));
2714 /* NOTE: non zero sa->t indicates VA_ARGS */
2715 while ((parlevel
> 0 ||
2717 (tok
!= ',' || sa
->type
.t
))) &&
2721 else if (tok
== ')')
2723 if (tok
== TOK_LINEFEED
)
2725 if (!check_space(tok
, &spc
))
2726 tok_str_add2(&str
, tok
, &tokc
);
2730 tok_str_add(&str
, 0);
2731 sa1
= sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, 0);
2735 /* special case for gcc var args: add an empty
2736 var arg argument if it is omitted */
2737 if (sa
&& sa
->type
.t
&& gnu_ext
)
2747 error("macro '%s' used with too few args",
2748 get_tok_str(s
->v
, 0));
2751 /* now subst each arg */
2752 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
2757 tok_str_free(sa
->d
);
2763 sym_push2(nested_list
, s
->v
, 0, 0);
2764 macro_subst(tok_str
, nested_list
, mstr
, can_read_stream
);
2765 /* pop nested defined symbol */
2767 *nested_list
= sa1
->prev
;
2775 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
2776 return the resulting string (which must be freed). */
2777 static inline int *macro_twosharps(const int *macro_str
)
2782 TokenString macro_str1
;
2787 /* we search the first '##' */
2788 for(ptr
= macro_str
;;) {
2789 TOK_GET(&t
, &ptr
, &cval
);
2790 if (t
== TOK_TWOSHARPS
)
2792 /* nothing more to do if end of string */
2797 /* we saw '##', so we need more processing to handle it */
2798 tok_str_new(¯o_str1
);
2799 for(ptr
= macro_str
;;) {
2800 TOK_GET(&tok
, &ptr
, &tokc
);
2803 if (tok
== TOK_TWOSHARPS
)
2805 while (*ptr
== TOK_TWOSHARPS
) {
2807 if (t
&& t
!= TOK_TWOSHARPS
) {
2808 TOK_GET(&t
, &ptr
, &cval
);
2810 /* We concatenate the two tokens */
2812 cstr_cat(&cstr
, get_tok_str(tok
, &tokc
));
2814 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
2815 cstr_ccat(&cstr
, '\0');
2818 file
->buf_ptr
= cstr
.data
;
2821 if (0 == *file
->buf_ptr
)
2823 tok_str_add2(¯o_str1
, tok
, &tokc
);
2825 warning("pasting \"%.*s\" and \"%s\" does not give a valid preprocessing token",
2826 n
, cstr
.data
, (char*)cstr
.data
+ n
);
2832 tok_str_add2(¯o_str1
, tok
, &tokc
);
2834 tok_str_add(¯o_str1
, 0);
2835 return macro_str1
.str
;
2839 /* do macro substitution of macro_str and add result to
2840 (tok_str,tok_len). 'nested_list' is the list of all macros we got
2841 inside to avoid recursing. */
2842 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
2843 const int *macro_str
, struct macro_level
** can_read_stream
)
2850 struct macro_level ml
;
2852 /* first scan for '##' operator handling */
2854 macro_str1
= macro_twosharps(ptr
);
2859 /* NOTE: ptr == NULL can only happen if tokens are read from
2860 file stream due to a macro function call */
2863 TOK_GET(&t
, &ptr
, &cval
);
2868 /* if nested substitution, do nothing */
2869 if (sym_find2(*nested_list
, t
))
2872 if (can_read_stream
)
2873 ml
.prev
= *can_read_stream
, *can_read_stream
= &ml
;
2874 macro_ptr
= (int *)ptr
;
2876 ret
= macro_subst_tok(tok_str
, nested_list
, s
, can_read_stream
);
2877 ptr
= (int *)macro_ptr
;
2879 if (can_read_stream
&& *can_read_stream
== &ml
)
2880 *can_read_stream
= ml
.prev
;
2885 if (!check_space(t
, &spc
))
2886 tok_str_add2(tok_str
, t
, &cval
);
2890 tok_str_free(macro_str1
);
2893 /* return next token with macro substitution */
2894 ST_FUNC
void next(void)
2896 Sym
*nested_list
, *s
;
2898 struct macro_level
*ml
;
2901 if (parse_flags
& PARSE_FLAG_SPACES
)
2906 /* if not reading from macro substituted string, then try
2907 to substitute macros */
2908 if (tok
>= TOK_IDENT
&&
2909 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2910 s
= define_find(tok
);
2912 /* we have a macro: we try to substitute */
2916 if (macro_subst_tok(&str
, &nested_list
, s
, &ml
) == 0) {
2917 /* substitution done, NOTE: maybe empty */
2918 tok_str_add(&str
, 0);
2919 macro_ptr
= str
.str
;
2920 macro_ptr_allocated
= str
.str
;
2927 /* end of macro or end of unget buffer */
2928 if (unget_buffer_enabled
) {
2929 macro_ptr
= unget_saved_macro_ptr
;
2930 unget_buffer_enabled
= 0;
2932 /* end of macro string: free it */
2933 tok_str_free(macro_ptr_allocated
);
2934 macro_ptr_allocated
= NULL
;
2941 /* convert preprocessor tokens into C tokens */
2942 if (tok
== TOK_PPNUM
&&
2943 (parse_flags
& PARSE_FLAG_TOK_NUM
)) {
2944 parse_number((char *)tokc
.cstr
->data
);
2948 /* push back current token and set current token to 'last_tok'. Only
2949 identifier case handled for labels. */
2950 ST_INLN
void unget_tok(int last_tok
)
2954 unget_saved_macro_ptr
= macro_ptr
;
2955 unget_buffer_enabled
= 1;
2956 q
= unget_saved_buffer
;
2959 n
= tok_ext_size(tok
) - 1;
2962 *q
= 0; /* end of token string */
2967 /* better than nothing, but needs extension to handle '-E' option
2969 ST_FUNC
void preprocess_init(TCCState
*s1
)
2971 s1
->include_stack_ptr
= s1
->include_stack
;
2972 /* XXX: move that before to avoid having to initialize
2973 file->ifdef_stack_ptr ? */
2974 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
2975 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
2977 /* XXX: not ANSI compliant: bound checking says error */
2979 s1
->pack_stack
[0] = 0;
2980 s1
->pack_stack_ptr
= s1
->pack_stack
;
2983 ST_FUNC
void preprocess_new()
2989 /* init isid table */
2990 for(i
=CH_EOF
;i
<256;i
++)
2991 isidnum_table
[i
-CH_EOF
] = isid(i
) || isnum(i
);
2993 /* add all tokens */
2995 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
2997 tok_ident
= TOK_IDENT
;
3006 ts
= tok_alloc(p
, r
- p
- 1);
3011 /* Preprocess the current file */
3012 ST_FUNC
int tcc_preprocess(TCCState
*s1
)
3016 BufferedFile
*file_ref
, **iptr
, **iptr_new
;
3017 int token_seen
, line_ref
, d
;
3020 preprocess_init(s1
);
3021 define_start
= define_stack
;
3022 ch
= file
->buf_ptr
[0];
3023 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
3024 parse_flags
= PARSE_FLAG_ASM_COMMENTS
| PARSE_FLAG_PREPROCESS
|
3025 PARSE_FLAG_LINEFEED
| PARSE_FLAG_SPACES
;
3029 iptr
= s1
->include_stack_ptr
;
3033 if (tok
== TOK_EOF
) {
3035 } else if (file
!= file_ref
) {
3037 } else if (tok
== TOK_LINEFEED
) {
3042 } else if (!token_seen
) {
3043 d
= file
->line_num
- line_ref
;
3044 if (file
!= file_ref
|| d
< 0 || d
>= 8) {
3046 iptr_new
= s1
->include_stack_ptr
;
3047 s
= iptr_new
> iptr
? " 1"
3048 : iptr_new
< iptr
? " 2"
3049 : iptr_new
> s1
->include_stack
? " 3"
3053 fprintf(s1
->outfile
, "# %d \"%s\"%s\n", file
->line_num
, file
->filename
, s
);
3056 fputs("\n", s1
->outfile
), --d
;
3058 line_ref
= (file_ref
= file
)->line_num
;
3059 token_seen
= tok
!= TOK_LINEFEED
;
3063 fputs(get_tok_str(tok
, &tokc
), s1
->outfile
);
3065 free_defines(define_start
);