Merged trunk at revision 161680 into branch.
[official-gcc.git] / gcc / java / lang.c
blob6c31947c6a492cf2171c9660c8ddb74ca6a0c392
1 /* Java(TM) language-specific utility routines.
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008, 2010 Free Software Foundation, Inc.
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 Java and all Java-based marks are trademarks or registered trademarks
22 of Sun Microsystems, Inc. in the United States and other countries.
23 The Free Software Foundation is independent of Sun Microsystems, Inc. */
25 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "input.h"
33 #include "java-tree.h"
34 #include "jcf.h"
35 #include "toplev.h"
36 #include "langhooks.h"
37 #include "langhooks-def.h"
38 #include "flags.h"
39 #include "ggc.h"
40 #include "diagnostic.h"
41 #include "tree-inline.h"
42 #include "splay-tree.h"
43 #include "tree-dump.h"
44 #include "opts.h"
45 #include "options.h"
47 static bool java_init (void);
48 static void java_finish (void);
49 static unsigned int java_init_options (unsigned int, const char **);
50 static bool java_post_options (const char **);
52 static int java_handle_option (size_t scode, const char *arg, int value, int kind);
53 static void put_decl_string (const char *, int);
54 static void put_decl_node (tree, int);
55 static void java_print_error_function (diagnostic_context *, const char *,
56 diagnostic_info *);
57 static int merge_init_test_initialization (void * *, void *);
58 static int inline_init_test_initialization (void * *, void *);
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 },
76 { NULL, 0, 0, false, false, false, NULL }
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_INIT_OPTIONS
125 #define LANG_HOOKS_INIT_OPTIONS java_init_options
126 #undef LANG_HOOKS_HANDLE_OPTION
127 #define LANG_HOOKS_HANDLE_OPTION java_handle_option
128 #undef LANG_HOOKS_POST_OPTIONS
129 #define LANG_HOOKS_POST_OPTIONS java_post_options
130 #undef LANG_HOOKS_PARSE_FILE
131 #define LANG_HOOKS_PARSE_FILE java_parse_file
132 #undef LANG_HOOKS_DUP_LANG_SPECIFIC_DECL
133 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL java_dup_lang_specific_decl
134 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
135 #define LANG_HOOKS_DECL_PRINTABLE_NAME lang_printable_name
136 #undef LANG_HOOKS_PRINT_ERROR_FUNCTION
137 #define LANG_HOOKS_PRINT_ERROR_FUNCTION java_print_error_function
138 #undef LANG_HOOKS_WRITE_GLOBALS
139 #define LANG_HOOKS_WRITE_GLOBALS java_write_globals
141 #undef LANG_HOOKS_TYPE_FOR_MODE
142 #define LANG_HOOKS_TYPE_FOR_MODE java_type_for_mode
143 #undef LANG_HOOKS_TYPE_FOR_SIZE
144 #define LANG_HOOKS_TYPE_FOR_SIZE java_type_for_size
145 #undef LANG_HOOKS_CLASSIFY_RECORD
146 #define LANG_HOOKS_CLASSIFY_RECORD java_classify_record
148 #undef LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN
149 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN java_dump_tree
151 #undef LANG_HOOKS_GIMPLIFY_EXPR
152 #define LANG_HOOKS_GIMPLIFY_EXPR java_gimplify_expr
154 #undef LANG_HOOKS_DECL_OK_FOR_SIBCALL
155 #define LANG_HOOKS_DECL_OK_FOR_SIBCALL java_decl_ok_for_sibcall
157 #undef LANG_HOOKS_SET_DECL_ASSEMBLER_NAME
158 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME java_mangle_decl
160 #undef LANG_HOOKS_ATTRIBUTE_TABLE
161 #define LANG_HOOKS_ATTRIBUTE_TABLE java_attribute_table
163 #undef LANG_HOOKS_EH_PERSONALITY
164 #define LANG_HOOKS_EH_PERSONALITY java_eh_personality
166 #undef LANG_HOOKS_EH_USE_CXA_END_CLEANUP
167 #define LANG_HOOKS_EH_USE_CXA_END_CLEANUP true
169 /* Each front end provides its own. */
170 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
173 * process java-specific compiler command-line options
174 * return 0, but do not complain if the option is not recognized.
176 static int
177 java_handle_option (size_t scode, const char *arg, int value,
178 int kind ATTRIBUTE_UNUSED)
180 enum opt_code code = (enum opt_code) scode;
182 switch (code)
184 case OPT_I:
185 jcf_path_include_arg (arg);
186 break;
188 case OPT_M:
189 jcf_dependency_init (1);
190 dependency_tracking |= DEPEND_ENABLE;
191 break;
193 case OPT_MD_:
194 jcf_dependency_init (1);
195 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
196 break;
198 case OPT_MF:
199 jcf_dependency_set_dep_file (arg);
200 dependency_tracking |= DEPEND_FILE_ALREADY_SET;
201 break;
203 case OPT_MM:
204 jcf_dependency_init (0);
205 dependency_tracking |= DEPEND_ENABLE;
206 break;
208 case OPT_MMD_:
209 jcf_dependency_init (0);
210 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
211 break;
213 case OPT_MP:
214 jcf_dependency_print_dummies ();
215 break;
217 case OPT_MT:
218 jcf_dependency_set_target (arg);
219 dependency_tracking |= DEPEND_TARGET_SET;
220 break;
222 case OPT_Wall:
223 flag_wall = value;
224 /* When -Wall given, enable -Wunused. We do this because the C
225 compiler does it, and people expect it. */
226 warn_unused = value;
227 break;
229 case OPT_fenable_assertions_:
230 add_enable_assert (arg, value);
231 break;
233 case OPT_fenable_assertions:
234 add_enable_assert ("", value);
235 break;
237 case OPT_fdisable_assertions_:
238 add_enable_assert (arg, !value);
239 break;
241 case OPT_fdisable_assertions:
242 add_enable_assert ("", !value);
243 break;
245 case OPT_fassume_compiled_:
246 add_assume_compiled (arg, !value);
247 break;
249 case OPT_fassume_compiled:
250 add_assume_compiled ("", !value);
251 break;
253 case OPT_fbootclasspath_:
254 jcf_path_bootclasspath_arg (arg);
255 break;
257 case OPT_faux_classpath:
258 case OPT_fclasspath_:
259 case OPT_fCLASSPATH_:
260 jcf_path_classpath_arg (arg);
261 break;
263 case OPT_fcompile_resource_:
264 resource_name = arg;
265 break;
267 case OPT_fdump_:
268 if (!dump_switch_p (arg))
269 return 0;
270 break;
272 case OPT_fencoding_:
273 /* Nothing. */
274 break;
276 case OPT_fextdirs_:
277 jcf_path_extdirs_arg (arg);
278 break;
280 case OPT_foutput_class_dir_:
281 /* FIXME: remove; this is handled by ecj1 now. */
282 break;
284 case OPT_version:
285 v_flag = 1;
286 break;
288 case OPT_fsource_filename_:
289 java_read_sourcefilenames (arg);
290 break;
292 default:
293 if (cl_options[code].flags & CL_Java)
294 break;
295 gcc_unreachable ();
298 return 1;
301 /* Global open file. */
302 FILE *finput;
304 static bool
305 java_init (void)
307 /* FIXME: Indirect dispatch isn't yet compatible with static class
308 init optimization. */
309 if (flag_indirect_dispatch)
310 always_initialize_class_p = true;
312 if (!flag_indirect_dispatch)
313 flag_indirect_classes = false;
315 jcf_path_seal (v_flag);
317 java_init_decl_processing ();
319 using_eh_for_cleanups ();
321 return true;
324 static void
325 java_finish (void)
327 jcf_dependency_write ();
330 /* Buffer used by lang_printable_name. */
331 static char *decl_buf = NULL;
333 /* Allocated size of decl_buf. */
334 static int decl_buflen = 0;
336 /* Length of used part of decl_buf; position for next character. */
337 static int decl_bufpos = 0;
339 /* Append the string STR to decl_buf.
340 It length is given by LEN; -1 means the string is nul-terminated. */
342 static void
343 put_decl_string (const char *str, int len)
345 if (len < 0)
346 len = strlen (str);
347 if (decl_bufpos + len >= decl_buflen)
349 if (decl_buf == NULL)
351 decl_buflen = len + 100;
352 decl_buf = XNEWVEC (char, decl_buflen);
354 else
356 decl_buflen *= 2;
357 decl_buf = XRESIZEVAR (char, decl_buf, decl_buflen);
360 strcpy (decl_buf + decl_bufpos, str);
361 decl_bufpos += len;
364 /* Append to decl_buf a printable name for NODE.
365 Depending on VERBOSITY, more information about NODE
366 is printed. Read the comments of decl_printable_name in
367 langhooks.h for more. */
369 static void
370 put_decl_node (tree node, int verbosity)
372 int was_pointer = 0;
373 if (TREE_CODE (node) == POINTER_TYPE)
375 node = TREE_TYPE (node);
376 was_pointer = 1;
378 if (DECL_P (node) && DECL_NAME (node) != NULL_TREE)
380 if (TREE_CODE (node) == FUNCTION_DECL)
382 if (verbosity == 0 && DECL_NAME (node))
383 /* We have been instructed to just print the bare name
384 of the function. */
386 put_decl_node (DECL_NAME (node), 0);
387 return;
390 /* We want to print the type the DECL belongs to. We don't do
391 that when we handle constructors. */
392 if (! DECL_CONSTRUCTOR_P (node)
393 && ! DECL_ARTIFICIAL (node) && DECL_CONTEXT (node)
394 /* We want to print qualified DECL names only
395 if verbosity is higher than 1. */
396 && verbosity >= 1)
398 put_decl_node (TYPE_NAME (DECL_CONTEXT (node)),
399 verbosity);
400 put_decl_string (".", 1);
402 if (! DECL_CONSTRUCTOR_P (node))
403 put_decl_node (DECL_NAME (node), verbosity);
404 if (TREE_TYPE (node) != NULL_TREE
405 /* We want to print function parameters only if verbosity
406 is higher than 2. */
407 && verbosity >= 2)
409 int i = 0;
410 tree args = TYPE_ARG_TYPES (TREE_TYPE (node));
411 if (TREE_CODE (TREE_TYPE (node)) == METHOD_TYPE)
412 args = TREE_CHAIN (args);
413 put_decl_string ("(", 1);
414 for ( ; args != end_params_node; args = TREE_CHAIN (args), i++)
416 if (i > 0)
417 put_decl_string (",", 1);
418 put_decl_node (TREE_VALUE (args), verbosity);
420 put_decl_string (")", 1);
423 else
424 put_decl_node (DECL_NAME (node), verbosity);
426 else if (TYPE_P (node) && TYPE_NAME (node) != NULL_TREE)
428 if (TREE_CODE (node) == RECORD_TYPE && TYPE_ARRAY_P (node)
429 /* Print detailed array information only if verbosity is higher
430 than 2. */
431 && verbosity >= 2)
433 put_decl_node (TYPE_ARRAY_ELEMENT (node), verbosity);
434 put_decl_string("[]", 2);
436 else if (node == promoted_byte_type_node)
437 put_decl_string ("byte", 4);
438 else if (node == promoted_short_type_node)
439 put_decl_string ("short", 5);
440 else if (node == promoted_char_type_node)
441 put_decl_string ("char", 4);
442 else if (node == promoted_boolean_type_node)
443 put_decl_string ("boolean", 7);
444 else if (node == void_type_node && was_pointer)
445 put_decl_string ("null", 4);
446 else
447 put_decl_node (TYPE_NAME (node), verbosity);
449 else if (TREE_CODE (node) == IDENTIFIER_NODE)
450 put_decl_string (IDENTIFIER_POINTER (node), IDENTIFIER_LENGTH (node));
451 else
452 put_decl_string ("<unknown>", -1);
455 /* Return a user-friendly name for DECL.
456 The resulting string is only valid until the next call.
457 The value of the hook decl_printable_name is this function,
458 which is also called directly by java_print_error_function. */
460 const char *
461 lang_printable_name (tree decl, int v)
463 decl_bufpos = 0;
464 put_decl_node (decl, v);
465 put_decl_string ("", 1);
466 return decl_buf;
469 /* Print on stderr the current class and method context. This function
470 is the value of the hook print_error_function. */
472 static GTY(()) tree last_error_function_context;
473 static GTY(()) tree last_error_function;
474 static void
475 java_print_error_function (diagnostic_context *context ATTRIBUTE_UNUSED,
476 const char *file,
477 diagnostic_info *diagnostic ATTRIBUTE_UNUSED)
479 /* Don't print error messages with bogus function prototypes. */
480 if (inhibit_error_function_printing)
481 return;
483 if (current_function_decl != NULL
484 && DECL_CONTEXT (current_function_decl) != last_error_function_context)
486 if (file)
487 fprintf (stderr, "%s: ", file);
489 last_error_function_context = DECL_CONTEXT (current_function_decl);
490 fprintf (stderr, "In class '%s':\n",
491 lang_printable_name (last_error_function_context, 0));
493 if (last_error_function != current_function_decl)
495 if (file)
496 fprintf (stderr, "%s: ", file);
498 if (current_function_decl == NULL)
499 fprintf (stderr, "At top level:\n");
500 else
502 const char *name = lang_printable_name (current_function_decl, 2);
503 fprintf (stderr, "In %s '%s':\n",
504 (DECL_CONSTRUCTOR_P (current_function_decl) ? "constructor"
505 : "method"),
506 name);
509 last_error_function = current_function_decl;
514 /* Called to install the PRINT_ERROR_FUNCTION hook differently
515 according to LEVEL. LEVEL is 1 during early parsing, when function
516 prototypes aren't fully resolved. java_print_error_function is set
517 so it doesn't print incomplete function prototypes. When LEVEL is
518 2, function prototypes are fully resolved and can be printed when
519 reporting errors. */
521 void
522 lang_init_source (int level)
524 inhibit_error_function_printing = (level == 1);
527 static unsigned int
528 java_init_options (unsigned int argc ATTRIBUTE_UNUSED,
529 const char **argv ATTRIBUTE_UNUSED)
531 flag_bounds_check = 1;
532 flag_exceptions = 1;
533 flag_non_call_exceptions = 1;
535 /* In Java floating point operations never trap. */
536 flag_trapping_math = 0;
538 /* In Java arithmetic overflow always wraps around. */
539 flag_wrapv = 1;
541 /* Java requires left-to-right evaluation of subexpressions. */
542 flag_evaluation_order = 1;
544 jcf_path_init ();
546 return CL_Java;
549 /* Post-switch processing. */
550 static bool
551 java_post_options (const char **pfilename)
553 const char *filename = *pfilename;
555 /* Excess precision other than "fast" requires front-end
556 support. */
557 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
558 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
559 sorry ("-fexcess-precision=standard for Java");
560 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
562 /* An absolute requirement: if we're not using indirect dispatch, we
563 must always verify everything. */
564 if (! flag_indirect_dispatch)
565 flag_verify_invocations = true;
567 if (flag_reduced_reflection)
569 if (flag_indirect_dispatch)
570 error ("-findirect-dispatch is incompatible "
571 "with -freduced-reflection");
572 if (flag_jni)
573 error ("-fjni is incompatible with -freduced-reflection");
576 /* Open input file. */
578 if (filename == 0 || !strcmp (filename, "-"))
580 finput = stdin;
581 filename = "stdin";
583 if (dependency_tracking)
584 error ("can't do dependency tracking with input from stdin");
586 else
588 if (dependency_tracking)
590 const char *dot;
592 /* If the target is set and the output filename is set, then
593 there's no processing to do here. Otherwise we must
594 compute one or the other. */
595 if (! ((dependency_tracking & DEPEND_TARGET_SET)
596 && (dependency_tracking & DEPEND_FILE_ALREADY_SET)))
598 dot = strrchr (filename, '.');
599 if (dot == NULL)
600 error ("couldn't determine target name for dependency tracking");
601 else
603 char *buf = XNEWVEC (char, dot - filename +
604 3 + sizeof (TARGET_OBJECT_SUFFIX));
605 strncpy (buf, filename, dot - filename);
607 /* If emitting class files, we might have multiple
608 targets. The class generation code takes care of
609 registering them. Otherwise we compute the
610 target name here. */
611 if ((dependency_tracking & DEPEND_TARGET_SET))
612 ; /* Nothing. */
613 else
615 strcpy (buf + (dot - filename), TARGET_OBJECT_SUFFIX);
616 jcf_dependency_set_target (buf);
619 if ((dependency_tracking & DEPEND_FILE_ALREADY_SET))
620 ; /* Nothing. */
621 else if ((dependency_tracking & DEPEND_SET_FILE))
623 strcpy (buf + (dot - filename), ".d");
624 jcf_dependency_set_dep_file (buf);
626 else
627 jcf_dependency_set_dep_file ("-");
629 free (buf);
634 linemap_add (line_table, LC_ENTER, false, filename, 0);
635 linemap_add (line_table, LC_RENAME, false, "<built-in>", 0);
637 /* Initialize the compiler back end. */
638 return false;
641 /* Return either DECL or its known constant value (if it has one). */
643 tree
644 decl_constant_value (tree decl)
646 if (/* Don't change a variable array bound or initial value to a constant
647 in a place where a variable is invalid. */
648 current_function_decl != 0
649 && ! TREE_THIS_VOLATILE (decl)
650 && TREE_READONLY (decl)
651 && DECL_INITIAL (decl) != 0
652 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
653 /* This is invalid if initial value is not constant.
654 If it has either a function call, a memory reference,
655 or a variable, then re-evaluating it could give different results. */
656 && TREE_CONSTANT (DECL_INITIAL (decl))
657 /* Check for cases where this is sub-optimal, even though valid. */
658 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
659 return DECL_INITIAL (decl);
660 return decl;
663 /* Every call to a static constructor has an associated boolean
664 variable which is in the outermost scope of the calling method.
665 This variable is used to avoid multiple calls to the static
666 constructor for each class.
668 It looks something like this:
670 foo ()
672 boolean dummy = OtherClass.is_initialized;
676 if (! dummy)
677 OtherClass.initialize();
679 ... use OtherClass.data ...
682 Each of these boolean variables has an entry in the
683 DECL_FUNCTION_INIT_TEST_TABLE of a method. When inlining a method
684 we must merge the DECL_FUNCTION_INIT_TEST_TABLE from the function
685 being inlined and create the boolean variables in the outermost
686 scope of the method being inlined into. */
688 /* Create a mapping from a boolean variable in a method being inlined
689 to one in the scope of the method being inlined into. */
691 static int
692 merge_init_test_initialization (void **entry, void *x)
694 struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
695 splay_tree decl_map = (splay_tree)x;
696 splay_tree_node n;
697 tree *init_test_decl;
699 /* See if we have remapped this declaration. If we haven't there's
700 a bug in the inliner. */
701 n = splay_tree_lookup (decl_map, (splay_tree_key) ite->value);
702 gcc_assert (n);
704 /* Create a new entry for the class and its remapped boolean
705 variable. If we already have a mapping for this class we've
706 already initialized it, so don't overwrite the value. */
707 init_test_decl = java_treetreehash_new
708 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
709 if (!*init_test_decl)
710 *init_test_decl = (tree)n->value;
712 /* This fixes a weird case.
714 The front end assumes that once we have called a method that
715 initializes some class, we can assume the class is initialized. It
716 does this by setting the DECL_INITIAL of the init_test_decl for that
717 class, and no initializations are emitted for that class.
719 However, what if the method that is supposed to do the initialization
720 is itself inlined in the caller? When expanding the called method
721 we'll assume that the class initialization has already been done,
722 because the DECL_INITIAL of the init_test_decl is set.
724 To fix this we remove the DECL_INITIAL (in the caller scope) of all
725 the init_test_decls corresponding to classes initialized by the
726 inlined method. This makes the caller no longer assume that the
727 method being inlined does any class initializations. */
728 DECL_INITIAL (*init_test_decl) = NULL;
730 return true;
733 /* Merge the DECL_FUNCTION_INIT_TEST_TABLE from the function we're
734 inlining. */
736 void
737 java_inlining_merge_static_initializers (tree fn, void *decl_map)
739 htab_traverse
740 (DECL_FUNCTION_INIT_TEST_TABLE (fn),
741 merge_init_test_initialization, decl_map);
744 /* Lookup a DECL_FUNCTION_INIT_TEST_TABLE entry in the method we're
745 inlining into. If we already have a corresponding entry in that
746 class we don't need to create another one, so we create a mapping
747 from the variable in the inlined class to the corresponding
748 pre-existing one. */
750 static int
751 inline_init_test_initialization (void **entry, void *x)
753 struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
754 splay_tree decl_map = (splay_tree)x;
756 tree h = java_treetreehash_find
757 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
758 if (! h)
759 return true;
760 splay_tree_insert (decl_map,
761 (splay_tree_key) ite->value,
762 (splay_tree_value) h);
763 return true;
766 /* Look up the boolean variables in the DECL_FUNCTION_INIT_TEST_TABLE
767 of a method being inlined. For each hone, if we already have a
768 variable associated with the same class in the method being inlined
769 into, create a new mapping for it. */
771 void
772 java_inlining_map_static_initializers (tree fn, void *decl_map)
774 htab_traverse
775 (DECL_FUNCTION_INIT_TEST_TABLE (fn),
776 inline_init_test_initialization, decl_map);
779 /* Avoid voluminous output for deep recursion of compound exprs. */
781 static void
782 dump_compound_expr (dump_info_p di, tree t)
784 int i;
786 for (i=0; i<2; i++)
788 switch (TREE_CODE (TREE_OPERAND (t, i)))
790 case COMPOUND_EXPR:
791 dump_compound_expr (di, TREE_OPERAND (t, i));
792 break;
794 default:
795 dump_child ("expr", TREE_OPERAND (t, i));
800 static bool
801 java_dump_tree (void *dump_info, tree t)
803 enum tree_code code;
804 dump_info_p di = (dump_info_p) dump_info;
806 /* Figure out what kind of node this is. */
807 code = TREE_CODE (t);
809 switch (code)
811 case FUNCTION_DECL:
812 dump_child ("args", DECL_ARGUMENTS (t));
813 if (DECL_EXTERNAL (t))
814 dump_string (di, "undefined");
815 if (TREE_PUBLIC (t))
816 dump_string (di, "extern");
817 else
818 dump_string (di, "static");
819 if (DECL_LANG_SPECIFIC (t) && !dump_flag (di, TDF_SLIM, t))
820 dump_child ("inline body", DECL_SAVED_TREE (t));
821 return true;
823 case RETURN_EXPR:
824 dump_child ("expr", TREE_OPERAND (t, 0));
825 return true;
827 case GOTO_EXPR:
828 dump_child ("goto", TREE_OPERAND (t, 0));
829 return true;
831 case LABEL_EXPR:
832 dump_child ("label", TREE_OPERAND (t, 0));
833 return true;
835 case BLOCK:
836 if (BLOCK_EXPR_BODY (t))
838 tree local = BLOCK_VARS (t);
839 while (local)
841 tree next = TREE_CHAIN (local);
842 dump_child ("var", local);
843 local = next;
847 tree block = BLOCK_EXPR_BODY (t);
848 dump_child ("body", block);
849 block = TREE_CHAIN (block);
852 return true;
854 case COMPOUND_EXPR:
855 if (!dump_flag (di, TDF_SLIM, t))
856 return false;
857 dump_compound_expr (di, t);
858 return true;
860 default:
861 break;
863 return false;
866 /* Java calls can't, in general, be sibcalls because we need an
867 accurate stack trace in order to guarantee correct operation of
868 methods such as Class.forName(String) and
869 SecurityManager.getClassContext(). */
871 static bool
872 java_decl_ok_for_sibcall (const_tree decl)
874 return (decl != NULL && DECL_CONTEXT (decl) == output_class
875 && !DECL_UNINLINABLE (decl));
878 static enum classify_record
879 java_classify_record (tree type)
881 if (! CLASS_P (type))
882 return RECORD_IS_STRUCT;
884 if (CLASS_INTERFACE (TYPE_NAME (type)))
885 return RECORD_IS_INTERFACE;
887 return RECORD_IS_CLASS;
890 static GTY(()) tree java_eh_personality_decl;
892 static tree
893 java_eh_personality (void)
895 if (!java_eh_personality_decl)
896 java_eh_personality_decl
897 = build_personality_function (USING_SJLJ_EXCEPTIONS
898 ? "__gcj_personality_sj0"
899 : "__gcj_personality_v0");
901 return java_eh_personality_decl;
904 #include "gt-java-lang.h"