Print cgraph_uid in function header
[official-gcc.git] / gcc-4_6-mobile-vtable-security / gcc / langhooks.c
blobf91085a7bc999915e397af43ebd69416e186d186
1 /* Default language-specific hooks.
2 Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Alexandre Oliva <aoliva@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "intl.h"
26 #include "tm.h"
27 #include "toplev.h"
28 #include "tree.h"
29 #include "tree-inline.h"
30 #include "gimple.h"
31 #include "rtl.h"
32 #include "insn-config.h"
33 #include "integrate.h"
34 #include "flags.h"
35 #include "langhooks.h"
36 #include "target.h"
37 #include "langhooks-def.h"
38 #include "ggc.h"
39 #include "diagnostic.h"
40 #include "tree-diagnostic.h"
41 #include "cgraph.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 /* This lang hook is dual-purposed, and also finalizes the
344 compilation unit. */
345 cgraph_finalize_compilation_unit ();
347 /* Really define vars that have had only a tentative definition.
348 Really output inline functions that must actually be callable
349 and have not been output so far. */
351 globals = lang_hooks.decls.getdecls ();
352 len = list_length (globals);
353 vec = XNEWVEC (tree, len);
355 /* Process the decls in reverse order--earliest first.
356 Put them into VEC from back to front, then take out from front. */
358 for (i = 0, decl = globals; i < len; i++, decl = DECL_CHAIN (decl))
359 vec[len - i - 1] = decl;
361 wrapup_global_declarations (vec, len);
362 check_global_declarations (vec, len);
363 emit_debug_global_declarations (vec, len);
365 /* Clean up. */
366 free (vec);
369 /* Called to perform language-specific initialization of CTX. */
370 void
371 lhd_initialize_diagnostics (diagnostic_context *ctx ATTRIBUTE_UNUSED)
375 /* Called to perform language-specific options initialization. */
376 void
377 lhd_init_options (unsigned int decoded_options_count ATTRIBUTE_UNUSED,
378 struct cl_decoded_option *decoded_options ATTRIBUTE_UNUSED)
382 /* By default, always complain about options for the wrong language. */
383 bool
384 lhd_complain_wrong_lang_p (const struct cl_option *option ATTRIBUTE_UNUSED)
386 return true;
389 /* By default, no language-specific options are valid. */
390 bool
391 lhd_handle_option (size_t code ATTRIBUTE_UNUSED,
392 const char *arg ATTRIBUTE_UNUSED,
393 int value ATTRIBUTE_UNUSED, int kind ATTRIBUTE_UNUSED,
394 location_t loc ATTRIBUTE_UNUSED,
395 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED)
397 return false;
400 /* The default function to print out name of current function that caused
401 an error. */
402 void
403 lhd_print_error_function (diagnostic_context *context, const char *file,
404 diagnostic_info *diagnostic)
406 if (diagnostic_last_function_changed (context, diagnostic))
408 const char *old_prefix = context->printer->prefix;
409 tree abstract_origin = diagnostic_abstract_origin (diagnostic);
410 char *new_prefix = (file && abstract_origin == NULL)
411 ? file_name_as_prefix (file) : NULL;
413 pp_set_prefix (context->printer, new_prefix);
415 if (current_function_decl == NULL)
416 pp_printf (context->printer, _("At top level:"));
417 else
419 tree fndecl, ao;
421 if (abstract_origin)
423 ao = BLOCK_ABSTRACT_ORIGIN (abstract_origin);
424 while (TREE_CODE (ao) == BLOCK
425 && BLOCK_ABSTRACT_ORIGIN (ao)
426 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
427 ao = BLOCK_ABSTRACT_ORIGIN (ao);
428 gcc_assert (TREE_CODE (ao) == FUNCTION_DECL);
429 fndecl = ao;
431 else
432 fndecl = current_function_decl;
434 if (TREE_CODE (TREE_TYPE (fndecl)) == METHOD_TYPE)
435 pp_printf
436 (context->printer, _("In member function %qs"),
437 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)));
438 else
439 pp_printf
440 (context->printer, _("In function %qs"),
441 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)));
443 while (abstract_origin)
445 location_t *locus;
446 tree block = abstract_origin;
448 locus = &BLOCK_SOURCE_LOCATION (block);
449 fndecl = NULL;
450 block = BLOCK_SUPERCONTEXT (block);
451 while (block && TREE_CODE (block) == BLOCK
452 && BLOCK_ABSTRACT_ORIGIN (block))
454 ao = BLOCK_ABSTRACT_ORIGIN (block);
456 while (TREE_CODE (ao) == BLOCK
457 && BLOCK_ABSTRACT_ORIGIN (ao)
458 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
459 ao = BLOCK_ABSTRACT_ORIGIN (ao);
461 if (TREE_CODE (ao) == FUNCTION_DECL)
463 fndecl = ao;
464 break;
466 else if (TREE_CODE (ao) != BLOCK)
467 break;
469 block = BLOCK_SUPERCONTEXT (block);
471 if (fndecl)
472 abstract_origin = block;
473 else
475 while (block && TREE_CODE (block) == BLOCK)
476 block = BLOCK_SUPERCONTEXT (block);
478 if (block && TREE_CODE (block) == FUNCTION_DECL)
479 fndecl = block;
480 abstract_origin = NULL;
482 if (fndecl)
484 expanded_location s = expand_location (*locus);
485 pp_character (context->printer, ',');
486 pp_newline (context->printer);
487 if (s.file != NULL)
489 if (context->show_column)
490 pp_printf (context->printer,
491 _(" inlined from %qs at %s:%d:%d"),
492 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)),
493 s.file, s.line, s.column);
494 else
495 pp_printf (context->printer,
496 _(" inlined from %qs at %s:%d"),
497 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)),
498 s.file, s.line);
501 else
502 pp_printf (context->printer, _(" inlined from %qs"),
503 identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)));
506 pp_character (context->printer, ':');
509 diagnostic_set_last_function (context, diagnostic);
510 pp_flush (context->printer);
511 context->printer->prefix = old_prefix;
512 free ((char*) new_prefix);
516 tree
517 lhd_callgraph_analyze_expr (tree *tp ATTRIBUTE_UNUSED,
518 int *walk_subtrees ATTRIBUTE_UNUSED)
520 return NULL;
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 /* Register language specific type size variables as potentially OpenMP
561 firstprivate variables. */
563 void
564 lhd_omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *c ATTRIBUTE_UNUSED,
565 tree t ATTRIBUTE_UNUSED)
569 /* Common function for add_builtin_function and
570 add_builtin_function_ext_scope. */
571 static tree
572 add_builtin_function_common (const char *name,
573 tree type,
574 int function_code,
575 enum built_in_class cl,
576 const char *library_name,
577 tree attrs,
578 tree (*hook) (tree))
580 tree id = get_identifier (name);
581 tree decl = build_decl (BUILTINS_LOCATION, FUNCTION_DECL, id, type);
583 TREE_PUBLIC (decl) = 1;
584 DECL_EXTERNAL (decl) = 1;
585 DECL_BUILT_IN_CLASS (decl) = cl;
587 DECL_FUNCTION_CODE (decl) = (enum built_in_function) function_code;
589 /* DECL_FUNCTION_CODE is a bitfield; verify that the value fits. */
590 gcc_assert (DECL_FUNCTION_CODE (decl) == function_code);
592 if (library_name)
594 tree libname = get_identifier (library_name);
595 SET_DECL_ASSEMBLER_NAME (decl, libname);
598 /* Possibly apply some default attributes to this built-in function. */
599 if (attrs)
600 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
601 else
602 decl_attributes (&decl, NULL_TREE, 0);
604 return hook (decl);
608 /* Create a builtin function. */
610 tree
611 add_builtin_function (const char *name,
612 tree type,
613 int function_code,
614 enum built_in_class cl,
615 const char *library_name,
616 tree attrs)
618 return add_builtin_function_common (name, type, function_code, cl,
619 library_name, attrs,
620 lang_hooks.builtin_function);
623 /* Like add_builtin_function, but make sure the scope is the external scope.
624 This is used to delay putting in back end builtin functions until the ISA
625 that defines the builtin is declared via function specific target options,
626 which can save memory for machines like the x86_64 that have multiple ISAs.
627 If this points to the same function as builtin_function, the backend must
628 add all of the builtins at program initialization time. */
630 tree
631 add_builtin_function_ext_scope (const char *name,
632 tree type,
633 int function_code,
634 enum built_in_class cl,
635 const char *library_name,
636 tree attrs)
638 return add_builtin_function_common (name, type, function_code, cl,
639 library_name, attrs,
640 lang_hooks.builtin_function_ext_scope);
643 tree
644 lhd_builtin_function (tree decl)
646 lang_hooks.decls.pushdecl (decl);
647 return decl;
650 bool
651 lhd_user_conv_function_p (tree decl ATTRIBUTE_UNUSED)
653 return false;
656 /* LTO hooks. */
658 /* Used to save and restore any previously active section. */
659 static section *saved_section;
662 /* Begin a new LTO output section named NAME. This default implementation
663 saves the old section and emits assembly code to switch to the new
664 section. */
666 void
667 lhd_begin_section (const char *name)
669 section *section;
671 /* Save the old section so we can restore it in lto_end_asm_section. */
672 gcc_assert (!saved_section);
673 saved_section = in_section;
674 if (!saved_section)
675 saved_section = text_section;
677 /* Create a new section and switch to it. */
678 section = get_section (name, SECTION_DEBUG, NULL);
679 switch_to_section (section);
683 /* Write DATA of length LEN to the current LTO output section. This default
684 implementation just calls assemble_string and frees BLOCK. */
686 void
687 lhd_append_data (const void *data, size_t len, void *block)
689 if (data)
690 assemble_string ((const char *)data, len);
691 free (block);
695 /* Finish the current LTO output section. This default implementation emits
696 assembly code to switch to any section previously saved by
697 lhd_begin_section. */
699 void
700 lhd_end_section (void)
702 if (saved_section)
704 switch_to_section (saved_section);
705 saved_section = NULL;