Merge from trunk: 215733-215743
[official-gcc.git] / gcc-4_9 / gcc / langhooks.c
blob3b2081d42ee3e6575bb94a15011e72704fe5f295
1 /* Default language-specific hooks.
2 Copyright (C) 2001-2014 Free Software Foundation, Inc.
3 Contributed by Alexandre Oliva <aoliva@redhat.com>
5 This file is part of GCC.
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.
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.
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/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "intl.h"
25 #include "tm.h"
26 #include "toplev.h"
27 #include "tree.h"
28 #include "stringpool.h"
29 #include "attribs.h"
30 #include "tree-inline.h"
31 #include "gimplify.h"
32 #include "rtl.h"
33 #include "insn-config.h"
34 #include "flags.h"
35 #include "langhooks.h"
36 #include "target.h"
37 #include "langhooks-def.h"
38 #include "diagnostic.h"
39 #include "tree-diagnostic.h"
40 #include "cgraph.h"
41 #include "timevar.h"
42 #include "output.h"
44 /* Do nothing; in many cases the default hook. */
46 void
47 lhd_do_nothing (void)
51 /* Do nothing (tree). */
53 void
54 lhd_do_nothing_t (tree ARG_UNUSED (t))
58 /* Pass through (tree). */
59 tree
60 lhd_pass_through_t (tree t)
62 return t;
65 /* Do nothing (int, int, int). Return NULL_TREE. */
67 tree
68 lhd_do_nothing_iii_return_null_tree (int ARG_UNUSED (i),
69 int ARG_UNUSED (j),
70 int ARG_UNUSED (k))
72 return NULL_TREE;
75 /* Do nothing (function). */
77 void
78 lhd_do_nothing_f (struct function * ARG_UNUSED (f))
82 /* Do nothing (return NULL_TREE). */
84 tree
85 lhd_return_null_tree_v (void)
87 return NULL_TREE;
90 /* Do nothing (return NULL_TREE). */
92 tree
93 lhd_return_null_tree (tree ARG_UNUSED (t))
95 return NULL_TREE;
98 /* Do nothing (return NULL_TREE). */
100 tree
101 lhd_return_null_const_tree (const_tree ARG_UNUSED (t))
103 return NULL_TREE;
106 void
107 lhd_do_nothing_u (unsigned ARG_UNUSED (t))
112 lhd_do_nothing_t_return_int (tree ARG_UNUSED (t))
114 return false;
117 bool
118 lhd_do_nothing_t_return_bool (tree ARG_UNUSED (t))
120 return false;
124 void
125 lhd_do_nothing_t_t (tree ARG_UNUSED (t), tree ARG_UNUSED (t2))
130 lhd_do_nothing_t_t_return_int (tree ARG_UNUSED (t), tree ARG_UNUSED (t2))
132 return 1;
135 bool
136 lhd_do_nothing_t_vp_return_bool (tree ARG_UNUSED (t), void * ARG_UNUSED (t2))
138 return true;
141 /* Do nothing (tree, tree). Return NULL_TREE. */
142 tree
143 lhd_do_nothing_t_t_return_null_tree (tree ARG_UNUSED (t), tree ARG_UNUSED (t2))
145 return NULL_TREE;
148 /* The default post options hook. */
150 bool
151 lhd_post_options (const char ** ARG_UNUSED (pfilename))
153 /* Excess precision other than "fast" requires front-end
154 support. */
155 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
156 return false;
159 /* Called from by print-tree.c. */
161 void
162 lhd_print_tree_nothing (FILE * ARG_UNUSED (file),
163 tree ARG_UNUSED (node),
164 int ARG_UNUSED (indent))
168 /* Called from check_global_declarations. */
170 bool
171 lhd_warn_unused_global_decl (const_tree decl)
173 /* This is what used to exist in check_global_declarations. Probably
174 not many of these actually apply to non-C languages. */
176 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl))
177 return false;
178 if (TREE_CODE (decl) == VAR_DECL && TREE_READONLY (decl))
179 return false;
180 if (DECL_IN_SYSTEM_HEADER (decl))
181 return false;
183 return true;
186 /* Set the DECL_ASSEMBLER_NAME for DECL. */
187 void
188 lhd_set_decl_assembler_name (tree decl)
190 tree id;
192 /* The language-independent code should never use the
193 DECL_ASSEMBLER_NAME for lots of DECLs. Only FUNCTION_DECLs and
194 VAR_DECLs for variables with static storage duration need a real
195 DECL_ASSEMBLER_NAME. */
196 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
197 || (TREE_CODE (decl) == VAR_DECL
198 && (TREE_STATIC (decl)
199 || DECL_EXTERNAL (decl)
200 || TREE_PUBLIC (decl))));
202 /* By default, assume the name to use in assembly code is the same
203 as that used in the source language. (That's correct for C, and
204 GCC used to set DECL_ASSEMBLER_NAME to the same value as
205 DECL_NAME in build_decl, so this choice provides backwards
206 compatibility with existing front-ends. This assumption is wrapped
207 in a target hook, to allow for target-specific modification of the
208 identifier.
210 Can't use just the variable's own name for a variable whose scope
211 is less than the whole compilation. Concatenate a distinguishing
212 number - we use the DECL_UID. */
214 if (TREE_PUBLIC (decl) || DECL_FILE_SCOPE_P (decl))
215 id = targetm.mangle_decl_assembler_name (decl, DECL_NAME (decl));
216 else
218 const char *name = IDENTIFIER_POINTER (DECL_NAME (decl));
219 char *label;
221 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
222 id = get_identifier (label);
224 SET_DECL_ASSEMBLER_NAME (decl, id);
228 /* Type promotion for variable arguments. */
229 tree
230 lhd_type_promotes_to (tree ARG_UNUSED (type))
232 gcc_unreachable ();
235 /* Registration of machine- or os-specific builtin types. */
236 void
237 lhd_register_builtin_type (tree ARG_UNUSED (type),
238 const char * ARG_UNUSED (name))
242 /* Invalid use of an incomplete type. */
243 void
244 lhd_incomplete_type_error (const_tree ARG_UNUSED (value), const_tree type)
246 gcc_assert (TREE_CODE (type) == ERROR_MARK);
247 return;
250 /* Provide a default routine for alias sets that always returns -1. This
251 is used by languages that don't need to do anything special. */
253 alias_set_type
254 lhd_get_alias_set (tree ARG_UNUSED (t))
256 return -1;
259 /* This is the default decl_printable_name function. */
261 const char *
262 lhd_decl_printable_name (tree decl, int ARG_UNUSED (verbosity))
264 gcc_assert (decl && DECL_NAME (decl));
265 return IDENTIFIER_POINTER (DECL_NAME (decl));
268 /* This is the default dwarf_name function. */
270 const char *
271 lhd_dwarf_name (tree t, int verbosity)
273 gcc_assert (DECL_P (t));
275 return lang_hooks.decl_printable_name (t, verbosity);
278 /* This compares two types for equivalence ("compatible" in C-based languages).
279 This routine should only return 1 if it is sure. It should not be used
280 in contexts where erroneously returning 0 causes problems. */
283 lhd_types_compatible_p (tree x, tree y)
285 return TYPE_MAIN_VARIANT (x) == TYPE_MAIN_VARIANT (y);
288 /* lang_hooks.tree_dump.dump_tree: Dump language-specific parts of tree
289 nodes. Returns nonzero if it does not want the usual dumping of the
290 second argument. */
292 bool
293 lhd_tree_dump_dump_tree (void *di ATTRIBUTE_UNUSED, tree t ATTRIBUTE_UNUSED)
295 return false;
298 /* lang_hooks.tree_dump.type_qual: Determine type qualifiers in a
299 language-specific way. */
302 lhd_tree_dump_type_quals (const_tree t)
304 return TYPE_QUALS (t);
307 /* lang_hooks.gimplify_expr re-writes *EXPR_P into GIMPLE form. */
310 lhd_gimplify_expr (tree *expr_p ATTRIBUTE_UNUSED,
311 gimple_seq *pre_p ATTRIBUTE_UNUSED,
312 gimple_seq *post_p ATTRIBUTE_UNUSED)
314 return GS_UNHANDLED;
317 /* lang_hooks.tree_size: Determine the size of a tree with code C,
318 which is a language-specific tree code in category tcc_constant or
319 tcc_exceptional. The default expects never to be called. */
320 size_t
321 lhd_tree_size (enum tree_code c ATTRIBUTE_UNUSED)
323 gcc_unreachable ();
326 /* Return true if decl, which is a function decl, may be called by a
327 sibcall. */
329 bool
330 lhd_decl_ok_for_sibcall (const_tree decl ATTRIBUTE_UNUSED)
332 return true;
335 /* lang_hooks.decls.final_write_globals: perform final processing on
336 global variables. */
337 void
338 write_global_declarations (void)
340 tree globals, decl, *vec;
341 int len, i;
343 timevar_start (TV_PHASE_DEFERRED);
344 /* Really define vars that have had only a tentative definition.
345 Really output inline functions that must actually be callable
346 and have not been output so far. */
348 globals = lang_hooks.decls.getdecls ();
349 len = list_length (globals);
350 vec = XNEWVEC (tree, len);
352 /* Process the decls in reverse order--earliest first.
353 Put them into VEC from back to front, then take out from front. */
355 for (i = 0, decl = globals; i < len; i++, decl = DECL_CHAIN (decl))
356 vec[len - i - 1] = decl;
358 wrapup_global_declarations (vec, len);
359 check_global_declarations (vec, len);
360 timevar_stop (TV_PHASE_DEFERRED);
362 timevar_start (TV_PHASE_OPT_GEN);
363 /* This lang hook is dual-purposed, and also finalizes the
364 compilation unit. */
365 finalize_compilation_unit ();
366 timevar_stop (TV_PHASE_OPT_GEN);
368 timevar_start (TV_PHASE_DBGINFO);
369 emit_debug_global_declarations (vec, len);
370 timevar_stop (TV_PHASE_DBGINFO);
372 /* Clean up. */
373 free (vec);
376 /* Called to perform language-specific initialization of CTX. */
377 void
378 lhd_initialize_diagnostics (diagnostic_context *ctx ATTRIBUTE_UNUSED)
382 /* Called to perform language-specific options initialization. */
383 void
384 lhd_init_options (unsigned int decoded_options_count ATTRIBUTE_UNUSED,
385 struct cl_decoded_option *decoded_options ATTRIBUTE_UNUSED)
389 /* By default, always complain about options for the wrong language. */
390 bool
391 lhd_complain_wrong_lang_p (const struct cl_option *option ATTRIBUTE_UNUSED)
393 return true;
396 /* By default, no language-specific options are valid. */
397 bool
398 lhd_handle_option (size_t code ATTRIBUTE_UNUSED,
399 const char *arg ATTRIBUTE_UNUSED,
400 int value ATTRIBUTE_UNUSED, int kind ATTRIBUTE_UNUSED,
401 location_t loc ATTRIBUTE_UNUSED,
402 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED)
404 return false;
407 /* The default function to print out name of current function that caused
408 an error. */
409 void
410 lhd_print_error_function (diagnostic_context *context, const char *file,
411 diagnostic_info *diagnostic)
413 if (diagnostic_last_function_changed (context, diagnostic))
415 const char *old_prefix = context->printer->prefix;
416 tree abstract_origin = diagnostic_abstract_origin (diagnostic);
417 char *new_prefix = (file && abstract_origin == NULL)
418 ? file_name_as_prefix (context, file) : NULL;
420 pp_set_prefix (context->printer, new_prefix);
422 if (current_function_decl == NULL)
423 pp_printf (context->printer, _("At top level:"));
424 else
426 tree fndecl, ao;
428 if (abstract_origin)
430 ao = BLOCK_ABSTRACT_ORIGIN (abstract_origin);
431 while (TREE_CODE (ao) == BLOCK
432 && BLOCK_ABSTRACT_ORIGIN (ao)
433 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
434 ao = BLOCK_ABSTRACT_ORIGIN (ao);
435 gcc_assert (TREE_CODE (ao) == FUNCTION_DECL);
436 fndecl = ao;
438 else
439 fndecl = current_function_decl;
441 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
442 pp_printf
443 (context->printer, _("In member function %qs"),
444 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)));
445 else
446 pp_printf
447 (context->printer, _("In function %qs"),
448 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)));
450 while (abstract_origin)
452 location_t *locus;
453 tree block = abstract_origin;
455 locus = &BLOCK_SOURCE_LOCATION (block);
456 fndecl = NULL;
457 block = BLOCK_SUPERCONTEXT (block);
458 while (block && TREE_CODE (block) == BLOCK
459 && BLOCK_ABSTRACT_ORIGIN (block))
461 ao = BLOCK_ABSTRACT_ORIGIN (block);
463 while (TREE_CODE (ao) == BLOCK
464 && BLOCK_ABSTRACT_ORIGIN (ao)
465 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
466 ao = BLOCK_ABSTRACT_ORIGIN (ao);
468 if (TREE_CODE (ao) == FUNCTION_DECL)
470 fndecl = ao;
471 break;
473 else if (TREE_CODE (ao) != BLOCK)
474 break;
476 block = BLOCK_SUPERCONTEXT (block);
478 if (fndecl)
479 abstract_origin = block;
480 else
482 while (block && TREE_CODE (block) == BLOCK)
483 block = BLOCK_SUPERCONTEXT (block);
485 if (block && TREE_CODE (block) == FUNCTION_DECL)
486 fndecl = block;
487 abstract_origin = NULL;
489 if (fndecl)
491 expanded_location s = expand_location (*locus);
492 pp_comma (context->printer);
493 pp_newline (context->printer);
494 if (s.file != NULL)
496 if (context->show_column)
497 pp_printf (context->printer,
498 _(" inlined from %qs at %r%s:%d:%d%R"),
499 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)),
500 "locus", s.file, s.line, s.column);
501 else
502 pp_printf (context->printer,
503 _(" inlined from %qs at %r%s:%d%R"),
504 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)),
505 "locus", s.file, s.line);
508 else
509 pp_printf (context->printer, _(" inlined from %qs"),
510 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)));
513 pp_colon (context->printer);
516 diagnostic_set_last_function (context, diagnostic);
517 pp_newline_and_flush (context->printer);
518 context->printer->prefix = old_prefix;
519 free ((char*) new_prefix);
523 tree
524 lhd_make_node (enum tree_code code)
526 return make_node (code);
529 HOST_WIDE_INT
530 lhd_to_target_charset (HOST_WIDE_INT c)
532 return c;
535 tree
536 lhd_expr_to_decl (tree expr, bool *tc ATTRIBUTE_UNUSED, bool *se ATTRIBUTE_UNUSED)
538 return expr;
541 /* Return sharing kind if OpenMP sharing attribute of DECL is
542 predetermined, OMP_CLAUSE_DEFAULT_UNSPECIFIED otherwise. */
544 enum omp_clause_default_kind
545 lhd_omp_predetermined_sharing (tree decl ATTRIBUTE_UNUSED)
547 if (DECL_ARTIFICIAL (decl))
548 return OMP_CLAUSE_DEFAULT_SHARED;
549 return OMP_CLAUSE_DEFAULT_UNSPECIFIED;
552 /* Generate code to copy SRC to DST. */
554 tree
555 lhd_omp_assignment (tree clause ATTRIBUTE_UNUSED, tree dst, tree src)
557 return build2 (MODIFY_EXPR, TREE_TYPE (dst), dst, src);
560 /* Finalize clause C. */
562 void
563 lhd_omp_finish_clause (tree, gimple_seq *)
567 /* Register language specific type size variables as potentially OpenMP
568 firstprivate variables. */
570 void
571 lhd_omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *c ATTRIBUTE_UNUSED,
572 tree t ATTRIBUTE_UNUSED)
576 /* Return true if TYPE is an OpenMP mappable type. */
578 bool
579 lhd_omp_mappable_type (tree type)
581 /* Mappable type has to be complete. */
582 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
583 return false;
584 return true;
587 /* Common function for add_builtin_function and
588 add_builtin_function_ext_scope. */
589 static tree
590 add_builtin_function_common (const char *name,
591 tree type,
592 int function_code,
593 enum built_in_class cl,
594 const char *library_name,
595 tree attrs,
596 tree (*hook) (tree))
598 tree id = get_identifier (name);
599 tree decl = build_decl (BUILTINS_LOCATION, FUNCTION_DECL, id, type);
601 TREE_PUBLIC (decl) = 1;
602 DECL_EXTERNAL (decl) = 1;
603 DECL_BUILT_IN_CLASS (decl) = cl;
605 DECL_FUNCTION_CODE (decl) = (enum built_in_function) function_code;
607 /* DECL_FUNCTION_CODE is a bitfield; verify that the value fits. */
608 gcc_assert (DECL_FUNCTION_CODE (decl) == function_code);
610 if (library_name)
612 tree libname = get_identifier (library_name);
613 SET_DECL_ASSEMBLER_NAME (decl, libname);
616 /* Possibly apply some default attributes to this built-in function. */
617 if (attrs)
618 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
619 else
620 decl_attributes (&decl, NULL_TREE, 0);
622 return hook (decl);
626 /* Create a builtin function. */
628 tree
629 add_builtin_function (const char *name,
630 tree type,
631 int function_code,
632 enum built_in_class cl,
633 const char *library_name,
634 tree attrs)
636 return add_builtin_function_common (name, type, function_code, cl,
637 library_name, attrs,
638 lang_hooks.builtin_function);
641 /* Like add_builtin_function, but make sure the scope is the external scope.
642 This is used to delay putting in back end builtin functions until the ISA
643 that defines the builtin is declared via function specific target options,
644 which can save memory for machines like the x86_64 that have multiple ISAs.
645 If this points to the same function as builtin_function, the backend must
646 add all of the builtins at program initialization time. */
648 tree
649 add_builtin_function_ext_scope (const char *name,
650 tree type,
651 int function_code,
652 enum built_in_class cl,
653 const char *library_name,
654 tree attrs)
656 return add_builtin_function_common (name, type, function_code, cl,
657 library_name, attrs,
658 lang_hooks.builtin_function_ext_scope);
661 tree
662 lhd_builtin_function (tree decl)
664 lang_hooks.decls.pushdecl (decl);
665 return decl;
668 bool
669 lhd_user_conv_function_p (tree decl ATTRIBUTE_UNUSED)
671 return false;
674 /* Create a builtin type. */
676 tree
677 add_builtin_type (const char *name, tree type)
679 tree id = get_identifier (name);
680 tree decl = build_decl (BUILTINS_LOCATION, TYPE_DECL, id, type);
681 return lang_hooks.decls.pushdecl (decl);
684 /* LTO hooks. */
686 /* Used to save and restore any previously active section. */
687 static section *saved_section;
690 /* Begin a new LTO output section named NAME. This default implementation
691 saves the old section and emits assembly code to switch to the new
692 section. */
694 void
695 lhd_begin_section (const char *name)
697 section *section;
699 /* Save the old section so we can restore it in lto_end_asm_section. */
700 gcc_assert (!saved_section);
701 saved_section = in_section;
702 if (!saved_section)
703 saved_section = text_section;
705 /* Create a new section and switch to it. */
706 section = get_section (name, SECTION_DEBUG, NULL);
707 switch_to_section (section);
711 /* Write DATA of length LEN to the current LTO output section. This default
712 implementation just calls assemble_string and frees BLOCK. */
714 void
715 lhd_append_data (const void *data, size_t len, void *block)
717 if (data)
718 assemble_string ((const char *)data, len);
719 free (block);
723 /* Finish the current LTO output section. This default implementation emits
724 assembly code to switch to any section previously saved by
725 lhd_begin_section. */
727 void
728 lhd_end_section (void)
730 if (saved_section)
732 switch_to_section (saved_section);
733 saved_section = NULL;