GCC Middle and Back End API Reference
langhooks-def.h
Go to the documentation of this file.
1 /* Default macros to initialize the lang_hooks data structure.
2  Copyright (C) 2001-2013 Free Software Foundation, Inc.
3  Contributed by Alexandre Oliva <aoliva@redhat.com>
4 
5 This file is part of GCC.
6 
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11 
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16 
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/>. */
20 
21 #ifndef GCC_LANG_HOOKS_DEF_H
22 #define GCC_LANG_HOOKS_DEF_H
23 
24 #include "hooks.h"
25 
26 struct diagnostic_info;
27 
28 /* Note to creators of new hooks:
29 
30  The macros in this file should NOT be surrounded by a
31  #ifdef...#endif pair, since this file declares the defaults. Each
32  front end overrides any hooks it wishes to, in the file containing
33  its struct lang_hooks, AFTER including this file. */
34 
35 /* See langhooks.h for the definition and documentation of each hook. */
36 
37 extern void lhd_do_nothing (void);
38 extern void lhd_do_nothing_t (tree);
39 extern void lhd_do_nothing_f (struct function *);
41 extern bool lhd_post_options (const char **);
43 extern tree lhd_return_null_tree_v (void);
46 extern tree lhd_do_nothing_iii_return_null_tree (int, int, int);
47 extern void lhd_print_tree_nothing (FILE *, tree, int);
48 extern const char *lhd_decl_printable_name (tree, int);
49 extern const char *lhd_dwarf_name (tree, int);
50 extern int lhd_types_compatible_p (tree, tree);
52  const char *, struct diagnostic_info *);
53 extern void lhd_set_decl_assembler_name (tree);
57 extern void lhd_register_builtin_type (tree, const char *);
59 extern size_t lhd_tree_size (enum tree_code);
61 extern tree lhd_expr_to_decl (tree, bool *, bool *);
63 
64 /* Declarations of default tree inlining hooks. */
66 extern void lhd_init_options (unsigned int,
67  struct cl_decoded_option *);
68 extern bool lhd_complain_wrong_lang_p (const struct cl_option *);
69 extern bool lhd_handle_option (size_t, const char *, int, int, location_t,
70  const struct cl_option_handlers *);
71 
72 
73 /* Declarations for tree gimplification hooks. */
74 extern int lhd_gimplify_expr (tree *, gimple_seq *, gimple_seq *);
77 struct gimplify_omp_ctx;
79  tree);
80 extern bool lhd_omp_mappable_type (tree);
81 
82 #define LANG_HOOKS_NAME "GNU unknown"
83 #define LANG_HOOKS_IDENTIFIER_SIZE sizeof (struct lang_identifier)
84 #define LANG_HOOKS_INIT hook_bool_void_false
85 #define LANG_HOOKS_FINISH lhd_do_nothing
86 #define LANG_HOOKS_PARSE_FILE lhd_do_nothing
87 #define LANG_HOOKS_OPTION_LANG_MASK hook_uint_void_0
88 #define LANG_HOOKS_INIT_OPTIONS_STRUCT hook_void_gcc_optionsp
89 #define LANG_HOOKS_INIT_OPTIONS lhd_init_options
90 #define LANG_HOOKS_INITIALIZE_DIAGNOSTICS lhd_initialize_diagnostics
91 #define LANG_HOOKS_COMPLAIN_WRONG_LANG_P lhd_complain_wrong_lang_p
92 #define LANG_HOOKS_HANDLE_OPTION lhd_handle_option
93 #define LANG_HOOKS_POST_OPTIONS lhd_post_options
94 #define LANG_HOOKS_MISSING_NORETURN_OK_P hook_bool_tree_true
95 #define LANG_HOOKS_GET_ALIAS_SET lhd_get_alias_set
96 #define LANG_HOOKS_FINISH_INCOMPLETE_DECL lhd_do_nothing_t
97 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL lhd_do_nothing_t
98 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME lhd_set_decl_assembler_name
99 #define LANG_HOOKS_PRINT_STATISTICS lhd_do_nothing
100 #define LANG_HOOKS_PRINT_XNODE lhd_print_tree_nothing
101 #define LANG_HOOKS_PRINT_DECL lhd_print_tree_nothing
102 #define LANG_HOOKS_PRINT_TYPE lhd_print_tree_nothing
103 #define LANG_HOOKS_PRINT_IDENTIFIER lhd_print_tree_nothing
104 #define LANG_HOOKS_PRINT_ERROR_FUNCTION lhd_print_error_function
105 #define LANG_HOOKS_DECL_PRINTABLE_NAME lhd_decl_printable_name
106 #define LANG_HOOKS_DWARF_NAME lhd_dwarf_name
107 #define LANG_HOOKS_FREE_LANG_DATA lhd_do_nothing_t
108 #define LANG_HOOKS_TREE_SIZE lhd_tree_size
109 #define LANG_HOOKS_TYPES_COMPATIBLE_P lhd_types_compatible_p
110 #define LANG_HOOKS_BUILTIN_FUNCTION lhd_builtin_function
111 #define LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE LANG_HOOKS_BUILTIN_FUNCTION
112 #define LANG_HOOKS_EXPR_TO_DECL lhd_expr_to_decl
113 #define LANG_HOOKS_TO_TARGET_CHARSET lhd_to_target_charset
114 #define LANG_HOOKS_INIT_TS lhd_do_nothing
115 #define LANG_HOOKS_EH_PERSONALITY lhd_gcc_personality
116 #define LANG_HOOKS_EH_RUNTIME_TYPE lhd_pass_through_t
117 #define LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS NULL
118 #define LANG_HOOKS_BLOCK_MAY_FALLTHRU hook_bool_const_tree_true
119 #define LANG_HOOKS_EH_USE_CXA_END_CLEANUP false
120 #define LANG_HOOKS_DEEP_UNSHARING false
121 #define LANG_HOOKS_CHKP_SUPPORTED false
122 
123 /* Attribute hooks. */
124 #define LANG_HOOKS_ATTRIBUTE_TABLE NULL
125 #define LANG_HOOKS_COMMON_ATTRIBUTE_TABLE NULL
126 #define LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE NULL
127 
128 /* Tree inlining hooks. */
129 #define LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P \
130  hook_bool_tree_tree_false
131 
132 #define LANG_HOOKS_TREE_INLINING_INITIALIZER { \
133  LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P, \
134 }
135 
136 /* Hooks for tree gimplification. */
137 #define LANG_HOOKS_GIMPLIFY_EXPR lhd_gimplify_expr
138 
139 /* Tree dump hooks. */
140 extern bool lhd_tree_dump_dump_tree (void *, tree);
142 extern tree lhd_make_node (enum tree_code);
143 
144 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN lhd_tree_dump_dump_tree
145 #define LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN lhd_tree_dump_type_quals
146 
147 #define LANG_HOOKS_TREE_DUMP_INITIALIZER { \
148  LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN, \
149  LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN \
150 }
151 
152 /* Types hooks. There are no reasonable defaults for most of them,
153  so we create a compile-time error instead. */
154 #define LANG_HOOKS_MAKE_TYPE lhd_make_node
155 #define LANG_HOOKS_CLASSIFY_RECORD NULL
156 #define LANG_HOOKS_INCOMPLETE_TYPE_ERROR lhd_incomplete_type_error
157 #define LANG_HOOKS_GENERIC_TYPE_P hook_bool_const_tree_false
158 #define LANG_HOOKS_GET_INNERMOST_GENERIC_PARMS hook_tree_const_tree_null
159 #define LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS hook_tree_const_tree_null
160 #define LANG_HOOKS_FUNCTION_PARAMETER_PACK_P hook_bool_const_tree_false
161 #define LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS hook_tree_const_tree_null
162 #define LANG_HOOKS_GENERIC_GENERIC_PARAMETER_DECL_P hook_bool_const_tree_false
163 #define LANG_HOOKS_FUNCTION_PARM_EXPANDED_FROM_PACK_P \
164  hook_bool_tree_tree_false
165 #define LANG_HOOKS_GET_GENERIC_FUNCTION_DECL hook_tree_const_tree_null
166 #define LANG_HOOKS_TYPE_PROMOTES_TO lhd_type_promotes_to
167 #define LANG_HOOKS_REGISTER_BUILTIN_TYPE lhd_register_builtin_type
168 #define LANG_HOOKS_TYPE_MAX_SIZE lhd_return_null_const_tree
169 #define LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES \
170  lhd_omp_firstprivatize_type_sizes
171 #define LANG_HOOKS_OMP_MAPPABLE_TYPE lhd_omp_mappable_type
172 #define LANG_HOOKS_TYPE_HASH_EQ NULL
173 #define LANG_HOOKS_GET_ARRAY_DESCR_INFO NULL
174 #define LANG_HOOKS_GET_SUBRANGE_BOUNDS NULL
175 #define LANG_HOOKS_DESCRIPTIVE_TYPE NULL
176 #define LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE reconstruct_complex_type
177 
178 #define LANG_HOOKS_FOR_TYPES_INITIALIZER { \
179  LANG_HOOKS_MAKE_TYPE, \
180  LANG_HOOKS_CLASSIFY_RECORD, \
181  LANG_HOOKS_TYPE_FOR_MODE, \
182  LANG_HOOKS_TYPE_FOR_SIZE, \
183  LANG_HOOKS_GENERIC_TYPE_P, \
184  LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS, \
185  LANG_HOOKS_TYPE_PROMOTES_TO, \
186  LANG_HOOKS_REGISTER_BUILTIN_TYPE, \
187  LANG_HOOKS_INCOMPLETE_TYPE_ERROR, \
188  LANG_HOOKS_TYPE_MAX_SIZE, \
189  LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES, \
190  LANG_HOOKS_OMP_MAPPABLE_TYPE, \
191  LANG_HOOKS_TYPE_HASH_EQ, \
192  LANG_HOOKS_GET_ARRAY_DESCR_INFO, \
193  LANG_HOOKS_GET_SUBRANGE_BOUNDS, \
194  LANG_HOOKS_DESCRIPTIVE_TYPE, \
195  LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE \
196 }
197 
198 /* Declaration hooks. */
199 #define LANG_HOOKS_GLOBAL_BINDINGS_P global_bindings_p
200 #define LANG_HOOKS_PUSHDECL pushdecl
201 #define LANG_HOOKS_GETDECLS getdecls
202 #define LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P hook_bool_tree_false
203 #define LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL lhd_warn_unused_global_decl
204 #define LANG_HOOKS_WRITE_GLOBALS write_global_declarations
205 #define LANG_HOOKS_DECL_OK_FOR_SIBCALL lhd_decl_ok_for_sibcall
206 #define LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE hook_bool_const_tree_false
207 #define LANG_HOOKS_OMP_PREDETERMINED_SHARING lhd_omp_predetermined_sharing
208 #define LANG_HOOKS_OMP_REPORT_DECL lhd_pass_through_t
209 #define LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR hook_bool_tree_bool_false
210 #define LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE hook_bool_tree_bool_false
211 #define LANG_HOOKS_OMP_PRIVATE_OUTER_REF hook_bool_tree_false
212 #define LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR hook_tree_tree_tree_tree_null
213 #define LANG_HOOKS_OMP_CLAUSE_COPY_CTOR lhd_omp_assignment
214 #define LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP lhd_omp_assignment
215 #define LANG_HOOKS_OMP_CLAUSE_DTOR hook_tree_tree_tree_null
216 #define LANG_HOOKS_OMP_FINISH_CLAUSE hook_void_tree
217 
219 extern bool lhd_cilk_detect_spawn (tree *);
220 #define LANG_HOOKS_CILKPLUS_DETECT_SPAWN_AND_UNWRAP lhd_cilk_detect_spawn
221 #define LANG_HOOKS_CILKPLUS_FRAME_CLEANUP lhd_install_body_with_frame_cleanup
222 #define LANG_HOOKS_CILKPLUS_GIMPLIFY_SPAWN lhd_gimplify_expr
223 
224 #define LANG_HOOKS_CILKPLUS { \
225  LANG_HOOKS_CILKPLUS_DETECT_SPAWN_AND_UNWRAP, \
226  LANG_HOOKS_CILKPLUS_FRAME_CLEANUP, \
227  LANG_HOOKS_CILKPLUS_GIMPLIFY_SPAWN \
228 }
229 
230 #define LANG_HOOKS_DECLS { \
231  LANG_HOOKS_GLOBAL_BINDINGS_P, \
232  LANG_HOOKS_PUSHDECL, \
233  LANG_HOOKS_GETDECLS, \
234  LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P, \
235  LANG_HOOKS_GENERIC_GENERIC_PARAMETER_DECL_P, \
236  LANG_HOOKS_FUNCTION_PARM_EXPANDED_FROM_PACK_P, \
237  LANG_HOOKS_GET_GENERIC_FUNCTION_DECL, \
238  LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL, \
239  LANG_HOOKS_WRITE_GLOBALS, \
240  LANG_HOOKS_DECL_OK_FOR_SIBCALL, \
241  LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE, \
242  LANG_HOOKS_OMP_PREDETERMINED_SHARING, \
243  LANG_HOOKS_OMP_REPORT_DECL, \
244  LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR, \
245  LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE, \
246  LANG_HOOKS_OMP_PRIVATE_OUTER_REF, \
247  LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR, \
248  LANG_HOOKS_OMP_CLAUSE_COPY_CTOR, \
249  LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP, \
250  LANG_HOOKS_OMP_CLAUSE_DTOR, \
251  LANG_HOOKS_OMP_FINISH_CLAUSE \
252 }
253 
254 /* LTO hooks. */
255 extern void lhd_begin_section (const char *);
256 extern void lhd_append_data (const void *, size_t, void *);
257 extern void lhd_end_section (void);
258 
259 #define LANG_HOOKS_BEGIN_SECTION lhd_begin_section
260 #define LANG_HOOKS_APPEND_DATA lhd_append_data
261 #define LANG_HOOKS_END_SECTION lhd_end_section
262 
263 #define LANG_HOOKS_LTO { \
264  LANG_HOOKS_BEGIN_SECTION, \
265  LANG_HOOKS_APPEND_DATA, \
266  LANG_HOOKS_END_SECTION \
267 }
268 
269 /* The whole thing. The structure is defined in langhooks.h. */
270 #define LANG_HOOKS_INITIALIZER { \
271  LANG_HOOKS_NAME, \
272  LANG_HOOKS_IDENTIFIER_SIZE, \
273  LANG_HOOKS_FREE_LANG_DATA, \
274  LANG_HOOKS_TREE_SIZE, \
275  LANG_HOOKS_OPTION_LANG_MASK, \
276  LANG_HOOKS_INIT_OPTIONS_STRUCT, \
277  LANG_HOOKS_INIT_OPTIONS, \
278  LANG_HOOKS_INITIALIZE_DIAGNOSTICS, \
279  LANG_HOOKS_COMPLAIN_WRONG_LANG_P, \
280  LANG_HOOKS_HANDLE_OPTION, \
281  LANG_HOOKS_POST_OPTIONS, \
282  LANG_HOOKS_INIT, \
283  LANG_HOOKS_FINISH, \
284  LANG_HOOKS_PARSE_FILE, \
285  LANG_HOOKS_MISSING_NORETURN_OK_P, \
286  LANG_HOOKS_GET_ALIAS_SET, \
287  LANG_HOOKS_FINISH_INCOMPLETE_DECL, \
288  LANG_HOOKS_DUP_LANG_SPECIFIC_DECL, \
289  LANG_HOOKS_SET_DECL_ASSEMBLER_NAME, \
290  LANG_HOOKS_PRINT_STATISTICS, \
291  LANG_HOOKS_PRINT_XNODE, \
292  LANG_HOOKS_PRINT_DECL, \
293  LANG_HOOKS_PRINT_TYPE, \
294  LANG_HOOKS_PRINT_IDENTIFIER, \
295  LANG_HOOKS_DECL_PRINTABLE_NAME, \
296  LANG_HOOKS_DWARF_NAME, \
297  LANG_HOOKS_TYPES_COMPATIBLE_P, \
298  LANG_HOOKS_PRINT_ERROR_FUNCTION, \
299  LANG_HOOKS_TO_TARGET_CHARSET, \
300  LANG_HOOKS_ATTRIBUTE_TABLE, \
301  LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, \
302  LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, \
303  LANG_HOOKS_TREE_INLINING_INITIALIZER, \
304  LANG_HOOKS_TREE_DUMP_INITIALIZER, \
305  LANG_HOOKS_DECLS, \
306  LANG_HOOKS_FOR_TYPES_INITIALIZER, \
307  LANG_HOOKS_CILKPLUS, \
308  LANG_HOOKS_LTO, \
309  LANG_HOOKS_GET_INNERMOST_GENERIC_PARMS, \
310  LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS, \
311  LANG_HOOKS_FUNCTION_PARAMETER_PACK_P, \
312  LANG_HOOKS_GIMPLIFY_EXPR, \
313  LANG_HOOKS_BUILTIN_FUNCTION, \
314  LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE, \
315  LANG_HOOKS_INIT_TS, \
316  LANG_HOOKS_EXPR_TO_DECL, \
317  LANG_HOOKS_EH_PERSONALITY, \
318  LANG_HOOKS_EH_RUNTIME_TYPE, \
319  LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS, \
320  LANG_HOOKS_BLOCK_MAY_FALLTHRU, \
321  LANG_HOOKS_EH_USE_CXA_END_CLEANUP, \
322  LANG_HOOKS_DEEP_UNSHARING, \
323  LANG_HOOKS_CHKP_SUPPORTED \
324 }
325 
326 #endif /* GCC_LANG_HOOKS_DEF_H */