1 /* Handle #pragma, system V.4 style. Supports #pragma weak and #pragma pack.
2 Copyright (C) 1992, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
26 #include "function.h" /* For cfun. FIXME: Does the parser know
27 when it is inside a function, so that
28 we don't have to look at cfun? */
35 #include "tm_p.h" /* For REGISTER_TARGET_PRAGMAS (why is
36 this not a target hook?). */
40 #include "diagnostic.h"
44 #define GCC_BAD(gmsgid) \
45 do { warning (OPT_Wpragmas, gmsgid); return; } while (0)
46 #define GCC_BAD2(gmsgid, arg) \
47 do { warning (OPT_Wpragmas, gmsgid, arg); return; } while (0)
49 typedef struct GTY(()) align_stack
{
52 struct align_stack
* prev
;
55 static GTY(()) struct align_stack
* alignment_stack
;
57 static void handle_pragma_pack (cpp_reader
*);
59 /* If we have a "global" #pragma pack(<n>) in effect when the first
60 #pragma pack(push,<n>) is encountered, this stores the value of
61 maximum_field_alignment in effect. When the final pop_alignment()
62 happens, we restore the value to this, not to a value of 0 for
63 maximum_field_alignment. Value is in bits. */
64 static int default_alignment
;
65 #define SET_GLOBAL_ALIGNMENT(ALIGN) (maximum_field_alignment = *(alignment_stack == NULL \
66 ? &default_alignment \
67 : &alignment_stack->alignment) = (ALIGN))
69 static void push_alignment (int, tree
);
70 static void pop_alignment (tree
);
72 /* Push an alignment value onto the stack. */
74 push_alignment (int alignment
, tree id
)
78 entry
= ggc_alloc_align_stack ();
80 entry
->alignment
= alignment
;
82 entry
->prev
= alignment_stack
;
84 /* The current value of maximum_field_alignment is not necessarily
85 0 since there may be a #pragma pack(<n>) in effect; remember it
86 so that we can restore it after the final #pragma pop(). */
87 if (alignment_stack
== NULL
)
88 default_alignment
= maximum_field_alignment
;
90 alignment_stack
= entry
;
92 maximum_field_alignment
= alignment
;
95 /* Undo a push of an alignment onto the stack. */
97 pop_alignment (tree id
)
101 if (alignment_stack
== NULL
)
102 GCC_BAD ("#pragma pack (pop) encountered without matching #pragma pack (push)");
104 /* If we got an identifier, strip away everything above the target
105 entry so that the next step will restore the state just below it. */
108 for (entry
= alignment_stack
; entry
; entry
= entry
->prev
)
111 alignment_stack
= entry
;
115 warning (OPT_Wpragmas
, "\
116 #pragma pack(pop, %E) encountered without matching #pragma pack(push, %E)"
120 entry
= alignment_stack
->prev
;
122 maximum_field_alignment
= entry
? entry
->alignment
: default_alignment
;
124 alignment_stack
= entry
;
131 #pragma pack (push, N)
132 #pragma pack (push, ID)
133 #pragma pack (push, ID, N)
135 #pragma pack (pop, ID) */
137 handle_pragma_pack (cpp_reader
* ARG_UNUSED (dummy
))
141 enum cpp_ttype token
;
142 enum { set
, push
, pop
} action
;
144 if (pragma_lex (&x
) != CPP_OPEN_PAREN
)
145 GCC_BAD ("missing %<(%> after %<#pragma pack%> - ignored");
147 token
= pragma_lex (&x
);
148 if (token
== CPP_CLOSE_PAREN
)
151 align
= initial_max_fld_align
;
153 else if (token
== CPP_NUMBER
)
155 if (TREE_CODE (x
) != INTEGER_CST
)
156 GCC_BAD ("invalid constant in %<#pragma pack%> - ignored");
157 align
= TREE_INT_CST_LOW (x
);
159 if (pragma_lex (&x
) != CPP_CLOSE_PAREN
)
160 GCC_BAD ("malformed %<#pragma pack%> - ignored");
162 else if (token
== CPP_NAME
)
164 #define GCC_BAD_ACTION do { if (action != pop) \
165 GCC_BAD ("malformed %<#pragma pack(push[, id][, <n>])%> - ignored"); \
167 GCC_BAD ("malformed %<#pragma pack(pop[, id])%> - ignored"); \
170 const char *op
= IDENTIFIER_POINTER (x
);
171 if (!strcmp (op
, "push"))
173 else if (!strcmp (op
, "pop"))
176 GCC_BAD2 ("unknown action %qE for %<#pragma pack%> - ignored", x
);
178 while ((token
= pragma_lex (&x
)) == CPP_COMMA
)
180 token
= pragma_lex (&x
);
181 if (token
== CPP_NAME
&& id
== 0)
185 else if (token
== CPP_NUMBER
&& action
== push
&& align
== -1)
187 if (TREE_CODE (x
) != INTEGER_CST
)
188 GCC_BAD ("invalid constant in %<#pragma pack%> - ignored");
189 align
= TREE_INT_CST_LOW (x
);
197 if (token
!= CPP_CLOSE_PAREN
)
199 #undef GCC_BAD_ACTION
202 GCC_BAD ("malformed %<#pragma pack%> - ignored");
204 if (pragma_lex (&x
) != CPP_EOF
)
205 warning (OPT_Wpragmas
, "junk at end of %<#pragma pack%>");
207 if (flag_pack_struct
)
208 GCC_BAD ("#pragma pack has no effect with -fpack-struct - ignored");
219 align
*= BITS_PER_UNIT
;
224 align
= maximum_field_alignment
;
228 GCC_BAD2 ("alignment must be a small power of two, not %d", align
);
233 case set
: SET_GLOBAL_ALIGNMENT (align
); break;
234 case push
: push_alignment (align
, id
); break;
235 case pop
: pop_alignment (id
); break;
239 typedef struct GTY(()) pending_weak_d
245 DEF_VEC_O(pending_weak
);
246 DEF_VEC_ALLOC_O(pending_weak
,gc
);
248 static GTY(()) VEC(pending_weak
,gc
) *pending_weaks
;
250 static void apply_pragma_weak (tree
, tree
);
251 static void handle_pragma_weak (cpp_reader
*);
254 apply_pragma_weak (tree decl
, tree value
)
258 value
= build_string (IDENTIFIER_LENGTH (value
),
259 IDENTIFIER_POINTER (value
));
260 decl_attributes (&decl
, build_tree_list (get_identifier ("alias"),
261 build_tree_list (NULL
, value
)),
265 if (SUPPORTS_WEAK
&& DECL_EXTERNAL (decl
) && TREE_USED (decl
)
266 && !DECL_WEAK (decl
) /* Don't complain about a redundant #pragma. */
267 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
268 warning (OPT_Wpragmas
, "applying #pragma weak %q+D after first use "
269 "results in unspecified behavior", decl
);
275 maybe_apply_pragma_weak (tree decl
)
281 /* Avoid asking for DECL_ASSEMBLER_NAME when it's not needed. */
283 /* No weak symbols pending, take the short-cut. */
286 /* If it's not visible outside this file, it doesn't matter whether
288 if (!DECL_EXTERNAL (decl
) && !TREE_PUBLIC (decl
))
290 /* If it's not a function or a variable, it can't be weak.
291 FIXME: what kinds of things are visible outside this file but
292 aren't functions or variables? Should this be an assert instead? */
293 if (TREE_CODE (decl
) != FUNCTION_DECL
&& TREE_CODE (decl
) != VAR_DECL
)
296 id
= DECL_ASSEMBLER_NAME (decl
);
298 FOR_EACH_VEC_ELT (pending_weak
, pending_weaks
, i
, pe
)
301 apply_pragma_weak (decl
, pe
->value
);
302 VEC_unordered_remove (pending_weak
, pending_weaks
, i
);
307 /* Process all "#pragma weak A = B" directives where we have not seen
310 maybe_apply_pending_pragma_weaks (void)
312 tree alias_id
, id
, decl
;
316 FOR_EACH_VEC_ELT (pending_weak
, pending_weaks
, i
, pe
)
324 decl
= build_decl (UNKNOWN_LOCATION
,
325 FUNCTION_DECL
, alias_id
, default_function_type
);
327 DECL_ARTIFICIAL (decl
) = 1;
328 TREE_PUBLIC (decl
) = 1;
329 DECL_EXTERNAL (decl
) = 1;
330 DECL_WEAK (decl
) = 1;
332 assemble_alias (decl
, id
);
336 /* #pragma weak name [= value] */
338 handle_pragma_weak (cpp_reader
* ARG_UNUSED (dummy
))
340 tree name
, value
, x
, decl
;
345 if (pragma_lex (&name
) != CPP_NAME
)
346 GCC_BAD ("malformed #pragma weak, ignored");
350 if (pragma_lex (&value
) != CPP_NAME
)
351 GCC_BAD ("malformed #pragma weak, ignored");
355 warning (OPT_Wpragmas
, "junk at end of %<#pragma weak%>");
357 decl
= identifier_global_value (name
);
358 if (decl
&& DECL_P (decl
))
360 apply_pragma_weak (decl
, value
);
362 assemble_alias (decl
, value
);
367 pe
= VEC_safe_push (pending_weak
, gc
, pending_weaks
, NULL
);
373 /* GCC supports two #pragma directives for renaming the external
374 symbol associated with a declaration (DECL_ASSEMBLER_NAME), for
375 compatibility with the Solaris and Tru64 system headers. GCC also
376 has its own notation for this, __asm__("name") annotations.
378 Corner cases of these features and their interaction:
380 1) Both pragmas silently apply only to declarations with external
381 linkage (that is, TREE_PUBLIC || DECL_EXTERNAL). Asm labels
382 do not have this restriction.
384 2) In C++, both #pragmas silently apply only to extern "C" declarations.
385 Asm labels do not have this restriction.
387 3) If any of the three ways of changing DECL_ASSEMBLER_NAME is
388 applied to a decl whose DECL_ASSEMBLER_NAME is already set, and the
389 new name is different, a warning issues and the name does not change.
391 4) The "source name" for #pragma redefine_extname is the DECL_NAME,
392 *not* the DECL_ASSEMBLER_NAME.
394 5) If #pragma extern_prefix is in effect and a declaration occurs
395 with an __asm__ name, the #pragma extern_prefix is silently
396 ignored for that declaration.
398 6) If #pragma extern_prefix and #pragma redefine_extname apply to
399 the same declaration, whichever triggered first wins, and a warning
400 is issued. (We would like to have #pragma redefine_extname always
401 win, but it can appear either before or after the declaration, and
402 if it appears afterward, we have no way of knowing whether a modified
403 DECL_ASSEMBLER_NAME is due to #pragma extern_prefix.) */
405 typedef struct GTY(()) pending_redefinition_d
{
408 } pending_redefinition
;
410 DEF_VEC_O(pending_redefinition
);
411 DEF_VEC_ALLOC_O(pending_redefinition
,gc
);
413 static GTY(()) VEC(pending_redefinition
,gc
) *pending_redefine_extname
;
415 static void handle_pragma_redefine_extname (cpp_reader
*);
417 /* #pragma redefine_extname oldname newname */
419 handle_pragma_redefine_extname (cpp_reader
* ARG_UNUSED (dummy
))
421 tree oldname
, newname
, decl
, x
;
424 if (pragma_lex (&oldname
) != CPP_NAME
)
425 GCC_BAD ("malformed #pragma redefine_extname, ignored");
426 if (pragma_lex (&newname
) != CPP_NAME
)
427 GCC_BAD ("malformed #pragma redefine_extname, ignored");
430 warning (OPT_Wpragmas
, "junk at end of %<#pragma redefine_extname%>");
432 decl
= identifier_global_value (oldname
);
434 && (TREE_PUBLIC (decl
) || DECL_EXTERNAL (decl
))
435 && (TREE_CODE (decl
) == FUNCTION_DECL
436 || TREE_CODE (decl
) == VAR_DECL
)
437 && has_c_linkage (decl
))
439 if (DECL_ASSEMBLER_NAME_SET_P (decl
))
441 const char *name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
442 name
= targetm
.strip_name_encoding (name
);
444 if (strcmp (name
, IDENTIFIER_POINTER (newname
)))
445 warning (OPT_Wpragmas
, "#pragma redefine_extname ignored due to "
446 "conflict with previous rename");
449 change_decl_assembler_name (decl
, newname
);
452 /* We have to add this to the rename list even if there's already
453 a global value that doesn't meet the above criteria, because in
454 C++ "struct foo {...};" puts "foo" in the current namespace but
455 does *not* conflict with a subsequent declaration of a function
456 or variable foo. See g++.dg/other/pragma-re-2.C. */
457 add_to_renaming_pragma_list (oldname
, newname
);
460 /* This is called from here and from ia64.c. */
462 add_to_renaming_pragma_list (tree oldname
, tree newname
)
465 pending_redefinition
*p
;
467 FOR_EACH_VEC_ELT (pending_redefinition
, pending_redefine_extname
, ix
, p
)
468 if (oldname
== p
->oldname
)
470 if (p
->newname
!= newname
)
471 warning (OPT_Wpragmas
, "#pragma redefine_extname ignored due to "
472 "conflict with previous #pragma redefine_extname");
476 p
= VEC_safe_push (pending_redefinition
, gc
, pending_redefine_extname
, NULL
);
477 p
->oldname
= oldname
;
478 p
->newname
= newname
;
481 static GTY(()) tree pragma_extern_prefix
;
483 /* #pragma extern_prefix "prefix" */
485 handle_pragma_extern_prefix (cpp_reader
* ARG_UNUSED (dummy
))
490 if (pragma_lex (&prefix
) != CPP_STRING
)
491 GCC_BAD ("malformed #pragma extern_prefix, ignored");
494 warning (OPT_Wpragmas
, "junk at end of %<#pragma extern_prefix%>");
496 if (targetm
.handle_pragma_extern_prefix
)
497 /* Note that the length includes the null terminator. */
498 pragma_extern_prefix
= (TREE_STRING_LENGTH (prefix
) > 1 ? prefix
: NULL
);
499 else if (warn_unknown_pragmas
> in_system_header
)
500 warning (OPT_Wunknown_pragmas
,
501 "#pragma extern_prefix not supported on this target");
504 /* Hook from the front ends to apply the results of one of the preceding
505 pragmas that rename variables. */
508 maybe_apply_renaming_pragma (tree decl
, tree asmname
)
511 pending_redefinition
*p
;
513 /* The renaming pragmas are only applied to declarations with
515 if ((TREE_CODE (decl
) != FUNCTION_DECL
&& TREE_CODE (decl
) != VAR_DECL
)
516 || (!TREE_PUBLIC (decl
) && !DECL_EXTERNAL (decl
))
517 || !has_c_linkage (decl
))
520 /* If the DECL_ASSEMBLER_NAME is already set, it does not change,
521 but we may warn about a rename that conflicts. */
522 if (DECL_ASSEMBLER_NAME_SET_P (decl
))
524 const char *oldname
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
525 oldname
= targetm
.strip_name_encoding (oldname
);
527 if (asmname
&& strcmp (TREE_STRING_POINTER (asmname
), oldname
))
528 warning (OPT_Wpragmas
, "asm declaration ignored due to "
529 "conflict with previous rename");
531 /* Take any pending redefine_extname off the list. */
532 FOR_EACH_VEC_ELT (pending_redefinition
, pending_redefine_extname
, ix
, p
)
533 if (DECL_NAME (decl
) == p
->oldname
)
535 /* Only warn if there is a conflict. */
536 if (strcmp (IDENTIFIER_POINTER (p
->newname
), oldname
))
537 warning (OPT_Wpragmas
, "#pragma redefine_extname ignored due to "
538 "conflict with previous rename");
540 VEC_unordered_remove (pending_redefinition
,
541 pending_redefine_extname
, ix
);
547 /* Find out if we have a pending #pragma redefine_extname. */
548 FOR_EACH_VEC_ELT (pending_redefinition
, pending_redefine_extname
, ix
, p
)
549 if (DECL_NAME (decl
) == p
->oldname
)
551 tree newname
= p
->newname
;
552 VEC_unordered_remove (pending_redefinition
,
553 pending_redefine_extname
, ix
);
555 /* If we already have an asmname, #pragma redefine_extname is
556 ignored (with a warning if it conflicts). */
559 if (strcmp (TREE_STRING_POINTER (asmname
),
560 IDENTIFIER_POINTER (newname
)) != 0)
561 warning (OPT_Wpragmas
, "#pragma redefine_extname ignored due to "
562 "conflict with __asm__ declaration");
566 /* Otherwise we use what we've got; #pragma extern_prefix is
568 return build_string (IDENTIFIER_LENGTH (newname
),
569 IDENTIFIER_POINTER (newname
));
572 /* If we've got an asmname, #pragma extern_prefix is silently ignored. */
576 /* If #pragma extern_prefix is in effect, apply it. */
577 if (pragma_extern_prefix
)
579 const char *prefix
= TREE_STRING_POINTER (pragma_extern_prefix
);
580 size_t plen
= TREE_STRING_LENGTH (pragma_extern_prefix
) - 1;
582 const char *id
= IDENTIFIER_POINTER (DECL_NAME (decl
));
583 size_t ilen
= IDENTIFIER_LENGTH (DECL_NAME (decl
));
585 char *newname
= (char *) alloca (plen
+ ilen
+ 1);
587 memcpy (newname
, prefix
, plen
);
588 memcpy (newname
+ plen
, id
, ilen
+ 1);
590 return build_string (plen
+ ilen
, newname
);
598 static void handle_pragma_visibility (cpp_reader
*);
600 static VEC (int, heap
) *visstack
;
602 /* Push the visibility indicated by STR onto the top of the #pragma
603 visibility stack. KIND is 0 for #pragma GCC visibility, 1 for
604 C++ namespace with visibility attribute and 2 for C++ builtin
605 ABI namespace. push_visibility/pop_visibility calls must have
606 matching KIND, it is not allowed to push visibility using one
607 KIND and pop using a different one. */
610 push_visibility (const char *str
, int kind
)
612 VEC_safe_push (int, heap
, visstack
,
613 ((int) default_visibility
) | (kind
<< 8));
614 if (!strcmp (str
, "default"))
615 default_visibility
= VISIBILITY_DEFAULT
;
616 else if (!strcmp (str
, "internal"))
617 default_visibility
= VISIBILITY_INTERNAL
;
618 else if (!strcmp (str
, "hidden"))
619 default_visibility
= VISIBILITY_HIDDEN
;
620 else if (!strcmp (str
, "protected"))
621 default_visibility
= VISIBILITY_PROTECTED
;
623 GCC_BAD ("#pragma GCC visibility push() must specify default, internal, hidden or protected");
624 visibility_options
.inpragma
= 1;
627 /* Pop a level of the #pragma visibility stack. Return true if
631 pop_visibility (int kind
)
633 if (!VEC_length (int, visstack
))
635 if ((VEC_last (int, visstack
) >> 8) != kind
)
638 = (enum symbol_visibility
) (VEC_pop (int, visstack
) & 0xff);
639 visibility_options
.inpragma
640 = VEC_length (int, visstack
) != 0;
644 /* Sets the default visibility for symbols to something other than that
645 specified on the command line. */
648 handle_pragma_visibility (cpp_reader
*dummy ATTRIBUTE_UNUSED
)
650 /* Form is #pragma GCC visibility push(hidden)|pop */
652 enum cpp_ttype token
;
653 enum { bad
, push
, pop
} action
= bad
;
655 token
= pragma_lex (&x
);
656 if (token
== CPP_NAME
)
658 const char *op
= IDENTIFIER_POINTER (x
);
659 if (!strcmp (op
, "push"))
661 else if (!strcmp (op
, "pop"))
665 GCC_BAD ("#pragma GCC visibility must be followed by push or pop");
670 if (! pop_visibility (0))
671 GCC_BAD ("no matching push for %<#pragma GCC visibility pop%>");
675 if (pragma_lex (&x
) != CPP_OPEN_PAREN
)
676 GCC_BAD ("missing %<(%> after %<#pragma GCC visibility push%> - ignored");
677 token
= pragma_lex (&x
);
678 if (token
!= CPP_NAME
)
679 GCC_BAD ("malformed #pragma GCC visibility push");
681 push_visibility (IDENTIFIER_POINTER (x
), 0);
682 if (pragma_lex (&x
) != CPP_CLOSE_PAREN
)
683 GCC_BAD ("missing %<(%> after %<#pragma GCC visibility push%> - ignored");
686 if (pragma_lex (&x
) != CPP_EOF
)
687 warning (OPT_Wpragmas
, "junk at end of %<#pragma GCC visibility%>");
691 handle_pragma_diagnostic(cpp_reader
*ARG_UNUSED(dummy
))
693 const char *kind_string
, *option_string
;
694 unsigned int option_index
;
695 enum cpp_ttype token
;
698 struct cl_option_handlers handlers
;
700 token
= pragma_lex (&x
);
701 if (token
!= CPP_NAME
)
702 GCC_BAD ("missing [error|warning|ignored] after %<#pragma GCC diagnostic%>");
703 kind_string
= IDENTIFIER_POINTER (x
);
704 if (strcmp (kind_string
, "error") == 0)
706 else if (strcmp (kind_string
, "warning") == 0)
708 else if (strcmp (kind_string
, "ignored") == 0)
710 else if (strcmp (kind_string
, "push") == 0)
712 diagnostic_push_diagnostics (global_dc
, input_location
);
715 else if (strcmp (kind_string
, "pop") == 0)
717 diagnostic_pop_diagnostics (global_dc
, input_location
);
721 GCC_BAD ("expected [error|warning|ignored|push|pop] after %<#pragma GCC diagnostic%>");
723 token
= pragma_lex (&x
);
724 if (token
!= CPP_STRING
)
725 GCC_BAD ("missing option after %<#pragma GCC diagnostic%> kind");
726 option_string
= TREE_STRING_POINTER (x
);
727 set_default_handlers (&handlers
);
728 for (option_index
= 0; option_index
< cl_options_count
; option_index
++)
729 if (strcmp (cl_options
[option_index
].opt_text
, option_string
) == 0)
731 control_warning_option (option_index
, (int) kind
, kind
!= DK_IGNORED
,
732 input_location
, c_family_lang_mask
, &handlers
,
733 &global_options
, &global_options_set
,
737 GCC_BAD ("unknown option after %<#pragma GCC diagnostic%> kind");
740 /* Parse #pragma GCC target (xxx) to set target specific options. */
742 handle_pragma_target(cpp_reader
*ARG_UNUSED(dummy
))
744 enum cpp_ttype token
;
746 bool close_paren_needed_p
= false;
750 error ("#pragma GCC option is not allowed inside functions");
754 token
= pragma_lex (&x
);
755 if (token
== CPP_OPEN_PAREN
)
757 close_paren_needed_p
= true;
758 token
= pragma_lex (&x
);
761 if (token
!= CPP_STRING
)
763 GCC_BAD ("%<#pragma GCC option%> is not a string");
767 /* Strings are user options. */
770 tree args
= NULL_TREE
;
774 /* Build up the strings now as a tree linked list. Skip empty
776 if (TREE_STRING_LENGTH (x
) > 0)
777 args
= tree_cons (NULL_TREE
, x
, args
);
779 token
= pragma_lex (&x
);
780 while (token
== CPP_COMMA
)
781 token
= pragma_lex (&x
);
783 while (token
== CPP_STRING
);
785 if (close_paren_needed_p
)
787 if (token
== CPP_CLOSE_PAREN
)
788 token
= pragma_lex (&x
);
790 GCC_BAD ("%<#pragma GCC target (string [,string]...)%> does "
791 "not have a final %<)%>");
794 if (token
!= CPP_EOF
)
796 error ("#pragma GCC target string... is badly formed");
800 /* put arguments in the order the user typed them. */
801 args
= nreverse (args
);
803 if (targetm
.target_option
.pragma_parse (args
, NULL_TREE
))
804 current_target_pragma
= args
;
808 /* Handle #pragma GCC optimize to set optimization options. */
810 handle_pragma_optimize (cpp_reader
*ARG_UNUSED(dummy
))
812 enum cpp_ttype token
;
814 bool close_paren_needed_p
= false;
815 tree optimization_previous_node
= optimization_current_node
;
819 error ("#pragma GCC optimize is not allowed inside functions");
823 token
= pragma_lex (&x
);
824 if (token
== CPP_OPEN_PAREN
)
826 close_paren_needed_p
= true;
827 token
= pragma_lex (&x
);
830 if (token
!= CPP_STRING
&& token
!= CPP_NUMBER
)
832 GCC_BAD ("%<#pragma GCC optimize%> is not a string or number");
836 /* Strings/numbers are user options. */
839 tree args
= NULL_TREE
;
843 /* Build up the numbers/strings now as a list. */
844 if (token
!= CPP_STRING
|| TREE_STRING_LENGTH (x
) > 0)
845 args
= tree_cons (NULL_TREE
, x
, args
);
847 token
= pragma_lex (&x
);
848 while (token
== CPP_COMMA
)
849 token
= pragma_lex (&x
);
851 while (token
== CPP_STRING
|| token
== CPP_NUMBER
);
853 if (close_paren_needed_p
)
855 if (token
== CPP_CLOSE_PAREN
)
856 token
= pragma_lex (&x
);
858 GCC_BAD ("%<#pragma GCC optimize (string [,string]...)%> does "
859 "not have a final %<)%>");
862 if (token
!= CPP_EOF
)
864 error ("#pragma GCC optimize string... is badly formed");
868 /* put arguments in the order the user typed them. */
869 args
= nreverse (args
);
871 parse_optimize_options (args
, false);
872 current_optimize_pragma
= chainon (current_optimize_pragma
, args
);
873 optimization_current_node
= build_optimization_node ();
874 c_cpp_builtins_optimize_pragma (parse_in
,
875 optimization_previous_node
,
876 optimization_current_node
);
880 /* Stack of the #pragma GCC options created with #pragma GCC push_option. Save
881 both the binary representation of the options and the TREE_LIST of
882 strings that will be added to the function's attribute list. */
883 typedef struct GTY(()) opt_stack
{
884 struct opt_stack
*prev
;
887 tree optimize_binary
;
888 tree optimize_strings
;
891 static GTY(()) struct opt_stack
* options_stack
;
893 /* Handle #pragma GCC push_options to save the current target and optimization
897 handle_pragma_push_options (cpp_reader
*ARG_UNUSED(dummy
))
899 enum cpp_ttype token
;
903 token
= pragma_lex (&x
);
904 if (token
!= CPP_EOF
)
906 warning (OPT_Wpragmas
, "junk at end of %<#pragma push_options%>");
910 p
= ggc_alloc_opt_stack ();
911 p
->prev
= options_stack
;
914 /* Save optimization and target flags in binary format. */
915 p
->optimize_binary
= build_optimization_node ();
916 p
->target_binary
= build_target_option_node ();
918 /* Save optimization and target flags in string list format. */
919 p
->optimize_strings
= copy_list (current_optimize_pragma
);
920 p
->target_strings
= copy_list (current_target_pragma
);
923 /* Handle #pragma GCC pop_options to restore the current target and
924 optimization options from a previous push_options. */
927 handle_pragma_pop_options (cpp_reader
*ARG_UNUSED(dummy
))
929 enum cpp_ttype token
;
933 token
= pragma_lex (&x
);
934 if (token
!= CPP_EOF
)
936 warning (OPT_Wpragmas
, "junk at end of %<#pragma pop_options%>");
942 warning (OPT_Wpragmas
,
943 "%<#pragma GCC pop_options%> without a corresponding "
944 "%<#pragma GCC push_options%>");
949 options_stack
= p
->prev
;
951 if (p
->target_binary
!= target_option_current_node
)
953 (void) targetm
.target_option
.pragma_parse (NULL_TREE
, p
->target_binary
);
954 target_option_current_node
= p
->target_binary
;
957 if (p
->optimize_binary
!= optimization_current_node
)
959 tree old_optimize
= optimization_current_node
;
960 cl_optimization_restore (&global_options
,
961 TREE_OPTIMIZATION (p
->optimize_binary
));
962 c_cpp_builtins_optimize_pragma (parse_in
, old_optimize
,
964 optimization_current_node
= p
->optimize_binary
;
967 current_target_pragma
= p
->target_strings
;
968 current_optimize_pragma
= p
->optimize_strings
;
971 /* Handle #pragma GCC reset_options to restore the current target and
972 optimization options to the original options used on the command line. */
975 handle_pragma_reset_options (cpp_reader
*ARG_UNUSED(dummy
))
977 enum cpp_ttype token
;
979 tree new_optimize
= optimization_default_node
;
980 tree new_target
= target_option_default_node
;
982 token
= pragma_lex (&x
);
983 if (token
!= CPP_EOF
)
985 warning (OPT_Wpragmas
, "junk at end of %<#pragma reset_options%>");
989 if (new_target
!= target_option_current_node
)
991 (void) targetm
.target_option
.pragma_parse (NULL_TREE
, new_target
);
992 target_option_current_node
= new_target
;
995 if (new_optimize
!= optimization_current_node
)
997 tree old_optimize
= optimization_current_node
;
998 cl_optimization_restore (&global_options
,
999 TREE_OPTIMIZATION (new_optimize
));
1000 c_cpp_builtins_optimize_pragma (parse_in
, old_optimize
, new_optimize
);
1001 optimization_current_node
= new_optimize
;
1004 current_target_pragma
= NULL_TREE
;
1005 current_optimize_pragma
= NULL_TREE
;
1008 /* Print a plain user-specified message. */
1011 handle_pragma_message (cpp_reader
*ARG_UNUSED(dummy
))
1013 enum cpp_ttype token
;
1014 tree x
, message
= 0;
1016 token
= pragma_lex (&x
);
1017 if (token
== CPP_OPEN_PAREN
)
1019 token
= pragma_lex (&x
);
1020 if (token
== CPP_STRING
)
1023 GCC_BAD ("expected a string after %<#pragma message%>");
1024 if (pragma_lex (&x
) != CPP_CLOSE_PAREN
)
1025 GCC_BAD ("malformed %<#pragma message%>, ignored");
1027 else if (token
== CPP_STRING
)
1030 GCC_BAD ("expected a string after %<#pragma message%>");
1032 gcc_assert (message
);
1034 if (pragma_lex (&x
) != CPP_EOF
)
1035 warning (OPT_Wpragmas
, "junk at end of %<#pragma message%>");
1037 if (TREE_STRING_LENGTH (message
) > 1)
1038 inform (input_location
, "#pragma message: %s", TREE_STRING_POINTER (message
));
1041 /* Mark whether the current location is valid for a STDC pragma. */
1043 static bool valid_location_for_stdc_pragma
;
1046 mark_valid_location_for_stdc_pragma (bool flag
)
1048 valid_location_for_stdc_pragma
= flag
;
1051 /* Return true if the current location is valid for a STDC pragma. */
1054 valid_location_for_stdc_pragma_p (void)
1056 return valid_location_for_stdc_pragma
;
1059 enum pragma_switch_t
{ PRAGMA_ON
, PRAGMA_OFF
, PRAGMA_DEFAULT
, PRAGMA_BAD
};
1061 /* A STDC pragma must appear outside of external declarations or
1062 preceding all explicit declarations and statements inside a compound
1063 statement; its behavior is undefined if used in any other context.
1064 It takes a switch of ON, OFF, or DEFAULT. */
1066 static enum pragma_switch_t
1067 handle_stdc_pragma (const char *pname
)
1071 enum pragma_switch_t ret
;
1073 if (!valid_location_for_stdc_pragma_p ())
1075 warning (OPT_Wpragmas
, "invalid location for %<pragma %s%>, ignored",
1080 if (pragma_lex (&t
) != CPP_NAME
)
1082 warning (OPT_Wpragmas
, "malformed %<#pragma %s%>, ignored", pname
);
1086 arg
= IDENTIFIER_POINTER (t
);
1088 if (!strcmp (arg
, "ON"))
1090 else if (!strcmp (arg
, "OFF"))
1092 else if (!strcmp (arg
, "DEFAULT"))
1093 ret
= PRAGMA_DEFAULT
;
1096 warning (OPT_Wpragmas
, "malformed %<#pragma %s%>, ignored", pname
);
1100 if (pragma_lex (&t
) != CPP_EOF
)
1102 warning (OPT_Wpragmas
, "junk at end of %<#pragma %s%>", pname
);
1109 /* #pragma STDC FLOAT_CONST_DECIMAL64 ON
1110 #pragma STDC FLOAT_CONST_DECIMAL64 OFF
1111 #pragma STDC FLOAT_CONST_DECIMAL64 DEFAULT */
1114 handle_pragma_float_const_decimal64 (cpp_reader
*ARG_UNUSED (dummy
))
1116 if (c_dialect_cxx ())
1118 if (warn_unknown_pragmas
> in_system_header
)
1119 warning (OPT_Wunknown_pragmas
,
1120 "%<#pragma STDC FLOAT_CONST_DECIMAL64%> is not supported"
1125 if (!targetm
.decimal_float_supported_p ())
1127 if (warn_unknown_pragmas
> in_system_header
)
1128 warning (OPT_Wunknown_pragmas
,
1129 "%<#pragma STDC FLOAT_CONST_DECIMAL64%> is not supported"
1134 pedwarn (input_location
, OPT_pedantic
,
1135 "ISO C does not support %<#pragma STDC FLOAT_CONST_DECIMAL64%>");
1137 switch (handle_stdc_pragma ("STDC FLOAT_CONST_DECIMAL64"))
1140 set_float_const_decimal64 ();
1143 case PRAGMA_DEFAULT
:
1144 clear_float_const_decimal64 ();
1151 /* A vector of registered pragma callbacks. */
1153 DEF_VEC_O (pragma_handler
);
1154 DEF_VEC_ALLOC_O (pragma_handler
, heap
);
1156 static VEC(pragma_handler
, heap
) *registered_pragmas
;
1164 DEF_VEC_O (pragma_ns_name
);
1165 DEF_VEC_ALLOC_O (pragma_ns_name
, heap
);
1167 static VEC(pragma_ns_name
, heap
) *registered_pp_pragmas
;
1169 struct omp_pragma_def
{ const char *name
; unsigned int id
; };
1170 static const struct omp_pragma_def omp_pragmas
[] = {
1171 { "atomic", PRAGMA_OMP_ATOMIC
},
1172 { "barrier", PRAGMA_OMP_BARRIER
},
1173 { "critical", PRAGMA_OMP_CRITICAL
},
1174 { "flush", PRAGMA_OMP_FLUSH
},
1175 { "for", PRAGMA_OMP_FOR
},
1176 { "master", PRAGMA_OMP_MASTER
},
1177 { "ordered", PRAGMA_OMP_ORDERED
},
1178 { "parallel", PRAGMA_OMP_PARALLEL
},
1179 { "section", PRAGMA_OMP_SECTION
},
1180 { "sections", PRAGMA_OMP_SECTIONS
},
1181 { "single", PRAGMA_OMP_SINGLE
},
1182 { "task", PRAGMA_OMP_TASK
},
1183 { "taskwait", PRAGMA_OMP_TASKWAIT
},
1184 { "threadprivate", PRAGMA_OMP_THREADPRIVATE
}
1188 c_pp_lookup_pragma (unsigned int id
, const char **space
, const char **name
)
1190 const int n_omp_pragmas
= sizeof (omp_pragmas
) / sizeof (*omp_pragmas
);
1193 for (i
= 0; i
< n_omp_pragmas
; ++i
)
1194 if (omp_pragmas
[i
].id
== id
)
1197 *name
= omp_pragmas
[i
].name
;
1201 if (id
>= PRAGMA_FIRST_EXTERNAL
1202 && (id
< PRAGMA_FIRST_EXTERNAL
1203 + VEC_length (pragma_ns_name
, registered_pp_pragmas
)))
1205 *space
= VEC_index (pragma_ns_name
, registered_pp_pragmas
,
1206 id
- PRAGMA_FIRST_EXTERNAL
)->space
;
1207 *name
= VEC_index (pragma_ns_name
, registered_pp_pragmas
,
1208 id
- PRAGMA_FIRST_EXTERNAL
)->name
;
1215 /* Front-end wrappers for pragma registration to avoid dragging
1216 cpplib.h in almost everywhere. */
1219 c_register_pragma_1 (const char *space
, const char *name
,
1220 pragma_handler handler
, bool allow_expansion
)
1224 if (flag_preprocess_only
)
1226 pragma_ns_name ns_name
;
1228 if (!allow_expansion
)
1231 ns_name
.space
= space
;
1232 ns_name
.name
= name
;
1233 VEC_safe_push (pragma_ns_name
, heap
, registered_pp_pragmas
, &ns_name
);
1234 id
= VEC_length (pragma_ns_name
, registered_pp_pragmas
);
1235 id
+= PRAGMA_FIRST_EXTERNAL
- 1;
1239 VEC_safe_push (pragma_handler
, heap
, registered_pragmas
, &handler
);
1240 id
= VEC_length (pragma_handler
, registered_pragmas
);
1241 id
+= PRAGMA_FIRST_EXTERNAL
- 1;
1243 /* The C++ front end allocates 6 bits in cp_token; the C front end
1244 allocates 7 bits in c_token. At present this is sufficient. */
1245 gcc_assert (id
< 64);
1248 cpp_register_deferred_pragma (parse_in
, space
, name
, id
,
1249 allow_expansion
, false);
1253 c_register_pragma (const char *space
, const char *name
, pragma_handler handler
)
1255 c_register_pragma_1 (space
, name
, handler
, false);
1259 c_register_pragma_with_expansion (const char *space
, const char *name
,
1260 pragma_handler handler
)
1262 c_register_pragma_1 (space
, name
, handler
, true);
1266 c_invoke_pragma_handler (unsigned int id
)
1268 pragma_handler handler
;
1270 id
-= PRAGMA_FIRST_EXTERNAL
;
1271 handler
= *VEC_index (pragma_handler
, registered_pragmas
, id
);
1276 /* Set up front-end pragmas. */
1282 const int n_omp_pragmas
= sizeof (omp_pragmas
) / sizeof (*omp_pragmas
);
1285 for (i
= 0; i
< n_omp_pragmas
; ++i
)
1286 cpp_register_deferred_pragma (parse_in
, "omp", omp_pragmas
[i
].name
,
1287 omp_pragmas
[i
].id
, true, true);
1290 if (!flag_preprocess_only
)
1291 cpp_register_deferred_pragma (parse_in
, "GCC", "pch_preprocess",
1292 PRAGMA_GCC_PCH_PREPROCESS
, false, false);
1294 #ifdef HANDLE_PRAGMA_PACK_WITH_EXPANSION
1295 c_register_pragma_with_expansion (0, "pack", handle_pragma_pack
);
1297 c_register_pragma (0, "pack", handle_pragma_pack
);
1299 c_register_pragma (0, "weak", handle_pragma_weak
);
1300 c_register_pragma ("GCC", "visibility", handle_pragma_visibility
);
1302 c_register_pragma ("GCC", "diagnostic", handle_pragma_diagnostic
);
1303 c_register_pragma ("GCC", "target", handle_pragma_target
);
1304 c_register_pragma ("GCC", "optimize", handle_pragma_optimize
);
1305 c_register_pragma ("GCC", "push_options", handle_pragma_push_options
);
1306 c_register_pragma ("GCC", "pop_options", handle_pragma_pop_options
);
1307 c_register_pragma ("GCC", "reset_options", handle_pragma_reset_options
);
1309 c_register_pragma ("STDC", "FLOAT_CONST_DECIMAL64",
1310 handle_pragma_float_const_decimal64
);
1312 c_register_pragma_with_expansion (0, "redefine_extname", handle_pragma_redefine_extname
);
1313 c_register_pragma (0, "extern_prefix", handle_pragma_extern_prefix
);
1315 c_register_pragma_with_expansion (0, "message", handle_pragma_message
);
1317 #ifdef REGISTER_TARGET_PRAGMAS
1318 REGISTER_TARGET_PRAGMAS ();
1321 /* Allow plugins to register their own pragmas. */
1322 invoke_plugin_callbacks (PLUGIN_PRAGMAS
, NULL
);
1325 #include "gt-c-family-c-pragma.h"