]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/c-family/c-pragma.c
options: Save and restore opts_set for Optimization and Target options
[thirdparty/gcc.git] / gcc / c-family / c-pragma.c
1 /* Handle #pragma, system V.4 style. Supports #pragma weak and #pragma pack.
2 Copyright (C) 1992-2020 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 "function.h" /* For cfun. */
25 #include "c-common.h"
26 #include "memmodel.h"
27 #include "tm_p.h" /* For REGISTER_TARGET_PRAGMAS. */
28 #include "stringpool.h"
29 #include "cgraph.h"
30 #include "diagnostic.h"
31 #include "attribs.h"
32 #include "varasm.h"
33 #include "c-pragma.h"
34 #include "opts.h"
35 #include "plugin.h"
36 #include "opt-suggestions.h"
37
38 #define GCC_BAD(gmsgid) \
39 do { warning (OPT_Wpragmas, gmsgid); return; } while (0)
40 #define GCC_BAD2(gmsgid, arg) \
41 do { warning (OPT_Wpragmas, gmsgid, arg); return; } while (0)
42
43 struct GTY(()) align_stack {
44 int alignment;
45 tree id;
46 struct align_stack * prev;
47 };
48
49 static GTY(()) struct align_stack * alignment_stack;
50
51 static void handle_pragma_pack (cpp_reader *);
52
53 /* If we have a "global" #pragma pack(<n>) in effect when the first
54 #pragma pack(push,<n>) is encountered, this stores the value of
55 maximum_field_alignment in effect. When the final pop_alignment()
56 happens, we restore the value to this, not to a value of 0 for
57 maximum_field_alignment. Value is in bits. */
58 static int default_alignment;
59 #define SET_GLOBAL_ALIGNMENT(ALIGN) (maximum_field_alignment = *(alignment_stack == NULL \
60 ? &default_alignment \
61 : &alignment_stack->alignment) = (ALIGN))
62
63 static void push_alignment (int, tree);
64 static void pop_alignment (tree);
65
66 /* Push an alignment value onto the stack. */
67 static void
68 push_alignment (int alignment, tree id)
69 {
70 align_stack * entry = ggc_alloc<align_stack> ();
71
72 entry->alignment = alignment;
73 entry->id = id;
74 entry->prev = alignment_stack;
75
76 /* The current value of maximum_field_alignment is not necessarily
77 0 since there may be a #pragma pack(<n>) in effect; remember it
78 so that we can restore it after the final #pragma pop(). */
79 if (alignment_stack == NULL)
80 default_alignment = maximum_field_alignment;
81
82 alignment_stack = entry;
83
84 maximum_field_alignment = alignment;
85 }
86
87 /* Undo a push of an alignment onto the stack. */
88 static void
89 pop_alignment (tree id)
90 {
91 align_stack * entry;
92
93 if (alignment_stack == NULL)
94 GCC_BAD ("%<#pragma pack (pop)%> encountered without matching "
95 "%<#pragma pack (push)%>");
96
97 /* If we got an identifier, strip away everything above the target
98 entry so that the next step will restore the state just below it. */
99 if (id)
100 {
101 for (entry = alignment_stack; entry; entry = entry->prev)
102 if (entry->id == id)
103 {
104 alignment_stack = entry;
105 break;
106 }
107 if (entry == NULL)
108 warning (OPT_Wpragmas,
109 "%<#pragma pack(pop, %E)%> encountered without matching "
110 "%<#pragma pack(push, %E)%>"
111 , id, id);
112 }
113
114 entry = alignment_stack->prev;
115
116 maximum_field_alignment = entry ? entry->alignment : default_alignment;
117
118 alignment_stack = entry;
119 }
120
121 /* #pragma pack ()
122 #pragma pack (N)
123
124 #pragma pack (push)
125 #pragma pack (push, N)
126 #pragma pack (push, ID)
127 #pragma pack (push, ID, N)
128 #pragma pack (pop)
129 #pragma pack (pop, ID) */
130 static void
131 handle_pragma_pack (cpp_reader * ARG_UNUSED (dummy))
132 {
133 tree x, id = 0;
134 int align = -1;
135 enum cpp_ttype token;
136 enum { set, push, pop } action;
137
138 if (pragma_lex (&x) != CPP_OPEN_PAREN)
139 GCC_BAD ("missing %<(%> after %<#pragma pack%> - ignored");
140
141 token = pragma_lex (&x);
142 if (token == CPP_CLOSE_PAREN)
143 {
144 action = set;
145 align = initial_max_fld_align;
146 }
147 else if (token == CPP_NUMBER)
148 {
149 if (TREE_CODE (x) != INTEGER_CST)
150 GCC_BAD ("invalid constant in %<#pragma pack%> - ignored");
151 align = TREE_INT_CST_LOW (x);
152 action = set;
153 if (pragma_lex (&x) != CPP_CLOSE_PAREN)
154 GCC_BAD ("malformed %<#pragma pack%> - ignored");
155 }
156 else if (token == CPP_NAME)
157 {
158 #define GCC_BAD_ACTION do { if (action != pop) \
159 GCC_BAD ("malformed %<#pragma pack(push[, id][, <n>])%> - ignored"); \
160 else \
161 GCC_BAD ("malformed %<#pragma pack(pop[, id])%> - ignored"); \
162 } while (0)
163
164 const char *op = IDENTIFIER_POINTER (x);
165 if (!strcmp (op, "push"))
166 action = push;
167 else if (!strcmp (op, "pop"))
168 action = pop;
169 else
170 GCC_BAD2 ("unknown action %qE for %<#pragma pack%> - ignored", x);
171
172 while ((token = pragma_lex (&x)) == CPP_COMMA)
173 {
174 token = pragma_lex (&x);
175 if (token == CPP_NAME && id == 0)
176 {
177 id = x;
178 }
179 else if (token == CPP_NUMBER && action == push && align == -1)
180 {
181 if (TREE_CODE (x) != INTEGER_CST)
182 GCC_BAD ("invalid constant in %<#pragma pack%> - ignored");
183 align = TREE_INT_CST_LOW (x);
184 if (align == -1)
185 action = set;
186 }
187 else
188 GCC_BAD_ACTION;
189 }
190
191 if (token != CPP_CLOSE_PAREN)
192 GCC_BAD_ACTION;
193 #undef GCC_BAD_ACTION
194 }
195 else
196 GCC_BAD ("malformed %<#pragma pack%> - ignored");
197
198 if (pragma_lex (&x) != CPP_EOF)
199 warning (OPT_Wpragmas, "junk at end of %<#pragma pack%>");
200
201 if (flag_pack_struct)
202 GCC_BAD ("%<#pragma pack%> has no effect with %<-fpack-struct%> - ignored");
203
204 if (action != pop)
205 switch (align)
206 {
207 case 0:
208 case 1:
209 case 2:
210 case 4:
211 case 8:
212 case 16:
213 align *= BITS_PER_UNIT;
214 break;
215 case -1:
216 if (action == push)
217 {
218 align = maximum_field_alignment;
219 break;
220 }
221 /* FALLTHRU */
222 default:
223 GCC_BAD2 ("alignment must be a small power of two, not %d", align);
224 }
225
226 switch (action)
227 {
228 case set: SET_GLOBAL_ALIGNMENT (align); break;
229 case push: push_alignment (align, id); break;
230 case pop: pop_alignment (id); break;
231 }
232 }
233
234 struct GTY(()) pending_weak
235 {
236 tree name;
237 tree value;
238 };
239
240
241 static GTY(()) vec<pending_weak, va_gc> *pending_weaks;
242
243 static void apply_pragma_weak (tree, tree);
244 static void handle_pragma_weak (cpp_reader *);
245
246 static void
247 apply_pragma_weak (tree decl, tree value)
248 {
249 if (value)
250 {
251 value = build_string (IDENTIFIER_LENGTH (value),
252 IDENTIFIER_POINTER (value));
253 decl_attributes (&decl, build_tree_list (get_identifier ("alias"),
254 build_tree_list (NULL, value)),
255 0);
256 }
257
258 if (SUPPORTS_WEAK && DECL_EXTERNAL (decl) && TREE_USED (decl)
259 && !DECL_WEAK (decl) /* Don't complain about a redundant #pragma. */
260 && DECL_ASSEMBLER_NAME_SET_P (decl)
261 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
262 warning (OPT_Wpragmas, "applying %<#pragma weak %+D%> after first use "
263 "results in unspecified behavior", decl);
264
265 declare_weak (decl);
266 }
267
268 void
269 maybe_apply_pragma_weak (tree decl)
270 {
271 tree id;
272 int i;
273 pending_weak *pe;
274
275 /* Avoid asking for DECL_ASSEMBLER_NAME when it's not needed. */
276
277 /* No weak symbols pending, take the short-cut. */
278 if (vec_safe_is_empty (pending_weaks))
279 return;
280 /* If it's not visible outside this file, it doesn't matter whether
281 it's weak. */
282 if (!DECL_EXTERNAL (decl) && !TREE_PUBLIC (decl))
283 return;
284 /* If it's not a function or a variable, it can't be weak.
285 FIXME: what kinds of things are visible outside this file but
286 aren't functions or variables? Should this be an assert instead? */
287 if (!VAR_OR_FUNCTION_DECL_P (decl))
288 return;
289
290 if (DECL_ASSEMBLER_NAME_SET_P (decl))
291 id = DECL_ASSEMBLER_NAME (decl);
292 else
293 {
294 id = DECL_ASSEMBLER_NAME (decl);
295 SET_DECL_ASSEMBLER_NAME (decl, NULL_TREE);
296 }
297
298 FOR_EACH_VEC_ELT (*pending_weaks, i, pe)
299 if (id == pe->name)
300 {
301 apply_pragma_weak (decl, pe->value);
302 pending_weaks->unordered_remove (i);
303 break;
304 }
305 }
306
307 /* Process all "#pragma weak A = B" directives where we have not seen
308 a decl for A. */
309 void
310 maybe_apply_pending_pragma_weaks (void)
311 {
312 tree alias_id, id, decl;
313 int i;
314 pending_weak *pe;
315 symtab_node *target;
316
317 if (vec_safe_is_empty (pending_weaks))
318 return;
319
320 FOR_EACH_VEC_ELT (*pending_weaks, i, pe)
321 {
322 alias_id = pe->name;
323 id = pe->value;
324
325 if (id == NULL)
326 continue;
327
328 target = symtab_node::get_for_asmname (id);
329 decl = build_decl (UNKNOWN_LOCATION,
330 target ? TREE_CODE (target->decl) : FUNCTION_DECL,
331 alias_id, default_function_type);
332
333 DECL_ARTIFICIAL (decl) = 1;
334 TREE_PUBLIC (decl) = 1;
335 DECL_WEAK (decl) = 1;
336 if (VAR_P (decl))
337 TREE_STATIC (decl) = 1;
338 if (!target)
339 {
340 error ("%q+D aliased to undefined symbol %qE",
341 decl, id);
342 continue;
343 }
344
345 assemble_alias (decl, id);
346 }
347 }
348
349 /* #pragma weak name [= value] */
350 static void
351 handle_pragma_weak (cpp_reader * ARG_UNUSED (dummy))
352 {
353 tree name, value, x, decl;
354 enum cpp_ttype t;
355
356 value = 0;
357
358 if (pragma_lex (&name) != CPP_NAME)
359 GCC_BAD ("malformed %<#pragma weak%>, ignored");
360 t = pragma_lex (&x);
361 if (t == CPP_EQ)
362 {
363 if (pragma_lex (&value) != CPP_NAME)
364 GCC_BAD ("malformed %<#pragma weak%>, ignored");
365 t = pragma_lex (&x);
366 }
367 if (t != CPP_EOF)
368 warning (OPT_Wpragmas, "junk at end of %<#pragma weak%>");
369
370 decl = identifier_global_value (name);
371 if (decl && DECL_P (decl))
372 {
373 if (!VAR_OR_FUNCTION_DECL_P (decl))
374 GCC_BAD2 ("%<#pragma weak%> declaration of %q+D not allowed,"
375 " ignored", decl);
376 apply_pragma_weak (decl, value);
377 if (value)
378 {
379 DECL_EXTERNAL (decl) = 0;
380 if (VAR_P (decl))
381 TREE_STATIC (decl) = 1;
382 assemble_alias (decl, value);
383 }
384 }
385 else
386 {
387 pending_weak pe = {name, value};
388 vec_safe_push (pending_weaks, pe);
389 }
390 }
391
392 static enum scalar_storage_order_kind global_sso;
393
394 void
395 maybe_apply_pragma_scalar_storage_order (tree type)
396 {
397 if (global_sso == SSO_NATIVE)
398 return;
399
400 gcc_assert (RECORD_OR_UNION_TYPE_P (type));
401
402 if (lookup_attribute ("scalar_storage_order", TYPE_ATTRIBUTES (type)))
403 return;
404
405 if (global_sso == SSO_BIG_ENDIAN)
406 TYPE_REVERSE_STORAGE_ORDER (type) = !BYTES_BIG_ENDIAN;
407 else if (global_sso == SSO_LITTLE_ENDIAN)
408 TYPE_REVERSE_STORAGE_ORDER (type) = BYTES_BIG_ENDIAN;
409 else
410 gcc_unreachable ();
411 }
412
413 static void
414 handle_pragma_scalar_storage_order (cpp_reader *ARG_UNUSED(dummy))
415 {
416 const char *kind_string;
417 enum cpp_ttype token;
418 tree x;
419
420 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN)
421 {
422 error ("%<scalar_storage_order%> is not supported because endianness "
423 "is not uniform");
424 return;
425 }
426
427 if (c_dialect_cxx ())
428 {
429 if (warn_unknown_pragmas > in_system_header_at (input_location))
430 warning (OPT_Wunknown_pragmas,
431 "%<#pragma scalar_storage_order%> is not supported for C++");
432 return;
433 }
434
435 token = pragma_lex (&x);
436 if (token != CPP_NAME)
437 GCC_BAD ("missing [big-endian|little-endian|default] after %<#pragma scalar_storage_order%>");
438 kind_string = IDENTIFIER_POINTER (x);
439 if (strcmp (kind_string, "default") == 0)
440 global_sso = default_sso;
441 else if (strcmp (kind_string, "big") == 0)
442 global_sso = SSO_BIG_ENDIAN;
443 else if (strcmp (kind_string, "little") == 0)
444 global_sso = SSO_LITTLE_ENDIAN;
445 else
446 GCC_BAD ("expected [big-endian|little-endian|default] after %<#pragma scalar_storage_order%>");
447 }
448
449 /* GCC supports two #pragma directives for renaming the external
450 symbol associated with a declaration (DECL_ASSEMBLER_NAME), for
451 compatibility with the Solaris and VMS system headers. GCC also
452 has its own notation for this, __asm__("name") annotations.
453
454 Corner cases of these features and their interaction:
455
456 1) Both pragmas silently apply only to declarations with external
457 linkage (that is, TREE_PUBLIC || DECL_EXTERNAL). Asm labels
458 do not have this restriction.
459
460 2) In C++, both #pragmas silently apply only to extern "C" declarations.
461 Asm labels do not have this restriction.
462
463 3) If any of the three ways of changing DECL_ASSEMBLER_NAME is
464 applied to a decl whose DECL_ASSEMBLER_NAME is already set, and the
465 new name is different, a warning issues and the name does not change.
466
467 4) The "source name" for #pragma redefine_extname is the DECL_NAME,
468 *not* the DECL_ASSEMBLER_NAME.
469
470 5) If #pragma extern_prefix is in effect and a declaration occurs
471 with an __asm__ name, the #pragma extern_prefix is silently
472 ignored for that declaration.
473
474 6) If #pragma extern_prefix and #pragma redefine_extname apply to
475 the same declaration, whichever triggered first wins, and a warning
476 is issued. (We would like to have #pragma redefine_extname always
477 win, but it can appear either before or after the declaration, and
478 if it appears afterward, we have no way of knowing whether a modified
479 DECL_ASSEMBLER_NAME is due to #pragma extern_prefix.) */
480
481 struct GTY(()) pending_redefinition {
482 tree oldname;
483 tree newname;
484 };
485
486
487 static GTY(()) vec<pending_redefinition, va_gc> *pending_redefine_extname;
488
489 static void handle_pragma_redefine_extname (cpp_reader *);
490
491 /* #pragma redefine_extname oldname newname */
492 static void
493 handle_pragma_redefine_extname (cpp_reader * ARG_UNUSED (dummy))
494 {
495 tree oldname, newname, decls, x;
496 enum cpp_ttype t;
497 bool found;
498
499 if (pragma_lex (&oldname) != CPP_NAME)
500 GCC_BAD ("malformed %<#pragma redefine_extname%>, ignored");
501 if (pragma_lex (&newname) != CPP_NAME)
502 GCC_BAD ("malformed %<#pragma redefine_extname%>, ignored");
503 t = pragma_lex (&x);
504 if (t != CPP_EOF)
505 warning (OPT_Wpragmas, "junk at end of %<#pragma redefine_extname%>");
506
507 found = false;
508 for (decls = c_linkage_bindings (oldname);
509 decls; )
510 {
511 tree decl;
512 if (TREE_CODE (decls) == TREE_LIST)
513 {
514 decl = TREE_VALUE (decls);
515 decls = TREE_CHAIN (decls);
516 }
517 else
518 {
519 decl = decls;
520 decls = NULL_TREE;
521 }
522
523 if ((TREE_PUBLIC (decl) || DECL_EXTERNAL (decl))
524 && VAR_OR_FUNCTION_DECL_P (decl))
525 {
526 found = true;
527 if (DECL_ASSEMBLER_NAME_SET_P (decl))
528 {
529 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
530 name = targetm.strip_name_encoding (name);
531
532 if (!id_equal (newname, name))
533 warning (OPT_Wpragmas, "%<#pragma redefine_extname%> "
534 "ignored due to conflict with previous rename");
535 }
536 else
537 symtab->change_decl_assembler_name (decl, newname);
538 }
539 }
540
541 if (!found)
542 /* We have to add this to the rename list even if there's already
543 a global value that doesn't meet the above criteria, because in
544 C++ "struct foo {...};" puts "foo" in the current namespace but
545 does *not* conflict with a subsequent declaration of a function
546 or variable foo. See g++.dg/other/pragma-re-2.C. */
547 add_to_renaming_pragma_list (oldname, newname);
548 }
549
550 /* This is called from here and from ia64-c.c. */
551 void
552 add_to_renaming_pragma_list (tree oldname, tree newname)
553 {
554 unsigned ix;
555 pending_redefinition *p;
556
557 FOR_EACH_VEC_SAFE_ELT (pending_redefine_extname, ix, p)
558 if (oldname == p->oldname)
559 {
560 if (p->newname != newname)
561 warning (OPT_Wpragmas, "%<#pragma redefine_extname%> ignored due to "
562 "conflict with previous %<#pragma redefine_extname%>");
563 return;
564 }
565
566 pending_redefinition e = {oldname, newname};
567 vec_safe_push (pending_redefine_extname, e);
568 }
569
570 /* The current prefix set by #pragma extern_prefix. */
571 GTY(()) tree pragma_extern_prefix;
572
573 /* Hook from the front ends to apply the results of one of the preceding
574 pragmas that rename variables. */
575
576 tree
577 maybe_apply_renaming_pragma (tree decl, tree asmname)
578 {
579 unsigned ix;
580 pending_redefinition *p;
581
582 /* The renaming pragmas are only applied to declarations with
583 external linkage. */
584 if (!VAR_OR_FUNCTION_DECL_P (decl)
585 || (!TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
586 || !has_c_linkage (decl))
587 return asmname;
588
589 /* If the DECL_ASSEMBLER_NAME is already set, it does not change,
590 but we may warn about a rename that conflicts. */
591 if (DECL_ASSEMBLER_NAME_SET_P (decl))
592 {
593 const char *oldname = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
594 oldname = targetm.strip_name_encoding (oldname);
595
596 if (asmname && strcmp (TREE_STRING_POINTER (asmname), oldname))
597 warning (OPT_Wpragmas, "%<asm%> declaration ignored due to "
598 "conflict with previous rename");
599
600 /* Take any pending redefine_extname off the list. */
601 FOR_EACH_VEC_SAFE_ELT (pending_redefine_extname, ix, p)
602 if (DECL_NAME (decl) == p->oldname)
603 {
604 /* Only warn if there is a conflict. */
605 if (!id_equal (p->newname, oldname))
606 warning (OPT_Wpragmas, "%<#pragma redefine_extname%> ignored "
607 "due to conflict with previous rename");
608
609 pending_redefine_extname->unordered_remove (ix);
610 break;
611 }
612 return NULL_TREE;
613 }
614
615 /* Find out if we have a pending #pragma redefine_extname. */
616 FOR_EACH_VEC_SAFE_ELT (pending_redefine_extname, ix, p)
617 if (DECL_NAME (decl) == p->oldname)
618 {
619 tree newname = p->newname;
620 pending_redefine_extname->unordered_remove (ix);
621
622 /* If we already have an asmname, #pragma redefine_extname is
623 ignored (with a warning if it conflicts). */
624 if (asmname)
625 {
626 if (strcmp (TREE_STRING_POINTER (asmname),
627 IDENTIFIER_POINTER (newname)) != 0)
628 warning (OPT_Wpragmas, "%<#pragma redefine_extname%> ignored "
629 "due to conflict with %<asm%> declaration");
630 return asmname;
631 }
632
633 /* Otherwise we use what we've got; #pragma extern_prefix is
634 silently ignored. */
635 return build_string (IDENTIFIER_LENGTH (newname),
636 IDENTIFIER_POINTER (newname));
637 }
638
639 /* If we've got an asmname, #pragma extern_prefix is silently ignored. */
640 if (asmname)
641 return asmname;
642
643 /* If #pragma extern_prefix is in effect, apply it. */
644 if (pragma_extern_prefix)
645 {
646 const char *prefix = TREE_STRING_POINTER (pragma_extern_prefix);
647 size_t plen = TREE_STRING_LENGTH (pragma_extern_prefix) - 1;
648
649 const char *id = IDENTIFIER_POINTER (DECL_NAME (decl));
650 size_t ilen = IDENTIFIER_LENGTH (DECL_NAME (decl));
651
652 char *newname = (char *) alloca (plen + ilen + 1);
653
654 memcpy (newname, prefix, plen);
655 memcpy (newname + plen, id, ilen + 1);
656
657 return build_string (plen + ilen, newname);
658 }
659
660 /* Nada. */
661 return NULL_TREE;
662 }
663
664
665 static void handle_pragma_visibility (cpp_reader *);
666
667 static vec<int> visstack;
668
669 /* Push the visibility indicated by STR onto the top of the #pragma
670 visibility stack. KIND is 0 for #pragma GCC visibility, 1 for
671 C++ namespace with visibility attribute and 2 for C++ builtin
672 ABI namespace. push_visibility/pop_visibility calls must have
673 matching KIND, it is not allowed to push visibility using one
674 KIND and pop using a different one. */
675
676 void
677 push_visibility (const char *str, int kind)
678 {
679 visstack.safe_push (((int) default_visibility) | (kind << 8));
680 if (!strcmp (str, "default"))
681 default_visibility = VISIBILITY_DEFAULT;
682 else if (!strcmp (str, "internal"))
683 default_visibility = VISIBILITY_INTERNAL;
684 else if (!strcmp (str, "hidden"))
685 default_visibility = VISIBILITY_HIDDEN;
686 else if (!strcmp (str, "protected"))
687 default_visibility = VISIBILITY_PROTECTED;
688 else
689 GCC_BAD ("%<#pragma GCC visibility push()%> must specify %<default%>, "
690 "%<internal%>, %<hidden%> or %<protected%>");
691 visibility_options.inpragma = 1;
692 }
693
694 /* Pop a level of the #pragma visibility stack. Return true if
695 successful. */
696
697 bool
698 pop_visibility (int kind)
699 {
700 if (!visstack.length ())
701 return false;
702 if ((visstack.last () >> 8) != kind)
703 return false;
704 default_visibility
705 = (enum symbol_visibility) (visstack.pop () & 0xff);
706 visibility_options.inpragma
707 = visstack.length () != 0;
708 return true;
709 }
710
711 /* Sets the default visibility for symbols to something other than that
712 specified on the command line. */
713
714 static void
715 handle_pragma_visibility (cpp_reader *dummy ATTRIBUTE_UNUSED)
716 {
717 /* Form is #pragma GCC visibility push(hidden)|pop */
718 tree x;
719 enum cpp_ttype token;
720 enum { bad, push, pop } action = bad;
721
722 token = pragma_lex (&x);
723 if (token == CPP_NAME)
724 {
725 const char *op = IDENTIFIER_POINTER (x);
726 if (!strcmp (op, "push"))
727 action = push;
728 else if (!strcmp (op, "pop"))
729 action = pop;
730 }
731 if (bad == action)
732 GCC_BAD ("%<#pragma GCC visibility%> must be followed by %<push%> "
733 "or %<pop%>");
734 else
735 {
736 if (pop == action)
737 {
738 if (! pop_visibility (0))
739 GCC_BAD ("no matching push for %<#pragma GCC visibility pop%>");
740 }
741 else
742 {
743 if (pragma_lex (&x) != CPP_OPEN_PAREN)
744 GCC_BAD ("missing %<(%> after %<#pragma GCC visibility push%> - ignored");
745 token = pragma_lex (&x);
746 if (token != CPP_NAME)
747 GCC_BAD ("malformed %<#pragma GCC visibility push%>");
748 else
749 push_visibility (IDENTIFIER_POINTER (x), 0);
750 if (pragma_lex (&x) != CPP_CLOSE_PAREN)
751 GCC_BAD ("missing %<(%> after %<#pragma GCC visibility push%> - ignored");
752 }
753 }
754 if (pragma_lex (&x) != CPP_EOF)
755 warning (OPT_Wpragmas, "junk at end of %<#pragma GCC visibility%>");
756 }
757
758 static void
759 handle_pragma_diagnostic(cpp_reader *ARG_UNUSED(dummy))
760 {
761 tree x;
762 location_t loc;
763 enum cpp_ttype token = pragma_lex (&x, &loc);
764 if (token != CPP_NAME)
765 {
766 warning_at (loc, OPT_Wpragmas,
767 "missing [error|warning|ignored|push|pop]"
768 " after %<#pragma GCC diagnostic%>");
769 return;
770 }
771
772 diagnostic_t kind;
773 const char *kind_string = IDENTIFIER_POINTER (x);
774 if (strcmp (kind_string, "error") == 0)
775 kind = DK_ERROR;
776 else if (strcmp (kind_string, "warning") == 0)
777 kind = DK_WARNING;
778 else if (strcmp (kind_string, "ignored") == 0)
779 kind = DK_IGNORED;
780 else if (strcmp (kind_string, "push") == 0)
781 {
782 diagnostic_push_diagnostics (global_dc, input_location);
783 return;
784 }
785 else if (strcmp (kind_string, "pop") == 0)
786 {
787 diagnostic_pop_diagnostics (global_dc, input_location);
788 return;
789 }
790 else
791 {
792 warning_at (loc, OPT_Wpragmas,
793 "expected [error|warning|ignored|push|pop]"
794 " after %<#pragma GCC diagnostic%>");
795 return;
796 }
797
798 token = pragma_lex (&x, &loc);
799 if (token != CPP_STRING)
800 {
801 warning_at (loc, OPT_Wpragmas,
802 "missing option after %<#pragma GCC diagnostic%> kind");
803 return;
804 }
805
806 const char *option_string = TREE_STRING_POINTER (x);
807 unsigned int lang_mask = c_common_option_lang_mask () | CL_COMMON;
808 /* option_string + 1 to skip the initial '-' */
809 unsigned int option_index = find_opt (option_string + 1, lang_mask);
810 if (option_index == OPT_SPECIAL_unknown)
811 {
812 option_proposer op;
813 const char *hint = op.suggest_option (option_string + 1);
814 if (hint)
815 warning_at (loc, OPT_Wpragmas,
816 "unknown option after %<#pragma GCC diagnostic%> kind;"
817 " did you mean %<-%s%>?", hint);
818 else
819 warning_at (loc, OPT_Wpragmas,
820 "unknown option after %<#pragma GCC diagnostic%> kind");
821
822 return;
823 }
824 else if (!(cl_options[option_index].flags & CL_WARNING))
825 {
826 warning_at (loc, OPT_Wpragmas,
827 "%qs is not an option that controls warnings", option_string);
828 return;
829 }
830 else if (!(cl_options[option_index].flags & lang_mask))
831 {
832 char *ok_langs = write_langs (cl_options[option_index].flags);
833 char *bad_lang = write_langs (c_common_option_lang_mask ());
834 warning_at (loc, OPT_Wpragmas,
835 "option %qs is valid for %s but not for %s",
836 option_string, ok_langs, bad_lang);
837 free (ok_langs);
838 free (bad_lang);
839 return;
840 }
841
842 struct cl_option_handlers handlers;
843 set_default_handlers (&handlers, NULL);
844 const char *arg = NULL;
845 if (cl_options[option_index].flags & CL_JOINED)
846 arg = option_string + 1 + cl_options[option_index].opt_len;
847 /* FIXME: input_location isn't the best location here, but it is
848 what we used to do here before and changing it breaks e.g.
849 PR69543 and PR69558. */
850 control_warning_option (option_index, (int) kind,
851 arg, kind != DK_IGNORED,
852 input_location, lang_mask, &handlers,
853 &global_options, &global_options_set,
854 global_dc);
855 }
856
857 /* Parse #pragma GCC target (xxx) to set target specific options. */
858 static void
859 handle_pragma_target(cpp_reader *ARG_UNUSED(dummy))
860 {
861 enum cpp_ttype token;
862 tree x;
863 bool close_paren_needed_p = false;
864
865 if (cfun)
866 {
867 error ("%<#pragma GCC option%> is not allowed inside functions");
868 return;
869 }
870
871 token = pragma_lex (&x);
872 if (token == CPP_OPEN_PAREN)
873 {
874 close_paren_needed_p = true;
875 token = pragma_lex (&x);
876 }
877
878 if (token != CPP_STRING)
879 {
880 GCC_BAD ("%<#pragma GCC option%> is not a string");
881 return;
882 }
883
884 /* Strings are user options. */
885 else
886 {
887 tree args = NULL_TREE;
888
889 do
890 {
891 /* Build up the strings now as a tree linked list. Skip empty
892 strings. */
893 if (TREE_STRING_LENGTH (x) > 0)
894 args = tree_cons (NULL_TREE, x, args);
895
896 token = pragma_lex (&x);
897 while (token == CPP_COMMA)
898 token = pragma_lex (&x);
899 }
900 while (token == CPP_STRING);
901
902 if (close_paren_needed_p)
903 {
904 if (token == CPP_CLOSE_PAREN)
905 token = pragma_lex (&x);
906 else
907 GCC_BAD ("%<#pragma GCC target (string [,string]...)%> does "
908 "not have a final %<)%>");
909 }
910
911 if (token != CPP_EOF)
912 {
913 error ("%<#pragma GCC target%> string is badly formed");
914 return;
915 }
916
917 /* put arguments in the order the user typed them. */
918 args = nreverse (args);
919
920 if (targetm.target_option.pragma_parse (args, NULL_TREE))
921 current_target_pragma = chainon (current_target_pragma, args);
922 }
923 }
924
925 /* Handle #pragma GCC optimize to set optimization options. */
926 static void
927 handle_pragma_optimize (cpp_reader *ARG_UNUSED(dummy))
928 {
929 enum cpp_ttype token;
930 tree x;
931 bool close_paren_needed_p = false;
932 tree optimization_previous_node = optimization_current_node;
933
934 if (cfun)
935 {
936 error ("%<#pragma GCC optimize%> is not allowed inside functions");
937 return;
938 }
939
940 token = pragma_lex (&x);
941 if (token == CPP_OPEN_PAREN)
942 {
943 close_paren_needed_p = true;
944 token = pragma_lex (&x);
945 }
946
947 if (token != CPP_STRING && token != CPP_NUMBER)
948 {
949 GCC_BAD ("%<#pragma GCC optimize%> is not a string or number");
950 return;
951 }
952
953 /* Strings/numbers are user options. */
954 else
955 {
956 tree args = NULL_TREE;
957
958 do
959 {
960 /* Build up the numbers/strings now as a list. */
961 if (token != CPP_STRING || TREE_STRING_LENGTH (x) > 0)
962 args = tree_cons (NULL_TREE, x, args);
963
964 token = pragma_lex (&x);
965 while (token == CPP_COMMA)
966 token = pragma_lex (&x);
967 }
968 while (token == CPP_STRING || token == CPP_NUMBER);
969
970 if (close_paren_needed_p)
971 {
972 if (token == CPP_CLOSE_PAREN)
973 token = pragma_lex (&x);
974 else
975 GCC_BAD ("%<#pragma GCC optimize (string [,string]...)%> does "
976 "not have a final %<)%>");
977 }
978
979 if (token != CPP_EOF)
980 {
981 error ("%<#pragma GCC optimize%> string is badly formed");
982 return;
983 }
984
985 /* put arguments in the order the user typed them. */
986 args = nreverse (args);
987
988 parse_optimize_options (args, false);
989 current_optimize_pragma = chainon (current_optimize_pragma, args);
990 optimization_current_node
991 = build_optimization_node (&global_options, &global_options_set);
992 c_cpp_builtins_optimize_pragma (parse_in,
993 optimization_previous_node,
994 optimization_current_node);
995 }
996 }
997
998 /* Stack of the #pragma GCC options created with #pragma GCC push_option. Save
999 both the binary representation of the options and the TREE_LIST of
1000 strings that will be added to the function's attribute list. */
1001 struct GTY(()) opt_stack {
1002 struct opt_stack *prev;
1003 tree target_binary;
1004 tree target_strings;
1005 tree optimize_binary;
1006 tree optimize_strings;
1007 gcc_options * GTY ((skip)) saved_global_options;
1008 };
1009
1010 static GTY(()) struct opt_stack * options_stack;
1011
1012 /* Handle #pragma GCC push_options to save the current target and optimization
1013 options. */
1014
1015 static void
1016 handle_pragma_push_options (cpp_reader *ARG_UNUSED(dummy))
1017 {
1018 enum cpp_ttype token;
1019 tree x = 0;
1020
1021 token = pragma_lex (&x);
1022 if (token != CPP_EOF)
1023 {
1024 warning (OPT_Wpragmas, "junk at end of %<#pragma push_options%>");
1025 return;
1026 }
1027
1028 opt_stack *p = ggc_alloc<opt_stack> ();
1029 p->prev = options_stack;
1030 options_stack = p;
1031
1032 /* Save optimization and target flags in binary format. */
1033 if (flag_checking)
1034 {
1035 p->saved_global_options = XNEW (gcc_options);
1036 *p->saved_global_options = global_options;
1037 }
1038 p->optimize_binary = build_optimization_node (&global_options,
1039 &global_options_set);
1040 p->target_binary = build_target_option_node (&global_options,
1041 &global_options_set);
1042
1043 /* Save optimization and target flags in string list format. */
1044 p->optimize_strings = copy_list (current_optimize_pragma);
1045 p->target_strings = copy_list (current_target_pragma);
1046 }
1047
1048 /* Handle #pragma GCC pop_options to restore the current target and
1049 optimization options from a previous push_options. */
1050
1051 static void
1052 handle_pragma_pop_options (cpp_reader *ARG_UNUSED(dummy))
1053 {
1054 enum cpp_ttype token;
1055 tree x = 0;
1056 opt_stack *p;
1057
1058 token = pragma_lex (&x);
1059 if (token != CPP_EOF)
1060 {
1061 warning (OPT_Wpragmas, "junk at end of %<#pragma pop_options%>");
1062 return;
1063 }
1064
1065 if (! options_stack)
1066 {
1067 warning (OPT_Wpragmas,
1068 "%<#pragma GCC pop_options%> without a corresponding "
1069 "%<#pragma GCC push_options%>");
1070 return;
1071 }
1072
1073 p = options_stack;
1074 options_stack = p->prev;
1075
1076 if (p->target_binary != target_option_current_node)
1077 {
1078 (void) targetm.target_option.pragma_parse (NULL_TREE, p->target_binary);
1079 target_option_current_node = p->target_binary;
1080 }
1081
1082 if (p->optimize_binary != optimization_current_node)
1083 {
1084 tree old_optimize = optimization_current_node;
1085 cl_optimization_restore (&global_options, &global_options_set,
1086 TREE_OPTIMIZATION (p->optimize_binary));
1087 c_cpp_builtins_optimize_pragma (parse_in, old_optimize,
1088 p->optimize_binary);
1089 optimization_current_node = p->optimize_binary;
1090 }
1091 if (flag_checking)
1092 {
1093 cl_optimization_compare (p->saved_global_options, &global_options);
1094 free (p->saved_global_options);
1095 }
1096
1097 current_target_pragma = p->target_strings;
1098 current_optimize_pragma = p->optimize_strings;
1099 }
1100
1101 /* Handle #pragma GCC reset_options to restore the current target and
1102 optimization options to the original options used on the command line. */
1103
1104 static void
1105 handle_pragma_reset_options (cpp_reader *ARG_UNUSED(dummy))
1106 {
1107 enum cpp_ttype token;
1108 tree x = 0;
1109 tree new_optimize = optimization_default_node;
1110 tree new_target = target_option_default_node;
1111
1112 token = pragma_lex (&x);
1113 if (token != CPP_EOF)
1114 {
1115 warning (OPT_Wpragmas, "junk at end of %<#pragma reset_options%>");
1116 return;
1117 }
1118
1119 if (new_target != target_option_current_node)
1120 {
1121 (void) targetm.target_option.pragma_parse (NULL_TREE, new_target);
1122 target_option_current_node = new_target;
1123 }
1124
1125 if (new_optimize != optimization_current_node)
1126 {
1127 tree old_optimize = optimization_current_node;
1128 cl_optimization_restore (&global_options, &global_options_set,
1129 TREE_OPTIMIZATION (new_optimize));
1130 c_cpp_builtins_optimize_pragma (parse_in, old_optimize, new_optimize);
1131 optimization_current_node = new_optimize;
1132 }
1133
1134 current_target_pragma = NULL_TREE;
1135 current_optimize_pragma = NULL_TREE;
1136 }
1137
1138 /* Print a plain user-specified message. */
1139
1140 static void
1141 handle_pragma_message (cpp_reader *ARG_UNUSED(dummy))
1142 {
1143 enum cpp_ttype token;
1144 tree x, message = 0;
1145
1146 token = pragma_lex (&x);
1147 if (token == CPP_OPEN_PAREN)
1148 {
1149 token = pragma_lex (&x);
1150 if (token == CPP_STRING)
1151 message = x;
1152 else
1153 GCC_BAD ("expected a string after %<#pragma message%>");
1154 if (pragma_lex (&x) != CPP_CLOSE_PAREN)
1155 GCC_BAD ("malformed %<#pragma message%>, ignored");
1156 }
1157 else if (token == CPP_STRING)
1158 message = x;
1159 else
1160 GCC_BAD ("expected a string after %<#pragma message%>");
1161
1162 gcc_assert (message);
1163
1164 if (pragma_lex (&x) != CPP_EOF)
1165 warning (OPT_Wpragmas, "junk at end of %<#pragma message%>");
1166
1167 if (TREE_STRING_LENGTH (message) > 1)
1168 inform (input_location, "%<#pragma message: %s%>",
1169 TREE_STRING_POINTER (message));
1170 }
1171
1172 /* Mark whether the current location is valid for a STDC pragma. */
1173
1174 static bool valid_location_for_stdc_pragma;
1175
1176 void
1177 mark_valid_location_for_stdc_pragma (bool flag)
1178 {
1179 valid_location_for_stdc_pragma = flag;
1180 }
1181
1182 /* Return true if the current location is valid for a STDC pragma. */
1183
1184 bool
1185 valid_location_for_stdc_pragma_p (void)
1186 {
1187 return valid_location_for_stdc_pragma;
1188 }
1189
1190 enum pragma_switch_t { PRAGMA_ON, PRAGMA_OFF, PRAGMA_DEFAULT, PRAGMA_BAD };
1191
1192 /* A STDC pragma must appear outside of external declarations or
1193 preceding all explicit declarations and statements inside a compound
1194 statement; its behavior is undefined if used in any other context.
1195 It takes a switch of ON, OFF, or DEFAULT. */
1196
1197 static enum pragma_switch_t
1198 handle_stdc_pragma (const char *pname)
1199 {
1200 const char *arg;
1201 tree t;
1202 enum pragma_switch_t ret;
1203
1204 if (!valid_location_for_stdc_pragma_p ())
1205 {
1206 warning (OPT_Wpragmas, "invalid location for %<pragma %s%>, ignored",
1207 pname);
1208 return PRAGMA_BAD;
1209 }
1210
1211 if (pragma_lex (&t) != CPP_NAME)
1212 {
1213 warning (OPT_Wpragmas, "malformed %<#pragma %s%>, ignored", pname);
1214 return PRAGMA_BAD;
1215 }
1216
1217 arg = IDENTIFIER_POINTER (t);
1218
1219 if (!strcmp (arg, "ON"))
1220 ret = PRAGMA_ON;
1221 else if (!strcmp (arg, "OFF"))
1222 ret = PRAGMA_OFF;
1223 else if (!strcmp (arg, "DEFAULT"))
1224 ret = PRAGMA_DEFAULT;
1225 else
1226 {
1227 warning (OPT_Wpragmas, "malformed %<#pragma %s%>, ignored", pname);
1228 return PRAGMA_BAD;
1229 }
1230
1231 if (pragma_lex (&t) != CPP_EOF)
1232 {
1233 warning (OPT_Wpragmas, "junk at end of %<#pragma %s%>", pname);
1234 return PRAGMA_BAD;
1235 }
1236
1237 return ret;
1238 }
1239
1240 /* #pragma STDC FLOAT_CONST_DECIMAL64 ON
1241 #pragma STDC FLOAT_CONST_DECIMAL64 OFF
1242 #pragma STDC FLOAT_CONST_DECIMAL64 DEFAULT */
1243
1244 static void
1245 handle_pragma_float_const_decimal64 (cpp_reader *ARG_UNUSED (dummy))
1246 {
1247 if (c_dialect_cxx ())
1248 {
1249 if (warn_unknown_pragmas > in_system_header_at (input_location))
1250 warning (OPT_Wunknown_pragmas,
1251 "%<#pragma STDC FLOAT_CONST_DECIMAL64%> is not supported"
1252 " for C++");
1253 return;
1254 }
1255
1256 if (!targetm.decimal_float_supported_p ())
1257 {
1258 if (warn_unknown_pragmas > in_system_header_at (input_location))
1259 warning (OPT_Wunknown_pragmas,
1260 "%<#pragma STDC FLOAT_CONST_DECIMAL64%> is not supported"
1261 " on this target");
1262 return;
1263 }
1264
1265 pedwarn (input_location, OPT_Wpedantic,
1266 "ISO C does not support %<#pragma STDC FLOAT_CONST_DECIMAL64%>");
1267
1268 switch (handle_stdc_pragma ("STDC FLOAT_CONST_DECIMAL64"))
1269 {
1270 case PRAGMA_ON:
1271 set_float_const_decimal64 ();
1272 break;
1273 case PRAGMA_OFF:
1274 case PRAGMA_DEFAULT:
1275 clear_float_const_decimal64 ();
1276 break;
1277 case PRAGMA_BAD:
1278 break;
1279 }
1280 }
1281
1282 /* A vector of registered pragma callbacks, which is never freed. */
1283
1284 static vec<internal_pragma_handler> registered_pragmas;
1285
1286 struct pragma_ns_name
1287 {
1288 const char *space;
1289 const char *name;
1290 };
1291
1292
1293 static vec<pragma_ns_name> registered_pp_pragmas;
1294
1295 struct omp_pragma_def { const char *name; unsigned int id; };
1296 static const struct omp_pragma_def oacc_pragmas[] = {
1297 { "atomic", PRAGMA_OACC_ATOMIC },
1298 { "cache", PRAGMA_OACC_CACHE },
1299 { "data", PRAGMA_OACC_DATA },
1300 { "declare", PRAGMA_OACC_DECLARE },
1301 { "enter", PRAGMA_OACC_ENTER_DATA },
1302 { "exit", PRAGMA_OACC_EXIT_DATA },
1303 { "host_data", PRAGMA_OACC_HOST_DATA },
1304 { "kernels", PRAGMA_OACC_KERNELS },
1305 { "loop", PRAGMA_OACC_LOOP },
1306 { "parallel", PRAGMA_OACC_PARALLEL },
1307 { "routine", PRAGMA_OACC_ROUTINE },
1308 { "serial", PRAGMA_OACC_SERIAL },
1309 { "update", PRAGMA_OACC_UPDATE },
1310 { "wait", PRAGMA_OACC_WAIT }
1311 };
1312 static const struct omp_pragma_def omp_pragmas[] = {
1313 { "atomic", PRAGMA_OMP_ATOMIC },
1314 { "barrier", PRAGMA_OMP_BARRIER },
1315 { "cancel", PRAGMA_OMP_CANCEL },
1316 { "cancellation", PRAGMA_OMP_CANCELLATION_POINT },
1317 { "critical", PRAGMA_OMP_CRITICAL },
1318 { "depobj", PRAGMA_OMP_DEPOBJ },
1319 { "end", PRAGMA_OMP_END_DECLARE_TARGET },
1320 { "flush", PRAGMA_OMP_FLUSH },
1321 { "master", PRAGMA_OMP_MASTER },
1322 { "requires", PRAGMA_OMP_REQUIRES },
1323 { "section", PRAGMA_OMP_SECTION },
1324 { "sections", PRAGMA_OMP_SECTIONS },
1325 { "single", PRAGMA_OMP_SINGLE },
1326 { "task", PRAGMA_OMP_TASK },
1327 { "taskgroup", PRAGMA_OMP_TASKGROUP },
1328 { "taskwait", PRAGMA_OMP_TASKWAIT },
1329 { "taskyield", PRAGMA_OMP_TASKYIELD },
1330 { "threadprivate", PRAGMA_OMP_THREADPRIVATE }
1331 };
1332 static const struct omp_pragma_def omp_pragmas_simd[] = {
1333 { "declare", PRAGMA_OMP_DECLARE },
1334 { "distribute", PRAGMA_OMP_DISTRIBUTE },
1335 { "for", PRAGMA_OMP_FOR },
1336 { "loop", PRAGMA_OMP_LOOP },
1337 { "ordered", PRAGMA_OMP_ORDERED },
1338 { "parallel", PRAGMA_OMP_PARALLEL },
1339 { "scan", PRAGMA_OMP_SCAN },
1340 { "simd", PRAGMA_OMP_SIMD },
1341 { "target", PRAGMA_OMP_TARGET },
1342 { "taskloop", PRAGMA_OMP_TASKLOOP },
1343 { "teams", PRAGMA_OMP_TEAMS },
1344 };
1345
1346 void
1347 c_pp_lookup_pragma (unsigned int id, const char **space, const char **name)
1348 {
1349 const int n_oacc_pragmas = sizeof (oacc_pragmas) / sizeof (*oacc_pragmas);
1350 const int n_omp_pragmas = sizeof (omp_pragmas) / sizeof (*omp_pragmas);
1351 const int n_omp_pragmas_simd = sizeof (omp_pragmas_simd)
1352 / sizeof (*omp_pragmas);
1353 int i;
1354
1355 for (i = 0; i < n_oacc_pragmas; ++i)
1356 if (oacc_pragmas[i].id == id)
1357 {
1358 *space = "acc";
1359 *name = oacc_pragmas[i].name;
1360 return;
1361 }
1362
1363 for (i = 0; i < n_omp_pragmas; ++i)
1364 if (omp_pragmas[i].id == id)
1365 {
1366 *space = "omp";
1367 *name = omp_pragmas[i].name;
1368 return;
1369 }
1370
1371 for (i = 0; i < n_omp_pragmas_simd; ++i)
1372 if (omp_pragmas_simd[i].id == id)
1373 {
1374 *space = "omp";
1375 *name = omp_pragmas_simd[i].name;
1376 return;
1377 }
1378
1379 if (id >= PRAGMA_FIRST_EXTERNAL
1380 && (id < PRAGMA_FIRST_EXTERNAL + registered_pp_pragmas.length ()))
1381 {
1382 *space = registered_pp_pragmas[id - PRAGMA_FIRST_EXTERNAL].space;
1383 *name = registered_pp_pragmas[id - PRAGMA_FIRST_EXTERNAL].name;
1384 return;
1385 }
1386
1387 gcc_unreachable ();
1388 }
1389
1390 /* Front-end wrappers for pragma registration to avoid dragging
1391 cpplib.h in almost everywhere. */
1392
1393 static void
1394 c_register_pragma_1 (const char *space, const char *name,
1395 internal_pragma_handler ihandler, bool allow_expansion)
1396 {
1397 unsigned id;
1398
1399 if (flag_preprocess_only)
1400 {
1401 pragma_ns_name ns_name;
1402
1403 if (!allow_expansion)
1404 return;
1405
1406 ns_name.space = space;
1407 ns_name.name = name;
1408 registered_pp_pragmas.safe_push (ns_name);
1409 id = registered_pp_pragmas.length ();
1410 id += PRAGMA_FIRST_EXTERNAL - 1;
1411 }
1412 else
1413 {
1414 registered_pragmas.safe_push (ihandler);
1415 id = registered_pragmas.length ();
1416 id += PRAGMA_FIRST_EXTERNAL - 1;
1417
1418 /* The C front end allocates 8 bits in c_token. The C++ front end
1419 keeps the pragma kind in the form of INTEGER_CST, so no small
1420 limit applies. At present this is sufficient. */
1421 gcc_assert (id < 256);
1422 }
1423
1424 cpp_register_deferred_pragma (parse_in, space, name, id,
1425 allow_expansion, false);
1426 }
1427
1428 /* Register a C pragma handler, using a space and a name. It disallows pragma
1429 expansion (if you want it, use c_register_pragma_with_expansion instead). */
1430 void
1431 c_register_pragma (const char *space, const char *name,
1432 pragma_handler_1arg handler)
1433 {
1434 internal_pragma_handler ihandler;
1435
1436 ihandler.handler.handler_1arg = handler;
1437 ihandler.extra_data = false;
1438 ihandler.data = NULL;
1439 c_register_pragma_1 (space, name, ihandler, false);
1440 }
1441
1442 /* Register a C pragma handler, using a space and a name, it also carries an
1443 extra data field which can be used by the handler. It disallows pragma
1444 expansion (if you want it, use c_register_pragma_with_expansion_and_data
1445 instead). */
1446 void
1447 c_register_pragma_with_data (const char *space, const char *name,
1448 pragma_handler_2arg handler, void * data)
1449 {
1450 internal_pragma_handler ihandler;
1451
1452 ihandler.handler.handler_2arg = handler;
1453 ihandler.extra_data = true;
1454 ihandler.data = data;
1455 c_register_pragma_1 (space, name, ihandler, false);
1456 }
1457
1458 /* Register a C pragma handler, using a space and a name. It allows pragma
1459 expansion as in the following example:
1460
1461 #define NUMBER 10
1462 #pragma count (NUMBER)
1463
1464 Name expansion is still disallowed. */
1465 void
1466 c_register_pragma_with_expansion (const char *space, const char *name,
1467 pragma_handler_1arg handler)
1468 {
1469 internal_pragma_handler ihandler;
1470
1471 ihandler.handler.handler_1arg = handler;
1472 ihandler.extra_data = false;
1473 ihandler.data = NULL;
1474 c_register_pragma_1 (space, name, ihandler, true);
1475 }
1476
1477 /* Register a C pragma handler, using a space and a name, it also carries an
1478 extra data field which can be used by the handler. It allows pragma
1479 expansion as in the following example:
1480
1481 #define NUMBER 10
1482 #pragma count (NUMBER)
1483
1484 Name expansion is still disallowed. */
1485 void
1486 c_register_pragma_with_expansion_and_data (const char *space, const char *name,
1487 pragma_handler_2arg handler,
1488 void *data)
1489 {
1490 internal_pragma_handler ihandler;
1491
1492 ihandler.handler.handler_2arg = handler;
1493 ihandler.extra_data = true;
1494 ihandler.data = data;
1495 c_register_pragma_1 (space, name, ihandler, true);
1496 }
1497
1498 void
1499 c_invoke_pragma_handler (unsigned int id)
1500 {
1501 internal_pragma_handler *ihandler;
1502 pragma_handler_1arg handler_1arg;
1503 pragma_handler_2arg handler_2arg;
1504
1505 id -= PRAGMA_FIRST_EXTERNAL;
1506 ihandler = &registered_pragmas[id];
1507 if (ihandler->extra_data)
1508 {
1509 handler_2arg = ihandler->handler.handler_2arg;
1510 handler_2arg (parse_in, ihandler->data);
1511 }
1512 else
1513 {
1514 handler_1arg = ihandler->handler.handler_1arg;
1515 handler_1arg (parse_in);
1516 }
1517 }
1518
1519 /* Set up front-end pragmas. */
1520 void
1521 init_pragma (void)
1522 {
1523 if (flag_openacc)
1524 {
1525 const int n_oacc_pragmas
1526 = sizeof (oacc_pragmas) / sizeof (*oacc_pragmas);
1527 int i;
1528
1529 for (i = 0; i < n_oacc_pragmas; ++i)
1530 cpp_register_deferred_pragma (parse_in, "acc", oacc_pragmas[i].name,
1531 oacc_pragmas[i].id, true, true);
1532 }
1533
1534 if (flag_openmp)
1535 {
1536 const int n_omp_pragmas = sizeof (omp_pragmas) / sizeof (*omp_pragmas);
1537 int i;
1538
1539 for (i = 0; i < n_omp_pragmas; ++i)
1540 cpp_register_deferred_pragma (parse_in, "omp", omp_pragmas[i].name,
1541 omp_pragmas[i].id, true, true);
1542 }
1543 if (flag_openmp || flag_openmp_simd)
1544 {
1545 const int n_omp_pragmas_simd = sizeof (omp_pragmas_simd)
1546 / sizeof (*omp_pragmas);
1547 int i;
1548
1549 for (i = 0; i < n_omp_pragmas_simd; ++i)
1550 cpp_register_deferred_pragma (parse_in, "omp", omp_pragmas_simd[i].name,
1551 omp_pragmas_simd[i].id, true, true);
1552 }
1553
1554 if (!flag_preprocess_only)
1555 cpp_register_deferred_pragma (parse_in, "GCC", "pch_preprocess",
1556 PRAGMA_GCC_PCH_PREPROCESS, false, false);
1557
1558 if (!flag_preprocess_only)
1559 cpp_register_deferred_pragma (parse_in, "GCC", "ivdep", PRAGMA_IVDEP, false,
1560 false);
1561
1562 if (!flag_preprocess_only)
1563 cpp_register_deferred_pragma (parse_in, "GCC", "unroll", PRAGMA_UNROLL,
1564 false, false);
1565
1566 #ifdef HANDLE_PRAGMA_PACK_WITH_EXPANSION
1567 c_register_pragma_with_expansion (0, "pack", handle_pragma_pack);
1568 #else
1569 c_register_pragma (0, "pack", handle_pragma_pack);
1570 #endif
1571 c_register_pragma (0, "weak", handle_pragma_weak);
1572
1573 c_register_pragma ("GCC", "visibility", handle_pragma_visibility);
1574
1575 c_register_pragma ("GCC", "diagnostic", handle_pragma_diagnostic);
1576 c_register_pragma ("GCC", "target", handle_pragma_target);
1577 c_register_pragma ("GCC", "optimize", handle_pragma_optimize);
1578 c_register_pragma ("GCC", "push_options", handle_pragma_push_options);
1579 c_register_pragma ("GCC", "pop_options", handle_pragma_pop_options);
1580 c_register_pragma ("GCC", "reset_options", handle_pragma_reset_options);
1581
1582 c_register_pragma ("STDC", "FLOAT_CONST_DECIMAL64",
1583 handle_pragma_float_const_decimal64);
1584
1585 c_register_pragma_with_expansion (0, "redefine_extname",
1586 handle_pragma_redefine_extname);
1587
1588 c_register_pragma_with_expansion (0, "message", handle_pragma_message);
1589
1590 #ifdef REGISTER_TARGET_PRAGMAS
1591 REGISTER_TARGET_PRAGMAS ();
1592 #endif
1593
1594 global_sso = default_sso;
1595 c_register_pragma (0, "scalar_storage_order",
1596 handle_pragma_scalar_storage_order);
1597
1598 /* Allow plugins to register their own pragmas. */
1599 invoke_plugin_callbacks (PLUGIN_PRAGMAS, NULL);
1600 }
1601
1602 #include "gt-c-family-c-pragma.h"