Merge trunk version 195164 into gupc branch.
[official-gcc.git] / gcc / c-family / c-lex.c
blob8c9ff08f15e4a9233943230fca93cd819b5f3b13
1 /* Mainly the interface between cpplib and the C front ends.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
25 #include "tree.h"
26 #include "input.h"
27 #include "c-common.h"
28 #include "flags.h"
29 #include "timevar.h"
30 #include "cpplib.h"
31 #include "c-pragma.h"
32 #include "intl.h"
33 #include "splay-tree.h"
34 #include "debug.h"
35 #include "target.h"
37 /* We may keep statistics about how long which files took to compile. */
38 static int header_time, body_time;
39 static splay_tree file_info_tree;
41 int pending_lang_change; /* If we need to switch languages - C++ only */
42 int c_header_level; /* depth in C headers - C++ and UPC only */
44 static tree interpret_integer (const cpp_token *, unsigned int,
45 enum overflow_type *);
46 static tree interpret_float (const cpp_token *, unsigned int, const char *,
47 enum overflow_type *);
48 static tree interpret_fixed (const cpp_token *, unsigned int);
49 static enum integer_type_kind narrowest_unsigned_type
50 (unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT, unsigned int);
51 static enum integer_type_kind narrowest_signed_type
52 (unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT, unsigned int);
53 static enum cpp_ttype lex_string (const cpp_token *, tree *, bool, bool);
54 static tree lex_charconst (const cpp_token *);
55 static void update_header_times (const char *);
56 static int dump_one_header (splay_tree_node, void *);
57 static void cb_line_change (cpp_reader *, const cpp_token *, int);
58 static void cb_ident (cpp_reader *, unsigned int, const cpp_string *);
59 static void cb_def_pragma (cpp_reader *, unsigned int);
60 static void cb_define (cpp_reader *, unsigned int, cpp_hashnode *);
61 static void cb_undef (cpp_reader *, unsigned int, cpp_hashnode *);
63 void
64 init_c_lex (void)
66 struct cpp_callbacks *cb;
67 struct c_fileinfo *toplevel;
69 /* The get_fileinfo data structure must be initialized before
70 cpp_read_main_file is called. */
71 toplevel = get_fileinfo ("<top level>");
72 if (flag_detailed_statistics)
74 header_time = 0;
75 body_time = get_run_time ();
76 toplevel->time = body_time;
79 cb = cpp_get_callbacks (parse_in);
81 cb->line_change = cb_line_change;
82 cb->ident = cb_ident;
83 cb->def_pragma = cb_def_pragma;
84 cb->valid_pch = c_common_valid_pch;
85 cb->read_pch = c_common_read_pch;
87 /* Set the debug callbacks if we can use them. */
88 if ((debug_info_level == DINFO_LEVEL_VERBOSE
89 && (write_symbols == DWARF2_DEBUG
90 || write_symbols == VMS_AND_DWARF2_DEBUG))
91 || flag_dump_go_spec != NULL)
93 cb->define = cb_define;
94 cb->undef = cb_undef;
98 struct c_fileinfo *
99 get_fileinfo (const char *name)
101 splay_tree_node n;
102 struct c_fileinfo *fi;
104 if (!file_info_tree)
105 file_info_tree = splay_tree_new ((splay_tree_compare_fn) strcmp,
107 (splay_tree_delete_value_fn) free);
109 n = splay_tree_lookup (file_info_tree, (splay_tree_key) name);
110 if (n)
111 return (struct c_fileinfo *) n->value;
113 fi = XNEW (struct c_fileinfo);
114 fi->time = 0;
115 fi->interface_only = 0;
116 fi->interface_unknown = 1;
117 splay_tree_insert (file_info_tree, (splay_tree_key) name,
118 (splay_tree_value) fi);
119 return fi;
122 static void
123 update_header_times (const char *name)
125 /* Changing files again. This means currently collected time
126 is charged against header time, and body time starts back at 0. */
127 if (flag_detailed_statistics)
129 int this_time = get_run_time ();
130 struct c_fileinfo *file = get_fileinfo (name);
131 header_time += this_time - body_time;
132 file->time += this_time - body_time;
133 body_time = this_time;
137 static int
138 dump_one_header (splay_tree_node n, void * ARG_UNUSED (dummy))
140 print_time ((const char *) n->key,
141 ((struct c_fileinfo *) n->value)->time);
142 return 0;
145 void
146 dump_time_statistics (void)
148 struct c_fileinfo *file = get_fileinfo (input_filename);
149 int this_time = get_run_time ();
150 file->time += this_time - body_time;
152 fprintf (stderr, "\n******\n");
153 print_time ("header files (total)", header_time);
154 print_time ("main file (total)", this_time - body_time);
155 fprintf (stderr, "ratio = %g : 1\n",
156 (double) header_time / (double) (this_time - body_time));
157 fprintf (stderr, "\n******\n");
159 splay_tree_foreach (file_info_tree, dump_one_header, 0);
162 static void
163 cb_ident (cpp_reader * ARG_UNUSED (pfile),
164 unsigned int ARG_UNUSED (line),
165 const cpp_string * ARG_UNUSED (str))
167 if (!flag_no_ident)
169 /* Convert escapes in the string. */
170 cpp_string cstr = { 0, 0 };
171 if (cpp_interpret_string (pfile, str, 1, &cstr, CPP_STRING))
173 targetm.asm_out.output_ident ((const char *) cstr.text);
174 free (CONST_CAST (unsigned char *, cstr.text));
179 /* Called at the start of every non-empty line. TOKEN is the first
180 lexed token on the line. Used for diagnostic line numbers. */
181 static void
182 cb_line_change (cpp_reader * ARG_UNUSED (pfile), const cpp_token *token,
183 int parsing_args)
185 if (token->type != CPP_EOF && !parsing_args)
186 input_location = token->src_loc;
189 void
190 fe_file_change (const struct line_map *new_map)
192 if (new_map == NULL)
193 return;
195 if (new_map->reason == LC_ENTER)
197 /* Don't stack the main buffer on the input stack;
198 we already did in compile_file. */
199 if (!MAIN_FILE_P (new_map))
201 unsigned int included_at = LAST_SOURCE_LINE_LOCATION (new_map - 1);
202 int line = 0;
203 if (included_at > BUILTINS_LOCATION)
204 line = SOURCE_LINE (new_map - 1, included_at);
206 input_location = new_map->start_location;
207 (*debug_hooks->start_source_file) (line, LINEMAP_FILE (new_map));
208 if (c_header_level)
209 ++c_header_level;
210 else if (LINEMAP_SYSP (new_map) == 2)
212 c_header_level = 1;
213 #ifndef NO_IMPLICIT_EXTERN_C
214 ++pending_lang_change;
215 #endif
219 else if (new_map->reason == LC_LEAVE)
221 if (c_header_level && --c_header_level == 0)
223 if (LINEMAP_SYSP (new_map) == 2)
224 warning (0, "badly nested C headers from preprocessor");
225 #ifndef NO_IMPLICIT_EXTERN_C
226 --pending_lang_change;
227 #endif
229 input_location = new_map->start_location;
231 (*debug_hooks->end_source_file) (LINEMAP_LINE (new_map));
234 update_header_times (LINEMAP_FILE (new_map));
235 input_location = new_map->start_location;
238 static void
239 cb_def_pragma (cpp_reader *pfile, source_location loc)
241 /* Issue a warning message if we have been asked to do so. Ignore
242 unknown pragmas in system headers unless an explicit
243 -Wunknown-pragmas has been given. */
244 if (warn_unknown_pragmas > in_system_header)
246 const unsigned char *space, *name;
247 const cpp_token *s;
248 location_t fe_loc = loc;
250 space = name = (const unsigned char *) "";
251 s = cpp_get_token (pfile);
252 if (s->type != CPP_EOF)
254 space = cpp_token_as_text (pfile, s);
255 s = cpp_get_token (pfile);
256 if (s->type == CPP_NAME)
257 name = cpp_token_as_text (pfile, s);
260 warning_at (fe_loc, OPT_Wunknown_pragmas, "ignoring #pragma %s %s",
261 space, name);
265 /* #define callback for DWARF and DWARF2 debug info. */
266 static void
267 cb_define (cpp_reader *pfile, source_location loc, cpp_hashnode *node)
269 const struct line_map *map = linemap_lookup (line_table, loc);
270 (*debug_hooks->define) (SOURCE_LINE (map, loc),
271 (const char *) cpp_macro_definition (pfile, node));
274 /* #undef callback for DWARF and DWARF2 debug info. */
275 static void
276 cb_undef (cpp_reader * ARG_UNUSED (pfile), source_location loc,
277 cpp_hashnode *node)
279 const struct line_map *map = linemap_lookup (line_table, loc);
280 (*debug_hooks->undef) (SOURCE_LINE (map, loc),
281 (const char *) NODE_NAME (node));
284 /* Read a token and return its type. Fill *VALUE with its value, if
285 applicable. Fill *CPP_FLAGS with the token's flags, if it is
286 non-NULL. */
288 enum cpp_ttype
289 c_lex_with_flags (tree *value, location_t *loc, unsigned char *cpp_flags,
290 int lex_flags)
292 static bool no_more_pch;
293 const cpp_token *tok;
294 enum cpp_ttype type;
295 unsigned char add_flags = 0;
296 enum overflow_type overflow = OT_NONE;
298 timevar_push (TV_CPP);
299 retry:
300 tok = cpp_get_token_with_location (parse_in, loc);
301 type = tok->type;
303 retry_after_at:
304 switch (type)
306 case CPP_PADDING:
307 goto retry;
309 case CPP_NAME:
310 *value = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok->val.node.node));
311 break;
313 case CPP_NUMBER:
315 const char *suffix = NULL;
316 unsigned int flags = cpp_classify_number (parse_in, tok, &suffix, *loc);
318 switch (flags & CPP_N_CATEGORY)
320 case CPP_N_INVALID:
321 /* cpplib has issued an error. */
322 *value = error_mark_node;
323 break;
325 case CPP_N_INTEGER:
326 /* C++ uses '0' to mark virtual functions as pure.
327 Set PURE_ZERO to pass this information to the C++ parser. */
328 if (tok->val.str.len == 1 && *tok->val.str.text == '0')
329 add_flags = PURE_ZERO;
330 *value = interpret_integer (tok, flags, &overflow);
331 break;
333 case CPP_N_FLOATING:
334 *value = interpret_float (tok, flags, suffix, &overflow);
335 break;
337 default:
338 gcc_unreachable ();
341 if (flags & CPP_N_USERDEF)
343 char *str;
344 tree literal;
345 tree suffix_id = get_identifier (suffix);
346 int len = tok->val.str.len - strlen (suffix);
347 /* If this is going to be used as a C string to pass to a
348 raw literal operator, we need to add a trailing NUL. */
349 tree num_string = build_string (len + 1,
350 (const char *) tok->val.str.text);
351 TREE_TYPE (num_string) = char_array_type_node;
352 num_string = fix_string_type (num_string);
353 str = CONST_CAST (char *, TREE_STRING_POINTER (num_string));
354 str[len] = '\0';
355 literal = build_userdef_literal (suffix_id, *value, overflow,
356 num_string);
357 *value = literal;
360 break;
362 case CPP_ATSIGN:
363 /* An @ may give the next token special significance in Objective-C. */
364 if (c_dialect_objc ())
366 location_t atloc = *loc;
367 location_t newloc;
369 retry_at:
370 tok = cpp_get_token_with_location (parse_in, &newloc);
371 type = tok->type;
372 switch (type)
374 case CPP_PADDING:
375 goto retry_at;
377 case CPP_STRING:
378 case CPP_WSTRING:
379 case CPP_STRING16:
380 case CPP_STRING32:
381 case CPP_UTF8STRING:
382 type = lex_string (tok, value, true, true);
383 break;
385 case CPP_NAME:
386 *value = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok->val.node.node));
387 if (OBJC_IS_AT_KEYWORD (C_RID_CODE (*value))
388 || OBJC_IS_CXX_KEYWORD (C_RID_CODE (*value)))
390 type = CPP_AT_NAME;
391 /* Note the complication: if we found an OBJC_CXX
392 keyword, for example, 'class', we will be
393 returning a token of type CPP_AT_NAME and rid
394 code RID_CLASS (not RID_AT_CLASS). The language
395 parser needs to convert that to RID_AT_CLASS.
397 break;
399 /* FALLTHROUGH */
401 default:
402 /* ... or not. */
403 error_at (atloc, "stray %<@%> in program");
404 *loc = newloc;
405 goto retry_after_at;
407 break;
410 /* FALLTHROUGH */
411 case CPP_HASH:
412 case CPP_PASTE:
414 unsigned char name[8];
416 *cpp_spell_token (parse_in, tok, name, true) = 0;
418 error_at (*loc, "stray %qs in program", name);
421 goto retry;
423 case CPP_OTHER:
425 cppchar_t c = tok->val.str.text[0];
427 if (c == '"' || c == '\'')
428 error ("missing terminating %c character", (int) c);
429 else if (ISGRAPH (c))
430 error ("stray %qc in program", (int) c);
431 else
432 error ("stray %<\\%o%> in program", (int) c);
434 goto retry;
436 case CPP_CHAR_USERDEF:
437 case CPP_WCHAR_USERDEF:
438 case CPP_CHAR16_USERDEF:
439 case CPP_CHAR32_USERDEF:
441 tree literal;
442 cpp_token temp_tok = *tok;
443 const char *suffix = cpp_get_userdef_suffix (tok);
444 temp_tok.val.str.len -= strlen (suffix);
445 temp_tok.type = cpp_userdef_char_remove_type (type);
446 literal = build_userdef_literal (get_identifier (suffix),
447 lex_charconst (&temp_tok),
448 OT_NONE, NULL_TREE);
449 *value = literal;
451 break;
453 case CPP_CHAR:
454 case CPP_WCHAR:
455 case CPP_CHAR16:
456 case CPP_CHAR32:
457 *value = lex_charconst (tok);
458 break;
460 case CPP_STRING_USERDEF:
461 case CPP_WSTRING_USERDEF:
462 case CPP_STRING16_USERDEF:
463 case CPP_STRING32_USERDEF:
464 case CPP_UTF8STRING_USERDEF:
466 tree literal, string;
467 const char *suffix = cpp_get_userdef_suffix (tok);
468 string = build_string (tok->val.str.len - strlen (suffix),
469 (const char *) tok->val.str.text);
470 literal = build_userdef_literal (get_identifier (suffix),
471 string, OT_NONE, NULL_TREE);
472 *value = literal;
474 break;
476 case CPP_STRING:
477 case CPP_WSTRING:
478 case CPP_STRING16:
479 case CPP_STRING32:
480 case CPP_UTF8STRING:
481 if ((lex_flags & C_LEX_STRING_NO_JOIN) == 0)
483 type = lex_string (tok, value, false,
484 (lex_flags & C_LEX_STRING_NO_TRANSLATE) == 0);
485 break;
487 *value = build_string (tok->val.str.len, (const char *) tok->val.str.text);
488 break;
490 case CPP_PRAGMA:
491 *value = build_int_cst (integer_type_node, tok->val.pragma);
492 break;
494 /* These tokens should not be visible outside cpplib. */
495 case CPP_HEADER_NAME:
496 case CPP_MACRO_ARG:
497 gcc_unreachable ();
499 /* CPP_COMMENT will appear when compiling with -C and should be
500 ignored. */
501 case CPP_COMMENT:
502 goto retry;
504 default:
505 *value = NULL_TREE;
506 break;
509 if (cpp_flags)
510 *cpp_flags = tok->flags | add_flags;
512 if (!no_more_pch)
514 no_more_pch = true;
515 c_common_no_more_pch ();
518 timevar_pop (TV_CPP);
520 return type;
523 /* Returns the narrowest C-visible unsigned type, starting with the
524 minimum specified by FLAGS, that can fit HIGH:LOW, or itk_none if
525 there isn't one. */
527 static enum integer_type_kind
528 narrowest_unsigned_type (unsigned HOST_WIDE_INT low,
529 unsigned HOST_WIDE_INT high,
530 unsigned int flags)
532 int itk;
534 if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
535 itk = itk_unsigned_int;
536 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
537 itk = itk_unsigned_long;
538 else
539 itk = itk_unsigned_long_long;
541 for (; itk < itk_none; itk += 2 /* skip unsigned types */)
543 tree upper;
545 if (integer_types[itk] == NULL_TREE)
546 continue;
547 upper = TYPE_MAX_VALUE (integer_types[itk]);
549 if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (upper) > high
550 || ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (upper) == high
551 && TREE_INT_CST_LOW (upper) >= low))
552 return (enum integer_type_kind) itk;
555 return itk_none;
558 /* Ditto, but narrowest signed type. */
559 static enum integer_type_kind
560 narrowest_signed_type (unsigned HOST_WIDE_INT low,
561 unsigned HOST_WIDE_INT high, unsigned int flags)
563 int itk;
565 if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
566 itk = itk_int;
567 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
568 itk = itk_long;
569 else
570 itk = itk_long_long;
573 for (; itk < itk_none; itk += 2 /* skip signed types */)
575 tree upper;
577 if (integer_types[itk] == NULL_TREE)
578 continue;
579 upper = TYPE_MAX_VALUE (integer_types[itk]);
581 if ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (upper) > high
582 || ((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (upper) == high
583 && TREE_INT_CST_LOW (upper) >= low))
584 return (enum integer_type_kind) itk;
587 return itk_none;
590 /* Interpret TOKEN, an integer with FLAGS as classified by cpplib. */
591 static tree
592 interpret_integer (const cpp_token *token, unsigned int flags,
593 enum overflow_type *overflow)
595 tree value, type;
596 enum integer_type_kind itk;
597 cpp_num integer;
598 cpp_options *options = cpp_get_options (parse_in);
600 *overflow = OT_NONE;
602 integer = cpp_interpret_integer (parse_in, token, flags);
603 integer = cpp_num_sign_extend (integer, options->precision);
604 if (integer.overflow)
605 *overflow = OT_OVERFLOW;
607 /* The type of a constant with a U suffix is straightforward. */
608 if (flags & CPP_N_UNSIGNED)
609 itk = narrowest_unsigned_type (integer.low, integer.high, flags);
610 else
612 /* The type of a potentially-signed integer constant varies
613 depending on the base it's in, the standard in use, and the
614 length suffixes. */
615 enum integer_type_kind itk_u
616 = narrowest_unsigned_type (integer.low, integer.high, flags);
617 enum integer_type_kind itk_s
618 = narrowest_signed_type (integer.low, integer.high, flags);
620 /* In both C89 and C99, octal and hex constants may be signed or
621 unsigned, whichever fits tighter. We do not warn about this
622 choice differing from the traditional choice, as the constant
623 is probably a bit pattern and either way will work. */
624 if ((flags & CPP_N_RADIX) != CPP_N_DECIMAL)
625 itk = MIN (itk_u, itk_s);
626 else
628 /* In C99, decimal constants are always signed.
629 In C89, decimal constants that don't fit in long have
630 undefined behavior; we try to make them unsigned long.
631 In GCC's extended C89, that last is true of decimal
632 constants that don't fit in long long, too. */
634 itk = itk_s;
635 if (itk_s > itk_u && itk_s > itk_long)
637 if (!flag_isoc99)
639 if (itk_u < itk_unsigned_long)
640 itk_u = itk_unsigned_long;
641 itk = itk_u;
642 warning (0, "this decimal constant is unsigned only in ISO C90");
644 else
645 warning (OPT_Wtraditional,
646 "this decimal constant would be unsigned in ISO C90");
651 if (itk == itk_none)
652 /* cpplib has already issued a warning for overflow. */
653 type = ((flags & CPP_N_UNSIGNED)
654 ? widest_unsigned_literal_type_node
655 : widest_integer_literal_type_node);
656 else
658 type = integer_types[itk];
659 if (itk > itk_unsigned_long
660 && (flags & CPP_N_WIDTH) != CPP_N_LARGE)
661 emit_diagnostic
662 ((c_dialect_cxx () ? cxx_dialect == cxx98 : !flag_isoc99)
663 ? DK_PEDWARN : DK_WARNING,
664 input_location, OPT_Wlong_long,
665 (flags & CPP_N_UNSIGNED)
666 ? "integer constant is too large for %<unsigned long%> type"
667 : "integer constant is too large for %<long%> type");
670 value = build_int_cst_wide (type, integer.low, integer.high);
672 /* Convert imaginary to a complex type. */
673 if (flags & CPP_N_IMAGINARY)
674 value = build_complex (NULL_TREE, build_int_cst (type, 0), value);
676 return value;
679 /* Interpret TOKEN, a floating point number with FLAGS as classified
680 by cpplib. For C++0X SUFFIX may contain a user-defined literal suffix. */
681 static tree
682 interpret_float (const cpp_token *token, unsigned int flags,
683 const char *suffix, enum overflow_type *overflow)
685 tree type;
686 tree const_type;
687 tree value;
688 REAL_VALUE_TYPE real;
689 REAL_VALUE_TYPE real_trunc;
690 char *copy;
691 size_t copylen;
693 *overflow = OT_NONE;
695 /* Default (no suffix) depends on whether the FLOAT_CONST_DECIMAL64
696 pragma has been used and is either double or _Decimal64. Types
697 that are not allowed with decimal float default to double. */
698 if (flags & CPP_N_DEFAULT)
700 flags ^= CPP_N_DEFAULT;
701 flags |= CPP_N_MEDIUM;
703 if (((flags & CPP_N_HEX) == 0) && ((flags & CPP_N_IMAGINARY) == 0))
705 warning (OPT_Wunsuffixed_float_constants,
706 "unsuffixed float constant");
707 if (float_const_decimal64_p ())
708 flags |= CPP_N_DFLOAT;
712 /* Decode _Fract and _Accum. */
713 if (flags & CPP_N_FRACT || flags & CPP_N_ACCUM)
714 return interpret_fixed (token, flags);
716 /* Decode type based on width and properties. */
717 if (flags & CPP_N_DFLOAT)
718 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
719 type = dfloat128_type_node;
720 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
721 type = dfloat32_type_node;
722 else
723 type = dfloat64_type_node;
724 else
725 if (flags & CPP_N_WIDTH_MD)
727 char suffix;
728 enum machine_mode mode;
730 if ((flags & CPP_N_WIDTH_MD) == CPP_N_MD_W)
731 suffix = 'w';
732 else
733 suffix = 'q';
735 mode = targetm.c.mode_for_suffix (suffix);
736 if (mode == VOIDmode)
738 error ("unsupported non-standard suffix on floating constant");
740 return error_mark_node;
742 else
743 pedwarn (input_location, OPT_Wpedantic, "non-standard suffix on floating constant");
745 type = c_common_type_for_mode (mode, 0);
746 gcc_assert (type);
748 else if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
749 type = long_double_type_node;
750 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL
751 || flag_single_precision_constant)
752 type = float_type_node;
753 else
754 type = double_type_node;
756 const_type = excess_precision_type (type);
757 if (!const_type)
758 const_type = type;
760 /* Copy the constant to a nul-terminated buffer. If the constant
761 has any suffixes, cut them off; REAL_VALUE_ATOF/ REAL_VALUE_HTOF
762 can't handle them. */
763 copylen = token->val.str.len;
764 if (flags & CPP_N_USERDEF)
765 copylen -= strlen (suffix);
766 else if (flags & CPP_N_DFLOAT)
767 copylen -= 2;
768 else
770 if ((flags & CPP_N_WIDTH) != CPP_N_MEDIUM)
771 /* Must be an F or L or machine defined suffix. */
772 copylen--;
773 if (flags & CPP_N_IMAGINARY)
774 /* I or J suffix. */
775 copylen--;
778 copy = (char *) alloca (copylen + 1);
779 memcpy (copy, token->val.str.text, copylen);
780 copy[copylen] = '\0';
782 real_from_string3 (&real, copy, TYPE_MODE (const_type));
783 if (const_type != type)
784 /* Diagnosing if the result of converting the value with excess
785 precision to the semantic type would overflow (with associated
786 double rounding) is more appropriate than diagnosing if the
787 result of converting the string directly to the semantic type
788 would overflow. */
789 real_convert (&real_trunc, TYPE_MODE (type), &real);
791 /* Both C and C++ require a diagnostic for a floating constant
792 outside the range of representable values of its type. Since we
793 have __builtin_inf* to produce an infinity, this is now a
794 mandatory pedwarn if the target does not support infinities. */
795 if (REAL_VALUE_ISINF (real)
796 || (const_type != type && REAL_VALUE_ISINF (real_trunc)))
798 *overflow = OT_OVERFLOW;
799 if (!(flags & CPP_N_USERDEF))
801 if (!MODE_HAS_INFINITIES (TYPE_MODE (type)))
802 pedwarn (input_location, 0,
803 "floating constant exceeds range of %qT", type);
804 else
805 warning (OPT_Woverflow,
806 "floating constant exceeds range of %qT", type);
809 /* We also give a warning if the value underflows. */
810 else if (REAL_VALUES_EQUAL (real, dconst0)
811 || (const_type != type
812 && REAL_VALUES_EQUAL (real_trunc, dconst0)))
814 REAL_VALUE_TYPE realvoidmode;
815 int oflow = real_from_string (&realvoidmode, copy);
816 *overflow = (oflow == 0 ? OT_NONE
817 : (oflow < 0 ? OT_UNDERFLOW : OT_OVERFLOW));
818 if (!(flags & CPP_N_USERDEF))
820 if (oflow < 0 || !REAL_VALUES_EQUAL (realvoidmode, dconst0))
821 warning (OPT_Woverflow, "floating constant truncated to zero");
825 /* Create a node with determined type and value. */
826 value = build_real (const_type, real);
827 if (flags & CPP_N_IMAGINARY)
829 value = build_complex (NULL_TREE, convert (const_type,
830 integer_zero_node), value);
831 if (type != const_type)
833 const_type = TREE_TYPE (value);
834 type = build_complex_type (type);
838 if (type != const_type)
839 value = build1 (EXCESS_PRECISION_EXPR, type, value);
841 return value;
844 /* Interpret TOKEN, a fixed-point number with FLAGS as classified
845 by cpplib. */
847 static tree
848 interpret_fixed (const cpp_token *token, unsigned int flags)
850 tree type;
851 tree value;
852 FIXED_VALUE_TYPE fixed;
853 char *copy;
854 size_t copylen;
856 copylen = token->val.str.len;
858 if (flags & CPP_N_FRACT) /* _Fract. */
860 if (flags & CPP_N_UNSIGNED) /* Unsigned _Fract. */
862 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
864 type = unsigned_long_long_fract_type_node;
865 copylen -= 4;
867 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
869 type = unsigned_long_fract_type_node;
870 copylen -= 3;
872 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
874 type = unsigned_short_fract_type_node;
875 copylen -= 3;
877 else
879 type = unsigned_fract_type_node;
880 copylen -= 2;
883 else /* Signed _Fract. */
885 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
887 type = long_long_fract_type_node;
888 copylen -= 3;
890 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
892 type = long_fract_type_node;
893 copylen -= 2;
895 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
897 type = short_fract_type_node;
898 copylen -= 2;
900 else
902 type = fract_type_node;
903 copylen --;
907 else /* _Accum. */
909 if (flags & CPP_N_UNSIGNED) /* Unsigned _Accum. */
911 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
913 type = unsigned_long_long_accum_type_node;
914 copylen -= 4;
916 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
918 type = unsigned_long_accum_type_node;
919 copylen -= 3;
921 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
923 type = unsigned_short_accum_type_node;
924 copylen -= 3;
926 else
928 type = unsigned_accum_type_node;
929 copylen -= 2;
932 else /* Signed _Accum. */
934 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
936 type = long_long_accum_type_node;
937 copylen -= 3;
939 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
941 type = long_accum_type_node;
942 copylen -= 2;
944 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
946 type = short_accum_type_node;
947 copylen -= 2;
949 else
951 type = accum_type_node;
952 copylen --;
957 copy = (char *) alloca (copylen + 1);
958 memcpy (copy, token->val.str.text, copylen);
959 copy[copylen] = '\0';
961 fixed_from_string (&fixed, copy, TYPE_MODE (type));
963 /* Create a node with determined type and value. */
964 value = build_fixed (type, fixed);
966 return value;
969 /* Convert a series of STRING, WSTRING, STRING16, STRING32 and/or
970 UTF8STRING tokens into a tree, performing string constant
971 concatenation. TOK is the first of these. VALP is the location to
972 write the string into. OBJC_STRING indicates whether an '@' token
973 preceded the incoming token (in that case, the strings can either
974 be ObjC strings, preceded by a single '@', or normal strings, not
975 preceded by '@'. The result will be a CPP_OBJC_STRING). Returns
976 the CPP token type of the result (CPP_STRING, CPP_WSTRING,
977 CPP_STRING32, CPP_STRING16, CPP_UTF8STRING, or CPP_OBJC_STRING).
979 This is unfortunately more work than it should be. If any of the
980 strings in the series has an L prefix, the result is a wide string
981 (6.4.5p4). Whether or not the result is a wide string affects the
982 meaning of octal and hexadecimal escapes (6.4.4.4p6,9). But escape
983 sequences do not continue across the boundary between two strings in
984 a series (6.4.5p7), so we must not lose the boundaries. Therefore
985 cpp_interpret_string takes a vector of cpp_string structures, which
986 we must arrange to provide. */
988 static enum cpp_ttype
989 lex_string (const cpp_token *tok, tree *valp, bool objc_string, bool translate)
991 tree value;
992 size_t concats = 0;
993 struct obstack str_ob;
994 cpp_string istr;
995 enum cpp_ttype type = tok->type;
997 /* Try to avoid the overhead of creating and destroying an obstack
998 for the common case of just one string. */
999 cpp_string str = tok->val.str;
1000 cpp_string *strs = &str;
1002 /* objc_at_sign_was_seen is only used when doing Objective-C string
1003 concatenation. It is 'true' if we have seen an '@' before the
1004 current string, and 'false' if not. We must see exactly one or
1005 zero '@' before each string. */
1006 bool objc_at_sign_was_seen = false;
1008 retry:
1009 tok = cpp_get_token (parse_in);
1010 switch (tok->type)
1012 case CPP_PADDING:
1013 goto retry;
1014 case CPP_ATSIGN:
1015 if (objc_string)
1017 if (objc_at_sign_was_seen)
1018 error ("repeated %<@%> before Objective-C string");
1020 objc_at_sign_was_seen = true;
1021 goto retry;
1023 /* FALLTHROUGH */
1025 default:
1026 break;
1028 case CPP_WSTRING:
1029 case CPP_STRING16:
1030 case CPP_STRING32:
1031 case CPP_UTF8STRING:
1032 if (type != tok->type)
1034 if (type == CPP_STRING)
1035 type = tok->type;
1036 else
1037 error ("unsupported non-standard concatenation of string literals");
1040 case CPP_STRING:
1041 if (!concats)
1043 gcc_obstack_init (&str_ob);
1044 obstack_grow (&str_ob, &str, sizeof (cpp_string));
1047 concats++;
1048 obstack_grow (&str_ob, &tok->val.str, sizeof (cpp_string));
1049 if (objc_string)
1050 objc_at_sign_was_seen = false;
1051 goto retry;
1054 /* It is an error if we saw a '@' with no following string. */
1055 if (objc_at_sign_was_seen)
1056 error ("stray %<@%> in program");
1058 /* We have read one more token than we want. */
1059 _cpp_backup_tokens (parse_in, 1);
1060 if (concats)
1061 strs = XOBFINISH (&str_ob, cpp_string *);
1063 if (concats && !objc_string && !in_system_header)
1064 warning (OPT_Wtraditional,
1065 "traditional C rejects string constant concatenation");
1067 if ((translate
1068 ? cpp_interpret_string : cpp_interpret_string_notranslate)
1069 (parse_in, strs, concats + 1, &istr, type))
1071 value = build_string (istr.len, (const char *) istr.text);
1072 free (CONST_CAST (unsigned char *, istr.text));
1074 else
1076 /* Callers cannot generally handle error_mark_node in this context,
1077 so return the empty string instead. cpp_interpret_string has
1078 issued an error. */
1079 switch (type)
1081 default:
1082 case CPP_STRING:
1083 case CPP_UTF8STRING:
1084 value = build_string (1, "");
1085 break;
1086 case CPP_STRING16:
1087 value = build_string (TYPE_PRECISION (char16_type_node)
1088 / TYPE_PRECISION (char_type_node),
1089 "\0"); /* char16_t is 16 bits */
1090 break;
1091 case CPP_STRING32:
1092 value = build_string (TYPE_PRECISION (char32_type_node)
1093 / TYPE_PRECISION (char_type_node),
1094 "\0\0\0"); /* char32_t is 32 bits */
1095 break;
1096 case CPP_WSTRING:
1097 value = build_string (TYPE_PRECISION (wchar_type_node)
1098 / TYPE_PRECISION (char_type_node),
1099 "\0\0\0"); /* widest supported wchar_t
1100 is 32 bits */
1101 break;
1105 switch (type)
1107 default:
1108 case CPP_STRING:
1109 case CPP_UTF8STRING:
1110 TREE_TYPE (value) = char_array_type_node;
1111 break;
1112 case CPP_STRING16:
1113 TREE_TYPE (value) = char16_array_type_node;
1114 break;
1115 case CPP_STRING32:
1116 TREE_TYPE (value) = char32_array_type_node;
1117 break;
1118 case CPP_WSTRING:
1119 TREE_TYPE (value) = wchar_array_type_node;
1121 *valp = fix_string_type (value);
1123 if (concats)
1124 obstack_free (&str_ob, 0);
1126 return objc_string ? CPP_OBJC_STRING : type;
1129 /* Converts a (possibly wide) character constant token into a tree. */
1130 static tree
1131 lex_charconst (const cpp_token *token)
1133 cppchar_t result;
1134 tree type, value;
1135 unsigned int chars_seen;
1136 int unsignedp = 0;
1138 result = cpp_interpret_charconst (parse_in, token,
1139 &chars_seen, &unsignedp);
1141 if (token->type == CPP_WCHAR)
1142 type = wchar_type_node;
1143 else if (token->type == CPP_CHAR32)
1144 type = char32_type_node;
1145 else if (token->type == CPP_CHAR16)
1146 type = char16_type_node;
1147 /* In C, a character constant has type 'int'.
1148 In C++ 'char', but multi-char charconsts have type 'int'. */
1149 else if (!c_dialect_cxx () || chars_seen > 1)
1150 type = integer_type_node;
1151 else
1152 type = char_type_node;
1154 /* Cast to cppchar_signed_t to get correct sign-extension of RESULT
1155 before possibly widening to HOST_WIDE_INT for build_int_cst. */
1156 if (unsignedp || (cppchar_signed_t) result >= 0)
1157 value = build_int_cst_wide (type, result, 0);
1158 else
1159 value = build_int_cst_wide (type, (cppchar_signed_t) result, -1);
1161 return value;