1 /* Pragma related interfaces.
2 Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
3 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 2, 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 COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 #ifndef GCC_C_PRAGMA_H
23 #define GCC_C_PRAGMA_H
25 #include <cpplib.h> /* For enum cpp_ttype. */
27 /* Pragma identifiers built in to the front end parsers. Identifiers
28 for anciliary handlers will follow these. */
29 typedef enum pragma_kind
{
40 PRAGMA_OMP_PARALLEL_FOR
,
41 PRAGMA_OMP_PARALLEL_SECTIONS
,
45 PRAGMA_OMP_THREADPRIVATE
,
47 PRAGMA_GCC_PCH_PREPROCESS
,
52 /* Cause the `yydebug' variable to be defined. */
56 extern struct cpp_reader
* parse_in
;
58 #define HANDLE_PRAGMA_WEAK SUPPORTS_WEAK
60 #ifdef HANDLE_SYSV_PRAGMA
61 /* We always support #pragma pack for SYSV pragmas. */
62 #ifndef HANDLE_PRAGMA_PACK
63 #define HANDLE_PRAGMA_PACK 1
65 #endif /* HANDLE_SYSV_PRAGMA */
68 #ifdef HANDLE_PRAGMA_PACK_PUSH_POP
69 /* If we are supporting #pragma pack(push... then we automatically
70 support #pragma pack(<n>) */
71 #define HANDLE_PRAGMA_PACK 1
72 #endif /* HANDLE_PRAGMA_PACK_PUSH_POP */
74 /* It's safe to always leave visibility pragma enabled as if
75 visibility is not supported on the host OS platform the
76 statements are ignored. */
77 #define HANDLE_PRAGMA_VISIBILITY 1
79 extern void init_pragma (void);
81 /* Front-end wrappers for pragma registration. */
82 typedef void (*pragma_handler
)(struct cpp_reader
*);
83 extern void c_register_pragma (const char *, const char *, pragma_handler
);
84 extern void c_register_pragma_with_expansion (const char *, const char *,
86 extern void c_invoke_pragma_handler (unsigned int);
88 extern void maybe_apply_pragma_weak (tree
);
89 extern void maybe_apply_pending_pragma_weaks (void);
90 extern tree
maybe_apply_renaming_pragma (tree
, tree
);
91 extern void add_to_renaming_pragma_list (tree
, tree
);
93 extern enum cpp_ttype
pragma_lex (tree
*);
95 /* This is not actually available to pragma parsers. It's merely a
96 convenient location to declare this function for c-lex, after
97 having enum cpp_ttype declared. */
98 extern enum cpp_ttype
c_lex_with_flags (tree
*, location_t
*, unsigned char *);
100 /* If 1, then lex strings into the execution character set.
101 If 0, lex strings into the host character set.
102 If -1, lex both, and chain them together, such that the former
103 is the TREE_CHAIN of the latter. */
104 extern int c_lex_string_translate
;
106 /* If true, strings should be passed to the caller of c_lex completely
107 unmolested (no concatenation, no translation). */
108 extern bool c_lex_return_raw_strings
;
110 #endif /* GCC_C_PRAGMA_H */