]>
Commit | Line | Data |
---|---|---|
d45cf215 | 1 | /* Lexical analyzer for C and Objective C. |
517cbe13 JL |
2 | Copyright (C) 1987, 1988, 1989, 1992, 1994, 1995, 1996, 1997 |
3 | 1998, 1999, 2000 Free Software Foundation, Inc. | |
e8bbfc4e | 4 | |
1322177d | 5 | This file is part of GCC. |
e8bbfc4e | 6 | |
1322177d LB |
7 | GCC is free software; you can redistribute it and/or modify it under |
8 | the terms of the GNU General Public License as published by the Free | |
9 | Software Foundation; either version 2, or (at your option) any later | |
10 | version. | |
e8bbfc4e | 11 | |
1322177d LB |
12 | GCC is distributed in the hope that it will be useful, but WITHOUT ANY |
13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 | for more details. | |
e8bbfc4e RK |
16 | |
17 | You should have received a copy of the GNU General Public License | |
1322177d LB |
18 | along with GCC; see the file COPYING. If not, write to the Free |
19 | Software Foundation, 59 Temple Place - Suite 330, Boston, MA | |
20 | 02111-1307, USA. */ | |
e8bbfc4e | 21 | |
e9a25f70 | 22 | #include "config.h" |
670ee920 | 23 | #include "system.h" |
e8bbfc4e | 24 | |
e8bbfc4e | 25 | #include "rtl.h" |
8f17b5c5 | 26 | #include "expr.h" |
e8bbfc4e RK |
27 | #include "tree.h" |
28 | #include "input.h" | |
d6f4ec51 | 29 | #include "output.h" |
e8bbfc4e RK |
30 | #include "c-lex.h" |
31 | #include "c-tree.h" | |
32 | #include "flags.h" | |
0e5921e8 | 33 | #include "timevar.h" |
8b97c5f8 | 34 | #include "cpplib.h" |
3d6f7931 | 35 | #include "c-pragma.h" |
5f6da302 | 36 | #include "toplev.h" |
ab87f8c8 | 37 | #include "intl.h" |
7bdb32b9 | 38 | #include "tm_p.h" |
0e5921e8 | 39 | #include "splay-tree.h" |
7f905405 | 40 | #include "debug.h" |
ab87f8c8 | 41 | |
ab87f8c8 JL |
42 | /* MULTIBYTE_CHARS support only works for native compilers. |
43 | ??? Ideally what we want is to model widechar support after | |
44 | the current floating point support. */ | |
45 | #ifdef CROSS_COMPILE | |
46 | #undef MULTIBYTE_CHARS | |
47 | #endif | |
e8bbfc4e RK |
48 | |
49 | #ifdef MULTIBYTE_CHARS | |
56f48ce9 | 50 | #include "mbchar.h" |
e8bbfc4e | 51 | #include <locale.h> |
56f48ce9 | 52 | #endif /* MULTIBYTE_CHARS */ |
c5c76735 JL |
53 | #ifndef GET_ENVIRONMENT |
54 | #define GET_ENVIRONMENT(ENV_VALUE,ENV_NAME) ((ENV_VALUE) = getenv (ENV_NAME)) | |
55 | #endif | |
e8bbfc4e | 56 | |
373e2177 NB |
57 | /* The input filename as understood by CPP, where "" represents stdin. */ |
58 | static const char *cpp_filename; | |
3aac38d7 | 59 | |
67821e3a | 60 | /* The current line map. */ |
47d89cf3 | 61 | static const struct line_map *map; |
67821e3a | 62 | |
0e5921e8 ZW |
63 | /* We may keep statistics about how long which files took to compile. */ |
64 | static int header_time, body_time; | |
65 | static splay_tree file_info_tree; | |
3ab6dd7c | 66 | |
e8bbfc4e RK |
67 | /* Cause the `yydebug' variable to be defined. */ |
68 | #define YYDEBUG 1 | |
69 | ||
e8bbfc4e RK |
70 | /* File used for outputting assembler code. */ |
71 | extern FILE *asm_out_file; | |
72 | ||
12a39b12 JM |
73 | #undef WCHAR_TYPE_SIZE |
74 | #define WCHAR_TYPE_SIZE TYPE_PRECISION (wchar_type_node) | |
e8bbfc4e RK |
75 | |
76 | /* Number of bytes in a wide character. */ | |
77 | #define WCHAR_BYTES (WCHAR_TYPE_SIZE / BITS_PER_UNIT) | |
78 | ||
ec5c56db | 79 | int indent_level; /* Number of { minus number of }. */ |
0e5921e8 ZW |
80 | int pending_lang_change; /* If we need to switch languages - C++ only */ |
81 | int c_header_level; /* depth in C headers - C++ only */ | |
fbb18613 JM |
82 | |
83 | /* Nonzero tells yylex to ignore \ in string constants. */ | |
84 | static int ignore_escape_flag; | |
e9a25f70 | 85 | |
0e5921e8 ZW |
86 | static void parse_float PARAMS ((PTR)); |
87 | static tree lex_number PARAMS ((const char *, unsigned int)); | |
88 | static tree lex_string PARAMS ((const char *, unsigned int, int)); | |
c8a96070 | 89 | static tree lex_charconst PARAMS ((const cpp_token *)); |
0e5921e8 ZW |
90 | static void update_header_times PARAMS ((const char *)); |
91 | static int dump_one_header PARAMS ((splay_tree_node, void *)); | |
8bbbef34 NB |
92 | static void cb_ident PARAMS ((cpp_reader *, unsigned int, |
93 | const cpp_string *)); | |
47d89cf3 | 94 | static void cb_file_change PARAMS ((cpp_reader *, const struct line_map *)); |
8bbbef34 NB |
95 | static void cb_def_pragma PARAMS ((cpp_reader *, unsigned int)); |
96 | static void cb_define PARAMS ((cpp_reader *, unsigned int, | |
97 | cpp_hashnode *)); | |
98 | static void cb_undef PARAMS ((cpp_reader *, unsigned int, | |
99 | cpp_hashnode *)); | |
e31c7eec | 100 | \f |
3b304f5b | 101 | const char * |
0e5921e8 | 102 | init_c_lex (filename) |
3b304f5b | 103 | const char *filename; |
e3d1fd32 | 104 | { |
b61c5ed0 | 105 | struct cpp_callbacks *cb; |
0e5921e8 ZW |
106 | struct c_fileinfo *toplevel; |
107 | ||
108 | /* Set up filename timing. Must happen before cpp_start_read. */ | |
109 | file_info_tree = splay_tree_new ((splay_tree_compare_fn)strcmp, | |
110 | 0, | |
111 | (splay_tree_delete_value_fn)free); | |
a8a05998 | 112 | toplevel = get_fileinfo ("<top level>"); |
0e5921e8 ZW |
113 | if (flag_detailed_statistics) |
114 | { | |
115 | header_time = 0; | |
116 | body_time = get_run_time (); | |
117 | toplevel->time = body_time; | |
118 | } | |
119 | ||
120 | #ifdef MULTIBYTE_CHARS | |
121 | /* Change to the native locale for multibyte conversions. */ | |
122 | setlocale (LC_CTYPE, ""); | |
123 | GET_ENVIRONMENT (literal_codeset, "LANG"); | |
124 | #endif | |
125 | ||
b61c5ed0 NB |
126 | cb = cpp_get_callbacks (parse_in); |
127 | ||
128 | cb->ident = cb_ident; | |
129 | cb->file_change = cb_file_change; | |
130 | cb->def_pragma = cb_def_pragma; | |
0e5921e8 | 131 | |
65289a3a NB |
132 | /* Set the debug callbacks if we can use them. */ |
133 | if (debug_info_level == DINFO_LEVEL_VERBOSE | |
134 | && (write_symbols == DWARF_DEBUG || write_symbols == DWARF2_DEBUG)) | |
135 | { | |
b61c5ed0 NB |
136 | cb->define = cb_define; |
137 | cb->undef = cb_undef; | |
65289a3a NB |
138 | } |
139 | ||
373e2177 | 140 | |
b12da25e | 141 | if (filename == 0 || !strcmp (filename, "-")) |
373e2177 NB |
142 | filename = "stdin", cpp_filename = ""; |
143 | else | |
144 | cpp_filename = filename; | |
5c60e5c0 | 145 | |
851ef036 NB |
146 | /* Start it at 0. */ |
147 | lineno = 0; | |
b12da25e | 148 | |
5c60e5c0 | 149 | return filename; |
e3d1fd32 PB |
150 | } |
151 | ||
3aac38d7 RH |
152 | /* A thin wrapper around the real parser that initializes the |
153 | integrated preprocessor after debug output has been initialized. */ | |
154 | ||
155 | int | |
156 | yyparse() | |
157 | { | |
373e2177 | 158 | if (! cpp_start_read (parse_in, cpp_filename)) |
3aac38d7 RH |
159 | return 1; /* cpplib has emitted an error. */ |
160 | ||
161 | return yyparse_1(); | |
162 | } | |
163 | ||
0e5921e8 ZW |
164 | struct c_fileinfo * |
165 | get_fileinfo (name) | |
166 | const char *name; | |
e3d1fd32 | 167 | { |
0e5921e8 ZW |
168 | splay_tree_node n; |
169 | struct c_fileinfo *fi; | |
170 | ||
171 | n = splay_tree_lookup (file_info_tree, (splay_tree_key) name); | |
172 | if (n) | |
173 | return (struct c_fileinfo *) n->value; | |
174 | ||
175 | fi = (struct c_fileinfo *) xmalloc (sizeof (struct c_fileinfo)); | |
176 | fi->time = 0; | |
177 | fi->interface_only = 0; | |
178 | fi->interface_unknown = 1; | |
179 | splay_tree_insert (file_info_tree, (splay_tree_key) name, | |
180 | (splay_tree_value) fi); | |
181 | return fi; | |
e56e519d | 182 | } |
e3d1fd32 | 183 | |
0e5921e8 ZW |
184 | static void |
185 | update_header_times (name) | |
186 | const char *name; | |
e8bbfc4e | 187 | { |
0e5921e8 ZW |
188 | /* Changing files again. This means currently collected time |
189 | is charged against header time, and body time starts back at 0. */ | |
190 | if (flag_detailed_statistics) | |
e8bbfc4e | 191 | { |
0e5921e8 ZW |
192 | int this_time = get_run_time (); |
193 | struct c_fileinfo *file = get_fileinfo (name); | |
194 | header_time += this_time - body_time; | |
195 | file->time += this_time - body_time; | |
196 | body_time = this_time; | |
e8bbfc4e RK |
197 | } |
198 | } | |
199 | ||
0e5921e8 ZW |
200 | static int |
201 | dump_one_header (n, dummy) | |
202 | splay_tree_node n; | |
203 | void *dummy ATTRIBUTE_UNUSED; | |
e8bbfc4e | 204 | { |
0e5921e8 ZW |
205 | print_time ((const char *) n->key, |
206 | ((struct c_fileinfo *) n->value)->time); | |
207 | return 0; | |
e8bbfc4e | 208 | } |
e8bbfc4e RK |
209 | |
210 | void | |
0e5921e8 | 211 | dump_time_statistics () |
e8bbfc4e | 212 | { |
0e5921e8 ZW |
213 | struct c_fileinfo *file = get_fileinfo (input_filename); |
214 | int this_time = get_run_time (); | |
215 | file->time += this_time - body_time; | |
216 | ||
217 | fprintf (stderr, "\n******\n"); | |
218 | print_time ("header files (total)", header_time); | |
219 | print_time ("main file (total)", this_time - body_time); | |
220 | fprintf (stderr, "ratio = %g : 1\n", | |
221 | (double)header_time / (double)(this_time - body_time)); | |
222 | fprintf (stderr, "\n******\n"); | |
223 | ||
224 | splay_tree_foreach (file_info_tree, dump_one_header, 0); | |
e8bbfc4e | 225 | } |
a6124a42 | 226 | |
27e2564a NB |
227 | /* Not yet handled: #pragma, #define, #undef. |
228 | No need to deal with linemarkers under normal conditions. */ | |
229 | ||
0e5921e8 | 230 | static void |
8bbbef34 | 231 | cb_ident (pfile, line, str) |
27e2564a | 232 | cpp_reader *pfile ATTRIBUTE_UNUSED; |
8bbbef34 | 233 | unsigned int line ATTRIBUTE_UNUSED; |
f5720527 | 234 | const cpp_string *str ATTRIBUTE_UNUSED; |
0e5921e8 | 235 | { |
0e5921e8 | 236 | #ifdef ASM_OUTPUT_IDENT |
27e2564a | 237 | if (! flag_no_ident) |
0e5921e8 | 238 | { |
27e2564a NB |
239 | /* Convert escapes in the string. */ |
240 | tree value = lex_string ((const char *)str->text, str->len, 0); | |
241 | ASM_OUTPUT_IDENT (asm_out_file, TREE_STRING_POINTER (value)); | |
0e5921e8 ZW |
242 | } |
243 | #endif | |
27e2564a NB |
244 | } |
245 | ||
246 | static void | |
47d89cf3 | 247 | cb_file_change (pfile, new_map) |
27e2564a | 248 | cpp_reader *pfile ATTRIBUTE_UNUSED; |
47d89cf3 | 249 | const struct line_map *new_map; |
27e2564a | 250 | { |
47d89cf3 | 251 | unsigned int to_line = SOURCE_LINE (new_map, new_map->to_line); |
d82fc108 | 252 | |
47d89cf3 | 253 | if (new_map->reason == LC_ENTER) |
fbb18613 | 254 | { |
5bea1ccf JM |
255 | /* Don't stack the main buffer on the input stack; |
256 | we already did in compile_file. */ | |
47d89cf3 NB |
257 | if (map == NULL) |
258 | main_input_filename = new_map->to_file; | |
d82fc108 | 259 | else |
0e5921e8 | 260 | { |
47d89cf3 NB |
261 | lineno = SOURCE_LINE (new_map - 1, new_map->from_line - 1); |
262 | push_srcloc (new_map->to_file, 1); | |
27e2564a | 263 | input_file_stack->indent_level = indent_level; |
47d89cf3 | 264 | (*debug_hooks->start_source_file) (lineno, new_map->to_file); |
27e2564a NB |
265 | #ifndef NO_IMPLICIT_EXTERN_C |
266 | if (c_header_level) | |
267 | ++c_header_level; | |
47d89cf3 | 268 | else if (new_map->sysp == 2) |
27e2564a NB |
269 | { |
270 | c_header_level = 1; | |
271 | ++pending_lang_change; | |
272 | } | |
0e5921e8 | 273 | #endif |
27e2564a | 274 | } |
fbb18613 | 275 | } |
47d89cf3 | 276 | else if (new_map->reason == LC_LEAVE) |
fbb18613 | 277 | { |
0e5921e8 | 278 | #ifndef NO_IMPLICIT_EXTERN_C |
47d89cf3 NB |
279 | if (c_header_level && --c_header_level == 0) |
280 | { | |
281 | if (new_map->sysp == 2) | |
282 | warning ("badly nested C headers from preprocessor"); | |
283 | --pending_lang_change; | |
284 | } | |
0e5921e8 ZW |
285 | #endif |
286 | #if 0 | |
47d89cf3 NB |
287 | if (indent_level != input_file_stack->indent_level) |
288 | { | |
289 | warning_with_file_and_line | |
290 | (input_filename, lineno, | |
291 | "This file contains more '%c's than '%c's.", | |
292 | indent_level > input_file_stack->indent_level ? '{' : '}', | |
293 | indent_level > input_file_stack->indent_level ? '}' : '{'); | |
0468bc75 | 294 | } |
47d89cf3 NB |
295 | #endif |
296 | pop_srcloc (); | |
297 | ||
298 | (*debug_hooks->end_source_file) (to_line); | |
e8bbfc4e | 299 | } |
fbb18613 | 300 | |
47d89cf3 NB |
301 | update_header_times (new_map->to_file); |
302 | in_system_header = new_map->sysp != 0; | |
303 | input_filename = new_map->to_file; | |
304 | lineno = to_line; | |
305 | map = new_map; | |
0e5921e8 | 306 | |
0e5921e8 ZW |
307 | /* Hook for C++. */ |
308 | extract_interface_info (); | |
309 | } | |
8b97c5f8 ZW |
310 | |
311 | static void | |
8bbbef34 | 312 | cb_def_pragma (pfile, line) |
8b97c5f8 | 313 | cpp_reader *pfile; |
67821e3a | 314 | unsigned int line; |
8b97c5f8 ZW |
315 | { |
316 | /* Issue a warning message if we have been asked to do so. Ignore | |
317 | unknown pragmas in system headers unless an explicit | |
ec5c56db | 318 | -Wunknown-pragmas has been given. */ |
8b97c5f8 ZW |
319 | if (warn_unknown_pragmas > in_system_header) |
320 | { | |
23356f93 ZW |
321 | const unsigned char *space, *name = 0; |
322 | cpp_token s; | |
323 | ||
324 | cpp_get_token (pfile, &s); | |
325 | space = cpp_token_as_text (pfile, &s); | |
326 | cpp_get_token (pfile, &s); | |
327 | if (s.type == CPP_NAME) | |
328 | name = cpp_token_as_text (pfile, &s); | |
8b97c5f8 | 329 | |
67821e3a | 330 | lineno = SOURCE_LINE (map, line); |
8b97c5f8 ZW |
331 | if (name) |
332 | warning ("ignoring #pragma %s %s", space, name); | |
333 | else | |
334 | warning ("ignoring #pragma %s", space); | |
335 | } | |
336 | } | |
0e5921e8 | 337 | |
65289a3a NB |
338 | /* #define callback for DWARF and DWARF2 debug info. */ |
339 | static void | |
8bbbef34 | 340 | cb_define (pfile, line, node) |
65289a3a | 341 | cpp_reader *pfile; |
67821e3a | 342 | unsigned int line; |
65289a3a NB |
343 | cpp_hashnode *node; |
344 | { | |
67821e3a | 345 | (*debug_hooks->define) (SOURCE_LINE (map, line), |
7f905405 | 346 | (const char *) cpp_macro_definition (pfile, node)); |
65289a3a NB |
347 | } |
348 | ||
349 | /* #undef callback for DWARF and DWARF2 debug info. */ | |
350 | static void | |
8bbbef34 | 351 | cb_undef (pfile, line, node) |
67821e3a NB |
352 | cpp_reader *pfile ATTRIBUTE_UNUSED; |
353 | unsigned int line; | |
65289a3a NB |
354 | cpp_hashnode *node; |
355 | { | |
67821e3a | 356 | (*debug_hooks->undef) (SOURCE_LINE (map, line), |
7f905405 | 357 | (const char *) NODE_NAME (node)); |
65289a3a NB |
358 | } |
359 | ||
0e5921e8 ZW |
360 | #if 0 /* not yet */ |
361 | /* Returns nonzero if C is a universal-character-name. Give an error if it | |
362 | is not one which may appear in an identifier, as per [extendid]. | |
363 | ||
364 | Note that extended character support in identifiers has not yet been | |
365 | implemented. It is my personal opinion that this is not a desirable | |
366 | feature. Portable code cannot count on support for more than the basic | |
367 | identifier character set. */ | |
368 | ||
369 | static inline int | |
370 | is_extended_char (c) | |
371 | int c; | |
372 | { | |
373 | #ifdef TARGET_EBCDIC | |
374 | return 0; | |
375 | #else | |
376 | /* ASCII. */ | |
377 | if (c < 0x7f) | |
378 | return 0; | |
379 | ||
380 | /* None of the valid chars are outside the Basic Multilingual Plane (the | |
381 | low 16 bits). */ | |
382 | if (c > 0xffff) | |
383 | { | |
384 | error ("universal-character-name '\\U%08x' not valid in identifier", c); | |
385 | return 1; | |
386 | } | |
387 | ||
388 | /* Latin */ | |
389 | if ((c >= 0x00c0 && c <= 0x00d6) | |
390 | || (c >= 0x00d8 && c <= 0x00f6) | |
391 | || (c >= 0x00f8 && c <= 0x01f5) | |
392 | || (c >= 0x01fa && c <= 0x0217) | |
393 | || (c >= 0x0250 && c <= 0x02a8) | |
394 | || (c >= 0x1e00 && c <= 0x1e9a) | |
395 | || (c >= 0x1ea0 && c <= 0x1ef9)) | |
396 | return 1; | |
397 | ||
398 | /* Greek */ | |
399 | if ((c == 0x0384) | |
400 | || (c >= 0x0388 && c <= 0x038a) | |
401 | || (c == 0x038c) | |
402 | || (c >= 0x038e && c <= 0x03a1) | |
403 | || (c >= 0x03a3 && c <= 0x03ce) | |
404 | || (c >= 0x03d0 && c <= 0x03d6) | |
405 | || (c == 0x03da) | |
406 | || (c == 0x03dc) | |
407 | || (c == 0x03de) | |
408 | || (c == 0x03e0) | |
409 | || (c >= 0x03e2 && c <= 0x03f3) | |
410 | || (c >= 0x1f00 && c <= 0x1f15) | |
411 | || (c >= 0x1f18 && c <= 0x1f1d) | |
412 | || (c >= 0x1f20 && c <= 0x1f45) | |
413 | || (c >= 0x1f48 && c <= 0x1f4d) | |
414 | || (c >= 0x1f50 && c <= 0x1f57) | |
415 | || (c == 0x1f59) | |
416 | || (c == 0x1f5b) | |
417 | || (c == 0x1f5d) | |
418 | || (c >= 0x1f5f && c <= 0x1f7d) | |
419 | || (c >= 0x1f80 && c <= 0x1fb4) | |
420 | || (c >= 0x1fb6 && c <= 0x1fbc) | |
421 | || (c >= 0x1fc2 && c <= 0x1fc4) | |
422 | || (c >= 0x1fc6 && c <= 0x1fcc) | |
423 | || (c >= 0x1fd0 && c <= 0x1fd3) | |
424 | || (c >= 0x1fd6 && c <= 0x1fdb) | |
425 | || (c >= 0x1fe0 && c <= 0x1fec) | |
426 | || (c >= 0x1ff2 && c <= 0x1ff4) | |
427 | || (c >= 0x1ff6 && c <= 0x1ffc)) | |
428 | return 1; | |
429 | ||
430 | /* Cyrillic */ | |
431 | if ((c >= 0x0401 && c <= 0x040d) | |
432 | || (c >= 0x040f && c <= 0x044f) | |
433 | || (c >= 0x0451 && c <= 0x045c) | |
434 | || (c >= 0x045e && c <= 0x0481) | |
435 | || (c >= 0x0490 && c <= 0x04c4) | |
436 | || (c >= 0x04c7 && c <= 0x04c8) | |
437 | || (c >= 0x04cb && c <= 0x04cc) | |
438 | || (c >= 0x04d0 && c <= 0x04eb) | |
439 | || (c >= 0x04ee && c <= 0x04f5) | |
440 | || (c >= 0x04f8 && c <= 0x04f9)) | |
441 | return 1; | |
442 | ||
443 | /* Armenian */ | |
444 | if ((c >= 0x0531 && c <= 0x0556) | |
445 | || (c >= 0x0561 && c <= 0x0587)) | |
446 | return 1; | |
447 | ||
448 | /* Hebrew */ | |
449 | if ((c >= 0x05d0 && c <= 0x05ea) | |
450 | || (c >= 0x05f0 && c <= 0x05f4)) | |
451 | return 1; | |
452 | ||
453 | /* Arabic */ | |
454 | if ((c >= 0x0621 && c <= 0x063a) | |
455 | || (c >= 0x0640 && c <= 0x0652) | |
456 | || (c >= 0x0670 && c <= 0x06b7) | |
457 | || (c >= 0x06ba && c <= 0x06be) | |
458 | || (c >= 0x06c0 && c <= 0x06ce) | |
459 | || (c >= 0x06e5 && c <= 0x06e7)) | |
460 | return 1; | |
461 | ||
462 | /* Devanagari */ | |
463 | if ((c >= 0x0905 && c <= 0x0939) | |
464 | || (c >= 0x0958 && c <= 0x0962)) | |
465 | return 1; | |
466 | ||
467 | /* Bengali */ | |
468 | if ((c >= 0x0985 && c <= 0x098c) | |
469 | || (c >= 0x098f && c <= 0x0990) | |
470 | || (c >= 0x0993 && c <= 0x09a8) | |
471 | || (c >= 0x09aa && c <= 0x09b0) | |
472 | || (c == 0x09b2) | |
473 | || (c >= 0x09b6 && c <= 0x09b9) | |
474 | || (c >= 0x09dc && c <= 0x09dd) | |
475 | || (c >= 0x09df && c <= 0x09e1) | |
476 | || (c >= 0x09f0 && c <= 0x09f1)) | |
477 | return 1; | |
478 | ||
479 | /* Gurmukhi */ | |
480 | if ((c >= 0x0a05 && c <= 0x0a0a) | |
481 | || (c >= 0x0a0f && c <= 0x0a10) | |
482 | || (c >= 0x0a13 && c <= 0x0a28) | |
483 | || (c >= 0x0a2a && c <= 0x0a30) | |
484 | || (c >= 0x0a32 && c <= 0x0a33) | |
485 | || (c >= 0x0a35 && c <= 0x0a36) | |
486 | || (c >= 0x0a38 && c <= 0x0a39) | |
487 | || (c >= 0x0a59 && c <= 0x0a5c) | |
488 | || (c == 0x0a5e)) | |
489 | return 1; | |
490 | ||
491 | /* Gujarati */ | |
492 | if ((c >= 0x0a85 && c <= 0x0a8b) | |
493 | || (c == 0x0a8d) | |
494 | || (c >= 0x0a8f && c <= 0x0a91) | |
495 | || (c >= 0x0a93 && c <= 0x0aa8) | |
496 | || (c >= 0x0aaa && c <= 0x0ab0) | |
497 | || (c >= 0x0ab2 && c <= 0x0ab3) | |
498 | || (c >= 0x0ab5 && c <= 0x0ab9) | |
499 | || (c == 0x0ae0)) | |
500 | return 1; | |
501 | ||
502 | /* Oriya */ | |
503 | if ((c >= 0x0b05 && c <= 0x0b0c) | |
504 | || (c >= 0x0b0f && c <= 0x0b10) | |
505 | || (c >= 0x0b13 && c <= 0x0b28) | |
506 | || (c >= 0x0b2a && c <= 0x0b30) | |
507 | || (c >= 0x0b32 && c <= 0x0b33) | |
508 | || (c >= 0x0b36 && c <= 0x0b39) | |
509 | || (c >= 0x0b5c && c <= 0x0b5d) | |
510 | || (c >= 0x0b5f && c <= 0x0b61)) | |
511 | return 1; | |
512 | ||
513 | /* Tamil */ | |
514 | if ((c >= 0x0b85 && c <= 0x0b8a) | |
515 | || (c >= 0x0b8e && c <= 0x0b90) | |
516 | || (c >= 0x0b92 && c <= 0x0b95) | |
517 | || (c >= 0x0b99 && c <= 0x0b9a) | |
518 | || (c == 0x0b9c) | |
519 | || (c >= 0x0b9e && c <= 0x0b9f) | |
520 | || (c >= 0x0ba3 && c <= 0x0ba4) | |
521 | || (c >= 0x0ba8 && c <= 0x0baa) | |
522 | || (c >= 0x0bae && c <= 0x0bb5) | |
523 | || (c >= 0x0bb7 && c <= 0x0bb9)) | |
524 | return 1; | |
525 | ||
526 | /* Telugu */ | |
527 | if ((c >= 0x0c05 && c <= 0x0c0c) | |
528 | || (c >= 0x0c0e && c <= 0x0c10) | |
529 | || (c >= 0x0c12 && c <= 0x0c28) | |
530 | || (c >= 0x0c2a && c <= 0x0c33) | |
531 | || (c >= 0x0c35 && c <= 0x0c39) | |
532 | || (c >= 0x0c60 && c <= 0x0c61)) | |
533 | return 1; | |
534 | ||
535 | /* Kannada */ | |
536 | if ((c >= 0x0c85 && c <= 0x0c8c) | |
537 | || (c >= 0x0c8e && c <= 0x0c90) | |
538 | || (c >= 0x0c92 && c <= 0x0ca8) | |
539 | || (c >= 0x0caa && c <= 0x0cb3) | |
540 | || (c >= 0x0cb5 && c <= 0x0cb9) | |
541 | || (c >= 0x0ce0 && c <= 0x0ce1)) | |
542 | return 1; | |
543 | ||
544 | /* Malayalam */ | |
545 | if ((c >= 0x0d05 && c <= 0x0d0c) | |
546 | || (c >= 0x0d0e && c <= 0x0d10) | |
547 | || (c >= 0x0d12 && c <= 0x0d28) | |
548 | || (c >= 0x0d2a && c <= 0x0d39) | |
549 | || (c >= 0x0d60 && c <= 0x0d61)) | |
550 | return 1; | |
551 | ||
552 | /* Thai */ | |
553 | if ((c >= 0x0e01 && c <= 0x0e30) | |
554 | || (c >= 0x0e32 && c <= 0x0e33) | |
555 | || (c >= 0x0e40 && c <= 0x0e46) | |
556 | || (c >= 0x0e4f && c <= 0x0e5b)) | |
557 | return 1; | |
558 | ||
559 | /* Lao */ | |
560 | if ((c >= 0x0e81 && c <= 0x0e82) | |
561 | || (c == 0x0e84) | |
562 | || (c == 0x0e87) | |
563 | || (c == 0x0e88) | |
564 | || (c == 0x0e8a) | |
565 | || (c == 0x0e0d) | |
566 | || (c >= 0x0e94 && c <= 0x0e97) | |
567 | || (c >= 0x0e99 && c <= 0x0e9f) | |
568 | || (c >= 0x0ea1 && c <= 0x0ea3) | |
569 | || (c == 0x0ea5) | |
570 | || (c == 0x0ea7) | |
571 | || (c == 0x0eaa) | |
572 | || (c == 0x0eab) | |
573 | || (c >= 0x0ead && c <= 0x0eb0) | |
574 | || (c == 0x0eb2) | |
575 | || (c == 0x0eb3) | |
576 | || (c == 0x0ebd) | |
577 | || (c >= 0x0ec0 && c <= 0x0ec4) | |
578 | || (c == 0x0ec6)) | |
579 | return 1; | |
580 | ||
581 | /* Georgian */ | |
582 | if ((c >= 0x10a0 && c <= 0x10c5) | |
583 | || (c >= 0x10d0 && c <= 0x10f6)) | |
584 | return 1; | |
585 | ||
586 | /* Hiragana */ | |
587 | if ((c >= 0x3041 && c <= 0x3094) | |
588 | || (c >= 0x309b && c <= 0x309e)) | |
589 | return 1; | |
590 | ||
591 | /* Katakana */ | |
592 | if ((c >= 0x30a1 && c <= 0x30fe)) | |
593 | return 1; | |
594 | ||
595 | /* Bopmofo */ | |
596 | if ((c >= 0x3105 && c <= 0x312c)) | |
597 | return 1; | |
598 | ||
599 | /* Hangul */ | |
600 | if ((c >= 0x1100 && c <= 0x1159) | |
601 | || (c >= 0x1161 && c <= 0x11a2) | |
602 | || (c >= 0x11a8 && c <= 0x11f9)) | |
603 | return 1; | |
604 | ||
605 | /* CJK Unified Ideographs */ | |
606 | if ((c >= 0xf900 && c <= 0xfa2d) | |
607 | || (c >= 0xfb1f && c <= 0xfb36) | |
608 | || (c >= 0xfb38 && c <= 0xfb3c) | |
609 | || (c == 0xfb3e) | |
610 | || (c >= 0xfb40 && c <= 0xfb41) | |
611 | || (c >= 0xfb42 && c <= 0xfb44) | |
612 | || (c >= 0xfb46 && c <= 0xfbb1) | |
613 | || (c >= 0xfbd3 && c <= 0xfd3f) | |
614 | || (c >= 0xfd50 && c <= 0xfd8f) | |
615 | || (c >= 0xfd92 && c <= 0xfdc7) | |
616 | || (c >= 0xfdf0 && c <= 0xfdfb) | |
617 | || (c >= 0xfe70 && c <= 0xfe72) | |
618 | || (c == 0xfe74) | |
619 | || (c >= 0xfe76 && c <= 0xfefc) | |
620 | || (c >= 0xff21 && c <= 0xff3a) | |
621 | || (c >= 0xff41 && c <= 0xff5a) | |
622 | || (c >= 0xff66 && c <= 0xffbe) | |
623 | || (c >= 0xffc2 && c <= 0xffc7) | |
624 | || (c >= 0xffca && c <= 0xffcf) | |
625 | || (c >= 0xffd2 && c <= 0xffd7) | |
626 | || (c >= 0xffda && c <= 0xffdc) | |
627 | || (c >= 0x4e00 && c <= 0x9fa5)) | |
628 | return 1; | |
629 | ||
630 | error ("universal-character-name '\\u%04x' not valid in identifier", c); | |
631 | return 1; | |
632 | #endif | |
633 | } | |
634 | ||
635 | /* Add the UTF-8 representation of C to the token_buffer. */ | |
636 | ||
637 | static void | |
638 | utf8_extend_token (c) | |
639 | int c; | |
e8bbfc4e | 640 | { |
0e5921e8 ZW |
641 | int shift, mask; |
642 | ||
643 | if (c <= 0x0000007f) | |
644 | { | |
645 | extend_token (c); | |
646 | return; | |
647 | } | |
648 | else if (c <= 0x000007ff) | |
649 | shift = 6, mask = 0xc0; | |
650 | else if (c <= 0x0000ffff) | |
651 | shift = 12, mask = 0xe0; | |
652 | else if (c <= 0x001fffff) | |
653 | shift = 18, mask = 0xf0; | |
654 | else if (c <= 0x03ffffff) | |
655 | shift = 24, mask = 0xf8; | |
e8bbfc4e | 656 | else |
0e5921e8 ZW |
657 | shift = 30, mask = 0xfc; |
658 | ||
659 | extend_token (mask | (c >> shift)); | |
660 | do | |
661 | { | |
662 | shift -= 6; | |
663 | extend_token ((unsigned char) (0x80 | (c >> shift))); | |
664 | } | |
665 | while (shift); | |
e8bbfc4e | 666 | } |
0e5921e8 | 667 | #endif |
e8bbfc4e RK |
668 | |
669 | #if 0 | |
e8bbfc4e RK |
670 | struct try_type |
671 | { | |
672 | tree *node_var; | |
673 | char unsigned_flag; | |
674 | char long_flag; | |
675 | char long_long_flag; | |
676 | }; | |
677 | ||
75cb8865 | 678 | struct try_type type_sequence[] = |
e8bbfc4e RK |
679 | { |
680 | { &integer_type_node, 0, 0, 0}, | |
681 | { &unsigned_type_node, 1, 0, 0}, | |
682 | { &long_integer_type_node, 0, 1, 0}, | |
683 | { &long_unsigned_type_node, 1, 1, 0}, | |
684 | { &long_long_integer_type_node, 0, 1, 1}, | |
685 | { &long_long_unsigned_type_node, 1, 1, 1} | |
686 | }; | |
687 | #endif /* 0 */ | |
688 | \f | |
ed513abf KG |
689 | struct pf_args |
690 | { | |
691 | /* Input */ | |
0e5921e8 ZW |
692 | const char *str; |
693 | int fflag; | |
694 | int lflag; | |
ed513abf | 695 | int base; |
fbb18613 | 696 | /* Output */ |
ed513abf | 697 | int conversion_errno; |
ed513abf | 698 | REAL_VALUE_TYPE value; |
0e5921e8 | 699 | tree type; |
ed513abf KG |
700 | }; |
701 | ||
702 | static void | |
703 | parse_float (data) | |
704 | PTR data; | |
705 | { | |
706 | struct pf_args * args = (struct pf_args *) data; | |
0e5921e8 ZW |
707 | const char *typename; |
708 | ||
fbb18613 JM |
709 | args->conversion_errno = 0; |
710 | args->type = double_type_node; | |
0e5921e8 | 711 | typename = "double"; |
ed513abf KG |
712 | |
713 | /* The second argument, machine_mode, of REAL_VALUE_ATOF | |
714 | tells the desired precision of the binary result | |
715 | of decimal-to-binary conversion. */ | |
716 | ||
0e5921e8 | 717 | if (args->fflag) |
ed513abf | 718 | { |
0e5921e8 ZW |
719 | if (args->lflag) |
720 | error ("both 'f' and 'l' suffixes on floating constant"); | |
ed513abf KG |
721 | |
722 | args->type = float_type_node; | |
0e5921e8 | 723 | typename = "float"; |
ed513abf | 724 | } |
0e5921e8 | 725 | else if (args->lflag) |
ed513abf KG |
726 | { |
727 | args->type = long_double_type_node; | |
0e5921e8 | 728 | typename = "long double"; |
ed513abf | 729 | } |
0e5921e8 | 730 | else if (flag_single_precision_constant) |
ed513abf | 731 | { |
0e5921e8 ZW |
732 | args->type = float_type_node; |
733 | typename = "float"; | |
ed513abf | 734 | } |
0e5921e8 ZW |
735 | |
736 | errno = 0; | |
737 | if (args->base == 16) | |
738 | args->value = REAL_VALUE_HTOF (args->str, TYPE_MODE (args->type)); | |
739 | else | |
740 | args->value = REAL_VALUE_ATOF (args->str, TYPE_MODE (args->type)); | |
741 | ||
742 | args->conversion_errno = errno; | |
743 | /* A diagnostic is required here by some ISO C testsuites. | |
744 | This is not pedwarn, because some people don't want | |
745 | an error for this. */ | |
746 | if (REAL_VALUE_ISINF (args->value) && pedantic) | |
747 | warning ("floating point number exceeds range of '%s'", typename); | |
ed513abf KG |
748 | } |
749 | ||
0e5921e8 ZW |
750 | int |
751 | c_lex (value) | |
752 | tree *value; | |
fbb18613 | 753 | { |
23356f93 | 754 | cpp_token tok; |
0e5921e8 ZW |
755 | enum cpp_ttype type; |
756 | ||
757 | retry: | |
758 | timevar_push (TV_CPP); | |
cf44ea52 | 759 | cpp_get_token (parse_in, &tok); |
0e5921e8 ZW |
760 | timevar_pop (TV_CPP); |
761 | ||
762 | /* The C++ front end does horrible things with the current line | |
763 | number. To ensure an accurate line number, we must reset it | |
23356f93 | 764 | every time we return a token. */ |
67821e3a | 765 | lineno = SOURCE_LINE (map, cpp_get_line (parse_in)->line); |
0e5921e8 ZW |
766 | |
767 | *value = NULL_TREE; | |
23356f93 | 768 | type = tok.type; |
0e5921e8 ZW |
769 | switch (type) |
770 | { | |
771 | case CPP_OPEN_BRACE: indent_level++; break; | |
772 | case CPP_CLOSE_BRACE: indent_level--; break; | |
773 | ||
6c53ebff | 774 | /* Issue this error here, where we can get at tok.val.c. */ |
0e5921e8 | 775 | case CPP_OTHER: |
6c53ebff NB |
776 | if (ISGRAPH (tok.val.c)) |
777 | error ("stray '%c' in program", tok.val.c); | |
0e5921e8 | 778 | else |
5677efb0 | 779 | error ("stray '\\%o' in program", tok.val.c); |
0e5921e8 ZW |
780 | goto retry; |
781 | ||
0e5921e8 | 782 | case CPP_NAME: |
083e9f92 | 783 | *value = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok.val.node)); |
0e5921e8 | 784 | break; |
fbb18613 | 785 | |
0e5921e8 | 786 | case CPP_NUMBER: |
23356f93 | 787 | *value = lex_number ((const char *)tok.val.str.text, tok.val.str.len); |
0e5921e8 | 788 | break; |
93868d11 | 789 | |
0e5921e8 ZW |
790 | case CPP_CHAR: |
791 | case CPP_WCHAR: | |
c8a96070 | 792 | *value = lex_charconst (&tok); |
0e5921e8 | 793 | break; |
fbb18613 | 794 | |
0e5921e8 ZW |
795 | case CPP_STRING: |
796 | case CPP_WSTRING: | |
23356f93 ZW |
797 | *value = lex_string ((const char *)tok.val.str.text, |
798 | tok.val.str.len, tok.type == CPP_WSTRING); | |
0e5921e8 | 799 | break; |
fbb18613 | 800 | |
0e5921e8 ZW |
801 | /* These tokens should not be visible outside cpplib. */ |
802 | case CPP_HEADER_NAME: | |
803 | case CPP_COMMENT: | |
804 | case CPP_MACRO_ARG: | |
0e5921e8 ZW |
805 | abort (); |
806 | ||
807 | default: break; | |
808 | } | |
809 | ||
810 | return type; | |
0e5921e8 | 811 | } |
8d9bfdc5 | 812 | |
0e5921e8 | 813 | #define ERROR(msgid) do { error(msgid); goto syntax_error; } while(0) |
75cb8865 | 814 | |
0e5921e8 ZW |
815 | static tree |
816 | lex_number (str, len) | |
817 | const char *str; | |
818 | unsigned int len; | |
819 | { | |
820 | int base = 10; | |
821 | int count = 0; | |
822 | int largest_digit = 0; | |
823 | int numdigits = 0; | |
824 | int overflow = 0; | |
825 | int c; | |
826 | tree value; | |
827 | const char *p; | |
828 | enum anon1 { NOT_FLOAT = 0, AFTER_POINT, AFTER_EXPON } floatflag = NOT_FLOAT; | |
829 | ||
830 | /* We actually store only HOST_BITS_PER_CHAR bits in each part. | |
831 | The code below which fills the parts array assumes that a host | |
832 | int is at least twice as wide as a host char, and that | |
833 | HOST_BITS_PER_WIDE_INT is an even multiple of HOST_BITS_PER_CHAR. | |
834 | Two HOST_WIDE_INTs is the largest int literal we can store. | |
835 | In order to detect overflow below, the number of parts (TOTAL_PARTS) | |
836 | must be exactly the number of parts needed to hold the bits | |
ec5c56db | 837 | of two HOST_WIDE_INTs. */ |
0e5921e8 ZW |
838 | #define TOTAL_PARTS ((HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR) * 2) |
839 | unsigned int parts[TOTAL_PARTS]; | |
840 | ||
841 | /* Optimize for most frequent case. */ | |
842 | if (len == 1) | |
843 | { | |
844 | if (*str == '0') | |
845 | return integer_zero_node; | |
846 | else if (*str == '1') | |
847 | return integer_one_node; | |
848 | else | |
849 | return build_int_2 (*str - '0', 0); | |
850 | } | |
e8bbfc4e | 851 | |
0e5921e8 ZW |
852 | for (count = 0; count < TOTAL_PARTS; count++) |
853 | parts[count] = 0; | |
e8bbfc4e | 854 | |
0e5921e8 ZW |
855 | /* len is known to be >1 at this point. */ |
856 | p = str; | |
e8bbfc4e | 857 | |
0e5921e8 ZW |
858 | if (len > 2 && str[0] == '0' && (str[1] == 'x' || str[1] == 'X')) |
859 | { | |
860 | base = 16; | |
861 | p = str + 2; | |
862 | } | |
863 | /* The ISDIGIT check is so we are not confused by a suffix on 0. */ | |
864 | else if (str[0] == '0' && ISDIGIT (str[1])) | |
865 | { | |
866 | base = 8; | |
867 | p = str + 1; | |
868 | } | |
e8bbfc4e | 869 | |
0e5921e8 ZW |
870 | do |
871 | { | |
872 | c = *p++; | |
88d92ca5 | 873 | |
0e5921e8 ZW |
874 | if (c == '.') |
875 | { | |
c215b29f | 876 | if (floatflag == AFTER_POINT) |
0e5921e8 ZW |
877 | ERROR ("too many decimal points in floating constant"); |
878 | else if (floatflag == AFTER_EXPON) | |
879 | ERROR ("decimal point in exponent - impossible!"); | |
880 | else | |
881 | floatflag = AFTER_POINT; | |
c832a30e | 882 | |
0e5921e8 ZW |
883 | if (base == 8) |
884 | base = 10; | |
885 | } | |
886 | else if (c == '_') | |
887 | /* Possible future extension: silently ignore _ in numbers, | |
888 | permitting cosmetic grouping - e.g. 0x8000_0000 == 0x80000000 | |
889 | but somewhat easier to read. Ada has this? */ | |
890 | ERROR ("underscore in number"); | |
891 | else | |
892 | { | |
893 | int n; | |
894 | /* It is not a decimal point. | |
895 | It should be a digit (perhaps a hex digit). */ | |
0e0fda0d | 896 | |
0e5921e8 ZW |
897 | if (ISDIGIT (c)) |
898 | { | |
899 | n = c - '0'; | |
900 | } | |
901 | else if (base <= 10 && (c == 'e' || c == 'E')) | |
902 | { | |
903 | base = 10; | |
904 | floatflag = AFTER_EXPON; | |
905 | break; | |
906 | } | |
907 | else if (base == 16 && (c == 'p' || c == 'P')) | |
908 | { | |
909 | floatflag = AFTER_EXPON; | |
910 | break; /* start of exponent */ | |
911 | } | |
912 | else if (base == 16 && c >= 'a' && c <= 'f') | |
913 | { | |
914 | n = c - 'a' + 10; | |
915 | } | |
916 | else if (base == 16 && c >= 'A' && c <= 'F') | |
917 | { | |
918 | n = c - 'A' + 10; | |
919 | } | |
920 | else | |
921 | { | |
922 | p--; | |
923 | break; /* start of suffix */ | |
924 | } | |
0e0fda0d | 925 | |
0e5921e8 ZW |
926 | if (n >= largest_digit) |
927 | largest_digit = n; | |
928 | numdigits++; | |
0e0fda0d | 929 | |
0e5921e8 ZW |
930 | for (count = 0; count < TOTAL_PARTS; count++) |
931 | { | |
932 | parts[count] *= base; | |
933 | if (count) | |
934 | { | |
935 | parts[count] | |
936 | += (parts[count-1] >> HOST_BITS_PER_CHAR); | |
937 | parts[count-1] | |
938 | &= (1 << HOST_BITS_PER_CHAR) - 1; | |
939 | } | |
940 | else | |
941 | parts[0] += n; | |
942 | } | |
e8bbfc4e | 943 | |
0e5921e8 ZW |
944 | /* If the highest-order part overflows (gets larger than |
945 | a host char will hold) then the whole number has | |
946 | overflowed. Record this and truncate the highest-order | |
ec5c56db | 947 | part. */ |
0e5921e8 ZW |
948 | if (parts[TOTAL_PARTS - 1] >> HOST_BITS_PER_CHAR) |
949 | { | |
950 | overflow = 1; | |
951 | parts[TOTAL_PARTS - 1] &= (1 << HOST_BITS_PER_CHAR) - 1; | |
952 | } | |
953 | } | |
954 | } | |
955 | while (p < str + len); | |
91b0989e | 956 | |
0e5921e8 ZW |
957 | /* This can happen on input like `int i = 0x;' */ |
958 | if (numdigits == 0) | |
959 | ERROR ("numeric constant with no digits"); | |
91b0989e | 960 | |
0e5921e8 ZW |
961 | if (largest_digit >= base) |
962 | ERROR ("numeric constant contains digits beyond the radix"); | |
e8bbfc4e | 963 | |
0e5921e8 ZW |
964 | if (floatflag != NOT_FLOAT) |
965 | { | |
966 | tree type; | |
967 | int imag, fflag, lflag, conversion_errno; | |
968 | REAL_VALUE_TYPE real; | |
969 | struct pf_args args; | |
970 | char *copy; | |
971 | ||
c215b29f JM |
972 | if (base == 16 && pedantic && !flag_isoc99) |
973 | pedwarn ("floating constant may not be in radix 16"); | |
974 | ||
0e5921e8 ZW |
975 | if (base == 16 && floatflag != AFTER_EXPON) |
976 | ERROR ("hexadecimal floating constant has no exponent"); | |
977 | ||
978 | /* Read explicit exponent if any, and put it in tokenbuf. */ | |
979 | if ((base == 10 && ((c == 'e') || (c == 'E'))) | |
980 | || (base == 16 && (c == 'p' || c == 'P'))) | |
981 | { | |
982 | if (p < str + len) | |
983 | c = *p++; | |
984 | if (p < str + len && (c == '+' || c == '-')) | |
985 | c = *p++; | |
986 | /* Exponent is decimal, even if string is a hex float. */ | |
987 | if (! ISDIGIT (c)) | |
988 | ERROR ("floating constant exponent has no digits"); | |
989 | while (p < str + len && ISDIGIT (c)) | |
990 | c = *p++; | |
991 | if (! ISDIGIT (c)) | |
992 | p--; | |
993 | } | |
56f48ce9 | 994 | |
0e5921e8 ZW |
995 | /* Copy the float constant now; we don't want any suffixes in the |
996 | string passed to parse_float. */ | |
997 | copy = alloca (p - str + 1); | |
998 | memcpy (copy, str, p - str); | |
999 | copy[p - str] = '\0'; | |
e8bbfc4e | 1000 | |
0e5921e8 ZW |
1001 | /* Now parse suffixes. */ |
1002 | fflag = lflag = imag = 0; | |
1003 | while (p < str + len) | |
1004 | switch (*p++) | |
e8bbfc4e | 1005 | { |
0e5921e8 ZW |
1006 | case 'f': case 'F': |
1007 | if (fflag) | |
1008 | ERROR ("more than one 'f' suffix on floating constant"); | |
7065e130 | 1009 | else if (warn_traditional && !in_system_header |
c691145a | 1010 | && ! cpp_sys_macro_p (parse_in)) |
0e5921e8 | 1011 | warning ("traditional C rejects the 'f' suffix"); |
e8bbfc4e | 1012 | |
0e5921e8 ZW |
1013 | fflag = 1; |
1014 | break; | |
e8bbfc4e | 1015 | |
0e5921e8 ZW |
1016 | case 'l': case 'L': |
1017 | if (lflag) | |
1018 | ERROR ("more than one 'l' suffix on floating constant"); | |
7065e130 | 1019 | else if (warn_traditional && !in_system_header |
c691145a | 1020 | && ! cpp_sys_macro_p (parse_in)) |
0e5921e8 | 1021 | warning ("traditional C rejects the 'l' suffix"); |
56f48ce9 | 1022 | |
0e5921e8 ZW |
1023 | lflag = 1; |
1024 | break; | |
e8bbfc4e | 1025 | |
0e5921e8 ZW |
1026 | case 'i': case 'I': |
1027 | case 'j': case 'J': | |
1028 | if (imag) | |
1029 | ERROR ("more than one 'i' or 'j' suffix on floating constant"); | |
1030 | else if (pedantic) | |
1031 | pedwarn ("ISO C forbids imaginary numeric constants"); | |
1032 | imag = 1; | |
1033 | break; | |
e8bbfc4e | 1034 | |
0e5921e8 ZW |
1035 | default: |
1036 | ERROR ("invalid suffix on floating constant"); | |
e8bbfc4e RK |
1037 | } |
1038 | ||
0e5921e8 ZW |
1039 | /* Setup input for parse_float() */ |
1040 | args.str = copy; | |
1041 | args.fflag = fflag; | |
1042 | args.lflag = lflag; | |
1043 | args.base = base; | |
e8bbfc4e | 1044 | |
0e5921e8 ZW |
1045 | /* Convert string to a double, checking for overflow. */ |
1046 | if (do_float_handler (parse_float, (PTR) &args)) | |
1047 | { | |
1048 | /* Receive output from parse_float() */ | |
1049 | real = args.value; | |
1050 | } | |
1051 | else | |
1052 | /* We got an exception from parse_float() */ | |
1053 | ERROR ("floating constant out of range"); | |
e8bbfc4e | 1054 | |
0e5921e8 ZW |
1055 | /* Receive output from parse_float() */ |
1056 | conversion_errno = args.conversion_errno; | |
1057 | type = args.type; | |
1058 | ||
1059 | #ifdef ERANGE | |
1060 | /* ERANGE is also reported for underflow, | |
1061 | so test the value to distinguish overflow from that. */ | |
1062 | if (conversion_errno == ERANGE && !flag_traditional && pedantic | |
1063 | && (REAL_VALUES_LESS (dconst1, real) | |
1064 | || REAL_VALUES_LESS (real, dconstm1))) | |
1065 | warning ("floating point number exceeds range of 'double'"); | |
56f48ce9 | 1066 | #endif |
e8bbfc4e | 1067 | |
0e5921e8 ZW |
1068 | /* Create a node with determined type and value. */ |
1069 | if (imag) | |
1070 | value = build_complex (NULL_TREE, convert (type, integer_zero_node), | |
1071 | build_real (type, real)); | |
1072 | else | |
1073 | value = build_real (type, real); | |
1074 | } | |
1075 | else | |
1076 | { | |
1077 | tree trad_type, ansi_type, type; | |
1078 | HOST_WIDE_INT high, low; | |
1079 | int spec_unsigned = 0; | |
1080 | int spec_long = 0; | |
1081 | int spec_long_long = 0; | |
1082 | int spec_imag = 0; | |
1083 | int suffix_lu = 0; | |
1084 | int warn = 0, i; | |
1085 | ||
1086 | trad_type = ansi_type = type = NULL_TREE; | |
1087 | while (p < str + len) | |
1088 | { | |
1089 | c = *p++; | |
1090 | switch (c) | |
1091 | { | |
1092 | case 'u': case 'U': | |
1093 | if (spec_unsigned) | |
1094 | error ("two 'u' suffixes on integer constant"); | |
7065e130 | 1095 | else if (warn_traditional && !in_system_header |
c691145a | 1096 | && ! cpp_sys_macro_p (parse_in)) |
0e5921e8 ZW |
1097 | warning ("traditional C rejects the 'u' suffix"); |
1098 | ||
1099 | spec_unsigned = 1; | |
1100 | if (spec_long) | |
1101 | suffix_lu = 1; | |
1102 | break; | |
e8bbfc4e | 1103 | |
0e5921e8 ZW |
1104 | case 'l': case 'L': |
1105 | if (spec_long) | |
1106 | { | |
1107 | if (spec_long_long) | |
1108 | error ("three 'l' suffixes on integer constant"); | |
1109 | else if (suffix_lu) | |
1110 | error ("'lul' is not a valid integer suffix"); | |
1111 | else if (c != spec_long) | |
1112 | error ("'Ll' and 'lL' are not valid integer suffixes"); | |
1113 | else if (pedantic && ! flag_isoc99 | |
1114 | && ! in_system_header && warn_long_long) | |
1115 | pedwarn ("ISO C89 forbids long long integer constants"); | |
1116 | spec_long_long = 1; | |
1117 | } | |
1118 | spec_long = c; | |
1119 | break; | |
56f48ce9 | 1120 | |
0e5921e8 ZW |
1121 | case 'i': case 'I': case 'j': case 'J': |
1122 | if (spec_imag) | |
1123 | error ("more than one 'i' or 'j' suffix on integer constant"); | |
1124 | else if (pedantic) | |
1125 | pedwarn ("ISO C forbids imaginary numeric constants"); | |
1126 | spec_imag = 1; | |
1127 | break; | |
56f48ce9 | 1128 | |
0e5921e8 ZW |
1129 | default: |
1130 | ERROR ("invalid suffix on integer constant"); | |
1131 | } | |
1132 | } | |
56f48ce9 | 1133 | |
ec5c56db | 1134 | /* If the literal overflowed, pedwarn about it now. */ |
0e5921e8 ZW |
1135 | if (overflow) |
1136 | { | |
1137 | warn = 1; | |
1138 | pedwarn ("integer constant is too large for this configuration of the compiler - truncated to %d bits", HOST_BITS_PER_WIDE_INT * 2); | |
1139 | } | |
e8bbfc4e | 1140 | |
0e5921e8 ZW |
1141 | /* This is simplified by the fact that our constant |
1142 | is always positive. */ | |
56f48ce9 | 1143 | |
0e5921e8 | 1144 | high = low = 0; |
e8bbfc4e | 1145 | |
0e5921e8 ZW |
1146 | for (i = 0; i < HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR; i++) |
1147 | { | |
1148 | high |= ((HOST_WIDE_INT) parts[i + (HOST_BITS_PER_WIDE_INT | |
1149 | / HOST_BITS_PER_CHAR)] | |
1150 | << (i * HOST_BITS_PER_CHAR)); | |
1151 | low |= (HOST_WIDE_INT) parts[i] << (i * HOST_BITS_PER_CHAR); | |
1152 | } | |
0468bc75 | 1153 | |
0e5921e8 ZW |
1154 | value = build_int_2 (low, high); |
1155 | TREE_TYPE (value) = long_long_unsigned_type_node; | |
e8bbfc4e | 1156 | |
0e5921e8 ZW |
1157 | /* If warn_traditional, calculate both the ISO type and the |
1158 | traditional type, then see if they disagree. | |
1159 | Otherwise, calculate only the type for the dialect in use. */ | |
1160 | if (warn_traditional || flag_traditional) | |
1161 | { | |
1162 | /* Calculate the traditional type. */ | |
1163 | /* Traditionally, any constant is signed; but if unsigned is | |
1164 | specified explicitly, obey that. Use the smallest size | |
1165 | with the right number of bits, except for one special | |
1166 | case with decimal constants. */ | |
1167 | if (! spec_long && base != 10 | |
1168 | && int_fits_type_p (value, unsigned_type_node)) | |
1169 | trad_type = spec_unsigned ? unsigned_type_node : integer_type_node; | |
1170 | /* A decimal constant must be long if it does not fit in | |
1171 | type int. I think this is independent of whether the | |
1172 | constant is signed. */ | |
1173 | else if (! spec_long && base == 10 | |
1174 | && int_fits_type_p (value, integer_type_node)) | |
1175 | trad_type = spec_unsigned ? unsigned_type_node : integer_type_node; | |
1176 | else if (! spec_long_long) | |
1177 | trad_type = (spec_unsigned | |
1178 | ? long_unsigned_type_node | |
1179 | : long_integer_type_node); | |
1180 | else if (int_fits_type_p (value, | |
1181 | spec_unsigned | |
1182 | ? long_long_unsigned_type_node | |
1183 | : long_long_integer_type_node)) | |
1184 | trad_type = (spec_unsigned | |
1185 | ? long_long_unsigned_type_node | |
1186 | : long_long_integer_type_node); | |
1187 | else | |
1188 | trad_type = (spec_unsigned | |
1189 | ? widest_unsigned_literal_type_node | |
1190 | : widest_integer_literal_type_node); | |
1191 | } | |
1192 | if (warn_traditional || ! flag_traditional) | |
1193 | { | |
1194 | /* Calculate the ISO type. */ | |
1195 | if (! spec_long && ! spec_unsigned | |
1196 | && int_fits_type_p (value, integer_type_node)) | |
1197 | ansi_type = integer_type_node; | |
1198 | else if (! spec_long && (base != 10 || spec_unsigned) | |
1199 | && int_fits_type_p (value, unsigned_type_node)) | |
1200 | ansi_type = unsigned_type_node; | |
1201 | else if (! spec_unsigned && !spec_long_long | |
1202 | && int_fits_type_p (value, long_integer_type_node)) | |
1203 | ansi_type = long_integer_type_node; | |
1204 | else if (! spec_long_long | |
1205 | && int_fits_type_p (value, long_unsigned_type_node)) | |
1206 | ansi_type = long_unsigned_type_node; | |
1207 | else if (! spec_unsigned | |
1208 | && int_fits_type_p (value, long_long_integer_type_node)) | |
1209 | ansi_type = long_long_integer_type_node; | |
1210 | else if (int_fits_type_p (value, long_long_unsigned_type_node)) | |
1211 | ansi_type = long_long_unsigned_type_node; | |
1212 | else if (! spec_unsigned | |
1213 | && int_fits_type_p (value, widest_integer_literal_type_node)) | |
1214 | ansi_type = widest_integer_literal_type_node; | |
1215 | else | |
1216 | ansi_type = widest_unsigned_literal_type_node; | |
1217 | } | |
e8bbfc4e | 1218 | |
0e5921e8 | 1219 | type = flag_traditional ? trad_type : ansi_type; |
e8bbfc4e | 1220 | |
0e5921e8 ZW |
1221 | /* We assume that constants specified in a non-decimal |
1222 | base are bit patterns, and that the programmer really | |
1223 | meant what they wrote. */ | |
1224 | if (warn_traditional && !in_system_header | |
1225 | && base == 10 && trad_type != ansi_type) | |
1226 | { | |
1227 | if (TYPE_PRECISION (trad_type) != TYPE_PRECISION (ansi_type)) | |
1228 | warning ("width of integer constant changes with -traditional"); | |
1229 | else if (TREE_UNSIGNED (trad_type) != TREE_UNSIGNED (ansi_type)) | |
1230 | warning ("integer constant is unsigned in ISO C, signed with -traditional"); | |
1231 | else | |
1232 | warning ("width of integer constant may change on other systems with -traditional"); | |
1233 | } | |
e8bbfc4e | 1234 | |
b15ad712 JM |
1235 | if (pedantic && !flag_traditional && (flag_isoc99 || !spec_long_long) |
1236 | && !warn | |
1237 | && ((flag_isoc99 | |
1238 | ? TYPE_PRECISION (long_long_integer_type_node) | |
1239 | : TYPE_PRECISION (long_integer_type_node)) < TYPE_PRECISION (type))) | |
0e5921e8 ZW |
1240 | { |
1241 | warn = 1; | |
b15ad712 JM |
1242 | pedwarn ("integer constant larger than the maximum value of %s", |
1243 | (flag_isoc99 | |
1244 | ? (TREE_UNSIGNED (type) | |
1245 | ? "an unsigned long long int" | |
1246 | : "a long long int") | |
1247 | : "an unsigned long int")); | |
0e5921e8 | 1248 | } |
e8bbfc4e | 1249 | |
0e5921e8 ZW |
1250 | if (base == 10 && ! spec_unsigned && TREE_UNSIGNED (type)) |
1251 | warning ("decimal constant is so large that it is unsigned"); | |
e8bbfc4e | 1252 | |
0e5921e8 ZW |
1253 | if (spec_imag) |
1254 | { | |
1255 | if (TYPE_PRECISION (type) | |
1256 | <= TYPE_PRECISION (integer_type_node)) | |
1257 | value = build_complex (NULL_TREE, integer_zero_node, | |
1258 | convert (integer_type_node, value)); | |
1259 | else | |
1260 | ERROR ("complex integer constant is too wide for 'complex int'"); | |
1261 | } | |
1262 | else if (flag_traditional && !int_fits_type_p (value, type)) | |
1263 | /* The traditional constant 0x80000000 is signed | |
1264 | but doesn't fit in the range of int. | |
1265 | This will change it to -0x80000000, which does fit. */ | |
1266 | { | |
1267 | TREE_TYPE (value) = unsigned_type (type); | |
1268 | value = convert (type, value); | |
1269 | TREE_OVERFLOW (value) = TREE_CONSTANT_OVERFLOW (value) = 0; | |
1270 | } | |
1271 | else | |
1272 | TREE_TYPE (value) = type; | |
e8bbfc4e | 1273 | |
0e5921e8 | 1274 | /* If it's still an integer (not a complex), and it doesn't |
ec5c56db | 1275 | fit in the type we choose for it, then pedwarn. */ |
fbb18613 | 1276 | |
0e5921e8 ZW |
1277 | if (! warn |
1278 | && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE | |
1279 | && ! int_fits_type_p (value, TREE_TYPE (value))) | |
1280 | pedwarn ("integer constant is larger than the maximum value for its type"); | |
1281 | } | |
fbb18613 | 1282 | |
0e5921e8 ZW |
1283 | if (p < str + len) |
1284 | error ("missing white space after number '%.*s'", (int) (p - str), str); | |
e8bbfc4e | 1285 | |
0e5921e8 | 1286 | return value; |
e8bbfc4e | 1287 | |
0e5921e8 ZW |
1288 | syntax_error: |
1289 | return integer_zero_node; | |
1290 | } | |
e8bbfc4e | 1291 | |
0e5921e8 ZW |
1292 | static tree |
1293 | lex_string (str, len, wide) | |
1294 | const char *str; | |
1295 | unsigned int len; | |
1296 | int wide; | |
1297 | { | |
1298 | tree value; | |
1299 | char *buf = alloca ((len + 1) * (wide ? WCHAR_BYTES : 1)); | |
1300 | char *q = buf; | |
1301 | const char *p = str, *limit = str + len; | |
1302 | unsigned int c; | |
1303 | unsigned width = wide ? WCHAR_TYPE_SIZE | |
1304 | : TYPE_PRECISION (char_type_node); | |
e9a25f70 | 1305 | |
0e5921e8 ZW |
1306 | #ifdef MULTIBYTE_CHARS |
1307 | /* Reset multibyte conversion state. */ | |
9714cf43 | 1308 | (void) local_mbtowc (NULL, NULL, 0); |
0e5921e8 | 1309 | #endif |
e9a25f70 | 1310 | |
0e5921e8 ZW |
1311 | while (p < limit) |
1312 | { | |
1313 | #ifdef MULTIBYTE_CHARS | |
1314 | wchar_t wc; | |
1315 | int char_len; | |
1316 | ||
1317 | char_len = local_mbtowc (&wc, p, limit - p); | |
1318 | if (char_len == -1) | |
1319 | { | |
1320 | warning ("Ignoring invalid multibyte character"); | |
1321 | char_len = 1; | |
1322 | c = *p++; | |
1323 | } | |
1324 | else | |
1325 | { | |
1326 | p += char_len; | |
1327 | c = wc; | |
1328 | } | |
1329 | #else | |
1330 | c = *p++; | |
1331 | #endif | |
1332 | ||
1333 | if (c == '\\' && !ignore_escape_flag) | |
1334 | { | |
62729350 NB |
1335 | unsigned int mask; |
1336 | ||
1337 | if (width < HOST_BITS_PER_INT) | |
1338 | mask = ((unsigned int) 1 << width) - 1; | |
1339 | else | |
1340 | mask = ~0; | |
1341 | c = cpp_parse_escape (parse_in, (const unsigned char **) &p, | |
1342 | (const unsigned char *) limit, | |
1343 | mask, flag_traditional); | |
0e5921e8 ZW |
1344 | } |
1345 | ||
1346 | /* Add this single character into the buffer either as a wchar_t | |
1347 | or as a single byte. */ | |
1348 | if (wide) | |
1349 | { | |
1350 | unsigned charwidth = TYPE_PRECISION (char_type_node); | |
5c80f6e6 | 1351 | unsigned bytemask = (1 << charwidth) - 1; |
0e5921e8 ZW |
1352 | int byte; |
1353 | ||
1354 | for (byte = 0; byte < WCHAR_BYTES; ++byte) | |
1355 | { | |
1356 | int n; | |
1357 | if (byte >= (int) sizeof (c)) | |
1358 | n = 0; | |
1359 | else | |
1360 | n = (c >> (byte * charwidth)) & bytemask; | |
1361 | if (BYTES_BIG_ENDIAN) | |
1362 | q[WCHAR_BYTES - byte - 1] = n; | |
1363 | else | |
1364 | q[byte] = n; | |
1365 | } | |
1366 | q += WCHAR_BYTES; | |
1367 | } | |
1368 | else | |
1369 | { | |
1370 | *q++ = c; | |
1371 | } | |
e8bbfc4e RK |
1372 | } |
1373 | ||
0e5921e8 ZW |
1374 | /* Terminate the string value, either with a single byte zero |
1375 | or with a wide zero. */ | |
e8bbfc4e | 1376 | |
0e5921e8 ZW |
1377 | if (wide) |
1378 | { | |
1379 | memset (q, 0, WCHAR_BYTES); | |
1380 | q += WCHAR_BYTES; | |
1381 | } | |
1382 | else | |
1383 | { | |
1384 | *q++ = '\0'; | |
1385 | } | |
1386 | ||
1387 | value = build_string (q - buf, buf); | |
1388 | ||
1389 | if (wide) | |
1390 | TREE_TYPE (value) = wchar_array_type_node; | |
1391 | else | |
1392 | TREE_TYPE (value) = char_array_type_node; | |
e8bbfc4e RK |
1393 | return value; |
1394 | } | |
1395 | ||
c8a96070 | 1396 | /* Converts a (possibly wide) character constant token into a tree. */ |
0e5921e8 | 1397 | static tree |
c8a96070 NB |
1398 | lex_charconst (token) |
1399 | const cpp_token *token; | |
e8bbfc4e | 1400 | { |
c8a96070 | 1401 | HOST_WIDE_INT result; |
0e5921e8 | 1402 | tree value; |
c8a96070 NB |
1403 | unsigned int chars_seen; |
1404 | ||
1405 | result = cpp_interpret_charconst (parse_in, token, warn_multichar, | |
1406 | flag_traditional, &chars_seen); | |
1407 | if (token->type == CPP_WCHAR) | |
0e5921e8 | 1408 | { |
c8a96070 NB |
1409 | value = build_int_2 (result, 0); |
1410 | TREE_TYPE (value) = wchar_type_node; | |
0e5921e8 | 1411 | } |
c8a96070 | 1412 | else |
0e5921e8 | 1413 | { |
c8a96070 NB |
1414 | if (result < 0) |
1415 | value = build_int_2 (result, -1); | |
0e5921e8 | 1416 | else |
c8a96070 NB |
1417 | value = build_int_2 (result, 0); |
1418 | ||
1419 | /* In C, a character constant has type 'int'. | |
1420 | In C++ 'char', but multi-char charconsts have type 'int'. */ | |
1421 | if (c_language == clk_cplusplus && chars_seen <= 1) | |
1422 | TREE_TYPE (value) = char_type_node; | |
0e5921e8 | 1423 | else |
c8a96070 | 1424 | TREE_TYPE (value) = integer_type_node; |
0e5921e8 | 1425 | } |
c8a96070 | 1426 | |
0e5921e8 | 1427 | return value; |
e8bbfc4e | 1428 | } |