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 i
, c
, n
, saved_parse_flags
;
1197 saved_parse_flags
= parse_flags
;
1198 parse_flags
= PARSE_FLAG_PREPROCESS
| PARSE_FLAG_TOK_NUM
|
1199 PARSE_FLAG_LINEFEED
;
1209 s
= define_find(tok
);
1210 /* undefine symbol by putting an invalid name */
1215 case TOK_INCLUDE_NEXT
:
1216 ch
= file
->buf_ptr
[0];
1217 /* XXX: incorrect if comments : use next_nomacro with a special mode */
1222 } else if (ch
== '\"') {
1227 while (ch
!= c
&& ch
!= '\n' && ch
!= CH_EOF
) {
1228 if ((q
- buf
) < sizeof(buf
) - 1)
1231 if (handle_stray_noerror() == 0)
1239 /* eat all spaces and comments after include */
1240 /* XXX: slightly incorrect */
1241 while (ch1
!= '\n' && ch1
!= CH_EOF
)
1245 /* computed #include : either we have only strings or
1246 we have anything enclosed in '<>' */
1249 if (tok
== TOK_STR
) {
1250 while (tok
!= TOK_LINEFEED
) {
1251 if (tok
!= TOK_STR
) {
1253 error("'#include' expects \"FILENAME\" or <FILENAME>");
1255 pstrcat(buf
, sizeof(buf
), (char *)tokc
.cstr
->data
);
1261 while (tok
!= TOK_LINEFEED
) {
1262 pstrcat(buf
, sizeof(buf
), get_tok_str(tok
, &tokc
));
1266 /* check syntax and remove '<>' */
1267 if (len
< 2 || buf
[0] != '<' || buf
[len
- 1] != '>')
1268 goto include_syntax
;
1269 memmove(buf
, buf
+ 1, len
- 2);
1270 buf
[len
- 2] = '\0';
1275 if (s1
->include_stack_ptr
>= s1
->include_stack
+ INCLUDE_STACK_SIZE
)
1276 error("#include recursion too deep");
1278 n
= s1
->nb_include_paths
+ s1
->nb_sysinclude_paths
;
1279 for (i
= -2; i
< n
; ++i
) {
1280 char buf1
[sizeof file
->filename
];
1287 /* check absolute include path */
1288 if (!IS_ABSPATH(buf
))
1292 } else if (i
== -1) {
1293 /* search in current dir if "header.h" */
1296 size
= tcc_basename(file
->filename
) - file
->filename
;
1297 memcpy(buf1
, file
->filename
, size
);
1301 /* search in all the include paths */
1302 if (i
< s1
->nb_include_paths
)
1303 path
= s1
->include_paths
[i
];
1305 path
= s1
->sysinclude_paths
[i
- s1
->nb_include_paths
];
1306 pstrcpy(buf1
, sizeof(buf1
), path
);
1307 pstrcat(buf1
, sizeof(buf1
), "/");
1310 pstrcat(buf1
, sizeof(buf1
), buf
);
1312 e
= search_cached_include(s1
, c
, buf1
);
1313 if (e
&& define_find(e
->ifndef_macro
)) {
1314 /* no need to parse the include because the 'ifndef macro'
1317 printf("%s: skipping %s\n", file
->filename
, buf
);
1321 f
= tcc_open(s1
, buf1
);
1326 if (tok
== TOK_INCLUDE_NEXT
) {
1337 printf("%s: including %s\n", file
->filename
, buf1
);
1340 /* XXX: fix current line init */
1341 /* push current file in stack */
1342 *s1
->include_stack_ptr
++ = file
;
1344 pstrcpy(f
->inc_filename
, sizeof(f
->inc_filename
), buf1
);
1346 /* add include file debug info */
1347 if (tcc_state
->do_debug
) {
1348 put_stabs(file
->filename
, N_BINCL
, 0, 0, 0);
1350 tok_flags
|= TOK_FLAG_BOF
| TOK_FLAG_BOL
;
1351 ch
= file
->buf_ptr
[0];
1354 error("include file '%s' not found", buf
);
1361 c
= expr_preprocess();
1367 if (tok
< TOK_IDENT
)
1368 error("invalid argument for '#if%sdef'", c
? "n" : "");
1372 printf("#ifndef %s\n", get_tok_str(tok
, NULL
));
1374 file
->ifndef_macro
= tok
;
1377 c
= (define_find(tok
) != 0) ^ c
;
1379 if (s1
->ifdef_stack_ptr
>= s1
->ifdef_stack
+ IFDEF_STACK_SIZE
)
1380 error("memory full");
1381 *s1
->ifdef_stack_ptr
++ = c
;
1384 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1385 error("#else without matching #if");
1386 if (s1
->ifdef_stack_ptr
[-1] & 2)
1387 error("#else after #else");
1388 c
= (s1
->ifdef_stack_ptr
[-1] ^= 3);
1391 if (s1
->ifdef_stack_ptr
== s1
->ifdef_stack
)
1392 error("#elif without matching #if");
1393 c
= s1
->ifdef_stack_ptr
[-1];
1395 error("#elif after #else");
1396 /* last #if/#elif expression was true: we skip */
1399 c
= expr_preprocess();
1400 s1
->ifdef_stack_ptr
[-1] = c
;
1410 if (s1
->ifdef_stack_ptr
<= file
->ifdef_stack_ptr
)
1411 error("#endif without matching #if");
1412 s1
->ifdef_stack_ptr
--;
1413 /* '#ifndef macro' was at the start of file. Now we check if
1414 an '#endif' is exactly at the end of file */
1415 if (file
->ifndef_macro
&&
1416 s1
->ifdef_stack_ptr
== file
->ifdef_stack_ptr
) {
1417 file
->ifndef_macro_saved
= file
->ifndef_macro
;
1418 /* need to set to zero to avoid false matches if another
1419 #ifndef at middle of file */
1420 file
->ifndef_macro
= 0;
1421 while (tok
!= TOK_LINEFEED
)
1423 tok_flags
|= TOK_FLAG_ENDIF
;
1429 if (tok
!= TOK_CINT
)
1431 file
->line_num
= tokc
.i
- 1; /* the line number will be incremented after */
1433 if (tok
!= TOK_LINEFEED
) {
1436 pstrcpy(file
->filename
, sizeof(file
->filename
),
1437 (char *)tokc
.cstr
->data
);
1443 ch
= file
->buf_ptr
[0];
1446 while (ch
!= '\n' && ch
!= CH_EOF
) {
1447 if ((q
- buf
) < sizeof(buf
) - 1)
1450 if (handle_stray_noerror() == 0)
1457 error("#error %s", buf
);
1459 warning("#warning %s", buf
);
1465 if (tok
== TOK_LINEFEED
|| tok
== '!' || tok
== TOK_CINT
) {
1466 /* '!' is ignored to allow C scripts. numbers are ignored
1467 to emulate cpp behaviour */
1469 if (!(saved_parse_flags
& PARSE_FLAG_ASM_COMMENTS
))
1470 warning("Ignoring unknown preprocessing directive #%s", get_tok_str(tok
, &tokc
));
1474 /* ignore other preprocess commands or #! for C scripts */
1475 while (tok
!= TOK_LINEFEED
)
1478 parse_flags
= saved_parse_flags
;
1481 /* evaluate escape codes in a string. */
1482 static void parse_escape_string(CString
*outstr
, const uint8_t *buf
, int is_long
)
1497 case '0': case '1': case '2': case '3':
1498 case '4': case '5': case '6': case '7':
1499 /* at most three octal digits */
1504 n
= n
* 8 + c
- '0';
1508 n
= n
* 8 + c
- '0';
1513 goto add_char_nonext
;
1521 if (c
>= 'a' && c
<= 'f')
1523 else if (c
>= 'A' && c
<= 'F')
1533 goto add_char_nonext
;
1557 goto invalid_escape
;
1567 if (c
>= '!' && c
<= '~')
1568 warning("unknown escape sequence: \'\\%c\'", c
);
1570 warning("unknown escape sequence: \'\\x%x\'", c
);
1577 cstr_ccat(outstr
, c
);
1579 cstr_wccat(outstr
, c
);
1581 /* add a trailing '\0' */
1583 cstr_ccat(outstr
, '\0');
1585 cstr_wccat(outstr
, '\0');
1588 /* we use 64 bit numbers */
1591 /* bn = (bn << shift) | or_val */
1592 void bn_lshift(unsigned int *bn
, int shift
, int or_val
)
1596 for(i
=0;i
<BN_SIZE
;i
++) {
1598 bn
[i
] = (v
<< shift
) | or_val
;
1599 or_val
= v
>> (32 - shift
);
1603 void bn_zero(unsigned int *bn
)
1606 for(i
=0;i
<BN_SIZE
;i
++) {
1611 /* parse number in null terminated string 'p' and return it in the
1613 void parse_number(const char *p
)
1615 int b
, t
, shift
, frac_bits
, s
, exp_val
, ch
;
1617 unsigned int bn
[BN_SIZE
];
1628 goto float_frac_parse
;
1629 } else if (t
== '0') {
1630 if (ch
== 'x' || ch
== 'X') {
1634 } else if (tcc_ext
&& (ch
== 'b' || ch
== 'B')) {
1640 /* parse all digits. cannot check octal numbers at this stage
1641 because of floating point constants */
1643 if (ch
>= 'a' && ch
<= 'f')
1645 else if (ch
>= 'A' && ch
<= 'F')
1653 if (q
>= token_buf
+ STRING_MAX_SIZE
) {
1655 error("number too long");
1661 ((ch
== 'e' || ch
== 'E') && b
== 10) ||
1662 ((ch
== 'p' || ch
== 'P') && (b
== 16 || b
== 2))) {
1664 /* NOTE: strtox should support that for hexa numbers, but
1665 non ISOC99 libcs do not support it, so we prefer to do
1667 /* hexadecimal or binary floats */
1668 /* XXX: handle overflows */
1680 } else if (t
>= 'a') {
1682 } else if (t
>= 'A') {
1687 bn_lshift(bn
, shift
, t
);
1694 if (t
>= 'a' && t
<= 'f') {
1696 } else if (t
>= 'A' && t
<= 'F') {
1698 } else if (t
>= '0' && t
<= '9') {
1704 error("invalid digit");
1705 bn_lshift(bn
, shift
, t
);
1710 if (ch
!= 'p' && ch
!= 'P')
1717 } else if (ch
== '-') {
1721 if (ch
< '0' || ch
> '9')
1722 expect("exponent digits");
1723 while (ch
>= '0' && ch
<= '9') {
1724 exp_val
= exp_val
* 10 + ch
- '0';
1727 exp_val
= exp_val
* s
;
1729 /* now we can generate the number */
1730 /* XXX: should patch directly float number */
1731 d
= (double)bn
[1] * 4294967296.0 + (double)bn
[0];
1732 d
= ldexp(d
, exp_val
- frac_bits
);
1737 /* float : should handle overflow */
1739 } else if (t
== 'L') {
1742 /* XXX: not large enough */
1743 tokc
.ld
= (long double)d
;
1749 /* decimal floats */
1751 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1756 while (ch
>= '0' && ch
<= '9') {
1757 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1763 if (ch
== 'e' || ch
== 'E') {
1764 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1768 if (ch
== '-' || ch
== '+') {
1769 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1774 if (ch
< '0' || ch
> '9')
1775 expect("exponent digits");
1776 while (ch
>= '0' && ch
<= '9') {
1777 if (q
>= token_buf
+ STRING_MAX_SIZE
)
1789 tokc
.f
= strtof(token_buf
, NULL
);
1790 } else if (t
== 'L') {
1793 tokc
.ld
= strtold(token_buf
, NULL
);
1796 tokc
.d
= strtod(token_buf
, NULL
);
1800 unsigned long long n
, n1
;
1803 /* integer number */
1806 if (b
== 10 && *q
== '0') {
1813 /* no need for checks except for base 10 / 8 errors */
1816 } else if (t
>= 'a') {
1818 } else if (t
>= 'A') {
1823 error("invalid digit");
1827 /* detect overflow */
1828 /* XXX: this test is not reliable */
1830 error("integer constant overflow");
1833 /* XXX: not exactly ANSI compliant */
1834 if ((n
& 0xffffffff00000000LL
) != 0) {
1839 } else if (n
> 0x7fffffff) {
1850 error("three 'l's in integer constant");
1853 if (tok
== TOK_CINT
)
1855 else if (tok
== TOK_CUINT
)
1859 } else if (t
== 'U') {
1861 error("two 'u's in integer constant");
1863 if (tok
== TOK_CINT
)
1865 else if (tok
== TOK_CLLONG
)
1872 if (tok
== TOK_CINT
|| tok
== TOK_CUINT
)
1878 error("invalid number\n");
1882 #define PARSE2(c1, tok1, c2, tok2) \
1893 /* return next token without macro substitution */
1894 static inline void next_nomacro1(void)
1909 goto keep_tok_flags
;
1916 /* first look if it is in fact an end of buffer */
1917 if (p
>= file
->buf_end
) {
1921 if (p
>= file
->buf_end
)
1934 TCCState
*s1
= tcc_state
;
1935 if ((parse_flags
& PARSE_FLAG_LINEFEED
)
1936 && !(tok_flags
& TOK_FLAG_EOF
)) {
1937 tok_flags
|= TOK_FLAG_EOF
;
1939 goto keep_tok_flags
;
1940 } else if (s1
->include_stack_ptr
== s1
->include_stack
||
1941 !(parse_flags
& PARSE_FLAG_PREPROCESS
)) {
1942 /* no include left : end of file. */
1945 tok_flags
&= ~TOK_FLAG_EOF
;
1946 /* pop include file */
1948 /* test if previous '#endif' was after a #ifdef at
1950 if (tok_flags
& TOK_FLAG_ENDIF
) {
1952 printf("#endif %s\n", get_tok_str(file
->ifndef_macro_saved
, NULL
));
1954 add_cached_include(s1
, file
->inc_type
, file
->inc_filename
,
1955 file
->ifndef_macro_saved
);
1958 /* add end of include file debug info */
1959 if (tcc_state
->do_debug
) {
1960 put_stabd(N_EINCL
, 0, 0);
1962 /* pop include stack */
1964 s1
->include_stack_ptr
--;
1965 file
= *s1
->include_stack_ptr
;
1974 tok_flags
|= TOK_FLAG_BOL
;
1977 if (0 == (parse_flags
& PARSE_FLAG_LINEFEED
))
1980 goto keep_tok_flags
;
1985 if ((tok_flags
& TOK_FLAG_BOL
) &&
1986 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
1988 preprocess(tok_flags
& TOK_FLAG_BOF
);
1994 tok
= TOK_TWOSHARPS
;
1996 if (parse_flags
& PARSE_FLAG_ASM_COMMENTS
) {
1997 p
= parse_line_comment(p
- 1);
2006 case 'a': case 'b': case 'c': case 'd':
2007 case 'e': case 'f': case 'g': case 'h':
2008 case 'i': case 'j': case 'k': case 'l':
2009 case 'm': case 'n': case 'o': case 'p':
2010 case 'q': case 'r': case 's': case 't':
2011 case 'u': case 'v': case 'w': case 'x':
2013 case 'A': case 'B': case 'C': case 'D':
2014 case 'E': case 'F': case 'G': case 'H':
2015 case 'I': case 'J': case 'K':
2016 case 'M': case 'N': case 'O': case 'P':
2017 case 'Q': case 'R': case 'S': case 'T':
2018 case 'U': case 'V': case 'W': case 'X':
2024 h
= TOK_HASH_FUNC(h
, c
);
2028 if (!isidnum_table
[c
-CH_EOF
])
2030 h
= TOK_HASH_FUNC(h
, c
);
2037 /* fast case : no stray found, so we have the full token
2038 and we have already hashed it */
2040 h
&= (TOK_HASH_SIZE
- 1);
2041 pts
= &hash_ident
[h
];
2046 if (ts
->len
== len
&& !memcmp(ts
->str
, p1
, len
))
2048 pts
= &(ts
->hash_next
);
2050 ts
= tok_alloc_new(pts
, p1
, len
);
2054 cstr_reset(&tokcstr
);
2057 cstr_ccat(&tokcstr
, *p1
);
2063 while (isidnum_table
[c
-CH_EOF
]) {
2064 cstr_ccat(&tokcstr
, c
);
2067 ts
= tok_alloc(tokcstr
.data
, tokcstr
.size
);
2073 if (t
!= '\\' && t
!= '\'' && t
!= '\"') {
2075 goto parse_ident_fast
;
2078 if (c
== '\'' || c
== '\"') {
2082 cstr_reset(&tokcstr
);
2083 cstr_ccat(&tokcstr
, 'L');
2084 goto parse_ident_slow
;
2088 case '0': case '1': case '2': case '3':
2089 case '4': case '5': case '6': case '7':
2092 cstr_reset(&tokcstr
);
2093 /* after the first digit, accept digits, alpha, '.' or sign if
2094 prefixed by 'eEpP' */
2098 cstr_ccat(&tokcstr
, c
);
2100 if (!(isnum(c
) || isid(c
) || c
== '.' ||
2101 ((c
== '+' || c
== '-') &&
2102 (t
== 'e' || t
== 'E' || t
== 'p' || t
== 'P'))))
2105 /* We add a trailing '\0' to ease parsing */
2106 cstr_ccat(&tokcstr
, '\0');
2107 tokc
.cstr
= &tokcstr
;
2111 /* special dot handling because it can also start a number */
2114 cstr_reset(&tokcstr
);
2115 cstr_ccat(&tokcstr
, '.');
2117 } else if (c
== '.') {
2137 /* parse the string */
2139 p
= parse_pp_string(p
, sep
, &str
);
2140 cstr_ccat(&str
, '\0');
2142 /* eval the escape (should be done as TOK_PPNUM) */
2143 cstr_reset(&tokcstr
);
2144 parse_escape_string(&tokcstr
, str
.data
, is_long
);
2149 /* XXX: make it portable */
2153 char_size
= sizeof(nwchar_t
);
2154 if (tokcstr
.size
<= char_size
)
2155 error("empty character constant");
2156 if (tokcstr
.size
> 2 * char_size
)
2157 warning("multi-character character constant");
2159 tokc
.i
= *(int8_t *)tokcstr
.data
;
2162 tokc
.i
= *(nwchar_t
*)tokcstr
.data
;
2166 tokc
.cstr
= &tokcstr
;
2180 } else if (c
== '<') {
2198 } else if (c
== '>') {
2216 } else if (c
== '=') {
2229 } else if (c
== '=') {
2242 } else if (c
== '=') {
2255 } else if (c
== '=') {
2258 } else if (c
== '>') {
2266 PARSE2('!', '!', '=', TOK_NE
)
2267 PARSE2('=', '=', '=', TOK_EQ
)
2268 PARSE2('*', '*', '=', TOK_A_MUL
)
2269 PARSE2('%', '%', '=', TOK_A_MOD
)
2270 PARSE2('^', '^', '=', TOK_A_XOR
)
2272 /* comments or operator */
2276 p
= parse_comment(p
);
2278 } else if (c
== '/') {
2279 p
= parse_line_comment(p
);
2281 } else if (c
== '=') {
2301 case '$': /* only used in assembler */
2302 case '@': /* dito */
2307 error("unrecognized character \\x%02x", c
);
2313 #if defined(PARSE_DEBUG)
2314 printf("token = %s\n", get_tok_str(tok
, &tokc
));
2318 /* return next token without macro substitution. Can read input from
2320 static void next_nomacro_spc(void)
2326 TOK_GET(tok
, macro_ptr
, tokc
);
2327 if (tok
== TOK_LINENUM
) {
2328 file
->line_num
= tokc
.i
;
2337 static void next_nomacro(void)
2341 } while (is_space(tok
));
2344 /* substitute args in macro_str and return allocated string */
2345 static int *macro_arg_subst(Sym
**nested_list
, int *macro_str
, Sym
*args
)
2347 int *st
, last_tok
, t
, spc
;
2356 TOK_GET(t
, macro_str
, cval
);
2361 TOK_GET(t
, macro_str
, cval
);
2364 s
= sym_find2(args
, t
);
2370 TOK_GET(t
, st
, cval
);
2371 if (!check_space(t
, &spc
))
2372 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
2375 cstr_ccat(&cstr
, '\0');
2377 printf("stringize: %s\n", (char *)cstr
.data
);
2381 tok_str_add2(&str
, TOK_STR
, &cval
);
2384 tok_str_add2(&str
, t
, &cval
);
2386 } else if (t
>= TOK_IDENT
) {
2387 s
= sym_find2(args
, t
);
2390 /* if '##' is present before or after, no arg substitution */
2391 if (*macro_str
== TOK_TWOSHARPS
|| last_tok
== TOK_TWOSHARPS
) {
2392 /* special case for var arg macros : ## eats the
2393 ',' if empty VA_ARGS variable. */
2394 /* XXX: test of the ',' is not 100%
2395 reliable. should fix it to avoid security
2397 if (gnu_ext
&& s
->type
.t
&&
2398 last_tok
== TOK_TWOSHARPS
&&
2399 str
.len
>= 2 && str
.str
[str
.len
- 2] == ',') {
2401 /* suppress ',' '##' */
2404 /* suppress '##' and add variable */
2412 TOK_GET(t1
, st
, cval
);
2415 tok_str_add2(&str
, t1
, &cval
);
2419 /* NOTE: the stream cannot be read when macro
2420 substituing an argument */
2421 macro_subst(&str
, nested_list
, st
, NULL
);
2424 tok_str_add(&str
, t
);
2427 tok_str_add2(&str
, t
, &cval
);
2431 tok_str_add(&str
, 0);
2435 static char const ab_month_name
[12][4] =
2437 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
2438 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
2441 /* do macro substitution of current token with macro 's' and add
2442 result to (tok_str,tok_len). 'nested_list' is the list of all
2443 macros we got inside to avoid recursing. Return non zero if no
2444 substitution needs to be done */
2445 static int macro_subst_tok(TokenString
*tok_str
,
2446 Sym
**nested_list
, Sym
*s
, struct macro_level
**can_read_stream
)
2448 Sym
*args
, *sa
, *sa1
;
2449 int mstr_allocated
, parlevel
, *mstr
, t
, t1
, *p
, spc
;
2456 /* if symbol is a macro, prepare substitution */
2457 /* special macros */
2458 if (tok
== TOK___LINE__
) {
2459 snprintf(buf
, sizeof(buf
), "%d", file
->line_num
);
2463 } else if (tok
== TOK___FILE__
) {
2464 cstrval
= file
->filename
;
2466 } else if (tok
== TOK___DATE__
|| tok
== TOK___TIME__
) {
2471 tm
= localtime(&ti
);
2472 if (tok
== TOK___DATE__
) {
2473 snprintf(buf
, sizeof(buf
), "%s %2d %d",
2474 ab_month_name
[tm
->tm_mon
], tm
->tm_mday
, tm
->tm_year
+ 1900);
2476 snprintf(buf
, sizeof(buf
), "%02d:%02d:%02d",
2477 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
2484 cstr_cat(&cstr
, cstrval
);
2485 cstr_ccat(&cstr
, '\0');
2487 tok_str_add2(tok_str
, t1
, &cval
);
2492 if (s
->type
.t
== MACRO_FUNC
) {
2493 /* NOTE: we do not use next_nomacro to avoid eating the
2494 next token. XXX: find better solution */
2498 while (is_space(t
= *p
) || TOK_LINEFEED
== t
)
2500 if (t
== 0 && can_read_stream
) {
2501 /* end of macro stream: we must look at the token
2502 after in the file */
2503 struct macro_level
*ml
= *can_read_stream
;
2509 *can_read_stream
= ml
-> prev
;
2514 /* XXX: incorrect with comments */
2515 ch
= file
->buf_ptr
[0];
2516 while (is_space(ch
) || ch
== '\n')
2520 if (t
!= '(') /* no macro subst */
2523 /* argument macro */
2528 /* NOTE: empty args are allowed, except if no args */
2530 /* handle '()' case */
2531 if (!args
&& !sa
&& tok
== ')')
2534 error("macro '%s' used with too many args",
2535 get_tok_str(s
->v
, 0));
2538 /* NOTE: non zero sa->t indicates VA_ARGS */
2539 while ((parlevel
> 0 ||
2541 (tok
!= ',' || sa
->type
.t
))) &&
2545 else if (tok
== ')')
2547 if (tok
== TOK_LINEFEED
)
2549 if (!check_space(tok
, &spc
))
2550 tok_str_add2(&str
, tok
, &tokc
);
2554 tok_str_add(&str
, 0);
2555 sym_push2(&args
, sa
->v
& ~SYM_FIELD
, sa
->type
.t
, (long)str
.str
);
2558 /* special case for gcc var args: add an empty
2559 var arg argument if it is omitted */
2560 if (sa
&& sa
->type
.t
&& gnu_ext
)
2570 error("macro '%s' used with too few args",
2571 get_tok_str(s
->v
, 0));
2574 /* now subst each arg */
2575 mstr
= macro_arg_subst(nested_list
, mstr
, args
);
2580 tok_str_free((int *)sa
->c
);
2586 sym_push2(nested_list
, s
->v
, 0, 0);
2587 macro_subst(tok_str
, nested_list
, mstr
, can_read_stream
);
2588 /* pop nested defined symbol */
2590 *nested_list
= sa1
->prev
;
2598 /* handle the '##' operator. Return NULL if no '##' seen. Otherwise
2599 return the resulting string (which must be freed). */
2600 static inline int *macro_twosharps(const int *macro_str
)
2605 TokenString macro_str1
;
2610 /* we search the first '##' */
2611 for(ptr
= macro_str
;;) {
2612 TOK_GET(t
, ptr
, cval
);
2613 if (t
== TOK_TWOSHARPS
)
2615 /* nothing more to do if end of string */
2620 /* we saw '##', so we need more processing to handle it */
2621 tok_str_new(¯o_str1
);
2622 for(ptr
= macro_str
;;) {
2623 TOK_GET(tok
, ptr
, tokc
);
2626 if (tok
== TOK_TWOSHARPS
)
2628 while (*ptr
== TOK_TWOSHARPS
) {
2630 if (t
&& t
!= TOK_TWOSHARPS
) {
2631 TOK_GET(t
, ptr
, cval
);
2633 /* We concatenate the two tokens */
2635 cstr_cat(&cstr
, get_tok_str(tok
, &tokc
));
2637 cstr_cat(&cstr
, get_tok_str(t
, &cval
));
2638 cstr_ccat(&cstr
, '\0');
2641 file
->buf_ptr
= cstr
.data
;
2644 if (0 == *file
->buf_ptr
)
2646 tok_str_add2(¯o_str1
, tok
, &tokc
);
2648 warning("pasting \"%.*s\" and \"%s\" does not give a valid preprocessing token",
2649 n
, cstr
.data
, (char*)cstr
.data
+ n
);
2655 tok_str_add2(¯o_str1
, tok
, &tokc
);
2657 tok_str_add(¯o_str1
, 0);
2658 return macro_str1
.str
;
2662 /* do macro substitution of macro_str and add result to
2663 (tok_str,tok_len). 'nested_list' is the list of all macros we got
2664 inside to avoid recursing. */
2665 static void macro_subst(TokenString
*tok_str
, Sym
**nested_list
,
2666 const int *macro_str
, struct macro_level
** can_read_stream
)
2673 struct macro_level ml
;
2675 /* first scan for '##' operator handling */
2677 macro_str1
= macro_twosharps(ptr
);
2682 /* NOTE: ptr == NULL can only happen if tokens are read from
2683 file stream due to a macro function call */
2686 TOK_GET(t
, ptr
, cval
);
2691 /* if nested substitution, do nothing */
2692 if (sym_find2(*nested_list
, t
))
2695 if (can_read_stream
)
2696 ml
.prev
= *can_read_stream
, *can_read_stream
= &ml
;
2697 macro_ptr
= (int *)ptr
;
2699 ret
= macro_subst_tok(tok_str
, nested_list
, s
, can_read_stream
);
2700 ptr
= (int *)macro_ptr
;
2702 if (can_read_stream
&& *can_read_stream
== &ml
)
2703 *can_read_stream
= ml
.prev
;
2708 if (!check_space(t
, &spc
))
2709 tok_str_add2(tok_str
, t
, &cval
);
2713 tok_str_free(macro_str1
);
2716 /* return next token with macro substitution */
2717 static void next(void)
2719 Sym
*nested_list
, *s
;
2721 struct macro_level
*ml
;
2724 if (parse_flags
& PARSE_FLAG_SPACES
)
2729 /* if not reading from macro substituted string, then try
2730 to substitute macros */
2731 if (tok
>= TOK_IDENT
&&
2732 (parse_flags
& PARSE_FLAG_PREPROCESS
)) {
2733 s
= define_find(tok
);
2735 /* we have a macro: we try to substitute */
2739 if (macro_subst_tok(&str
, &nested_list
, s
, &ml
) == 0) {
2740 /* substitution done, NOTE: maybe empty */
2741 tok_str_add(&str
, 0);
2742 macro_ptr
= str
.str
;
2743 macro_ptr_allocated
= str
.str
;
2750 /* end of macro or end of unget buffer */
2751 if (unget_buffer_enabled
) {
2752 macro_ptr
= unget_saved_macro_ptr
;
2753 unget_buffer_enabled
= 0;
2755 /* end of macro string: free it */
2756 tok_str_free(macro_ptr_allocated
);
2763 /* convert preprocessor tokens into C tokens */
2764 if (tok
== TOK_PPNUM
&&
2765 (parse_flags
& PARSE_FLAG_TOK_NUM
)) {
2766 parse_number((char *)tokc
.cstr
->data
);
2770 /* push back current token and set current token to 'last_tok'. Only
2771 identifier case handled for labels. */
2772 static inline void unget_tok(int last_tok
)
2776 unget_saved_macro_ptr
= macro_ptr
;
2777 unget_buffer_enabled
= 1;
2778 q
= unget_saved_buffer
;
2781 n
= tok_ext_size(tok
) - 1;
2784 *q
= 0; /* end of token string */
2789 /* better than nothing, but needs extension to handle '-E' option
2791 static void preprocess_init(TCCState
*s1
)
2793 s1
->include_stack_ptr
= s1
->include_stack
;
2794 /* XXX: move that before to avoid having to initialize
2795 file->ifdef_stack_ptr ? */
2796 s1
->ifdef_stack_ptr
= s1
->ifdef_stack
;
2797 file
->ifdef_stack_ptr
= s1
->ifdef_stack_ptr
;
2799 /* XXX: not ANSI compliant: bound checking says error */
2801 s1
->pack_stack
[0] = 0;
2802 s1
->pack_stack_ptr
= s1
->pack_stack
;
2805 void preprocess_new()
2811 /* init isid table */
2812 for(i
=CH_EOF
;i
<256;i
++)
2813 isidnum_table
[i
-CH_EOF
] = isid(i
) || isnum(i
);
2815 /* add all tokens */
2817 memset(hash_ident
, 0, TOK_HASH_SIZE
* sizeof(TokenSym
*));
2819 tok_ident
= TOK_IDENT
;
2828 ts
= tok_alloc(p
, r
- p
- 1);
2833 /* Preprocess the current file */
2834 static int tcc_preprocess(TCCState
*s1
)
2837 BufferedFile
*file_ref
, **iptr
, **iptr_new
;
2838 int token_seen
, line_ref
, d
;
2841 preprocess_init(s1
);
2842 define_start
= define_stack
;
2843 ch
= file
->buf_ptr
[0];
2844 tok_flags
= TOK_FLAG_BOL
| TOK_FLAG_BOF
;
2845 parse_flags
= PARSE_FLAG_ASM_COMMENTS
| PARSE_FLAG_PREPROCESS
|
2846 PARSE_FLAG_LINEFEED
| PARSE_FLAG_SPACES
;
2851 iptr
= s1
->include_stack_ptr
;
2854 if (tok
== TOK_EOF
) {
2856 } else if (file
!= file_ref
) {
2858 } else if (tok
== TOK_LINEFEED
) {
2863 } else if (!token_seen
) {
2864 d
= file
->line_num
- line_ref
;
2865 if (file
!= file_ref
|| d
< 0 || d
>= 8) {
2867 iptr_new
= s1
->include_stack_ptr
;
2868 s
= iptr_new
> iptr
? " 1"
2869 : iptr_new
< iptr
? " 2"
2870 : iptr_new
> s1
->include_stack
? " 3"
2874 fprintf(s1
->outfile
, "# %d \"%s\"%s\n", file
->line_num
, file
->filename
, s
);
2877 fputs("\n", s1
->outfile
), --d
;
2879 line_ref
= (file_ref
= file
)->line_num
;
2880 token_seen
= tok
!= TOK_LINEFEED
;
2884 fputs(get_tok_str(tok
, &tokc
), s1
->outfile
);
2886 free_defines(define_start
);