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
22 static const char tcc_keywords
[] =
23 #define DEF(id, str) str "\0"
28 /* WARNING: the content of this string encodes token numbers */
29 static char tok_two_chars
[] = "<=\236>=\235!=\225&&\240||\241++\244--\242==\224<<\1>>\2+=\253-=\255*=\252/=\257%=\245&=\246^=\336|=\374->\313..\250##\266";
31 /* true if isid(c) || isnum(c) */
32 static unsigned char isidnum_table
[256-CH_EOF
];
36 struct macro_level
*prev
;
40 static void next_nomacro(void);
41 static void next_nomacro_spc(void);
42 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
43 const int *macro_str
, struct macro_level
**can_read_stream
);
46 /* allocate a new token */
47 static TokenSym
*tok_alloc_new(TokenSym
**pts
, const char *str
, int len
)
49 TokenSym
*ts
, **ptable
;
52 if (tok_ident
>= SYM_FIRST_ANOM
)
55 /* expand token table if needed */
56 i
= tok_ident
- TOK_IDENT
;
57 if ((i
% TOK_ALLOC_INCR
) == 0) {
58 ptable
= tcc_realloc(table_ident
, (i
+ TOK_ALLOC_INCR
) * sizeof(TokenSym
*));
64 ts
= tcc_malloc(sizeof(TokenSym
) + len
);
66 ts
->tok
= tok_ident
++;
67 ts
->sym_define
= NULL
;
69 ts
->sym_struct
= NULL
;
70 ts
->sym_identifier
= NULL
;
73 memcpy(ts
->str
, str
, len
);
79 #define TOK_HASH_INIT 1
80 #define TOK_HASH_FUNC(h, c) ((h) * 263 + (c))
82 /* find a token and add it if not found */
83 static TokenSym
*tok_alloc(const char *str
, int len
)
91 h
= TOK_HASH_FUNC(h
, ((unsigned char *)str
)[i
]);
92 h
&= (TOK_HASH_SIZE
- 1);
99 if (ts
->len
== len
&& !memcmp(ts
->str
, str
, len
))
101 pts
= &(ts
->hash_next
);
103 return tok_alloc_new(pts
, str
, len
);
106 /* XXX: buffer overflow */
107 /* XXX: float tokens */
108 char *get_tok_str(int v
, CValue
*cv
)
110 static char buf
[STRING_MAX_SIZE
+ 1];
111 static CString cstr_buf
;
117 /* NOTE: to go faster, we give a fixed buffer for small strings */
118 cstr_reset(&cstr_buf
);
120 cstr_buf
.size_allocated
= sizeof(buf
);
126 /* XXX: not quite exact, but only useful for testing */
127 sprintf(p
, "%u", cv
->ui
);
131 /* XXX: not quite exact, but only useful for testing */
132 sprintf(p
, "%Lu", cv
->ull
);
135 cstr_ccat(&cstr_buf
, 'L');
137 cstr_ccat(&cstr_buf
, '\'');
138 add_char(&cstr_buf
, cv
->i
);
139 cstr_ccat(&cstr_buf
, '\'');
140 cstr_ccat(&cstr_buf
, '\0');
144 len
= cstr
->size
- 1;
146 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
147 cstr_ccat(&cstr_buf
, '\0');
150 cstr_ccat(&cstr_buf
, 'L');
153 cstr_ccat(&cstr_buf
, '\"');
155 len
= cstr
->size
- 1;
157 add_char(&cstr_buf
, ((unsigned char *)cstr
->data
)[i
]);
159 len
= (cstr
->size
/ sizeof(nwchar_t
)) - 1;
161 add_char(&cstr_buf
, ((nwchar_t
*)cstr
->data
)[i
]);
163 cstr_ccat(&cstr_buf
, '\"');
164 cstr_ccat(&cstr_buf
, '\0');
173 return strcpy(p
, "...");
175 return strcpy(p
, "<<=");
177 return strcpy(p
, ">>=");
180 /* search in two bytes table */
194 } else if (v
< tok_ident
) {
195 return table_ident
[v
- TOK_IDENT
]->str
;
196 } else if (v
>= SYM_FIRST_ANOM
) {
197 /* special name for anonymous symbol */
198 sprintf(p
, "L.%u", v
- SYM_FIRST_ANOM
);
200 /* should never happen */
205 return cstr_buf
.data
;
208 /* fill input buffer and peek next char */
209 static int tcc_peekc_slow(BufferedFile
*bf
)
212 /* only tries to read if really end of buffer */
213 if (bf
->buf_ptr
>= bf
->buf_end
) {
215 #if defined(PARSE_DEBUG)
220 len
= read(bf
->fd
, bf
->buffer
, len
);
227 bf
->buf_ptr
= bf
->buffer
;
228 bf
->buf_end
= bf
->buffer
+ len
;
229 *bf
->buf_end
= CH_EOB
;
231 if (bf
->buf_ptr
< bf
->buf_end
) {
232 return bf
->buf_ptr
[0];
234 bf
->buf_ptr
= bf
->buf_end
;
239 /* return the current character, handling end of block if necessary
241 static int handle_eob(void)
243 return tcc_peekc_slow(file
);
246 /* read next char from current input file and handle end of input buffer */
247 static inline void inp(void)
249 ch
= *(++(file
->buf_ptr
));
250 /* end of buffer/file handling */
255 /* handle '\[\r]\n' */
256 static int handle_stray_noerror(void)
263 } else if (ch
== '\r') {
277 static void handle_stray(void)
279 if (handle_stray_noerror())
280 error("stray '\\' in program");
283 /* skip the stray and handle the \\n case. Output an error if
284 incorrect char after the stray */
285 static int handle_stray1(uint8_t *p
)
289 if (p
>= file
->buf_end
) {
306 /* handle just the EOB case, but not stray */
307 #define PEEKC_EOB(c, p)\
318 /* handle the complicated stray case */
324 c = handle_stray1(p);\
329 /* input with '\[\r]\n' handling. Note that this function cannot
330 handle other characters after '\', so you cannot call it inside
331 strings or comments */
332 static void minp(void)
340 /* single line C++ comments */
341 static uint8_t *parse_line_comment(uint8_t *p
)
349 if (c
== '\n' || c
== CH_EOF
) {
351 } else if (c
== '\\') {
360 } else if (c
== '\r') {
378 static uint8_t *parse_comment(uint8_t *p
)
387 if (c
== '\n' || c
== '*' || c
== '\\')
391 if (c
== '\n' || c
== '*' || c
== '\\')
395 /* now we can handle all the cases */
399 } else if (c
== '*') {
405 } else if (c
== '/') {
407 } else if (c
== '\\') {
412 /* skip '\[\r]\n', otherwise just skip the stray */
418 } else if (c
== '\r') {
435 /* stray, eob or eof */
440 error("unexpected end of file in comment");
441 } else if (c
== '\\') {
453 static inline void skip_spaces(void)
459 static inline int check_space(int t
, int *spc
)
470 /* parse a string without interpreting escapes */
471 static uint8_t *parse_pp_string(uint8_t *p
,
472 int sep
, CString
*str
)
480 } else if (c
== '\\') {
486 /* XXX: indicate line number of start of string */
487 error("missing terminating %c character", sep
);
488 } else if (c
== '\\') {
489 /* escape : just skip \[\r]\n */
494 } else if (c
== '\r') {
497 expect("'\n' after '\r'");
500 } else if (c
== CH_EOF
) {
501 goto unterminated_string
;
504 cstr_ccat(str
, '\\');
510 } else if (c
== '\n') {
513 } else if (c
== '\r') {
517 cstr_ccat(str
, '\r');
533 /* skip block of text until #else, #elif or #endif. skip also pairs of
535 void preprocess_skip(void)
537 int a
, start_of_line
, c
, in_warn_or_error
;
544 in_warn_or_error
= 0;
565 } else if (c
== '\\') {
566 ch
= file
->buf_ptr
[0];
567 handle_stray_noerror();
574 if (in_warn_or_error
)
576 p
= parse_pp_string(p
, c
, NULL
);
580 if (in_warn_or_error
)
587 p
= parse_comment(p
);
588 } else if (ch
== '/') {
589 p
= parse_line_comment(p
);
599 (tok
== TOK_ELSE
|| tok
== TOK_ELIF
|| tok
== TOK_ENDIF
))
601 if (tok
== TOK_IF
|| tok
== TOK_IFDEF
|| tok
== TOK_IFNDEF
)
603 else if (tok
== TOK_ENDIF
)
605 else if( tok
== TOK_ERROR
|| tok
== TOK_WARNING
)
606 in_warn_or_error
= 1;
620 /* ParseState handling */
622 /* XXX: currently, no include file info is stored. Thus, we cannot display
623 accurate messages if the function or data definition spans multiple
626 /* save current parse state in 's' */
627 void save_parse_state(ParseState
*s
)
629 s
->line_num
= file
->line_num
;
630 s
->macro_ptr
= macro_ptr
;
635 /* restore parse state from 's' */
636 void restore_parse_state(ParseState
*s
)
638 file
->line_num
= s
->line_num
;
639 macro_ptr
= s
->macro_ptr
;
644 /* return the number of additional 'ints' necessary to store the
646 static inline int tok_ext_size(int t
)
660 error("unsupported token");
667 return LDOUBLE_SIZE
/ 4;
673 /* token string handling */
675 static inline void tok_str_new(TokenString
*s
)
679 s
->allocated_len
= 0;
680 s
->last_line_num
= -1;
683 static void tok_str_free(int *str
)
688 static int *tok_str_realloc(TokenString
*s
)
692 if (s
->allocated_len
== 0) {
695 len
= s
->allocated_len
* 2;
697 str
= tcc_realloc(s
->str
, len
* sizeof(int));
699 error("memory full");
700 s
->allocated_len
= len
;
705 static void tok_str_add(TokenString
*s
, int t
)
711 if (len
>= s
->allocated_len
)
712 str
= tok_str_realloc(s
);
717 static void tok_str_add2(TokenString
*s
, int t
, CValue
*cv
)
724 /* allocate space for worst case */
725 if (len
+ TOK_MAX_SIZE
> s
->allocated_len
)
726 str
= tok_str_realloc(s
);
735 str
[len
++] = cv
->tab
[0];
744 nb_words
= (sizeof(CString
) + cv
->cstr
->size
+ 3) >> 2;
745 while ((len
+ nb_words
) > s
->allocated_len
)
746 str
= tok_str_realloc(s
);
747 cstr
= (CString
*)(str
+ len
);
749 cstr
->size
= cv
->cstr
->size
;
750 cstr
->data_allocated
= NULL
;
751 cstr
->size_allocated
= cstr
->size
;
752 memcpy((char *)cstr
+ sizeof(CString
),
753 cv
->cstr
->data
, cstr
->size
);
760 #if LDOUBLE_SIZE == 8
763 str
[len
++] = cv
->tab
[0];
764 str
[len
++] = cv
->tab
[1];
766 #if LDOUBLE_SIZE == 12
768 str
[len
++] = cv
->tab
[0];
769 str
[len
++] = cv
->tab
[1];
770 str
[len
++] = cv
->tab
[2];
771 #elif LDOUBLE_SIZE == 16
773 str
[len
++] = cv
->tab
[0];
774 str
[len
++] = cv
->tab
[1];
775 str
[len
++] = cv
->tab
[2];
776 str
[len
++] = cv
->tab
[3];
777 #elif LDOUBLE_SIZE != 8
778 #error add long double size support
787 /* add the current parse token in token string 's' */
788 static void tok_str_add_tok(TokenString
*s
)
792 /* save line number info */
793 if (file
->line_num
!= s
->last_line_num
) {
794 s
->last_line_num
= file
->line_num
;
795 cval
.i
= s
->last_line_num
;
796 tok_str_add2(s
, TOK_LINENUM
, &cval
);
798 tok_str_add2(s
, tok
, &tokc
);
801 #if LDOUBLE_SIZE == 16
802 #define LDOUBLE_GET(p, cv) \
807 #elif LDOUBLE_SIZE == 12
808 #define LDOUBLE_GET(p, cv) \
812 #elif LDOUBLE_SIZE == 8
813 #define LDOUBLE_GET(p, cv) \
817 #error add long double size support
821 /* get a token from an integer array and increment pointer
822 accordingly. we code it as a macro to avoid pointer aliasing. */
823 #define TOK_GET(t, p, cv) \
838 cv.cstr = (CString *)p; \
839 cv.cstr->data = (char *)p + sizeof(CString);\
840 p += (sizeof(CString) + cv.cstr->size + 3) >> 2;\
850 LDOUBLE_GET(p, cv); \
851 p += LDOUBLE_SIZE / 4; \
858 /* defines handling */
859 static inline void define_push(int v
, int macro_type
, int *str
, Sym
*first_arg
)
863 s
= sym_push2(&define_stack
, v
, macro_type
, (long)str
);
865 table_ident
[v
- TOK_IDENT
]->sym_define
= s
;
868 /* undefined a define symbol. Its name is just set to zero */
869 static void define_undef(Sym
*s
)
873 if (v
>= TOK_IDENT
&& v
< tok_ident
)
874 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
878 static inline Sym
*define_find(int v
)
881 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
883 return table_ident
[v
]->sym_define
;
886 /* free define stack until top reaches 'b' */
887 static void free_defines(Sym
*b
)
895 /* do not free args or predefined defines */
897 tok_str_free((int *)top
->c
);
899 if (v
>= TOK_IDENT
&& v
< tok_ident
)
900 table_ident
[v
- TOK_IDENT
]->sym_define
= NULL
;
908 static Sym
*label_find(int v
)
911 if ((unsigned)v
>= (unsigned)(tok_ident
- TOK_IDENT
))
913 return table_ident
[v
]->sym_label
;
916 static Sym
*label_push(Sym
**ptop
, int v
, int flags
)
919 s
= sym_push2(ptop
, v
, 0, 0);
921 ps
= &table_ident
[v
- TOK_IDENT
]->sym_label
;
922 if (ptop
== &global_label_stack
) {
923 /* modify the top most local identifier, so that
924 sym_identifier will point to 's' when popped */
926 ps
= &(*ps
)->prev_tok
;
933 /* pop labels until element last is reached. Look if any labels are
934 undefined. Define symbols if '&&label' was used. */
935 static void label_pop(Sym
**ptop
, Sym
*slast
)
938 for(s
= *ptop
; s
!= slast
; s
= s1
) {
940 if (s
->r
== LABEL_DECLARED
) {
941 warning("label '%s' declared but not used", get_tok_str(s
->v
, NULL
));
942 } else if (s
->r
== LABEL_FORWARD
) {
943 error("label '%s' used but not defined",
944 get_tok_str(s
->v
, NULL
));
947 /* define corresponding symbol. A size of
949 put_extern_sym(s
, cur_text_section
, (long)s
->next
, 1);
953 table_ident
[s
->v
- TOK_IDENT
]->sym_label
= s
->prev_tok
;
959 /* eval an expression for #if/#elif */
960 static int expr_preprocess(void)
966 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
967 next(); /* do macro subst */
968 if (tok
== TOK_DEFINED
) {
973 c
= define_find(tok
) != 0;
978 } else if (tok
>= TOK_IDENT
) {
979 /* if undefined macro */
983 tok_str_add_tok(&str
);
985 tok_str_add(&str
, -1); /* simulate end of file */
986 tok_str_add(&str
, 0);
987 /* now evaluate C constant expression */
992 tok_str_free(str
.str
);
996 #if defined(PARSE_DEBUG) || defined(PP_DEBUG)
997 static void tok_print(int *str
)
1004 TOK_GET(t
, str
, cval
);
1007 printf("%s", get_tok_str(t
, &cval
));
1013 /* parse after #define */
1014 static void parse_define(void)
1016 Sym
*s
, *first
, **ps
;
1017 int v
, t
, varg
, is_vaargs
, spc
;
1022 error("invalid macro name '%s'", get_tok_str(tok
, &tokc
));
1023 /* XXX: should check if same macro (ANSI) */
1026 /* '(' must be just after macro definition for MACRO_FUNC */
1031 while (tok
!= ')') {
1035 if (varg
== TOK_DOTS
) {
1036 varg
= TOK___VA_ARGS__
;
1038 } else if (tok
== TOK_DOTS
&& gnu_ext
) {
1042 if (varg
< TOK_IDENT
)
1043 error("badly punctuated parameter list");
1044 s
= sym_push2(&define_stack
, varg
| SYM_FIELD
, is_vaargs
, 0);
1057 /* EOF testing necessary for '-D' handling */
1058 while (tok
!= TOK_LINEFEED
&& tok
!= TOK_EOF
) {
1059 /* remove spaces around ## and after '#' */
1060 if (TOK_TWOSHARPS
== tok
) {
1064 } else if ('#' == tok
) {
1066 } else if (check_space(tok
, &spc
)) {
1069 tok_str_add2(&str
, tok
, &tokc
);
1074 --str
.len
; /* remove trailing space */
1075 tok_str_add(&str
, 0);
1077 printf("define %s %d: ", get_tok_str(v
, NULL
), t
);
1080 define_push(v
, t
, str
.str
, first
);
1083 static inline int hash_cached_include(int type
, const char *filename
)
1085 const unsigned char *s
;
1089 h
= TOK_HASH_FUNC(h
, type
);
1092 h
= TOK_HASH_FUNC(h
, *s
);
1095 h
&= (CACHED_INCLUDES_HASH_SIZE
- 1);
1099 /* XXX: use a token or a hash table to accelerate matching ? */
1100 static CachedInclude
*search_cached_include(TCCState
*s1
,
1101 int type
, const char *filename
)
1105 h
= hash_cached_include(type
, filename
);
1106 i
= s1
->cached_includes_hash
[h
];
1110 e
= s1
->cached_includes
[i
- 1];
1111 if (e
->type
== type
&& !PATHCMP(e
->filename
, filename
))
1118 static inline void add_cached_include(TCCState
*s1
, int type
,
1119 const char *filename
, int ifndef_macro
)
1124 if (search_cached_include(s1
, type
, filename
))
1127 printf("adding cached '%s' %s\n", filename
, get_tok_str(ifndef_macro
, NULL
));
1129 e
= tcc_malloc(sizeof(CachedInclude
) + strlen(filename
));
1133 strcpy(e
->filename
, filename
);
1134 e
->ifndef_macro
= ifndef_macro
;
1135 dynarray_add((void ***)&s1
->cached_includes
, &s1
->nb_cached_includes
, e
);
1136 /* add in hash table */
1137 h
= hash_cached_include(type
, filename
);
1138 e
->hash_next
= s1
->cached_includes_hash
[h
];
1139 s1
->cached_includes_hash
[h
] = s1
->nb_cached_includes
;
1142 static void pragma_parse(TCCState
*s1
)
1147 if (tok
== TOK_pack
) {
1150 #pragma pack(1) // set
1151 #pragma pack() // reset to default
1152 #pragma pack(push,1) // push & set
1153 #pragma pack(pop) // restore previous
1157 if (tok
== TOK_ASM_pop
) {
1159 if (s1
->pack_stack_ptr
<= s1
->pack_stack
) {
1161 error("out of pack stack");
1163 s1
->pack_stack_ptr
--;
1167 if (tok
== TOK_ASM_push
) {
1169 if (s1
->pack_stack_ptr
>= s1
->pack_stack
+ PACK_STACK_SIZE
- 1)
1171 s1
->pack_stack_ptr
++;
1174 if (tok
!= TOK_CINT
) {
1176 error("invalid pack pragma");
1179 if (val
< 1 || val
> 16 || (val
& (val
- 1)) != 0)
1183 *s1
->pack_stack_ptr
= val
;
1189 /* is_bof is true if first non space token at beginning of file */
1190 static void preprocess(int is_bof
)
1192 TCCState
*s1
= tcc_state
;
1193 int size
, i
, c
, n
, saved_parse_flags
;
1200 saved_parse_flags
= parse_flags
;
1201 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
|
1202 PARSE_FLAG_LINEFEED
;
1212 s
= define_find(tok
);
1213 /* undefine symbol by putting an invalid name */
1218 case TOK_INCLUDE_NEXT
:
1219 ch
= file
->buf_ptr
[0];
1220 /* XXX: incorrect if comments : use next_nomacro with a special mode */
1225 } else if (ch
== '\"') {
1230 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
1231 if ((q
- buf
) < sizeof(buf
) - 1)
1234 if (handle_stray_noerror() == 0)
1242 /* eat all spaces and comments after include */
1243 /* XXX: slightly incorrect */
1244 while (ch1
!= '\n' && ch1
!= CH_EOF
)
1248 /* computed #include : either we have only strings or
1249 we have anything enclosed in '<>' */
1252 if (tok
== TOK_STR
) {
1253 while (tok
!= TOK_LINEFEED
) {
1254 if (tok
!= TOK_STR
) {
1256 error("'#include' expects \"FILENAME\" or <FILENAME>");
1258 pstrcat(buf
, sizeof(buf
), (char *)tokc
.cstr
->data
);
1264 while (tok
!= TOK_LINEFEED
) {
1265 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
1269 /* check syntax and remove '<>' */
1270 if (len
< 2 || buf
[0] != '<' || buf
[len
- 1] != '>')
1271 goto include_syntax
;
1272 memmove(buf
, buf
+ 1, len
- 2);
1273 buf
[len
- 2] = '\0';
1278 e
= search_cached_include(s1
, c
, buf
);
1279 if (e
&& define_find(e
->ifndef_macro
)) {
1280 /* no need to parse the include because the 'ifndef macro'
1283 printf("%s: skipping %s\n", file
->filename
, buf
);
1286 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
1287 error("#include recursion too deep");
1288 /* push current file in stack */
1289 /* XXX: fix current line init */
1290 *s1
->include_stack_ptr
++ = file
;
1292 /* check absolute include path */
1293 if (IS_ABSPATH(buf
)) {
1294 f
= tcc_open(s1
, buf
);
1299 /* first search in current dir if "header.h" */
1300 size
= tcc_basename(file
->filename
) - file
->filename
;
1301 if (size
> sizeof(buf1
) - 1)
1302 size
= sizeof(buf1
) - 1;
1303 memcpy(buf1
, file
->filename
, size
);
1305 pstrcat(buf1
, sizeof(buf1
), buf
);
1306 f
= tcc_open(s1
, buf1
);
1308 if (tok
== TOK_INCLUDE_NEXT
)
1314 /* now search in all the include paths */
1315 n
= s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
1316 for(i
= 0; i
< n
; i
++) {
1318 if (i
< s1
->nb_include_paths
)
1319 path
= s1
->include_paths
[i
];
1321 path
= s1
->sysinclude_paths
[i
- s1
->nb_include_paths
];
1322 pstrcpy(buf1
, sizeof(buf1
), path
);
1323 pstrcat(buf1
, sizeof(buf1
), "/");
1324 pstrcat(buf1
, sizeof(buf1
), buf
);
1325 f
= tcc_open(s1
, buf1
);
1327 if (tok
== TOK_INCLUDE_NEXT
)
1333 --s1
->include_stack_ptr
;
1334 error("include file '%s' not found", buf
);
1338 printf("%s: including %s\n", file
->filename
, buf1
);
1341 pstrcpy(f
->inc_filename
, sizeof(f
->inc_filename
), buf
);
1343 /* add include file debug info */
1344 if (tcc_state
->do_debug
) {
1345 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1347 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
1348 ch
= file
->buf_ptr
[0];
1356 c
= expr_preprocess();
1362 if (tok
< TOK_IDENT
)
1363 error("invalid argument for '#if%sdef'", c
? "n" : "");
1367 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
1369 file
->ifndef_macro
= tok
;
1372 c
= (define_find(tok
) != 0) ^ c
;
1374 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
1375 error("memory full");
1376 *s1
->ifdef_stack_ptr
++ = c
;
1379 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1380 error("#else without matching #if");
1381 if (s1
->ifdef_stack_ptr
[-1] & 2)
1382 error("#else after #else");
1383 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
1386 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1387 error("#elif without matching #if");
1388 c
= s1
->ifdef_stack_ptr
[-1];
1390 error("#elif after #else");
1391 /* last #if/#elif expression was true: we skip */
1394 c
= expr_preprocess();
1395 s1
->ifdef_stack_ptr
[-1] = c
;
1405 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
1406 error("#endif without matching #if");
1407 s1
->ifdef_stack_ptr
--;
1408 /* '#ifndef macro' was at the start of file. Now we check if
1409 an '#endif' is exactly at the end of file */
1410 if (file
->ifndef_macro
&&
1411 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
1412 file
->ifndef_macro_saved
= file
->ifndef_macro
;
1413 /* need to set to zero to avoid false matches if another
1414 #ifndef at middle of file */
1415 file
->ifndef_macro
= 0;
1416 while (tok
!= TOK_LINEFEED
)
1418 tok_flags
|= TOK_FLAG_ENDIF
;
1424 if (tok
!= TOK_CINT
)
1426 file
->line_num
= tokc
.i
- 1; /* the line number will be incremented after */
1428 if (tok
!= TOK_LINEFEED
) {
1431 pstrcpy(file
->filename
, sizeof(file
->filename
),
1432 (char *)tokc
.cstr
->data
);
1438 ch
= file
->buf_ptr
[0];
1441 while (ch
!= '\n' && ch
!= CH_EOF
) {
1442 if ((q
- buf
) < sizeof(buf
) - 1)
1445 if (handle_stray_noerror() == 0)
1452 error("#error %s", buf
);
1454 warning("#warning %s", buf
);
1460 if (tok
== TOK_LINEFEED
|| tok
== '!' || tok
== TOK_CINT
) {
1461 /* '!' is ignored to allow C scripts. numbers are ignored
1462 to emulate cpp behaviour */
1464 if (!(saved_parse_flags
& PARSE_FLAG_ASM_COMMENTS
))
1465 warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
1469 /* ignore other preprocess commands or #! for C scripts */
1470 while (tok
!= TOK_LINEFEED
)
1473 parse_flags
= saved_parse_flags
;
1476 /* evaluate escape codes in a string. */
1477 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
1492 case '0': case '1': case '2': case '3':
1493 case '4': case '5': case '6': case '7':
1494 /* at most three octal digits */
1499 n
= n
* 8 + c
- '0';
1503 n
= n
* 8 + c
- '0';
1508 goto add_char_nonext
;
1516 if (c
>= 'a' && c
<= 'f')
1518 else if (c
>= 'A' && c
<= 'F')
1528 goto add_char_nonext
;
1552 goto invalid_escape
;
1562 if (c
>= '!' && c
<= '~')
1563 warning("unknown escape sequence: \'\\%c\'", c
);
1565 warning("unknown escape sequence: \'\\x%x\'", c
);
1572 cstr_ccat(outstr
, c
);
1574 cstr_wccat(outstr
, c
);
1576 /* add a trailing '\0' */
1578 cstr_ccat(outstr
, '\0');
1580 cstr_wccat(outstr
, '\0');
1583 /* we use 64 bit numbers */
1586 /* bn = (bn << shift) | or_val */
1587 void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
1591 for(i
=0;i
<BN_SIZE
;i
++) {
1593 bn
[i
] = (v
<< shift
) | or_val
;
1594 or_val
= v
>> (32 - shift
);
1598 void bn_zero(unsigned int *bn
)
1601 for(i
=0;i
<BN_SIZE
;i
++) {
1606 /* parse number in null terminated string 'p' and return it in the
1608 void parse_number(const char *p
)
1610 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
1612 unsigned int bn
[BN_SIZE
];
1623 goto float_frac_parse
;
1624 } else if (t
== '0') {
1625 if (ch
== 'x' || ch
== 'X') {
1629 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
1635 /* parse all digits. cannot check octal numbers at this stage
1636 because of floating point constants */
1638 if (ch
>= 'a' && ch
<= 'f')
1640 else if (ch
>= 'A' && ch
<= 'F')
1648 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
1650 error("number too long");
1656 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
1657 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
1659 /* NOTE: strtox should support that for hexa numbers, but
1660 non ISOC99 libcs do not support it, so we prefer to do
1662 /* hexadecimal or binary floats */
1663 /* XXX: handle overflows */
1675 } else if (t
>= 'a') {
1677 } else if (t
>= 'A') {
1682 bn_lshift(bn
, shift
, t
);
1689 if (t
>= 'a' && t
<= 'f') {
1691 } else if (t
>= 'A' && t
<= 'F') {
1693 } else if (t
>= '0' && t
<= '9') {
1699 error("invalid digit");
1700 bn_lshift(bn
, shift
, t
);
1705 if (ch
!= 'p' && ch
!= 'P')
1712 } else if (ch
== '-') {
1716 if (ch
< '0' || ch
> '9')
1717 expect("exponent digits");
1718 while (ch
>= '0' && ch
<= '9') {
1719 exp_val
= exp_val
* 10 + ch
- '0';
1722 exp_val
= exp_val
* s
;
1724 /* now we can generate the number */
1725 /* XXX: should patch directly float number */
1726 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
1727 d
= ldexp(d
, exp_val
- frac_bits
);
1732 /* float : should handle overflow */
1734 } else if (t
== 'L') {
1737 /* XXX: not large enough */
1738 tokc
.ld
= (long double)d
;
1744 /* decimal floats */
1746 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1751 while (ch
>= '0' && ch
<= '9') {
1752 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1758 if (ch
== 'e' || ch
== 'E') {
1759 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1763 if (ch
== '-' || ch
== '+') {
1764 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1769 if (ch
< '0' || ch
> '9')
1770 expect("exponent digits");
1771 while (ch
>= '0' && ch
<= '9') {
1772 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1784 tokc
.f
= strtof(token_buf
, NULL
);
1785 } else if (t
== 'L') {
1788 tokc
.ld
= strtold(token_buf
, NULL
);
1791 tokc
.d
= strtod(token_buf
, NULL
);
1795 unsigned long long n
, n1
;
1798 /* integer number */
1801 if (b
== 10 && *q
== '0') {
1808 /* no need for checks except for base 10 / 8 errors */
1811 } else if (t
>= 'a') {
1813 } else if (t
>= 'A') {
1818 error("invalid digit");
1822 /* detect overflow */
1823 /* XXX: this test is not reliable */
1825 error("integer constant overflow");
1828 /* XXX: not exactly ANSI compliant */
1829 if ((n
& 0xffffffff00000000LL
) != 0) {
1834 } else if (n
> 0x7fffffff) {
1845 error("three 'l's in integer constant");
1848 if (tok
== TOK_CINT
)
1850 else if (tok
== TOK_CUINT
)
1854 } else if (t
== 'U') {
1856 error("two 'u's in integer constant");
1858 if (tok
== TOK_CINT
)
1860 else if (tok
== TOK_CLLONG
)
1867 if (tok
== TOK_CINT
|| tok
== TOK_CUINT
)
1873 error("invalid number\n");
1877 #define PARSE2(c1, tok1, c2, tok2) \
1888 /* return next token without macro substitution */
1889 static inline void next_nomacro1(void)
1904 goto keep_tok_flags
;
1911 /* first look if it is in fact an end of buffer */
1912 if (p
>= file
->buf_end
) {
1916 if (p
>= file
->buf_end
)
1929 TCCState
*s1
= tcc_state
;
1930 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
1931 && !(tok_flags
& TOK_FLAG_EOF
)) {
1932 tok_flags
|= TOK_FLAG_EOF
;
1934 goto keep_tok_flags
;
1935 } else if (s1
->include_stack_ptr
== s1
->include_stack
||
1936 !(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
1937 /* no include left : end of file. */
1940 tok_flags
&= ~TOK_FLAG_EOF
;
1941 /* pop include file */
1943 /* test if previous '#endif' was after a #ifdef at
1945 if (tok_flags
& TOK_FLAG_ENDIF
) {
1947 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
1949 add_cached_include(s1
, file
->inc_type
, file
->inc_filename
,
1950 file
->ifndef_macro_saved
);
1953 /* add end of include file debug info */
1954 if (tcc_state
->do_debug
) {
1955 put_stabd(N_EINCL
, 0, 0);
1957 /* pop include stack */
1959 s1
->include_stack_ptr
--;
1960 file
= *s1
->include_stack_ptr
;
1969 tok_flags
|= TOK_FLAG_BOL
;
1971 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
1974 goto keep_tok_flags
;
1979 if ((tok_flags
& TOK_FLAG_BOL
) &&
1980 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
1982 preprocess(tok_flags
& TOK_FLAG_BOF
);
1988 tok
= TOK_TWOSHARPS
;
1990 if (parse_flags
& PARSE_FLAG_ASM_COMMENTS
) {
1991 p
= parse_line_comment(p
- 1);
2000 case 'a': case 'b': case 'c': case 'd':
2001 case 'e': case 'f': case 'g': case 'h':
2002 case 'i': case 'j': case 'k': case 'l':
2003 case 'm': case 'n': case 'o': case 'p':
2004 case 'q': case 'r': case 's': case 't':
2005 case 'u': case 'v': case 'w': case 'x':
2007 case 'A': case 'B': case 'C': case 'D':
2008 case 'E': case 'F': case 'G': case 'H':
2009 case 'I': case 'J': case 'K':
2010 case 'M': case 'N': case 'O': case 'P':
2011 case 'Q': case 'R': case 'S': case 'T':
2012 case 'U': case 'V': case 'W': case 'X':
2018 h
= TOK_HASH_FUNC(h
, c
);
2022 if (!isidnum_table
[c
-CH_EOF
])
2024 h
= TOK_HASH_FUNC(h
, c
);
2031 /* fast case : no stray found, so we have the full token
2032 and we have already hashed it */
2034 h
&= (TOK_HASH_SIZE
- 1);
2035 pts
= &hash_ident
[h
];
2040 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
2042 pts
= &(ts
->hash_next
);
2044 ts
= tok_alloc_new(pts
, p1
, len
);
2048 cstr_reset(&tokcstr
);
2051 cstr_ccat(&tokcstr
, *p1
);
2057 while (isidnum_table
[c
-CH_EOF
]) {
2058 cstr_ccat(&tokcstr
, c
);
2061 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
2067 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
2069 goto parse_ident_fast
;
2072 if (c
== '\'' || c
== '\"') {
2076 cstr_reset(&tokcstr
);
2077 cstr_ccat(&tokcstr
, 'L');
2078 goto parse_ident_slow
;
2082 case '0': case '1': case '2': case '3':
2083 case '4': case '5': case '6': case '7':
2086 cstr_reset(&tokcstr
);
2087 /* after the first digit, accept digits, alpha, '.' or sign if
2088 prefixed by 'eEpP' */
2092 cstr_ccat(&tokcstr
, c
);
2094 if (!(isnum(c
) || isid(c
) || c
== '.' ||
2095 ((c
== '+' || c
== '-') &&
2096 (t
== 'e' || t
== 'E' || t
== 'p' || t
== 'P'))))
2099 /* We add a trailing '\0' to ease parsing */
2100 cstr_ccat(&tokcstr
, '\0');
2101 tokc
.cstr
= &tokcstr
;
2105 /* special dot handling because it can also start a number */
2108 cstr_reset(&tokcstr
);
2109 cstr_ccat(&tokcstr
, '.');
2111 } else if (c
== '.') {
2131 /* parse the string */
2133 p
= parse_pp_string(p
, sep
, &str
);
2134 cstr_ccat(&str
, '\0');
2136 /* eval the escape (should be done as TOK_PPNUM) */
2137 cstr_reset(&tokcstr
);
2138 parse_escape_string(&tokcstr
, str
.data
, is_long
);
2143 /* XXX: make it portable */
2147 char_size
= sizeof(nwchar_t
);
2148 if (tokcstr
.size
<= char_size
)
2149 error("empty character constant");
2150 if (tokcstr
.size
> 2 * char_size
)
2151 warning("multi-character character constant");
2153 tokc
.i
= *(int8_t *)tokcstr
.data
;
2156 tokc
.i
= *(nwchar_t
*)tokcstr
.data
;
2160 tokc
.cstr
= &tokcstr
;
2174 } else if (c
== '<') {
2192 } else if (c
== '>') {
2210 } else if (c
== '=') {
2223 } else if (c
== '=') {
2236 } else if (c
== '=') {
2249 } else if (c
== '=') {
2252 } else if (c
== '>') {
2260 PARSE2('!', '!', '=', TOK_NE
)
2261 PARSE2('=', '=', '=', TOK_EQ
)
2262 PARSE2('*', '*', '=', TOK_A_MUL
)
2263 PARSE2('%', '%', '=', TOK_A_MOD
)
2264 PARSE2('^', '^', '=', TOK_A_XOR
)
2266 /* comments or operator */
2270 p
= parse_comment(p
);
2272 } else if (c
== '/') {
2273 p
= parse_line_comment(p
);
2275 } else if (c
== '=') {
2295 case '$': /* only used in assembler */
2296 case '@': /* dito */
2301 error("unrecognized character \\x%02x", c
);
2307 #if defined(PARSE_DEBUG)
2308 printf("token = %s\n", get_tok_str(tok
, &tokc
));
2312 /* return next token without macro substitution. Can read input from
2314 static void next_nomacro_spc(void)
2320 TOK_GET(tok
, macro_ptr
, tokc
);
2321 if (tok
== TOK_LINENUM
) {
2322 file
->line_num
= tokc
.i
;
2331 static void next_nomacro(void)
2335 } while (is_space(tok
));
2338 /* substitute args in macro_str and return allocated string */
2339 static int *macro_arg_subst(Sym
**nested_list
, int *macro_str
, Sym
*args
)
2341 int *st
, last_tok
, t
, spc
;
2350 TOK_GET(t
, macro_str
, cval
);
2355 TOK_GET(t
, macro_str
, cval
);
2358 s
= sym_find2(args
, t
);
2364 TOK_GET(t
, st
, cval
);
2365 if (!check_space(t
, &spc
))
2366 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
2369 cstr_ccat(&cstr
, '\0');
2371 printf("stringize: %s\n", (char *)cstr
.data
);
2375 tok_str_add2(&str
, TOK_STR
, &cval
);
2378 tok_str_add2(&str
, t
, &cval
);
2380 } else if (t
>= TOK_IDENT
) {
2381 s
= sym_find2(args
, t
);
2384 /* if '##' is present before or after, no arg substitution */
2385 if (*macro_str
== TOK_TWOSHARPS
|| last_tok
== TOK_TWOSHARPS
) {
2386 /* special case for var arg macros : ## eats the
2387 ',' if empty VA_ARGS variable. */
2388 /* XXX: test of the ',' is not 100%
2389 reliable. should fix it to avoid security
2391 if (gnu_ext
&& s
->type
.t
&&
2392 last_tok
== TOK_TWOSHARPS
&&
2393 str
.len
>= 2 && str
.str
[str
.len
- 2] == ',') {
2395 /* suppress ',' '##' */
2398 /* suppress '##' and add variable */
2406 TOK_GET(t1
, st
, cval
);
2409 tok_str_add2(&str
, t1
, &cval
);
2413 /* NOTE: the stream cannot be read when macro
2414 substituing an argument */
2415 macro_subst(&str
, nested_list
, st
, NULL
);
2418 tok_str_add(&str
, t
);
2421 tok_str_add2(&str
, t
, &cval
);
2425 tok_str_add(&str
, 0);
2429 static char const ab_month_name
[12][4] =
2431 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2432 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2435 /* do macro substitution of current token with macro 's' and add
2436 result to (tok_str,tok_len). 'nested_list' is the list of all
2437 macros we got inside to avoid recursing. Return non zero if no
2438 substitution needs to be done */
2439 static int macro_subst_tok(TokenString
*tok_str
,
2440 Sym
**nested_list
, Sym
*s
, struct macro_level
**can_read_stream
)
2442 Sym
*args
, *sa
, *sa1
;
2443 int mstr_allocated
, parlevel
, *mstr
, t
, t1
, *p
, spc
;
2450 /* if symbol is a macro, prepare substitution */
2451 /* special macros */
2452 if (tok
== TOK___LINE__
) {
2453 snprintf(buf
, sizeof(buf
), "%d", file
->line_num
);
2457 } else if (tok
== TOK___FILE__
) {
2458 cstrval
= file
->filename
;
2460 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
2465 tm
= localtime(&ti
);
2466 if (tok
== TOK___DATE__
) {
2467 snprintf(buf
, sizeof(buf
), "%s %2d %d",
2468 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
2470 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
2471 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
2478 cstr_cat(&cstr
, cstrval
);
2479 cstr_ccat(&cstr
, '\0');
2481 tok_str_add2(tok_str
, t1
, &cval
);
2486 if (s
->type
.t
== MACRO_FUNC
) {
2487 /* NOTE: we do not use next_nomacro to avoid eating the
2488 next token. XXX: find better solution */
2492 while (is_space(t
= *p
) || TOK_LINEFEED
== t
)
2494 if (t
== 0 && can_read_stream
) {
2495 /* end of macro stream: we must look at the token
2496 after in the file */
2497 struct macro_level
*ml
= *can_read_stream
;
2503 *can_read_stream
= ml
-> prev
;
2508 /* XXX: incorrect with comments */
2509 ch
= file
->buf_ptr
[0];
2510 while (is_space(ch
) || ch
== '\n')
2514 if (t
!= '(') /* no macro subst */
2517 /* argument macro */
2522 /* NOTE: empty args are allowed, except if no args */
2524 /* handle '()' case */
2525 if (!args
&& !sa
&& tok
== ')')
2528 error("macro '%s' used with too many args",
2529 get_tok_str(s
->v
, 0));
2532 /* NOTE: non zero sa->t indicates VA_ARGS */
2533 while ((parlevel
> 0 ||
2535 (tok
!= ',' || sa
->type
.t
))) &&
2539 else if (tok
== ')')
2541 if (tok
== TOK_LINEFEED
)
2543 if (!check_space(tok
, &spc
))
2544 tok_str_add2(&str
, tok
, &tokc
);
2548 tok_str_add(&str
, 0);
2549 sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, (long)str
.str
);
2552 /* special case for gcc var args: add an empty
2553 var arg argument if it is omitted */
2554 if (sa
&& sa
->type
.t
&& gnu_ext
)
2564 error("macro '%s' used with too few args",
2565 get_tok_str(s
->v
, 0));
2568 /* now subst each arg */
2569 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
2574 tok_str_free((int *)sa
->c
);
2580 sym_push2(nested_list
, s
->v
, 0, 0);
2581 macro_subst(tok_str
, nested_list
, mstr
, can_read_stream
);
2582 /* pop nested defined symbol */
2584 *nested_list
= sa1
->prev
;
2592 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
2593 return the resulting string (which must be freed). */
2594 static inline int *macro_twosharps(const int *macro_str
)
2597 const int *ptr
, *saved_macro_ptr
;
2599 const char *p1
, *p2
;
2601 TokenString macro_str1
;
2604 /* we search the first '##' */
2605 for(ptr
= macro_str
;;) {
2606 TOK_GET(t
, ptr
, cval
);
2607 if (t
== TOK_TWOSHARPS
)
2609 /* nothing more to do if end of string */
2614 /* we saw '##', so we need more processing to handle it */
2616 tok_str_new(¯o_str1
);
2617 saved_macro_ptr
= macro_ptr
;
2618 /* XXX: get rid of the use of macro_ptr here */
2619 macro_ptr
= (int *)macro_str
;
2624 if (tok
== TOK_TWOSHARPS
)
2626 while (*macro_ptr
== TOK_TWOSHARPS
) {
2628 if (t
&& t
!= TOK_TWOSHARPS
) {
2629 TOK_GET(t
, macro_ptr
, cval
);
2630 /* We concatenate the two tokens if we have an
2631 identifier or a preprocessing number */
2633 p1
= get_tok_str(tok
, &tokc
);
2634 cstr_cat(&cstr
, p1
);
2635 p2
= get_tok_str(t
, &cval
);
2636 cstr_cat(&cstr
, p2
);
2637 cstr_ccat(&cstr
, '\0');
2639 if ((tok
>= TOK_IDENT
|| tok
== TOK_PPNUM
) &&
2640 (t
>= TOK_IDENT
|| t
== TOK_PPNUM
)) {
2641 if (tok
== TOK_PPNUM
) {
2642 /* if number, then create a number token */
2643 /* NOTE: no need to allocate because
2644 tok_str_add2() does it */
2645 cstr_reset(&tokcstr
);
2648 tokc
.cstr
= &tokcstr
;
2650 /* if identifier, we must do a test to
2651 validate we have a correct identifier */
2652 if (t
== TOK_PPNUM
) {
2662 if (!isnum(c
) && !isid(c
))
2666 ts
= tok_alloc(cstr
.data
, strlen(cstr
.data
));
2667 tok
= ts
->tok
; /* modify current token */
2670 const char *str
= cstr
.data
;
2671 const unsigned char *q
;
2673 /* we look for a valid token */
2674 /* XXX: do more extensive checks */
2675 if (!strcmp(str
, ">>=")) {
2677 } else if (!strcmp(str
, "<<=")) {
2679 } else if (strlen(str
) == 2) {
2680 /* search in two bytes table */
2685 if (q
[0] == str
[0] && q
[1] == str
[1])
2692 /* NOTE: because get_tok_str use a static buffer,
2695 p1
= get_tok_str(tok
, &tokc
);
2696 cstr_cat(&cstr
, p1
);
2697 cstr_ccat(&cstr
, '\0');
2698 p2
= get_tok_str(t
, &cval
);
2699 warning("pasting \"%s\" and \"%s\" does not give a valid preprocessing token", cstr
.data
, p2
);
2700 /* cannot merge tokens: just add them separately */
2701 tok_str_add2(¯o_str1
, tok
, &tokc
);
2702 /* XXX: free associated memory ? */
2709 tok_str_add2(¯o_str1
, tok
, &tokc
);
2711 macro_ptr
= (int *)saved_macro_ptr
;
2713 tok_str_add(¯o_str1
, 0);
2714 return macro_str1
.str
;
2718 /* do macro substitution of macro_str and add result to
2719 (tok_str,tok_len). 'nested_list' is the list of all macros we got
2720 inside to avoid recursing. */
2721 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
2722 const int *macro_str
, struct macro_level
** can_read_stream
)
2729 struct macro_level ml
;
2731 /* first scan for '##' operator handling */
2733 macro_str1
= macro_twosharps(ptr
);
2738 /* NOTE: ptr == NULL can only happen if tokens are read from
2739 file stream due to a macro function call */
2742 TOK_GET(t
, ptr
, cval
);
2747 /* if nested substitution, do nothing */
2748 if (sym_find2(*nested_list
, t
))
2751 if (can_read_stream
)
2752 ml
.prev
= *can_read_stream
, *can_read_stream
= &ml
;
2753 macro_ptr
= (int *)ptr
;
2755 ret
= macro_subst_tok(tok_str
, nested_list
, s
, can_read_stream
);
2756 ptr
= (int *)macro_ptr
;
2758 if (can_read_stream
&& *can_read_stream
== &ml
)
2759 *can_read_stream
= ml
.prev
;
2764 if (!check_space(t
, &spc
))
2765 tok_str_add2(tok_str
, t
, &cval
);
2769 tok_str_free(macro_str1
);
2772 /* return next token with macro substitution */
2773 static void next(void)
2775 Sym
*nested_list
, *s
;
2777 struct macro_level
*ml
;
2780 if (parse_flags
& PARSE_FLAG_SPACES
)
2785 /* if not reading from macro substituted string, then try
2786 to substitute macros */
2787 if (tok
>= TOK_IDENT
&&
2788 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2789 s
= define_find(tok
);
2791 /* we have a macro: we try to substitute */
2795 if (macro_subst_tok(&str
, &nested_list
, s
, &ml
) == 0) {
2796 /* substitution done, NOTE: maybe empty */
2797 tok_str_add(&str
, 0);
2798 macro_ptr
= str
.str
;
2799 macro_ptr_allocated
= str
.str
;
2806 /* end of macro or end of unget buffer */
2807 if (unget_buffer_enabled
) {
2808 macro_ptr
= unget_saved_macro_ptr
;
2809 unget_buffer_enabled
= 0;
2811 /* end of macro string: free it */
2812 tok_str_free(macro_ptr_allocated
);
2819 /* convert preprocessor tokens into C tokens */
2820 if (tok
== TOK_PPNUM
&&
2821 (parse_flags
& PARSE_FLAG_TOK_NUM
)) {
2822 parse_number((char *)tokc
.cstr
->data
);
2826 /* push back current token and set current token to 'last_tok'. Only
2827 identifier case handled for labels. */
2828 static inline void unget_tok(int last_tok
)
2832 unget_saved_macro_ptr
= macro_ptr
;
2833 unget_buffer_enabled
= 1;
2834 q
= unget_saved_buffer
;
2837 n
= tok_ext_size(tok
) - 1;
2840 *q
= 0; /* end of token string */
2845 /* better than nothing, but needs extension to handle '-E' option
2847 static void preprocess_init(TCCState
*s1
)
2849 s1
->include_stack_ptr
= s1
->include_stack
;
2850 /* XXX: move that before to avoid having to initialize
2851 file->ifdef_stack_ptr ? */
2852 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
2853 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
2855 /* XXX: not ANSI compliant: bound checking says error */
2857 s1
->pack_stack
[0] = 0;
2858 s1
->pack_stack_ptr
= s1
->pack_stack
;
2861 void preprocess_new()
2867 /* init isid table */
2868 for(i
=CH_EOF
;i
<256;i
++)
2869 isidnum_table
[i
-CH_EOF
] = isid(i
) || isnum(i
);
2871 /* add all tokens */
2873 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
2875 tok_ident
= TOK_IDENT
;
2884 ts
= tok_alloc(p
, r
- p
- 1);
2889 /* Preprocess the current file */
2890 static int tcc_preprocess(TCCState
*s1
)
2893 BufferedFile
*file_ref
;
2894 int token_seen
, line_ref
;
2896 preprocess_init(s1
);
2897 define_start
= define_stack
;
2898 ch
= file
->buf_ptr
[0];
2899 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
2900 parse_flags
= PARSE_FLAG_ASM_COMMENTS
| PARSE_FLAG_PREPROCESS
|
2901 PARSE_FLAG_LINEFEED
| PARSE_FLAG_SPACES
;
2908 if (tok
== TOK_EOF
) {
2910 } else if (tok
== TOK_LINEFEED
) {
2915 } else if (!token_seen
) {
2916 int d
= file
->line_num
- line_ref
;
2917 if (file
!= file_ref
|| d
< 0 || d
>= 8)
2918 fprintf(s1
->outfile
, "# %d \"%s\"\n", file
->line_num
, file
->filename
);
2921 fputs("\n", s1
->outfile
), --d
;
2922 line_ref
= (file_ref
= file
)->line_num
;
2925 fputs(get_tok_str(tok
, &tokc
), s1
->outfile
);
2927 free_defines(define_start
);