[PR67828] don't unswitch on default defs of non-parms
[official-gcc.git] / gcc / java / lang.c
blob11e786cb5bee50c584450801ccbf8fb226e51838
1 /* Java(TM) language-specific utility routines.
2 Copyright (C) 1996-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>.
20 Java and all Java-based marks are trademarks or registered trademarks
21 of Sun Microsystems, Inc. in the United States and other countries.
22 The Free Software Foundation is independent of Sun Microsystems, Inc. */
24 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "alias.h"
31 #include "tree.h"
32 #include "java-tree.h"
33 #include "jcf.h"
34 #include "langhooks.h"
35 #include "langhooks-def.h"
36 #include "flags.h"
37 #include "diagnostic.h"
38 #include "tree-inline.h"
39 #include "splay-tree.h"
40 #include "tree-dump.h"
41 #include "opts.h"
42 #include "options.h"
43 #include "target.h"
44 #include "context.h"
46 static bool java_init (void);
47 static void java_finish (void);
48 static unsigned int java_option_lang_mask (void);
49 static void java_init_options_struct (struct gcc_options *);
50 static void java_init_options (unsigned int, struct cl_decoded_option *);
51 static bool java_post_options (const char **);
53 static bool java_handle_option (size_t, const char *, int, int, location_t,
54 const struct cl_option_handlers *);
55 static void put_decl_string (const char *, int);
56 static void put_decl_node (tree, int);
57 static void java_print_error_function (diagnostic_context *, const char *,
58 diagnostic_info *);
59 static bool java_dump_tree (void *, tree);
60 static void dump_compound_expr (dump_info_p, tree);
61 static bool java_decl_ok_for_sibcall (const_tree);
63 static enum classify_record java_classify_record (tree type);
65 static tree java_eh_personality (void);
67 #ifndef TARGET_OBJECT_SUFFIX
68 # define TARGET_OBJECT_SUFFIX ".o"
69 #endif
71 /* Table of machine-independent attributes. */
72 const struct attribute_spec java_attribute_table[] =
74 { "nonnull", 0, -1, false, true, true,
75 NULL, false },
76 { NULL, 0, 0, false, false, false, NULL, false }
79 /* Used to avoid printing error messages with bogus function
80 prototypes. Starts out false. */
81 static bool inhibit_error_function_printing;
83 const char *resource_name;
85 /* When nonzero, -Wall was turned on. */
86 int flag_wall = 0;
88 /* When nonzero, report use of deprecated classes, methods, or fields. */
89 int flag_deprecated = 1;
91 /* When zero, don't optimize static class initialization. This flag shouldn't
92 be tested alone, use STATIC_CLASS_INITIALIZATION_OPTIMIZATION_P instead. */
93 /* FIXME: Make this work with gimplify. */
94 /* int flag_optimize_sci = 0; */
96 /* Don't attempt to verify invocations. */
97 int flag_verify_invocations = 0;
99 /* When nonzero, print extra version information. */
100 static int v_flag = 0;
102 JCF *current_jcf;
104 /* Variable controlling how dependency tracking is enabled in
105 java_init. */
106 static int dependency_tracking = 0;
108 /* Flag values for DEPENDENCY_TRACKING. */
109 #define DEPEND_SET_FILE 1
110 #define DEPEND_ENABLE 2
111 #define DEPEND_TARGET_SET 4
112 #define DEPEND_FILE_ALREADY_SET 8
114 struct GTY(()) language_function {
115 int unused;
118 #undef LANG_HOOKS_NAME
119 #define LANG_HOOKS_NAME "GNU Java"
120 #undef LANG_HOOKS_INIT
121 #define LANG_HOOKS_INIT java_init
122 #undef LANG_HOOKS_FINISH
123 #define LANG_HOOKS_FINISH java_finish
124 #undef LANG_HOOKS_OPTION_LANG_MASK
125 #define LANG_HOOKS_OPTION_LANG_MASK java_option_lang_mask
126 #undef LANG_HOOKS_INIT_OPTIONS_STRUCT
127 #define LANG_HOOKS_INIT_OPTIONS_STRUCT java_init_options_struct
128 #undef LANG_HOOKS_INIT_OPTIONS
129 #define LANG_HOOKS_INIT_OPTIONS java_init_options
130 #undef LANG_HOOKS_HANDLE_OPTION
131 #define LANG_HOOKS_HANDLE_OPTION java_handle_option
132 #undef LANG_HOOKS_POST_OPTIONS
133 #define LANG_HOOKS_POST_OPTIONS java_post_options
134 #undef LANG_HOOKS_PARSE_FILE
135 #define LANG_HOOKS_PARSE_FILE java_parse_file
136 #undef LANG_HOOKS_DUP_LANG_SPECIFIC_DECL
137 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL java_dup_lang_specific_decl
138 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
139 #define LANG_HOOKS_DECL_PRINTABLE_NAME lang_printable_name
140 #undef LANG_HOOKS_PRINT_ERROR_FUNCTION
141 #define LANG_HOOKS_PRINT_ERROR_FUNCTION java_print_error_function
143 #undef LANG_HOOKS_TYPE_FOR_MODE
144 #define LANG_HOOKS_TYPE_FOR_MODE java_type_for_mode
145 #undef LANG_HOOKS_TYPE_FOR_SIZE
146 #define LANG_HOOKS_TYPE_FOR_SIZE java_type_for_size
147 #undef LANG_HOOKS_CLASSIFY_RECORD
148 #define LANG_HOOKS_CLASSIFY_RECORD java_classify_record
150 #undef LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN
151 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN java_dump_tree
153 #undef LANG_HOOKS_GIMPLIFY_EXPR
154 #define LANG_HOOKS_GIMPLIFY_EXPR java_gimplify_expr
156 #undef LANG_HOOKS_DECL_OK_FOR_SIBCALL
157 #define LANG_HOOKS_DECL_OK_FOR_SIBCALL java_decl_ok_for_sibcall
159 #undef LANG_HOOKS_SET_DECL_ASSEMBLER_NAME
160 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME java_mangle_decl
162 #undef LANG_HOOKS_ATTRIBUTE_TABLE
163 #define LANG_HOOKS_ATTRIBUTE_TABLE java_attribute_table
165 #undef LANG_HOOKS_EH_PERSONALITY
166 #define LANG_HOOKS_EH_PERSONALITY java_eh_personality
168 #undef LANG_HOOKS_EH_USE_CXA_END_CLEANUP
169 #define LANG_HOOKS_EH_USE_CXA_END_CLEANUP true
171 /* Each front end provides its own. */
172 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
175 * process java-specific compiler command-line options
176 * return false, but do not complain if the option is not recognized.
178 static bool
179 java_handle_option (size_t scode, const char *arg, int value,
180 int kind ATTRIBUTE_UNUSED, location_t loc ATTRIBUTE_UNUSED,
181 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED)
183 enum opt_code code = (enum opt_code) scode;
185 switch (code)
187 case OPT_I:
188 jcf_path_include_arg (arg);
189 break;
191 case OPT_M:
192 jcf_dependency_init (1);
193 dependency_tracking |= DEPEND_ENABLE;
194 break;
196 case OPT_MD_:
197 jcf_dependency_init (1);
198 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
199 break;
201 case OPT_MF:
202 jcf_dependency_set_dep_file (arg);
203 dependency_tracking |= DEPEND_FILE_ALREADY_SET;
204 break;
206 case OPT_MM:
207 jcf_dependency_init (0);
208 dependency_tracking |= DEPEND_ENABLE;
209 break;
211 case OPT_MMD_:
212 jcf_dependency_init (0);
213 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
214 break;
216 case OPT_MP:
217 jcf_dependency_print_dummies ();
218 break;
220 case OPT_MT:
221 jcf_dependency_set_target (arg);
222 dependency_tracking |= DEPEND_TARGET_SET;
223 break;
225 case OPT_Wall:
226 flag_wall = value;
227 /* When -Wall given, enable -Wunused. We do this because the C
228 compiler does it, and people expect it. */
229 warn_unused = value;
230 break;
232 case OPT_fenable_assertions_:
233 add_enable_assert (arg, value);
234 break;
236 case OPT_fenable_assertions:
237 add_enable_assert ("", value);
238 break;
240 case OPT_fdisable_assertions_:
241 add_enable_assert (arg, !value);
242 break;
244 case OPT_fdisable_assertions:
245 add_enable_assert ("", !value);
246 break;
248 case OPT_fassume_compiled_:
249 add_assume_compiled (arg, !value);
250 break;
252 case OPT_fassume_compiled:
253 add_assume_compiled ("", !value);
254 break;
256 case OPT_fbootclasspath_:
257 jcf_path_bootclasspath_arg (arg);
258 break;
260 case OPT_faux_classpath:
261 case OPT_fclasspath_:
262 jcf_path_classpath_arg (arg);
263 break;
265 case OPT_fcompile_resource_:
266 resource_name = arg;
267 break;
269 case OPT_fdump_:
270 if (!g->get_dumps ()->dump_switch_p (arg))
271 return false;
272 break;
274 case OPT_fencoding_:
275 /* Nothing. */
276 break;
278 case OPT_fextdirs_:
279 jcf_path_extdirs_arg (arg);
280 break;
282 case OPT_foutput_class_dir_:
283 /* FIXME: remove; this is handled by ecj1 now. */
284 break;
286 case OPT_version:
287 v_flag = 1;
288 break;
290 case OPT_fsource_filename_:
291 java_read_sourcefilenames (arg);
292 break;
294 default:
295 if (cl_options[code].flags & CL_Java)
296 break;
297 gcc_unreachable ();
300 return true;
303 /* Global open file. */
304 FILE *finput;
306 static bool
307 java_init (void)
309 /* FIXME: Indirect dispatch isn't yet compatible with static class
310 init optimization. */
311 if (flag_indirect_dispatch)
312 always_initialize_class_p = true;
314 if (!flag_indirect_dispatch)
315 flag_indirect_classes = false;
317 jcf_path_seal (v_flag);
319 java_init_decl_processing ();
321 using_eh_for_cleanups ();
323 return true;
326 static void
327 java_finish (void)
329 jcf_dependency_write ();
332 /* Buffer used by lang_printable_name. */
333 static char *decl_buf = NULL;
335 /* Allocated size of decl_buf. */
336 static int decl_buflen = 0;
338 /* Length of used part of decl_buf; position for next character. */
339 static int decl_bufpos = 0;
341 /* Append the string STR to decl_buf.
342 It length is given by LEN; -1 means the string is nul-terminated. */
344 static void
345 put_decl_string (const char *str, int len)
347 if (len < 0)
348 len = strlen (str);
349 if (decl_bufpos + len >= decl_buflen)
351 if (decl_buf == NULL)
353 decl_buflen = len + 100;
354 decl_buf = XNEWVEC (char, decl_buflen);
356 else
358 decl_buflen *= 2;
359 decl_buf = XRESIZEVAR (char, decl_buf, decl_buflen);
362 strcpy (decl_buf + decl_bufpos, str);
363 decl_bufpos += len;
366 /* Append to decl_buf a printable name for NODE.
367 Depending on VERBOSITY, more information about NODE
368 is printed. Read the comments of decl_printable_name in
369 langhooks.h for more. */
371 static void
372 put_decl_node (tree node, int verbosity)
374 int was_pointer = 0;
375 if (TREE_CODE (node) == POINTER_TYPE)
377 node = TREE_TYPE (node);
378 was_pointer = 1;
380 if (DECL_P (node) && DECL_NAME (node) != NULL_TREE)
382 if (TREE_CODE (node) == FUNCTION_DECL)
384 if (verbosity == 0 && DECL_NAME (node))
385 /* We have been instructed to just print the bare name
386 of the function. */
388 put_decl_node (DECL_NAME (node), 0);
389 return;
392 /* We want to print the type the DECL belongs to. We don't do
393 that when we handle constructors. */
394 if (! DECL_CONSTRUCTOR_P (node)
395 && ! DECL_ARTIFICIAL (node) && DECL_CONTEXT (node)
396 /* We want to print qualified DECL names only
397 if verbosity is higher than 1. */
398 && verbosity >= 1)
400 put_decl_node (TREE_CODE (DECL_CONTEXT (node)) == FUNCTION_DECL
401 ? DECL_CONTEXT (node)
402 : TYPE_NAME (DECL_CONTEXT (node)),
403 verbosity);
404 put_decl_string (".", 1);
406 if (! DECL_CONSTRUCTOR_P (node))
407 put_decl_node (DECL_NAME (node), verbosity);
408 if (TREE_TYPE (node) != NULL_TREE
409 /* We want to print function parameters only if verbosity
410 is higher than 2. */
411 && verbosity >= 2)
413 int i = 0;
414 tree args = TYPE_ARG_TYPES (TREE_TYPE (node));
415 if (TREE_CODE (TREE_TYPE (node)) == METHOD_TYPE)
416 args = TREE_CHAIN (args);
417 put_decl_string ("(", 1);
418 for ( ; args != NULL_TREE && args != end_params_node;
419 args = TREE_CHAIN (args), i++)
421 if (i > 0)
422 put_decl_string (",", 1);
423 put_decl_node (TREE_VALUE (args), verbosity);
425 put_decl_string (")", 1);
428 else
429 put_decl_node (DECL_NAME (node), verbosity);
431 else if (TYPE_P (node) && TYPE_NAME (node) != NULL_TREE)
433 if (TREE_CODE (node) == RECORD_TYPE && TYPE_ARRAY_P (node)
434 /* Print detailed array information only if verbosity is higher
435 than 2. */
436 && verbosity >= 2)
438 put_decl_node (TYPE_ARRAY_ELEMENT (node), verbosity);
439 put_decl_string("[]", 2);
441 else if (node == promoted_byte_type_node)
442 put_decl_string ("byte", 4);
443 else if (node == promoted_short_type_node)
444 put_decl_string ("short", 5);
445 else if (node == promoted_char_type_node)
446 put_decl_string ("char", 4);
447 else if (node == promoted_boolean_type_node)
448 put_decl_string ("boolean", 7);
449 else if (node == void_type_node && was_pointer)
450 put_decl_string ("null", 4);
451 else
452 put_decl_node (TYPE_NAME (node), verbosity);
454 else if (TREE_CODE (node) == IDENTIFIER_NODE)
455 put_decl_string (IDENTIFIER_POINTER (node), IDENTIFIER_LENGTH (node));
456 else
457 put_decl_string ("<unknown>", -1);
460 /* Return a user-friendly name for DECL.
461 The resulting string is only valid until the next call.
462 The value of the hook decl_printable_name is this function,
463 which is also called directly by java_print_error_function. */
465 const char *
466 lang_printable_name (tree decl, int v)
468 decl_bufpos = 0;
469 put_decl_node (decl, v);
470 put_decl_string ("", 1);
471 return decl_buf;
474 /* Print on stderr the current class and method context. This function
475 is the value of the hook print_error_function. */
477 static GTY(()) tree last_error_function_context;
478 static GTY(()) tree last_error_function;
479 static void
480 java_print_error_function (diagnostic_context *context ATTRIBUTE_UNUSED,
481 const char *file,
482 diagnostic_info *diagnostic ATTRIBUTE_UNUSED)
484 /* Don't print error messages with bogus function prototypes. */
485 if (inhibit_error_function_printing)
486 return;
488 if (current_function_decl != NULL
489 && DECL_CONTEXT (current_function_decl) != NULL
490 && DECL_CONTEXT (current_function_decl) != last_error_function_context)
492 if (file)
493 fprintf (stderr, "%s: ", file);
495 last_error_function_context = DECL_CONTEXT (current_function_decl);
496 fprintf (stderr, "In class '%s':\n",
497 lang_printable_name (last_error_function_context, 0));
499 if (last_error_function != current_function_decl)
501 if (file)
502 fprintf (stderr, "%s: ", file);
504 if (current_function_decl == NULL)
505 fprintf (stderr, "At top level:\n");
506 else
508 const char *name = lang_printable_name (current_function_decl, 2);
509 fprintf (stderr, "In %s '%s':\n",
510 (DECL_CONSTRUCTOR_P (current_function_decl) ? "constructor"
511 : "method"),
512 name);
515 last_error_function = current_function_decl;
520 /* Called to install the PRINT_ERROR_FUNCTION hook differently
521 according to LEVEL. LEVEL is 1 during early parsing, when function
522 prototypes aren't fully resolved. java_print_error_function is set
523 so it doesn't print incomplete function prototypes. When LEVEL is
524 2, function prototypes are fully resolved and can be printed when
525 reporting errors. */
527 void
528 lang_init_source (int level)
530 inhibit_error_function_printing = (level == 1);
533 static unsigned int
534 java_option_lang_mask (void)
536 return CL_Java;
539 /* Initialize options structure OPTS. */
541 static void
542 java_init_options_struct (struct gcc_options *opts)
544 opts->x_flag_bounds_check = 1;
545 opts->x_flag_exceptions = 1;
546 opts->x_flag_non_call_exceptions = 1;
548 /* In Java floating point operations never trap. */
549 opts->x_flag_trapping_math = 0;
550 opts->frontend_set_flag_trapping_math = true;
552 /* In Java arithmetic overflow always wraps around. */
553 opts->x_flag_wrapv = 1;
555 /* Java requires left-to-right evaluation of subexpressions. */
556 opts->x_flag_evaluation_order = 1;
558 /* Java catches NULL pointer exceptions, thus we can not necessarily
559 rely on a pointer having a non-NULL value after a dereference. */
560 opts->x_flag_delete_null_pointer_checks = 0;
563 static void
564 java_init_options (unsigned int decoded_options_count ATTRIBUTE_UNUSED,
565 struct cl_decoded_option *decoded_options ATTRIBUTE_UNUSED)
567 jcf_path_init ();
570 /* Post-switch processing. */
571 static bool
572 java_post_options (const char **pfilename)
574 const char *filename = *pfilename;
576 /* Excess precision other than "fast" requires front-end
577 support. */
578 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
579 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
580 sorry ("-fexcess-precision=standard for Java");
581 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
583 /* An absolute requirement: if we're not using indirect dispatch, we
584 must always verify everything. */
585 if (! flag_indirect_dispatch)
586 flag_verify_invocations = true;
588 if (flag_reduced_reflection)
590 if (flag_indirect_dispatch)
591 error ("-findirect-dispatch is incompatible "
592 "with -freduced-reflection");
593 if (flag_jni)
594 error ("-fjni is incompatible with -freduced-reflection");
597 /* Open input file. */
599 if (filename == 0 || !strcmp (filename, "-"))
601 finput = stdin;
602 filename = "stdin";
604 if (dependency_tracking)
605 error ("can%'t do dependency tracking with input from stdin");
607 else
609 if (dependency_tracking)
611 const char *dot;
613 /* If the target is set and the output filename is set, then
614 there's no processing to do here. Otherwise we must
615 compute one or the other. */
616 if (! ((dependency_tracking & DEPEND_TARGET_SET)
617 && (dependency_tracking & DEPEND_FILE_ALREADY_SET)))
619 dot = strrchr (filename, '.');
620 if (dot == NULL)
621 error ("couldn%'t determine target name for dependency tracking");
622 else
624 char *buf = XNEWVEC (char, dot - filename +
625 3 + sizeof (TARGET_OBJECT_SUFFIX));
626 strncpy (buf, filename, dot - filename);
628 /* If emitting class files, we might have multiple
629 targets. The class generation code takes care of
630 registering them. Otherwise we compute the
631 target name here. */
632 if ((dependency_tracking & DEPEND_TARGET_SET))
633 ; /* Nothing. */
634 else
636 strcpy (buf + (dot - filename), TARGET_OBJECT_SUFFIX);
637 jcf_dependency_set_target (buf);
640 if ((dependency_tracking & DEPEND_FILE_ALREADY_SET))
641 ; /* Nothing. */
642 else if ((dependency_tracking & DEPEND_SET_FILE))
644 strcpy (buf + (dot - filename), ".d");
645 jcf_dependency_set_dep_file (buf);
647 else
648 jcf_dependency_set_dep_file ("-");
650 free (buf);
655 linemap_add (line_table, LC_ENTER, false, filename, 0);
656 linemap_add (line_table, LC_RENAME, false, "<built-in>", 0);
658 /* Initialize the compiler back end. */
659 return false;
662 /* Return either DECL or its known constant value (if it has one). */
664 tree
665 decl_constant_value (tree decl)
667 if (/* Don't change a variable array bound or initial value to a constant
668 in a place where a variable is invalid. */
669 current_function_decl != 0
670 && ! TREE_THIS_VOLATILE (decl)
671 && TREE_READONLY (decl)
672 && DECL_INITIAL (decl) != 0
673 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
674 /* This is invalid if initial value is not constant.
675 If it has either a function call, a memory reference,
676 or a variable, then re-evaluating it could give different results. */
677 && TREE_CONSTANT (DECL_INITIAL (decl))
678 /* Check for cases where this is sub-optimal, even though valid. */
679 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
680 return DECL_INITIAL (decl);
681 return decl;
684 /* Every call to a static constructor has an associated boolean
685 variable which is in the outermost scope of the calling method.
686 This variable is used to avoid multiple calls to the static
687 constructor for each class.
689 It looks something like this:
691 foo ()
693 boolean dummy = OtherClass.is_initialized;
697 if (! dummy)
698 OtherClass.initialize();
700 ... use OtherClass.data ...
703 Each of these boolean variables has an entry in the
704 DECL_FUNCTION_INIT_TEST_TABLE of a method. When inlining a method
705 we must merge the DECL_FUNCTION_INIT_TEST_TABLE from the function
706 being inlined and create the boolean variables in the outermost
707 scope of the method being inlined into. */
709 /* Create a mapping from a boolean variable in a method being inlined
710 to one in the scope of the method being inlined into. */
713 merge_init_test_initialization (treetreehash_entry **entry, void *x)
715 struct treetreehash_entry *ite = *entry;
716 splay_tree decl_map = (splay_tree)x;
717 splay_tree_node n;
718 tree *init_test_decl;
720 /* See if we have remapped this declaration. If we haven't there's
721 a bug in the inliner. */
722 n = splay_tree_lookup (decl_map, (splay_tree_key) ite->value);
723 gcc_assert (n);
725 /* Create a new entry for the class and its remapped boolean
726 variable. If we already have a mapping for this class we've
727 already initialized it, so don't overwrite the value. */
728 init_test_decl = java_treetreehash_new
729 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
730 if (!*init_test_decl)
731 *init_test_decl = (tree)n->value;
733 /* This fixes a weird case.
735 The front end assumes that once we have called a method that
736 initializes some class, we can assume the class is initialized. It
737 does this by setting the DECL_INITIAL of the init_test_decl for that
738 class, and no initializations are emitted for that class.
740 However, what if the method that is supposed to do the initialization
741 is itself inlined in the caller? When expanding the called method
742 we'll assume that the class initialization has already been done,
743 because the DECL_INITIAL of the init_test_decl is set.
745 To fix this we remove the DECL_INITIAL (in the caller scope) of all
746 the init_test_decls corresponding to classes initialized by the
747 inlined method. This makes the caller no longer assume that the
748 method being inlined does any class initializations. */
749 DECL_INITIAL (*init_test_decl) = NULL;
751 return true;
754 /* Merge the DECL_FUNCTION_INIT_TEST_TABLE from the function we're
755 inlining. */
757 void
758 java_inlining_merge_static_initializers (tree fn, void *decl_map)
760 DECL_FUNCTION_INIT_TEST_TABLE (fn)
761 ->traverse<void *, merge_init_test_initialization> (decl_map);
764 /* Lookup a DECL_FUNCTION_INIT_TEST_TABLE entry in the method we're
765 inlining into. If we already have a corresponding entry in that
766 class we don't need to create another one, so we create a mapping
767 from the variable in the inlined class to the corresponding
768 pre-existing one. */
771 inline_init_test_initialization (treetreehash_entry **entry, void *x)
773 struct treetreehash_entry *ite = *entry;
774 splay_tree decl_map = (splay_tree)x;
776 tree h = java_treetreehash_find
777 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
778 if (! h)
779 return true;
780 splay_tree_insert (decl_map,
781 (splay_tree_key) ite->value,
782 (splay_tree_value) h);
783 return true;
786 /* Look up the boolean variables in the DECL_FUNCTION_INIT_TEST_TABLE
787 of a method being inlined. For each hone, if we already have a
788 variable associated with the same class in the method being inlined
789 into, create a new mapping for it. */
791 void
792 java_inlining_map_static_initializers (tree fn, void *decl_map)
794 DECL_FUNCTION_INIT_TEST_TABLE (fn)
795 ->traverse<void *, inline_init_test_initialization> (decl_map);
798 /* Avoid voluminous output for deep recursion of compound exprs. */
800 static void
801 dump_compound_expr (dump_info_p di, tree t)
803 int i;
805 for (i=0; i<2; i++)
807 switch (TREE_CODE (TREE_OPERAND (t, i)))
809 case COMPOUND_EXPR:
810 dump_compound_expr (di, TREE_OPERAND (t, i));
811 break;
813 default:
814 dump_child ("expr", TREE_OPERAND (t, i));
819 static bool
820 java_dump_tree (void *dump_info, tree t)
822 enum tree_code code;
823 dump_info_p di = (dump_info_p) dump_info;
825 /* Figure out what kind of node this is. */
826 code = TREE_CODE (t);
828 switch (code)
830 case FUNCTION_DECL:
831 dump_child ("args", DECL_ARGUMENTS (t));
832 if (DECL_EXTERNAL (t))
833 dump_string (di, "undefined");
834 if (TREE_PUBLIC (t))
835 dump_string (di, "extern");
836 else
837 dump_string (di, "static");
838 if (DECL_LANG_SPECIFIC (t) && !dump_flag (di, TDF_SLIM, t))
839 dump_child ("inline body", DECL_SAVED_TREE (t));
840 return true;
842 case RETURN_EXPR:
843 dump_child ("expr", TREE_OPERAND (t, 0));
844 return true;
846 case GOTO_EXPR:
847 dump_child ("goto", TREE_OPERAND (t, 0));
848 return true;
850 case LABEL_EXPR:
851 dump_child ("label", TREE_OPERAND (t, 0));
852 return true;
854 case BLOCK:
855 if (BLOCK_EXPR_BODY (t))
857 tree local = BLOCK_VARS (t);
858 while (local)
860 tree next = TREE_CHAIN (local);
861 dump_child ("var", local);
862 local = next;
866 tree block = BLOCK_EXPR_BODY (t);
867 dump_child ("body", block);
868 block = TREE_CHAIN (block);
871 return true;
873 case COMPOUND_EXPR:
874 if (!dump_flag (di, TDF_SLIM, t))
875 return false;
876 dump_compound_expr (di, t);
877 return true;
879 default:
880 break;
882 return false;
885 /* Java calls can't, in general, be sibcalls because we need an
886 accurate stack trace in order to guarantee correct operation of
887 methods such as Class.forName(String) and
888 SecurityManager.getClassContext(). */
890 static bool
891 java_decl_ok_for_sibcall (const_tree decl)
893 return (decl != NULL && DECL_CONTEXT (decl) == output_class
894 && !DECL_UNINLINABLE (decl));
897 static enum classify_record
898 java_classify_record (tree type)
900 if (! CLASS_P (type))
901 return RECORD_IS_STRUCT;
903 if (CLASS_INTERFACE (TYPE_NAME (type)))
904 return RECORD_IS_INTERFACE;
906 return RECORD_IS_CLASS;
909 static GTY(()) tree java_eh_personality_decl;
911 static tree
912 java_eh_personality (void)
914 if (!java_eh_personality_decl)
915 java_eh_personality_decl = build_personality_function ("gcj");
916 return java_eh_personality_decl;
919 #include "gt-java-lang.h"