]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/langhooks-def.h
Allow automatics in equivalences
[thirdparty/gcc.git] / gcc / langhooks-def.h
CommitLineData
b0278d39 1/* Default macros to initialize the lang_hooks data structure.
fbd26352 2 Copyright (C) 2001-2019 Free Software Foundation, Inc.
b0278d39 3 Contributed by Alexandre Oliva <aoliva@redhat.com>
4
4642865b 5This file is part of GCC.
b0278d39 6
4642865b 7GCC is free software; you can redistribute it and/or modify
b0278d39 8it under the terms of the GNU General Public License as published by
8c4c00c1 9the Free Software Foundation; either version 3, or (at your option)
b0278d39 10any later version.
11
4642865b 12GCC is distributed in the hope that it will be useful,
b0278d39 13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
8c4c00c1 18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
b0278d39 20
21#ifndef GCC_LANG_HOOKS_DEF_H
22#define GCC_LANG_HOOKS_DEF_H
23
dd436eaf 24#include "hooks.h"
25
b8c23db3 26struct diagnostic_info;
3da97ff7 27class substring_loc;
6c7ff025 28
b0278d39 29/* Note to creators of new hooks:
30
31 The macros in this file should NOT be surrounded by a
32 #ifdef...#endif pair, since this file declares the defaults. Each
33 front end overrides any hooks it wishes to, in the file containing
e938cdf5 34 its struct lang_hooks, AFTER including this file. */
b0278d39 35
36/* See langhooks.h for the definition and documentation of each hook. */
37
3ad4992f 38extern void lhd_do_nothing (void);
39extern void lhd_do_nothing_t (tree);
3ad4992f 40extern void lhd_do_nothing_f (struct function *);
58d82cd0 41extern tree lhd_pass_through_t (tree);
0fa326f5 42extern void lhd_register_dumps (gcc::dump_manager *);
3ad4992f 43extern bool lhd_post_options (const char **);
32c2fdea 44extern alias_set_type lhd_get_alias_set (tree);
3ad4992f 45extern tree lhd_return_null_tree (tree);
b7bf20db 46extern tree lhd_return_null_const_tree (const_tree);
37b9a732 47extern tree lhd_do_nothing_iii_return_null_tree (int, int, int);
3ad4992f 48extern void lhd_print_tree_nothing (FILE *, tree, int);
49extern const char *lhd_decl_printable_name (tree, int);
7d709201 50extern const char *lhd_dwarf_name (tree, int);
4ee9c684 51extern int lhd_types_compatible_p (tree, tree);
24ca3b4e 52extern void lhd_print_error_function (diagnostic_context *,
b8c23db3 53 const char *, struct diagnostic_info *);
7c129b68 54extern void lhd_set_decl_assembler_name (tree decl);
55extern void lhd_overwrite_decl_assembler_name (tree decl, tree name);
f8fd23c0 56extern bool lhd_warn_unused_global_decl (const_tree);
8950f928 57extern tree lhd_type_for_size (unsigned precision, int unsignedp);
22a3f7bd 58extern void lhd_incomplete_type_error (location_t, const_tree, const_tree);
3ad4992f 59extern tree lhd_type_promotes_to (tree);
b268e47e 60extern void lhd_register_builtin_type (tree, const char *);
9f627b1a 61extern bool lhd_decl_ok_for_sibcall (const_tree);
3ad4992f 62extern size_t lhd_tree_size (enum tree_code);
624d37a6 63extern HOST_WIDE_INT lhd_to_target_charset (HOST_WIDE_INT);
c7d4e749 64extern tree lhd_expr_to_decl (tree, bool *, bool *);
7bfefa9d 65extern tree lhd_builtin_function (tree);
1b006e46 66extern tree lhd_enum_underlying_base_type (const_tree);
b0278d39 67
68/* Declarations of default tree inlining hooks. */
24ca3b4e 69extern void lhd_initialize_diagnostics (diagnostic_context *);
e88d34f6 70extern void lhd_init_options (unsigned int,
71 struct cl_decoded_option *);
72extern bool lhd_complain_wrong_lang_p (const struct cl_option *);
8e18705e 73extern bool lhd_handle_option (size_t, const char *, HOST_WIDE_INT, int,
74 location_t, const struct cl_option_handlers *);
ec1e35b2 75
3ad4992f 76
4ee9c684 77/* Declarations for tree gimplification hooks. */
75a70cf9 78extern int lhd_gimplify_expr (tree *, gimple_seq *, gimple_seq *);
1e8e9920 79extern enum omp_clause_default_kind lhd_omp_predetermined_sharing (tree);
80extern tree lhd_omp_assignment (tree, tree, tree);
691447ab 81extern void lhd_omp_finish_clause (tree, gimple_seq *);
1e8e9920 82struct gimplify_omp_ctx;
83extern void lhd_omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *,
84 tree);
bc7bff74 85extern bool lhd_omp_mappable_type (tree);
44b49e6b 86extern bool lhd_omp_scalar_p (tree);
4ee9c684 87
3da97ff7 88extern const char *lhd_get_substring_location (const substring_loc &,
89 location_t *out_loc);
35b516bd 90extern int lhd_decl_dwarf_attribute (const_tree, int);
2034deb9 91extern int lhd_type_dwarf_attribute (const_tree, int);
3da97ff7 92
d19bd1f0 93#define LANG_HOOKS_NAME "GNU unknown"
94#define LANG_HOOKS_IDENTIFIER_SIZE sizeof (struct lang_identifier)
03bde601 95#define LANG_HOOKS_INIT hook_bool_void_false
b0278d39 96#define LANG_HOOKS_FINISH lhd_do_nothing
b8ba44e7 97#define LANG_HOOKS_PARSE_FILE lhd_do_nothing
e88d34f6 98#define LANG_HOOKS_OPTION_LANG_MASK hook_uint_void_0
cc07c468 99#define LANG_HOOKS_INIT_OPTIONS_STRUCT hook_void_gcc_optionsp
e88d34f6 100#define LANG_HOOKS_INIT_OPTIONS lhd_init_options
b6e50631 101#define LANG_HOOKS_INITIALIZE_DIAGNOSTICS lhd_initialize_diagnostics
0fa326f5 102#define LANG_HOOKS_REGISTER_DUMPS lhd_register_dumps
e88d34f6 103#define LANG_HOOKS_COMPLAIN_WRONG_LANG_P lhd_complain_wrong_lang_p
b78351e5 104#define LANG_HOOKS_HANDLE_OPTION lhd_handle_option
03bde601 105#define LANG_HOOKS_POST_OPTIONS lhd_post_options
b75409ba 106#define LANG_HOOKS_MISSING_NORETURN_OK_P hook_bool_tree_true
b0278d39 107#define LANG_HOOKS_GET_ALIAS_SET lhd_get_alias_set
ee23fd7b 108#define LANG_HOOKS_FINISH_INCOMPLETE_DECL lhd_do_nothing_t
dbc42b78 109#define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL lhd_do_nothing_t
d1f6c8f2 110#define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME lhd_set_decl_assembler_name
7c129b68 111#define LANG_HOOKS_OVERWRITE_DECL_ASSEMBLER_NAME lhd_overwrite_decl_assembler_name
b7fced5e 112#define LANG_HOOKS_PRINT_STATISTICS lhd_do_nothing
113#define LANG_HOOKS_PRINT_XNODE lhd_print_tree_nothing
114#define LANG_HOOKS_PRINT_DECL lhd_print_tree_nothing
115#define LANG_HOOKS_PRINT_TYPE lhd_print_tree_nothing
116#define LANG_HOOKS_PRINT_IDENTIFIER lhd_print_tree_nothing
6c7ff025 117#define LANG_HOOKS_PRINT_ERROR_FUNCTION lhd_print_error_function
96554925 118#define LANG_HOOKS_DECL_PRINTABLE_NAME lhd_decl_printable_name
7d709201 119#define LANG_HOOKS_DWARF_NAME lhd_dwarf_name
34e5cced 120#define LANG_HOOKS_FREE_LANG_DATA lhd_do_nothing_t
295e387a 121#define LANG_HOOKS_TREE_SIZE lhd_tree_size
4ee9c684 122#define LANG_HOOKS_TYPES_COMPATIBLE_P lhd_types_compatible_p
54be5d7e 123#define LANG_HOOKS_BUILTIN_FUNCTION lhd_builtin_function
24470055 124#define LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE LANG_HOOKS_BUILTIN_FUNCTION
54d7165a 125#define LANG_HOOKS_EXPR_TO_DECL lhd_expr_to_decl
624d37a6 126#define LANG_HOOKS_TO_TARGET_CHARSET lhd_to_target_charset
5ded8c6f 127#define LANG_HOOKS_INIT_TS lhd_do_nothing
58d82cd0 128#define LANG_HOOKS_EH_PERSONALITY lhd_gcc_personality
129#define LANG_HOOKS_EH_RUNTIME_TYPE lhd_pass_through_t
596981c8 130#define LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS NULL
6cb25bec 131#define LANG_HOOKS_BLOCK_MAY_FALLTHRU hook_bool_const_tree_true
471eff36 132#define LANG_HOOKS_EH_USE_CXA_END_CLEANUP false
f96dd706 133#define LANG_HOOKS_DEEP_UNSHARING false
a27e3913 134#define LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS false
90567983 135#define LANG_HOOKS_EMITS_BEGIN_STMT false
7af4d06b 136#define LANG_HOOKS_RUN_LANG_SELFTESTS lhd_do_nothing
3da97ff7 137#define LANG_HOOKS_GET_SUBSTRING_LOCATION lhd_get_substring_location
b0278d39 138
f8e93a2e 139/* Attribute hooks. */
140#define LANG_HOOKS_ATTRIBUTE_TABLE NULL
141#define LANG_HOOKS_COMMON_ATTRIBUTE_TABLE NULL
142#define LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE NULL
143
b0278d39 144/* Tree inlining hooks. */
21ac3a84 145#define LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P \
1f8a6ff8 146 hook_bool_tree_tree_false
b0278d39 147
148#define LANG_HOOKS_TREE_INLINING_INITIALIZER { \
21ac3a84 149 LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P, \
ec1e35b2 150}
b0278d39 151
4ee9c684 152/* Hooks for tree gimplification. */
153#define LANG_HOOKS_GIMPLIFY_EXPR lhd_gimplify_expr
90e3d9ba 154
3119c950 155/* Tree dump hooks. */
3ad4992f 156extern bool lhd_tree_dump_dump_tree (void *, tree);
f8fd23c0 157extern int lhd_tree_dump_type_quals (const_tree);
674b05f5 158extern tree lhd_make_node (enum tree_code);
3119c950 159
160#define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN lhd_tree_dump_dump_tree
161#define LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN lhd_tree_dump_type_quals
162
163#define LANG_HOOKS_TREE_DUMP_INITIALIZER { \
164 LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN, \
165 LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN \
20325f61 166}
167
ee23fd7b 168/* Types hooks. There are no reasonable defaults for most of them,
169 so we create a compile-time error instead. */
3dae587b 170extern tree lhd_unit_size_without_reusable_padding (tree);
171
674b05f5 172#define LANG_HOOKS_MAKE_TYPE lhd_make_node
03a61d93 173#define LANG_HOOKS_CLASSIFY_RECORD NULL
8950f928 174#define LANG_HOOKS_TYPE_FOR_SIZE lhd_type_for_size
1dd25100 175#define LANG_HOOKS_INCOMPLETE_TYPE_ERROR lhd_incomplete_type_error
f8fd23c0 176#define LANG_HOOKS_GENERIC_TYPE_P hook_bool_const_tree_false
7c48f38c 177#define LANG_HOOKS_GET_INNERMOST_GENERIC_PARMS hook_tree_const_tree_null
178#define LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS hook_tree_const_tree_null
5d1e31fa 179#define LANG_HOOKS_FUNCTION_PARAMETER_PACK_P hook_bool_const_tree_false
7c48f38c 180#define LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS hook_tree_const_tree_null
181#define LANG_HOOKS_GENERIC_GENERIC_PARAMETER_DECL_P hook_bool_const_tree_false
5d1e31fa 182#define LANG_HOOKS_FUNCTION_PARM_EXPANDED_FROM_PACK_P \
183 hook_bool_tree_tree_false
184#define LANG_HOOKS_GET_GENERIC_FUNCTION_DECL hook_tree_const_tree_null
63c62881 185#define LANG_HOOKS_TYPE_PROMOTES_TO lhd_type_promotes_to
b268e47e 186#define LANG_HOOKS_REGISTER_BUILTIN_TYPE lhd_register_builtin_type
f8fd23c0 187#define LANG_HOOKS_TYPE_MAX_SIZE lhd_return_null_const_tree
1e8e9920 188#define LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES \
189 lhd_omp_firstprivatize_type_sizes
bc7bff74 190#define LANG_HOOKS_OMP_MAPPABLE_TYPE lhd_omp_mappable_type
743f8dd1 191#define LANG_HOOKS_TYPE_HASH_EQ NULL
4edbdd46 192#define LANG_HOOKS_COPY_LANG_QUALIFIERS NULL
1c79cc8c 193#define LANG_HOOKS_GET_ARRAY_DESCR_INFO NULL
a9538d68 194#define LANG_HOOKS_GET_SUBRANGE_BOUNDS NULL
e0501e5f 195#define LANG_HOOKS_GET_TYPE_BIAS NULL
818dee1b 196#define LANG_HOOKS_DESCRIPTIVE_TYPE NULL
d991e6e8 197#define LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE reconstruct_complex_type
1b006e46 198#define LANG_HOOKS_ENUM_UNDERLYING_BASE_TYPE lhd_enum_underlying_base_type
db3c183a 199#define LANG_HOOKS_GET_DEBUG_TYPE NULL
6a3b696e 200#define LANG_HOOKS_GET_FIXED_POINT_TYPE_INFO NULL
2034deb9 201#define LANG_HOOKS_TYPE_DWARF_ATTRIBUTE lhd_type_dwarf_attribute
3dae587b 202#define LANG_HOOKS_UNIT_SIZE_WITHOUT_REUSABLE_PADDING lhd_unit_size_without_reusable_padding
a1f71e15 203
204#define LANG_HOOKS_FOR_TYPES_INITIALIZER { \
771d21fa 205 LANG_HOOKS_MAKE_TYPE, \
03a61d93 206 LANG_HOOKS_CLASSIFY_RECORD, \
771d21fa 207 LANG_HOOKS_TYPE_FOR_MODE, \
4070745f 208 LANG_HOOKS_TYPE_FOR_SIZE, \
0e4744ac 209 LANG_HOOKS_GENERIC_TYPE_P, \
7c48f38c 210 LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS, \
63c62881 211 LANG_HOOKS_TYPE_PROMOTES_TO, \
b268e47e 212 LANG_HOOKS_REGISTER_BUILTIN_TYPE, \
a26d3281 213 LANG_HOOKS_INCOMPLETE_TYPE_ERROR, \
b225134e 214 LANG_HOOKS_TYPE_MAX_SIZE, \
1e8e9920 215 LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES, \
bc7bff74 216 LANG_HOOKS_OMP_MAPPABLE_TYPE, \
743f8dd1 217 LANG_HOOKS_TYPE_HASH_EQ, \
4edbdd46 218 LANG_HOOKS_COPY_LANG_QUALIFIERS, \
1c79cc8c 219 LANG_HOOKS_GET_ARRAY_DESCR_INFO, \
a9538d68 220 LANG_HOOKS_GET_SUBRANGE_BOUNDS, \
e0501e5f 221 LANG_HOOKS_GET_TYPE_BIAS, \
818dee1b 222 LANG_HOOKS_DESCRIPTIVE_TYPE, \
1b006e46 223 LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE, \
db3c183a 224 LANG_HOOKS_ENUM_UNDERLYING_BASE_TYPE, \
6a3b696e 225 LANG_HOOKS_GET_DEBUG_TYPE, \
2034deb9 226 LANG_HOOKS_GET_FIXED_POINT_TYPE_INFO, \
3dae587b 227 LANG_HOOKS_TYPE_DWARF_ATTRIBUTE, \
228 LANG_HOOKS_UNIT_SIZE_WITHOUT_REUSABLE_PADDING \
a1f71e15 229}
230
20325f61 231/* Declaration hooks. */
20325f61 232#define LANG_HOOKS_GLOBAL_BINDINGS_P global_bindings_p
20325f61 233#define LANG_HOOKS_PUSHDECL pushdecl
234#define LANG_HOOKS_GETDECLS getdecls
35b516bd 235#define LANG_HOOKS_DECL_DWARF_ATTRIBUTE lhd_decl_dwarf_attribute
8d58a5a7 236#define LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL lhd_warn_unused_global_decl
3a1c9df2 237#define LANG_HOOKS_POST_COMPILATION_PARSING_CLEANUPS NULL
e2e9c55b 238#define LANG_HOOKS_DECL_OK_FOR_SIBCALL lhd_decl_ok_for_sibcall
9f627b1a 239#define LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE hook_bool_const_tree_false
1e8e9920 240#define LANG_HOOKS_OMP_PREDETERMINED_SHARING lhd_omp_predetermined_sharing
4ad75159 241#define LANG_HOOKS_OMP_REPORT_DECL lhd_pass_through_t
1e8e9920 242#define LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR hook_bool_tree_bool_false
243#define LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE hook_bool_tree_bool_false
fd6481cf 244#define LANG_HOOKS_OMP_PRIVATE_OUTER_REF hook_bool_tree_false
245#define LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR hook_tree_tree_tree_tree_null
1e8e9920 246#define LANG_HOOKS_OMP_CLAUSE_COPY_CTOR lhd_omp_assignment
247#define LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP lhd_omp_assignment
9580cb79 248#define LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR NULL
1e8e9920 249#define LANG_HOOKS_OMP_CLAUSE_DTOR hook_tree_tree_tree_null
691447ab 250#define LANG_HOOKS_OMP_FINISH_CLAUSE lhd_omp_finish_clause
44b49e6b 251#define LANG_HOOKS_OMP_SCALAR_P lhd_omp_scalar_p
20325f61 252
253#define LANG_HOOKS_DECLS { \
20325f61 254 LANG_HOOKS_GLOBAL_BINDINGS_P, \
20325f61 255 LANG_HOOKS_PUSHDECL, \
8d58a5a7 256 LANG_HOOKS_GETDECLS, \
35b516bd 257 LANG_HOOKS_DECL_DWARF_ATTRIBUTE, \
7c48f38c 258 LANG_HOOKS_GENERIC_GENERIC_PARAMETER_DECL_P, \
5d1e31fa 259 LANG_HOOKS_FUNCTION_PARM_EXPANDED_FROM_PACK_P, \
260 LANG_HOOKS_GET_GENERIC_FUNCTION_DECL, \
28db4d96 261 LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL, \
3a1c9df2 262 LANG_HOOKS_POST_COMPILATION_PARSING_CLEANUPS, \
e2e9c55b 263 LANG_HOOKS_DECL_OK_FOR_SIBCALL, \
1e8e9920 264 LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE, \
265 LANG_HOOKS_OMP_PREDETERMINED_SHARING, \
4ad75159 266 LANG_HOOKS_OMP_REPORT_DECL, \
1e8e9920 267 LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR, \
268 LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE, \
fd6481cf 269 LANG_HOOKS_OMP_PRIVATE_OUTER_REF, \
1e8e9920 270 LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR, \
271 LANG_HOOKS_OMP_CLAUSE_COPY_CTOR, \
272 LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP, \
9580cb79 273 LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR, \
fd6481cf 274 LANG_HOOKS_OMP_CLAUSE_DTOR, \
44b49e6b 275 LANG_HOOKS_OMP_FINISH_CLAUSE, \
276 LANG_HOOKS_OMP_SCALAR_P \
20325f61 277}
3119c950 278
7bfefa9d 279/* LTO hooks. */
280extern void lhd_begin_section (const char *);
281extern void lhd_append_data (const void *, size_t, void *);
282extern void lhd_end_section (void);
283
284#define LANG_HOOKS_BEGIN_SECTION lhd_begin_section
285#define LANG_HOOKS_APPEND_DATA lhd_append_data
286#define LANG_HOOKS_END_SECTION lhd_end_section
287
288#define LANG_HOOKS_LTO { \
289 LANG_HOOKS_BEGIN_SECTION, \
290 LANG_HOOKS_APPEND_DATA, \
291 LANG_HOOKS_END_SECTION \
292}
293
3119c950 294/* The whole thing. The structure is defined in langhooks.h. */
b0278d39 295#define LANG_HOOKS_INITIALIZER { \
d19bd1f0 296 LANG_HOOKS_NAME, \
297 LANG_HOOKS_IDENTIFIER_SIZE, \
34e5cced 298 LANG_HOOKS_FREE_LANG_DATA, \
295e387a 299 LANG_HOOKS_TREE_SIZE, \
e88d34f6 300 LANG_HOOKS_OPTION_LANG_MASK, \
f3f006ad 301 LANG_HOOKS_INIT_OPTIONS_STRUCT, \
b0278d39 302 LANG_HOOKS_INIT_OPTIONS, \
b6e50631 303 LANG_HOOKS_INITIALIZE_DIAGNOSTICS, \
0fa326f5 304 LANG_HOOKS_REGISTER_DUMPS, \
e88d34f6 305 LANG_HOOKS_COMPLAIN_WRONG_LANG_P, \
5457b645 306 LANG_HOOKS_HANDLE_OPTION, \
b0278d39 307 LANG_HOOKS_POST_OPTIONS, \
435fb09b 308 LANG_HOOKS_INIT, \
309 LANG_HOOKS_FINISH, \
b78207a0 310 LANG_HOOKS_PARSE_FILE, \
b75409ba 311 LANG_HOOKS_MISSING_NORETURN_OK_P, \
b0278d39 312 LANG_HOOKS_GET_ALIAS_SET, \
ee23fd7b 313 LANG_HOOKS_FINISH_INCOMPLETE_DECL, \
dbc42b78 314 LANG_HOOKS_DUP_LANG_SPECIFIC_DECL, \
d1f6c8f2 315 LANG_HOOKS_SET_DECL_ASSEMBLER_NAME, \
7c129b68 316 LANG_HOOKS_OVERWRITE_DECL_ASSEMBLER_NAME, \
b7fced5e 317 LANG_HOOKS_PRINT_STATISTICS, \
318 LANG_HOOKS_PRINT_XNODE, \
319 LANG_HOOKS_PRINT_DECL, \
320 LANG_HOOKS_PRINT_TYPE, \
321 LANG_HOOKS_PRINT_IDENTIFIER, \
96554925 322 LANG_HOOKS_DECL_PRINTABLE_NAME, \
7d709201 323 LANG_HOOKS_DWARF_NAME, \
4ee9c684 324 LANG_HOOKS_TYPES_COMPATIBLE_P, \
6c7ff025 325 LANG_HOOKS_PRINT_ERROR_FUNCTION, \
624d37a6 326 LANG_HOOKS_TO_TARGET_CHARSET, \
f8e93a2e 327 LANG_HOOKS_ATTRIBUTE_TABLE, \
328 LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, \
329 LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, \
3119c950 330 LANG_HOOKS_TREE_INLINING_INITIALIZER, \
20325f61 331 LANG_HOOKS_TREE_DUMP_INITIALIZER, \
a1f71e15 332 LANG_HOOKS_DECLS, \
90e3d9ba 333 LANG_HOOKS_FOR_TYPES_INITIALIZER, \
7bfefa9d 334 LANG_HOOKS_LTO, \
7c48f38c 335 LANG_HOOKS_GET_INNERMOST_GENERIC_PARMS, \
336 LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS, \
5d1e31fa 337 LANG_HOOKS_FUNCTION_PARAMETER_PACK_P, \
4ee9c684 338 LANG_HOOKS_GIMPLIFY_EXPR, \
e60d3615 339 LANG_HOOKS_BUILTIN_FUNCTION, \
24470055 340 LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE, \
5ded8c6f 341 LANG_HOOKS_INIT_TS, \
54d7165a 342 LANG_HOOKS_EXPR_TO_DECL, \
58d82cd0 343 LANG_HOOKS_EH_PERSONALITY, \
344 LANG_HOOKS_EH_RUNTIME_TYPE, \
596981c8 345 LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS, \
6cb25bec 346 LANG_HOOKS_BLOCK_MAY_FALLTHRU, \
471eff36 347 LANG_HOOKS_EH_USE_CXA_END_CLEANUP, \
7af4d06b 348 LANG_HOOKS_DEEP_UNSHARING, \
a27e3913 349 LANG_HOOKS_CUSTOM_FUNCTION_DESCRIPTORS, \
90567983 350 LANG_HOOKS_EMITS_BEGIN_STMT, \
3da97ff7 351 LANG_HOOKS_RUN_LANG_SELFTESTS, \
352 LANG_HOOKS_GET_SUBSTRING_LOCATION \
b0278d39 353}
354
355#endif /* GCC_LANG_HOOKS_DEF_H */