]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/c-family/c-lex.cc
c: C2x noreturn attribute
[thirdparty/gcc.git] / gcc / c-family / c-lex.cc
1 /* Mainly the interface between cpplib and the C front ends.
2 Copyright (C) 1987-2022 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "target.h"
24 #include "c-common.h"
25 #include "timevar.h"
26 #include "stringpool.h"
27 #include "stor-layout.h"
28 #include "c-pragma.h"
29 #include "debug.h"
30 #include "flags.h"
31 #include "file-prefix-map.h" /* remap_macro_filename() */
32 #include "langhooks.h"
33 #include "attribs.h"
34
35 /* We may keep statistics about how long which files took to compile. */
36 static int header_time, body_time;
37 static splay_tree file_info_tree;
38
39 int pending_lang_change; /* If we need to switch languages - C++ only */
40 int c_header_level; /* depth in C headers - C++ only */
41
42 static tree interpret_integer (const cpp_token *, unsigned int,
43 enum overflow_type *);
44 static tree interpret_float (const cpp_token *, unsigned int, const char *,
45 enum overflow_type *);
46 static tree interpret_fixed (const cpp_token *, unsigned int);
47 static enum integer_type_kind narrowest_unsigned_type
48 (const widest_int &, unsigned int);
49 static enum integer_type_kind narrowest_signed_type
50 (const widest_int &, unsigned int);
51 static enum cpp_ttype lex_string (const cpp_token *, tree *, bool, bool);
52 static tree lex_charconst (const cpp_token *);
53 static void update_header_times (const char *);
54 static int dump_one_header (splay_tree_node, void *);
55 static void cb_line_change (cpp_reader *, const cpp_token *, int);
56 static void cb_ident (cpp_reader *, unsigned int, const cpp_string *);
57 static void cb_def_pragma (cpp_reader *, unsigned int);
58 static void cb_define (cpp_reader *, unsigned int, cpp_hashnode *);
59 static void cb_undef (cpp_reader *, unsigned int, cpp_hashnode *);
60 \f
61 void
62 init_c_lex (void)
63 {
64 struct c_fileinfo *toplevel;
65
66 /* The get_fileinfo data structure must be initialized before
67 cpp_read_main_file is called. */
68 toplevel = get_fileinfo ("<top level>");
69 if (flag_detailed_statistics)
70 {
71 header_time = 0;
72 body_time = get_run_time ();
73 toplevel->time = body_time;
74 }
75
76 struct cpp_callbacks *cb = cpp_get_callbacks (parse_in);
77
78 cb->line_change = cb_line_change;
79 cb->ident = cb_ident;
80 cb->def_pragma = cb_def_pragma;
81 cb->valid_pch = c_common_valid_pch;
82 cb->read_pch = c_common_read_pch;
83 cb->has_attribute = c_common_has_attribute;
84 cb->has_builtin = c_common_has_builtin;
85 cb->get_source_date_epoch = cb_get_source_date_epoch;
86 cb->get_suggestion = cb_get_suggestion;
87 cb->remap_filename = remap_macro_filename;
88
89 /* Set the debug callbacks if we can use them. */
90 if ((debug_info_level == DINFO_LEVEL_VERBOSE
91 && dwarf_debuginfo_p ())
92 || flag_dump_go_spec != NULL)
93 {
94 cb->define = cb_define;
95 cb->undef = cb_undef;
96 }
97 }
98
99 struct c_fileinfo *
100 get_fileinfo (const char *name)
101 {
102 splay_tree_node n;
103 struct c_fileinfo *fi;
104
105 if (!file_info_tree)
106 file_info_tree = splay_tree_new (splay_tree_compare_strings,
107 0,
108 splay_tree_delete_pointers);
109
110 n = splay_tree_lookup (file_info_tree, (splay_tree_key) name);
111 if (n)
112 return (struct c_fileinfo *) n->value;
113
114 fi = XNEW (struct c_fileinfo);
115 fi->time = 0;
116 fi->interface_only = 0;
117 fi->interface_unknown = 1;
118 splay_tree_insert (file_info_tree, (splay_tree_key) name,
119 (splay_tree_value) fi);
120 return fi;
121 }
122
123 static void
124 update_header_times (const char *name)
125 {
126 /* Changing files again. This means currently collected time
127 is charged against header time, and body time starts back at 0. */
128 if (flag_detailed_statistics)
129 {
130 int this_time = get_run_time ();
131 struct c_fileinfo *file = get_fileinfo (name);
132 header_time += this_time - body_time;
133 file->time += this_time - body_time;
134 body_time = this_time;
135 }
136 }
137
138 static int
139 dump_one_header (splay_tree_node n, void * ARG_UNUSED (dummy))
140 {
141 print_time ((const char *) n->key,
142 ((struct c_fileinfo *) n->value)->time);
143 return 0;
144 }
145
146 void
147 dump_time_statistics (void)
148 {
149 struct c_fileinfo *file = get_fileinfo (LOCATION_FILE (input_location));
150 int this_time = get_run_time ();
151 file->time += this_time - body_time;
152
153 fprintf (stderr, "\n******\n");
154 print_time ("header files (total)", header_time);
155 print_time ("main file (total)", this_time - body_time);
156 fprintf (stderr, "ratio = %g : 1\n",
157 (double) header_time / (double) (this_time - body_time));
158 fprintf (stderr, "\n******\n");
159
160 splay_tree_foreach (file_info_tree, dump_one_header, 0);
161 }
162
163 static void
164 cb_ident (cpp_reader * ARG_UNUSED (pfile),
165 unsigned int ARG_UNUSED (line),
166 const cpp_string * ARG_UNUSED (str))
167 {
168 if (!flag_no_ident)
169 {
170 /* Convert escapes in the string. */
171 cpp_string cstr = { 0, 0 };
172 if (cpp_interpret_string (pfile, str, 1, &cstr, CPP_STRING))
173 {
174 targetm.asm_out.output_ident ((const char *) cstr.text);
175 free (CONST_CAST (unsigned char *, cstr.text));
176 }
177 }
178 }
179
180 /* Called at the start of every non-empty line. TOKEN is the first
181 lexed token on the line. Used for diagnostic line numbers. */
182 static void
183 cb_line_change (cpp_reader * ARG_UNUSED (pfile), const cpp_token *token,
184 int parsing_args)
185 {
186 if (token->type != CPP_EOF && !parsing_args)
187 input_location = token->src_loc;
188 }
189
190 void
191 fe_file_change (const line_map_ordinary *new_map)
192 {
193 if (new_map == NULL)
194 return;
195
196 if (new_map->reason == LC_ENTER)
197 {
198 /* Don't stack the main buffer on the input stack;
199 we already did in compile_file. */
200 if (!MAIN_FILE_P (new_map))
201 {
202 location_t included_at = linemap_included_from (new_map);
203 int line = 0;
204 if (included_at > BUILTINS_LOCATION)
205 line = SOURCE_LINE (new_map - 1, included_at);
206
207 input_location = new_map->start_location;
208 (*debug_hooks->start_source_file) (line, LINEMAP_FILE (new_map));
209 #ifdef SYSTEM_IMPLICIT_EXTERN_C
210 if (c_header_level)
211 ++c_header_level;
212 else if (LINEMAP_SYSP (new_map) == 2)
213 {
214 c_header_level = 1;
215 ++pending_lang_change;
216 }
217 #endif
218 }
219 }
220 else if (new_map->reason == LC_LEAVE)
221 {
222 #ifdef SYSTEM_IMPLICIT_EXTERN_C
223 if (c_header_level && --c_header_level == 0)
224 {
225 if (LINEMAP_SYSP (new_map) == 2)
226 warning (0, "badly nested C headers from preprocessor");
227 --pending_lang_change;
228 }
229 #endif
230 input_location = new_map->start_location;
231
232 (*debug_hooks->end_source_file) (LINEMAP_LINE (new_map));
233 }
234
235 update_header_times (LINEMAP_FILE (new_map));
236 input_location = new_map->start_location;
237 }
238
239 static void
240 cb_def_pragma (cpp_reader *pfile, location_t loc)
241 {
242 /* Issue a warning message if we have been asked to do so. Ignore
243 unknown pragmas in system headers unless an explicit
244 -Wunknown-pragmas has been given. */
245 if (warn_unknown_pragmas > in_system_header_at (input_location))
246 {
247 const unsigned char *space, *name;
248 const cpp_token *s;
249 location_t fe_loc = loc;
250
251 space = name = (const unsigned char *) "";
252 s = cpp_get_token (pfile);
253 if (s->type != CPP_EOF)
254 {
255 space = cpp_token_as_text (pfile, s);
256 s = cpp_get_token (pfile);
257 if (s->type == CPP_NAME)
258 name = cpp_token_as_text (pfile, s);
259 }
260
261 warning_at (fe_loc, OPT_Wunknown_pragmas, "ignoring %<#pragma %s %s%>",
262 space, name);
263 }
264 }
265
266 /* #define callback for DWARF and DWARF2 debug info. */
267 static void
268 cb_define (cpp_reader *pfile, location_t loc, cpp_hashnode *node)
269 {
270 const struct line_map *map = linemap_lookup (line_table, loc);
271 (*debug_hooks->define) (SOURCE_LINE (linemap_check_ordinary (map), loc),
272 (const char *) cpp_macro_definition (pfile, node));
273 }
274
275 /* #undef callback for DWARF and DWARF2 debug info. */
276 static void
277 cb_undef (cpp_reader *pfile, location_t loc, cpp_hashnode *node)
278 {
279 if (lang_hooks.preprocess_undef)
280 lang_hooks.preprocess_undef (pfile, loc, node);
281
282 const struct line_map *map = linemap_lookup (line_table, loc);
283 (*debug_hooks->undef) (SOURCE_LINE (linemap_check_ordinary (map), loc),
284 (const char *) NODE_NAME (node));
285 }
286
287 /* Wrapper around cpp_get_token to skip CPP_PADDING tokens
288 and not consume CPP_EOF. */
289 static const cpp_token *
290 get_token_no_padding (cpp_reader *pfile)
291 {
292 for (;;)
293 {
294 const cpp_token *ret = cpp_peek_token (pfile, 0);
295 if (ret->type == CPP_EOF)
296 return ret;
297 ret = cpp_get_token (pfile);
298 if (ret->type != CPP_PADDING)
299 return ret;
300 }
301 }
302
303 /* Callback for has_attribute. */
304 int
305 c_common_has_attribute (cpp_reader *pfile, bool std_syntax)
306 {
307 int result = 0;
308 tree attr_name = NULL_TREE;
309 const cpp_token *token;
310
311 token = get_token_no_padding (pfile);
312 if (token->type != CPP_OPEN_PAREN)
313 {
314 cpp_error (pfile, CPP_DL_ERROR,
315 "missing '(' after \"__has_attribute\"");
316 return 0;
317 }
318 token = get_token_no_padding (pfile);
319 if (token->type == CPP_NAME)
320 {
321 attr_name = get_identifier ((const char *)
322 cpp_token_as_text (pfile, token));
323 attr_name = canonicalize_attr_name (attr_name);
324 bool have_scope = false;
325 int idx = 0;
326 const cpp_token *nxt_token;
327 do
328 nxt_token = cpp_peek_token (pfile, idx++);
329 while (nxt_token->type == CPP_PADDING);
330 if (nxt_token->type == CPP_SCOPE)
331 {
332 have_scope = true;
333 get_token_no_padding (pfile); // Eat scope.
334 nxt_token = get_token_no_padding (pfile);
335 if (nxt_token->type == CPP_NAME)
336 {
337 tree attr_ns = attr_name;
338 tree attr_id
339 = get_identifier ((const char *)
340 cpp_token_as_text (pfile, nxt_token));
341 attr_id = canonicalize_attr_name (attr_id);
342 if (c_dialect_cxx ())
343 {
344 /* OpenMP attributes need special handling. */
345 if ((flag_openmp || flag_openmp_simd)
346 && is_attribute_p ("omp", attr_ns)
347 && (is_attribute_p ("directive", attr_id)
348 || is_attribute_p ("sequence", attr_id)))
349 result = 1;
350 }
351 if (result)
352 attr_name = NULL_TREE;
353 else
354 attr_name = build_tree_list (attr_ns, attr_id);
355 }
356 else
357 {
358 cpp_error (pfile, CPP_DL_ERROR,
359 "attribute identifier required after scope");
360 attr_name = NULL_TREE;
361 }
362 }
363 else
364 {
365 /* Some standard attributes need special handling. */
366 if (c_dialect_cxx ())
367 {
368 if (is_attribute_p ("noreturn", attr_name))
369 result = 200809;
370 else if (is_attribute_p ("deprecated", attr_name))
371 result = 201309;
372 else if (is_attribute_p ("maybe_unused", attr_name)
373 || is_attribute_p ("fallthrough", attr_name))
374 result = 201603;
375 else if (is_attribute_p ("no_unique_address", attr_name)
376 || is_attribute_p ("likely", attr_name)
377 || is_attribute_p ("unlikely", attr_name))
378 result = 201803;
379 else if (is_attribute_p ("nodiscard", attr_name))
380 result = 201907;
381 }
382 else
383 {
384 if (is_attribute_p ("deprecated", attr_name))
385 result = 201904;
386 else if (is_attribute_p ("fallthrough", attr_name))
387 result = 201910;
388 else if (is_attribute_p ("nodiscard", attr_name))
389 result = 202003;
390 else if (is_attribute_p ("maybe_unused", attr_name))
391 result = 202106;
392 else if (is_attribute_p ("noreturn", attr_name)
393 || is_attribute_p ("_Noreturn", attr_name))
394 result = 202202;
395 }
396 if (result)
397 attr_name = NULL_TREE;
398 }
399 if (attr_name && (have_scope || !std_syntax))
400 {
401 init_attributes ();
402 const struct attribute_spec *attr = lookup_attribute_spec (attr_name);
403 if (attr)
404 result = 1;
405 }
406 }
407 else
408 {
409 cpp_error (pfile, CPP_DL_ERROR,
410 "macro \"__has_attribute\" requires an identifier");
411 return 0;
412 }
413
414 if (get_token_no_padding (pfile)->type != CPP_CLOSE_PAREN)
415 cpp_error (pfile, CPP_DL_ERROR,
416 "missing ')' after \"__has_attribute\"");
417
418 return result;
419 }
420
421 /* Callback for has_builtin. */
422
423 int
424 c_common_has_builtin (cpp_reader *pfile)
425 {
426 const cpp_token *token = get_token_no_padding (pfile);
427 if (token->type != CPP_OPEN_PAREN)
428 {
429 cpp_error (pfile, CPP_DL_ERROR,
430 "missing '(' after \"__has_builtin\"");
431 return 0;
432 }
433
434 const char *name = "";
435 token = get_token_no_padding (pfile);
436 if (token->type == CPP_NAME)
437 {
438 name = (const char *) cpp_token_as_text (pfile, token);
439 token = get_token_no_padding (pfile);
440 if (token->type != CPP_CLOSE_PAREN)
441 {
442 cpp_error (pfile, CPP_DL_ERROR,
443 "expected ')' after \"%s\"", name);
444 name = "";
445 }
446 }
447 else
448 {
449 cpp_error (pfile, CPP_DL_ERROR,
450 "macro \"__has_builtin\" requires an identifier");
451 if (token->type == CPP_CLOSE_PAREN)
452 return 0;
453 }
454
455 /* Consume tokens up to the closing parenthesis, including any nested
456 pairs of parentheses, to avoid confusing redundant errors. */
457 for (unsigned nparen = 1; ; token = get_token_no_padding (pfile))
458 {
459 if (token->type == CPP_OPEN_PAREN)
460 ++nparen;
461 else if (token->type == CPP_CLOSE_PAREN)
462 --nparen;
463 else if (token->type == CPP_EOF)
464 break;
465 if (!nparen)
466 break;
467 }
468
469 return names_builtin_p (name);
470 }
471
472 \f
473 /* Read a token and return its type. Fill *VALUE with its value, if
474 applicable. Fill *CPP_FLAGS with the token's flags, if it is
475 non-NULL. */
476
477 enum cpp_ttype
478 c_lex_with_flags (tree *value, location_t *loc, unsigned char *cpp_flags,
479 int lex_flags)
480 {
481 const cpp_token *tok;
482 enum cpp_ttype type;
483 unsigned char add_flags = 0;
484 enum overflow_type overflow = OT_NONE;
485
486 timevar_push (TV_CPP);
487 retry:
488 tok = cpp_get_token_with_location (parse_in, loc);
489 type = tok->type;
490
491 retry_after_at:
492 switch (type)
493 {
494 case CPP_PADDING:
495 goto retry;
496
497 case CPP_NAME:
498 *value = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok->val.node.node));
499 break;
500
501 case CPP_NUMBER:
502 {
503 const char *suffix = NULL;
504 unsigned int flags = cpp_classify_number (parse_in, tok, &suffix, *loc);
505
506 switch (flags & CPP_N_CATEGORY)
507 {
508 case CPP_N_INVALID:
509 /* cpplib has issued an error. */
510 *value = error_mark_node;
511 break;
512
513 case CPP_N_INTEGER:
514 /* C++ uses '0' to mark virtual functions as pure.
515 Set PURE_ZERO to pass this information to the C++ parser. */
516 if (tok->val.str.len == 1 && *tok->val.str.text == '0')
517 add_flags = PURE_ZERO | DECIMAL_INT;
518 else if ((flags & CPP_N_INTEGER) && (flags & CPP_N_DECIMAL))
519 /* -Wxor-used-as-pow is only active for LHS of ^ expressed
520 as a decimal integer. */
521 add_flags = DECIMAL_INT;
522 *value = interpret_integer (tok, flags, &overflow);
523 break;
524
525 case CPP_N_FLOATING:
526 *value = interpret_float (tok, flags, suffix, &overflow);
527 break;
528
529 default:
530 gcc_unreachable ();
531 }
532
533 if (flags & CPP_N_USERDEF)
534 {
535 char *str;
536 tree literal;
537 tree suffix_id = get_identifier (suffix);
538 int len = tok->val.str.len - strlen (suffix);
539 /* If this is going to be used as a C string to pass to a
540 raw literal operator, we need to add a trailing NUL. */
541 tree num_string = build_string (len + 1,
542 (const char *) tok->val.str.text);
543 TREE_TYPE (num_string) = char_array_type_node;
544 num_string = fix_string_type (num_string);
545 str = CONST_CAST (char *, TREE_STRING_POINTER (num_string));
546 str[len] = '\0';
547 literal = build_userdef_literal (suffix_id, *value, overflow,
548 num_string);
549 *value = literal;
550 }
551 }
552 break;
553
554 case CPP_ATSIGN:
555 /* An @ may give the next token special significance in Objective-C. */
556 if (c_dialect_objc ())
557 {
558 location_t atloc = *loc;
559 location_t newloc;
560
561 retry_at:
562 tok = cpp_get_token_with_location (parse_in, &newloc);
563 type = tok->type;
564 switch (type)
565 {
566 case CPP_PADDING:
567 goto retry_at;
568
569 case CPP_STRING:
570 case CPP_WSTRING:
571 case CPP_STRING16:
572 case CPP_STRING32:
573 case CPP_UTF8STRING:
574 type = lex_string (tok, value, true, true);
575 break;
576
577 case CPP_NAME:
578 *value = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok->val.node.node));
579 if (OBJC_IS_AT_KEYWORD (C_RID_CODE (*value))
580 || OBJC_IS_CXX_KEYWORD (C_RID_CODE (*value)))
581 {
582 type = CPP_AT_NAME;
583 /* Note the complication: if we found an OBJC_CXX
584 keyword, for example, 'class', we will be
585 returning a token of type CPP_AT_NAME and rid
586 code RID_CLASS (not RID_AT_CLASS). The language
587 parser needs to convert that to RID_AT_CLASS.
588 However, we've now spliced the '@' together with the
589 keyword that follows; Adjust the location so that we
590 get a source range covering the composite.
591 */
592 *loc = make_location (atloc, atloc, newloc);
593 break;
594 }
595 /* FALLTHROUGH */
596
597 default:
598 /* ... or not. */
599 error_at (atloc, "stray %<@%> in program");
600 *loc = newloc;
601 goto retry_after_at;
602 }
603 break;
604 }
605
606 /* FALLTHROUGH */
607 case CPP_HASH:
608 case CPP_PASTE:
609 {
610 unsigned char name[8];
611
612 *cpp_spell_token (parse_in, tok, name, true) = 0;
613
614 error_at (*loc, "stray %qs in program", name);
615 }
616
617 goto retry;
618
619 case CPP_OTHER:
620 {
621 cppchar_t c = tok->val.str.text[0];
622
623 if (c == '"' || c == '\'')
624 error_at (*loc, "missing terminating %c character", (int) c);
625 else if (ISGRAPH (c))
626 error_at (*loc, "stray %qc in program", (int) c);
627 else
628 {
629 rich_location rich_loc (line_table, *loc);
630 rich_loc.set_escape_on_output (true);
631 error_at (&rich_loc, "stray %<\\%o%> in program", (int) c);
632 }
633 }
634 goto retry;
635
636 case CPP_CHAR_USERDEF:
637 case CPP_WCHAR_USERDEF:
638 case CPP_CHAR16_USERDEF:
639 case CPP_CHAR32_USERDEF:
640 case CPP_UTF8CHAR_USERDEF:
641 {
642 tree literal;
643 cpp_token temp_tok = *tok;
644 const char *suffix = cpp_get_userdef_suffix (tok);
645 temp_tok.val.str.len -= strlen (suffix);
646 temp_tok.type = cpp_userdef_char_remove_type (type);
647 literal = build_userdef_literal (get_identifier (suffix),
648 lex_charconst (&temp_tok),
649 OT_NONE, NULL_TREE);
650 *value = literal;
651 }
652 break;
653
654 case CPP_CHAR:
655 case CPP_WCHAR:
656 case CPP_CHAR16:
657 case CPP_CHAR32:
658 case CPP_UTF8CHAR:
659 *value = lex_charconst (tok);
660 break;
661
662 case CPP_STRING_USERDEF:
663 case CPP_WSTRING_USERDEF:
664 case CPP_STRING16_USERDEF:
665 case CPP_STRING32_USERDEF:
666 case CPP_UTF8STRING_USERDEF:
667 {
668 tree literal, string;
669 const char *suffix = cpp_get_userdef_suffix (tok);
670 string = build_string (tok->val.str.len - strlen (suffix),
671 (const char *) tok->val.str.text);
672 literal = build_userdef_literal (get_identifier (suffix),
673 string, OT_NONE, NULL_TREE);
674 *value = literal;
675 }
676 break;
677
678 case CPP_STRING:
679 case CPP_WSTRING:
680 case CPP_STRING16:
681 case CPP_STRING32:
682 case CPP_UTF8STRING:
683 if ((lex_flags & C_LEX_STRING_NO_JOIN) == 0)
684 {
685 type = lex_string (tok, value, false,
686 (lex_flags & C_LEX_STRING_NO_TRANSLATE) == 0);
687 break;
688 }
689 *value = build_string (tok->val.str.len, (const char *) tok->val.str.text);
690 break;
691
692 case CPP_PRAGMA:
693 *value = build_int_cst (integer_type_node, tok->val.pragma);
694 break;
695
696 case CPP_HEADER_NAME:
697 *value = build_string (tok->val.str.len, (const char *)tok->val.str.text);
698 break;
699
700 /* This token should not be visible outside cpplib. */
701 case CPP_MACRO_ARG:
702 gcc_unreachable ();
703
704 /* CPP_COMMENT will appear when compiling with -C. Ignore, except
705 when it is a FALLTHROUGH comment, in that case set
706 PREV_FALLTHROUGH flag on the next non-comment token. */
707 case CPP_COMMENT:
708 if (tok->flags & PREV_FALLTHROUGH)
709 {
710 do
711 {
712 tok = cpp_get_token_with_location (parse_in, loc);
713 type = tok->type;
714 }
715 while (type == CPP_PADDING || type == CPP_COMMENT);
716 add_flags |= PREV_FALLTHROUGH;
717 goto retry_after_at;
718 }
719 goto retry;
720
721 default:
722 *value = NULL_TREE;
723 break;
724 }
725
726 if (cpp_flags)
727 *cpp_flags = tok->flags | add_flags;
728
729 timevar_pop (TV_CPP);
730
731 return type;
732 }
733
734 /* Returns the narrowest C-visible unsigned type, starting with the
735 minimum specified by FLAGS, that can fit HIGH:LOW, or itk_none if
736 there isn't one. */
737
738 static enum integer_type_kind
739 narrowest_unsigned_type (const widest_int &val, unsigned int flags)
740 {
741 int itk;
742
743 if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
744 itk = itk_unsigned_int;
745 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
746 itk = itk_unsigned_long;
747 else
748 itk = itk_unsigned_long_long;
749
750 for (; itk < itk_none; itk += 2 /* skip unsigned types */)
751 {
752 tree upper;
753
754 if (integer_types[itk] == NULL_TREE)
755 continue;
756 upper = TYPE_MAX_VALUE (integer_types[itk]);
757
758 if (wi::geu_p (wi::to_widest (upper), val))
759 return (enum integer_type_kind) itk;
760 }
761
762 return itk_none;
763 }
764
765 /* Ditto, but narrowest signed type. */
766 static enum integer_type_kind
767 narrowest_signed_type (const widest_int &val, unsigned int flags)
768 {
769 int itk;
770
771 if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
772 itk = itk_int;
773 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
774 itk = itk_long;
775 else
776 itk = itk_long_long;
777
778 for (; itk < itk_none; itk += 2 /* skip signed types */)
779 {
780 tree upper;
781
782 if (integer_types[itk] == NULL_TREE)
783 continue;
784 upper = TYPE_MAX_VALUE (integer_types[itk]);
785
786 if (wi::geu_p (wi::to_widest (upper), val))
787 return (enum integer_type_kind) itk;
788 }
789
790 return itk_none;
791 }
792
793 /* Interpret TOKEN, an integer with FLAGS as classified by cpplib. */
794 static tree
795 interpret_integer (const cpp_token *token, unsigned int flags,
796 enum overflow_type *overflow)
797 {
798 tree value, type;
799 enum integer_type_kind itk;
800 cpp_num integer;
801 HOST_WIDE_INT ival[3];
802
803 *overflow = OT_NONE;
804
805 integer = cpp_interpret_integer (parse_in, token, flags);
806 if (integer.overflow)
807 *overflow = OT_OVERFLOW;
808
809 ival[0] = integer.low;
810 ival[1] = integer.high;
811 ival[2] = 0;
812 widest_int wval = widest_int::from_array (ival, 3);
813
814 /* The type of a constant with a U suffix is straightforward. */
815 if (flags & CPP_N_UNSIGNED)
816 itk = narrowest_unsigned_type (wval, flags);
817 else
818 {
819 /* The type of a potentially-signed integer constant varies
820 depending on the base it's in, the standard in use, and the
821 length suffixes. */
822 enum integer_type_kind itk_u
823 = narrowest_unsigned_type (wval, flags);
824 enum integer_type_kind itk_s
825 = narrowest_signed_type (wval, flags);
826
827 /* In both C89 and C99, octal and hex constants may be signed or
828 unsigned, whichever fits tighter. We do not warn about this
829 choice differing from the traditional choice, as the constant
830 is probably a bit pattern and either way will work. */
831 if ((flags & CPP_N_RADIX) != CPP_N_DECIMAL)
832 itk = MIN (itk_u, itk_s);
833 else
834 {
835 /* In C99, decimal constants are always signed.
836 In C89, decimal constants that don't fit in long have
837 undefined behavior; we try to make them unsigned long.
838 In GCC's extended C89, that last is true of decimal
839 constants that don't fit in long long, too. */
840
841 itk = itk_s;
842 if (itk_s > itk_u && itk_s > itk_long)
843 {
844 if (!flag_isoc99)
845 {
846 if (itk_u < itk_unsigned_long)
847 itk_u = itk_unsigned_long;
848 itk = itk_u;
849 warning (0, "this decimal constant is unsigned only in ISO C90");
850 }
851 else
852 warning (OPT_Wtraditional,
853 "this decimal constant would be unsigned in ISO C90");
854 }
855 }
856 }
857
858 if (itk == itk_none)
859 /* cpplib has already issued a warning for overflow. */
860 type = ((flags & CPP_N_UNSIGNED)
861 ? widest_unsigned_literal_type_node
862 : widest_integer_literal_type_node);
863 else if (flags & CPP_N_SIZE_T)
864 {
865 /* itk refers to fundamental types not aliased size types. */
866 if (flags & CPP_N_UNSIGNED)
867 type = size_type_node;
868 else
869 type = signed_size_type_node;
870 }
871 else
872 {
873 type = integer_types[itk];
874 if (itk > itk_unsigned_long
875 && (flags & CPP_N_WIDTH) != CPP_N_LARGE)
876 emit_diagnostic
877 ((c_dialect_cxx () ? cxx_dialect == cxx98 : !flag_isoc99)
878 ? DK_PEDWARN : DK_WARNING,
879 input_location, OPT_Wlong_long,
880 (flags & CPP_N_UNSIGNED)
881 ? "integer constant is too large for %<unsigned long%> type"
882 : "integer constant is too large for %<long%> type");
883 }
884
885 value = wide_int_to_tree (type, wval);
886
887 /* Convert imaginary to a complex type. */
888 if (flags & CPP_N_IMAGINARY)
889 value = build_complex (NULL_TREE, build_int_cst (type, 0), value);
890
891 return value;
892 }
893
894 /* Interpret TOKEN, a floating point number with FLAGS as classified
895 by cpplib. For C++11 SUFFIX may contain a user-defined literal suffix. */
896 static tree
897 interpret_float (const cpp_token *token, unsigned int flags,
898 const char *suffix, enum overflow_type *overflow)
899 {
900 tree type;
901 tree const_type;
902 tree value;
903 REAL_VALUE_TYPE real;
904 REAL_VALUE_TYPE real_trunc;
905 char *copy;
906 size_t copylen;
907
908 *overflow = OT_NONE;
909
910 /* Default (no suffix) depends on whether the FLOAT_CONST_DECIMAL64
911 pragma has been used and is either double or _Decimal64. Types
912 that are not allowed with decimal float default to double. */
913 if (flags & CPP_N_DEFAULT)
914 {
915 flags ^= CPP_N_DEFAULT;
916 flags |= CPP_N_MEDIUM;
917
918 if (((flags & CPP_N_HEX) == 0) && ((flags & CPP_N_IMAGINARY) == 0))
919 {
920 warning (OPT_Wunsuffixed_float_constants,
921 "unsuffixed floating constant");
922 if (float_const_decimal64_p ())
923 flags |= CPP_N_DFLOAT;
924 }
925 }
926
927 /* Decode _Fract and _Accum. */
928 if (flags & CPP_N_FRACT || flags & CPP_N_ACCUM)
929 return interpret_fixed (token, flags);
930
931 /* Decode type based on width and properties. */
932 if (flags & CPP_N_DFLOAT)
933 if (!targetm.decimal_float_supported_p ())
934 {
935 error ("decimal floating-point not supported for this target");
936 return error_mark_node;
937 }
938 else if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
939 type = dfloat128_type_node;
940 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
941 type = dfloat32_type_node;
942 else
943 type = dfloat64_type_node;
944 else
945 if (flags & CPP_N_WIDTH_MD)
946 {
947 char suffix;
948 machine_mode mode;
949
950 if ((flags & CPP_N_WIDTH_MD) == CPP_N_MD_W)
951 suffix = 'w';
952 else
953 suffix = 'q';
954
955 mode = targetm.c.mode_for_suffix (suffix);
956 if (mode == VOIDmode)
957 {
958 error ("unsupported non-standard suffix on floating constant");
959
960 return error_mark_node;
961 }
962 else
963 pedwarn (input_location, OPT_Wpedantic, "non-standard suffix on floating constant");
964
965 type = c_common_type_for_mode (mode, 0);
966 /* For Q suffix, prefer float128t_type_node (__float128) type
967 over float128_type_node (_Float128) type if they are distinct. */
968 if (type == float128_type_node && float128t_type_node)
969 type = float128t_type_node;
970 gcc_assert (type);
971 }
972 else if ((flags & (CPP_N_FLOATN | CPP_N_FLOATNX)) != 0)
973 {
974 unsigned int n = (flags & CPP_N_WIDTH_FLOATN_NX) >> CPP_FLOATN_SHIFT;
975 bool extended = (flags & CPP_N_FLOATNX) != 0;
976 type = NULL_TREE;
977 for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
978 if (floatn_nx_types[i].n == (int) n
979 && floatn_nx_types[i].extended == extended)
980 {
981 type = FLOATN_NX_TYPE_NODE (i);
982 break;
983 }
984 if (type == NULL_TREE)
985 {
986 error ("unsupported non-standard suffix on floating constant");
987 return error_mark_node;
988 }
989 else if (c_dialect_cxx () && !extended)
990 {
991 if (cxx_dialect < cxx23)
992 pedwarn (input_location, OPT_Wpedantic,
993 "%<f%d%> or %<F%d%> suffix on floating constant only "
994 "available with %<-std=c++2b%> or %<-std=gnu++2b%>",
995 n, n);
996 }
997 else
998 pedwarn (input_location, OPT_Wpedantic,
999 "non-standard suffix on floating constant");
1000 }
1001 else if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
1002 type = long_double_type_node;
1003 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL
1004 || flag_single_precision_constant)
1005 type = float_type_node;
1006 else
1007 type = double_type_node;
1008
1009 if (c_dialect_cxx ())
1010 const_type = NULL_TREE;
1011 else
1012 const_type = excess_precision_type (type);
1013 if (!const_type)
1014 const_type = type;
1015
1016 /* Copy the constant to a nul-terminated buffer. If the constant
1017 has any suffixes, cut them off; REAL_VALUE_ATOF/ REAL_VALUE_HTOF
1018 can't handle them. */
1019 copylen = token->val.str.len;
1020 if (flags & CPP_N_USERDEF)
1021 copylen -= strlen (suffix);
1022 else if (flags & CPP_N_DFLOAT)
1023 copylen -= 2;
1024 else
1025 {
1026 if ((flags & CPP_N_WIDTH) != CPP_N_MEDIUM)
1027 /* Must be an F or L or machine defined suffix. */
1028 copylen--;
1029 if (flags & CPP_N_IMAGINARY)
1030 /* I or J suffix. */
1031 copylen--;
1032 if (flags & CPP_N_FLOATNX)
1033 copylen--;
1034 if (flags & (CPP_N_FLOATN | CPP_N_FLOATNX))
1035 {
1036 unsigned int n = (flags & CPP_N_WIDTH_FLOATN_NX) >> CPP_FLOATN_SHIFT;
1037 while (n > 0)
1038 {
1039 copylen--;
1040 n /= 10;
1041 }
1042 }
1043 }
1044
1045 copy = (char *) alloca (copylen + 1);
1046 if (c_dialect_cxx () ? cxx_dialect > cxx11 : flag_isoc2x)
1047 {
1048 size_t maxlen = 0;
1049 for (size_t i = 0; i < copylen; ++i)
1050 if (token->val.str.text[i] != '\'')
1051 copy[maxlen++] = token->val.str.text[i];
1052 copy[maxlen] = '\0';
1053 }
1054 else
1055 {
1056 memcpy (copy, token->val.str.text, copylen);
1057 copy[copylen] = '\0';
1058 }
1059
1060 real_from_string3 (&real, copy, TYPE_MODE (const_type));
1061 if (const_type != type)
1062 /* Diagnosing if the result of converting the value with excess
1063 precision to the semantic type would overflow (with associated
1064 double rounding) is more appropriate than diagnosing if the
1065 result of converting the string directly to the semantic type
1066 would overflow. */
1067 real_convert (&real_trunc, TYPE_MODE (type), &real);
1068
1069 /* Both C and C++ require a diagnostic for a floating constant
1070 outside the range of representable values of its type. Since we
1071 have __builtin_inf* to produce an infinity, this is now a
1072 mandatory pedwarn if the target does not support infinities. */
1073 if (REAL_VALUE_ISINF (real)
1074 || (const_type != type && REAL_VALUE_ISINF (real_trunc)))
1075 {
1076 *overflow = OT_OVERFLOW;
1077 if (!(flags & CPP_N_USERDEF))
1078 {
1079 if (!MODE_HAS_INFINITIES (TYPE_MODE (type)))
1080 pedwarn (input_location, 0,
1081 "floating constant exceeds range of %qT", type);
1082 else
1083 warning (OPT_Woverflow,
1084 "floating constant exceeds range of %qT", type);
1085 }
1086 }
1087 /* We also give a warning if the value underflows. */
1088 else if (real_equal (&real, &dconst0)
1089 || (const_type != type
1090 && real_equal (&real_trunc, &dconst0)))
1091 {
1092 REAL_VALUE_TYPE realvoidmode;
1093 int oflow = real_from_string (&realvoidmode, copy);
1094 *overflow = (oflow == 0 ? OT_NONE
1095 : (oflow < 0 ? OT_UNDERFLOW : OT_OVERFLOW));
1096 if (!(flags & CPP_N_USERDEF))
1097 {
1098 if (oflow < 0 || !real_equal (&realvoidmode, &dconst0))
1099 warning (OPT_Woverflow, "floating constant truncated to zero");
1100 }
1101 }
1102
1103 /* Create a node with determined type and value. */
1104 value = build_real (const_type, real);
1105 if (flags & CPP_N_IMAGINARY)
1106 {
1107 value = build_complex (NULL_TREE,
1108 fold_convert (const_type,
1109 integer_zero_node), value);
1110 if (type != const_type)
1111 {
1112 const_type = TREE_TYPE (value);
1113 type = build_complex_type (type);
1114 }
1115 }
1116
1117 if (type != const_type)
1118 value = build1_loc (token->src_loc, EXCESS_PRECISION_EXPR, type, value);
1119
1120 return value;
1121 }
1122
1123 /* Interpret TOKEN, a fixed-point number with FLAGS as classified
1124 by cpplib. */
1125
1126 static tree
1127 interpret_fixed (const cpp_token *token, unsigned int flags)
1128 {
1129 tree type;
1130 tree value;
1131 FIXED_VALUE_TYPE fixed;
1132 char *copy;
1133 size_t copylen;
1134
1135 copylen = token->val.str.len;
1136
1137 if (flags & CPP_N_FRACT) /* _Fract. */
1138 {
1139 if (flags & CPP_N_UNSIGNED) /* Unsigned _Fract. */
1140 {
1141 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
1142 {
1143 type = unsigned_long_long_fract_type_node;
1144 copylen -= 4;
1145 }
1146 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
1147 {
1148 type = unsigned_long_fract_type_node;
1149 copylen -= 3;
1150 }
1151 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
1152 {
1153 type = unsigned_short_fract_type_node;
1154 copylen -= 3;
1155 }
1156 else
1157 {
1158 type = unsigned_fract_type_node;
1159 copylen -= 2;
1160 }
1161 }
1162 else /* Signed _Fract. */
1163 {
1164 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
1165 {
1166 type = long_long_fract_type_node;
1167 copylen -= 3;
1168 }
1169 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
1170 {
1171 type = long_fract_type_node;
1172 copylen -= 2;
1173 }
1174 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
1175 {
1176 type = short_fract_type_node;
1177 copylen -= 2;
1178 }
1179 else
1180 {
1181 type = fract_type_node;
1182 copylen --;
1183 }
1184 }
1185 }
1186 else /* _Accum. */
1187 {
1188 if (flags & CPP_N_UNSIGNED) /* Unsigned _Accum. */
1189 {
1190 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
1191 {
1192 type = unsigned_long_long_accum_type_node;
1193 copylen -= 4;
1194 }
1195 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
1196 {
1197 type = unsigned_long_accum_type_node;
1198 copylen -= 3;
1199 }
1200 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
1201 {
1202 type = unsigned_short_accum_type_node;
1203 copylen -= 3;
1204 }
1205 else
1206 {
1207 type = unsigned_accum_type_node;
1208 copylen -= 2;
1209 }
1210 }
1211 else /* Signed _Accum. */
1212 {
1213 if ((flags & CPP_N_WIDTH) == CPP_N_LARGE)
1214 {
1215 type = long_long_accum_type_node;
1216 copylen -= 3;
1217 }
1218 else if ((flags & CPP_N_WIDTH) == CPP_N_MEDIUM)
1219 {
1220 type = long_accum_type_node;
1221 copylen -= 2;
1222 }
1223 else if ((flags & CPP_N_WIDTH) == CPP_N_SMALL)
1224 {
1225 type = short_accum_type_node;
1226 copylen -= 2;
1227 }
1228 else
1229 {
1230 type = accum_type_node;
1231 copylen --;
1232 }
1233 }
1234 }
1235
1236 copy = (char *) alloca (copylen + 1);
1237 memcpy (copy, token->val.str.text, copylen);
1238 copy[copylen] = '\0';
1239
1240 fixed_from_string (&fixed, copy, SCALAR_TYPE_MODE (type));
1241
1242 /* Create a node with determined type and value. */
1243 value = build_fixed (type, fixed);
1244
1245 return value;
1246 }
1247
1248 /* Convert a series of STRING, WSTRING, STRING16, STRING32 and/or
1249 UTF8STRING tokens into a tree, performing string constant
1250 concatenation. TOK is the first of these. VALP is the location to
1251 write the string into. OBJC_STRING indicates whether an '@' token
1252 preceded the incoming token (in that case, the strings can either
1253 be ObjC strings, preceded by a single '@', or normal strings, not
1254 preceded by '@'. The result will be a CPP_OBJC_STRING). Returns
1255 the CPP token type of the result (CPP_STRING, CPP_WSTRING,
1256 CPP_STRING32, CPP_STRING16, CPP_UTF8STRING, or CPP_OBJC_STRING).
1257
1258 This is unfortunately more work than it should be. If any of the
1259 strings in the series has an L prefix, the result is a wide string
1260 (6.4.5p4). Whether or not the result is a wide string affects the
1261 meaning of octal and hexadecimal escapes (6.4.4.4p6,9). But escape
1262 sequences do not continue across the boundary between two strings in
1263 a series (6.4.5p7), so we must not lose the boundaries. Therefore
1264 cpp_interpret_string takes a vector of cpp_string structures, which
1265 we must arrange to provide. */
1266
1267 static enum cpp_ttype
1268 lex_string (const cpp_token *tok, tree *valp, bool objc_string, bool translate)
1269 {
1270 tree value;
1271 size_t concats = 0;
1272 struct obstack str_ob;
1273 struct obstack loc_ob;
1274 cpp_string istr;
1275 enum cpp_ttype type = tok->type;
1276
1277 /* Try to avoid the overhead of creating and destroying an obstack
1278 for the common case of just one string. */
1279 cpp_string str = tok->val.str;
1280 location_t init_loc = tok->src_loc;
1281 cpp_string *strs = &str;
1282 location_t *locs = NULL;
1283
1284 /* objc_at_sign_was_seen is only used when doing Objective-C string
1285 concatenation. It is 'true' if we have seen an '@' before the
1286 current string, and 'false' if not. We must see exactly one or
1287 zero '@' before each string. */
1288 bool objc_at_sign_was_seen = false;
1289
1290 retry:
1291 tok = cpp_get_token (parse_in);
1292 switch (tok->type)
1293 {
1294 case CPP_PADDING:
1295 goto retry;
1296 case CPP_ATSIGN:
1297 if (objc_string)
1298 {
1299 if (objc_at_sign_was_seen)
1300 error ("repeated %<@%> before Objective-C string");
1301
1302 objc_at_sign_was_seen = true;
1303 goto retry;
1304 }
1305 /* FALLTHROUGH */
1306
1307 default:
1308 break;
1309
1310 case CPP_WSTRING:
1311 case CPP_STRING16:
1312 case CPP_STRING32:
1313 case CPP_UTF8STRING:
1314 if (type != tok->type)
1315 {
1316 if (type == CPP_STRING)
1317 type = tok->type;
1318 else
1319 error ("unsupported non-standard concatenation of string literals");
1320 }
1321 /* FALLTHROUGH */
1322
1323 case CPP_STRING:
1324 if (!concats)
1325 {
1326 gcc_obstack_init (&str_ob);
1327 gcc_obstack_init (&loc_ob);
1328 obstack_grow (&str_ob, &str, sizeof (cpp_string));
1329 obstack_grow (&loc_ob, &init_loc, sizeof (location_t));
1330 }
1331
1332 concats++;
1333 obstack_grow (&str_ob, &tok->val.str, sizeof (cpp_string));
1334 obstack_grow (&loc_ob, &tok->src_loc, sizeof (location_t));
1335
1336 if (objc_string)
1337 objc_at_sign_was_seen = false;
1338 goto retry;
1339 }
1340
1341 /* It is an error if we saw a '@' with no following string. */
1342 if (objc_at_sign_was_seen)
1343 error ("stray %<@%> in program");
1344
1345 /* We have read one more token than we want. */
1346 _cpp_backup_tokens (parse_in, 1);
1347 if (concats)
1348 {
1349 strs = XOBFINISH (&str_ob, cpp_string *);
1350 locs = XOBFINISH (&loc_ob, location_t *);
1351 }
1352
1353 if (concats && !objc_string && !in_system_header_at (input_location))
1354 warning (OPT_Wtraditional,
1355 "traditional C rejects string constant concatenation");
1356
1357 if ((translate
1358 ? cpp_interpret_string : cpp_interpret_string_notranslate)
1359 (parse_in, strs, concats + 1, &istr, type))
1360 {
1361 value = build_string (istr.len, (const char *) istr.text);
1362 free (CONST_CAST (unsigned char *, istr.text));
1363 if (concats)
1364 {
1365 gcc_assert (locs);
1366 gcc_assert (g_string_concat_db);
1367 g_string_concat_db->record_string_concatenation (concats + 1, locs);
1368 }
1369 }
1370 else
1371 {
1372 /* Callers cannot generally handle error_mark_node in this context,
1373 so return the empty string instead. cpp_interpret_string has
1374 issued an error. */
1375 switch (type)
1376 {
1377 default:
1378 case CPP_STRING:
1379 case CPP_UTF8STRING:
1380 if (type == CPP_UTF8STRING && flag_char8_t)
1381 {
1382 value = build_string (TYPE_PRECISION (char8_type_node)
1383 / TYPE_PRECISION (char_type_node),
1384 ""); /* char8_t is 8 bits */
1385 }
1386 else
1387 value = build_string (1, "");
1388 break;
1389 case CPP_STRING16:
1390 value = build_string (TYPE_PRECISION (char16_type_node)
1391 / TYPE_PRECISION (char_type_node),
1392 "\0"); /* char16_t is 16 bits */
1393 break;
1394 case CPP_STRING32:
1395 value = build_string (TYPE_PRECISION (char32_type_node)
1396 / TYPE_PRECISION (char_type_node),
1397 "\0\0\0"); /* char32_t is 32 bits */
1398 break;
1399 case CPP_WSTRING:
1400 value = build_string (TYPE_PRECISION (wchar_type_node)
1401 / TYPE_PRECISION (char_type_node),
1402 "\0\0\0"); /* widest supported wchar_t
1403 is 32 bits */
1404 break;
1405 }
1406 }
1407
1408 switch (type)
1409 {
1410 default:
1411 case CPP_STRING:
1412 TREE_TYPE (value) = char_array_type_node;
1413 break;
1414 case CPP_UTF8STRING:
1415 if (flag_char8_t)
1416 TREE_TYPE (value) = char8_array_type_node;
1417 else
1418 TREE_TYPE (value) = char_array_type_node;
1419 break;
1420 case CPP_STRING16:
1421 TREE_TYPE (value) = char16_array_type_node;
1422 break;
1423 case CPP_STRING32:
1424 TREE_TYPE (value) = char32_array_type_node;
1425 break;
1426 case CPP_WSTRING:
1427 TREE_TYPE (value) = wchar_array_type_node;
1428 }
1429 *valp = fix_string_type (value);
1430
1431 if (concats)
1432 {
1433 obstack_free (&str_ob, 0);
1434 obstack_free (&loc_ob, 0);
1435 }
1436
1437 return objc_string ? CPP_OBJC_STRING : type;
1438 }
1439
1440 /* Converts a (possibly wide) character constant token into a tree. */
1441 static tree
1442 lex_charconst (const cpp_token *token)
1443 {
1444 cppchar_t result;
1445 tree type, value;
1446 unsigned int chars_seen;
1447 int unsignedp = 0;
1448
1449 result = cpp_interpret_charconst (parse_in, token,
1450 &chars_seen, &unsignedp);
1451
1452 if (token->type == CPP_WCHAR)
1453 type = wchar_type_node;
1454 else if (token->type == CPP_CHAR32)
1455 type = char32_type_node;
1456 else if (token->type == CPP_CHAR16)
1457 type = char16_type_node;
1458 else if (token->type == CPP_UTF8CHAR)
1459 {
1460 if (flag_char8_t)
1461 type = char8_type_node;
1462 else
1463 type = char_type_node;
1464 }
1465 /* In C, a character constant has type 'int'.
1466 In C++ 'char', but multi-char charconsts have type 'int'. */
1467 else if (!c_dialect_cxx () || chars_seen > 1)
1468 type = integer_type_node;
1469 else
1470 type = char_type_node;
1471
1472 /* Cast to cppchar_signed_t to get correct sign-extension of RESULT
1473 before possibly widening to HOST_WIDE_INT for build_int_cst. */
1474 if (unsignedp || (cppchar_signed_t) result >= 0)
1475 value = build_int_cst (type, result);
1476 else
1477 value = build_int_cst (type, (cppchar_signed_t) result);
1478
1479 return value;
1480 }
1481
1482 /* Helper function for c_parser_peek_conflict_marker
1483 and cp_lexer_peek_conflict_marker.
1484 Given a possible conflict marker token of kind TOK1_KIND
1485 consisting of a pair of characters, get the token kind for the
1486 standalone final character. */
1487
1488 enum cpp_ttype
1489 conflict_marker_get_final_tok_kind (enum cpp_ttype tok1_kind)
1490 {
1491 switch (tok1_kind)
1492 {
1493 default: gcc_unreachable ();
1494 case CPP_LSHIFT:
1495 /* "<<" and '<' */
1496 return CPP_LESS;
1497
1498 case CPP_EQ_EQ:
1499 /* "==" and '=' */
1500 return CPP_EQ;
1501
1502 case CPP_RSHIFT:
1503 /* ">>" and '>' */
1504 return CPP_GREATER;
1505 }
1506 }