* configure: Regenerated.
[official-gcc.git] / gcc / java / lang.c
blobda7dd0568ee4e20b4d6cc88589966a6a465c59e8
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, 2012 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 "langhooks.h"
36 #include "langhooks-def.h"
37 #include "flags.h"
38 #include "ggc.h"
39 #include "diagnostic.h"
40 #include "tree-inline.h"
41 #include "splay-tree.h"
42 #include "tree-dump.h"
43 #include "opts.h"
44 #include "options.h"
45 #include "target.h"
47 static bool java_init (void);
48 static void java_finish (void);
49 static unsigned int java_option_lang_mask (void);
50 static void java_init_options_struct (struct gcc_options *);
51 static void java_init_options (unsigned int, struct cl_decoded_option *);
52 static bool java_post_options (const char **);
54 static bool java_handle_option (size_t, const char *, int, int, location_t,
55 const struct cl_option_handlers *);
56 static void put_decl_string (const char *, int);
57 static void put_decl_node (tree, int);
58 static void java_print_error_function (diagnostic_context *, const char *,
59 diagnostic_info *);
60 static int merge_init_test_initialization (void * *, void *);
61 static int inline_init_test_initialization (void * *, void *);
62 static bool java_dump_tree (void *, tree);
63 static void dump_compound_expr (dump_info_p, tree);
64 static bool java_decl_ok_for_sibcall (const_tree);
66 static enum classify_record java_classify_record (tree type);
68 static tree java_eh_personality (void);
70 #ifndef TARGET_OBJECT_SUFFIX
71 # define TARGET_OBJECT_SUFFIX ".o"
72 #endif
74 /* Table of machine-independent attributes. */
75 const struct attribute_spec java_attribute_table[] =
77 { "nonnull", 0, -1, false, true, true,
78 NULL, false },
79 { NULL, 0, 0, false, false, false, NULL, false }
82 /* Used to avoid printing error messages with bogus function
83 prototypes. Starts out false. */
84 static bool inhibit_error_function_printing;
86 const char *resource_name;
88 /* When nonzero, -Wall was turned on. */
89 int flag_wall = 0;
91 /* When nonzero, report use of deprecated classes, methods, or fields. */
92 int flag_deprecated = 1;
94 /* When zero, don't optimize static class initialization. This flag shouldn't
95 be tested alone, use STATIC_CLASS_INITIALIZATION_OPTIMIZATION_P instead. */
96 /* FIXME: Make this work with gimplify. */
97 /* int flag_optimize_sci = 0; */
99 /* Don't attempt to verify invocations. */
100 int flag_verify_invocations = 0;
102 /* When nonzero, print extra version information. */
103 static int v_flag = 0;
105 JCF *current_jcf;
107 /* Variable controlling how dependency tracking is enabled in
108 java_init. */
109 static int dependency_tracking = 0;
111 /* Flag values for DEPENDENCY_TRACKING. */
112 #define DEPEND_SET_FILE 1
113 #define DEPEND_ENABLE 2
114 #define DEPEND_TARGET_SET 4
115 #define DEPEND_FILE_ALREADY_SET 8
117 struct GTY(()) language_function {
118 int unused;
121 #undef LANG_HOOKS_NAME
122 #define LANG_HOOKS_NAME "GNU Java"
123 #undef LANG_HOOKS_INIT
124 #define LANG_HOOKS_INIT java_init
125 #undef LANG_HOOKS_FINISH
126 #define LANG_HOOKS_FINISH java_finish
127 #undef LANG_HOOKS_OPTION_LANG_MASK
128 #define LANG_HOOKS_OPTION_LANG_MASK java_option_lang_mask
129 #undef LANG_HOOKS_INIT_OPTIONS_STRUCT
130 #define LANG_HOOKS_INIT_OPTIONS_STRUCT java_init_options_struct
131 #undef LANG_HOOKS_INIT_OPTIONS
132 #define LANG_HOOKS_INIT_OPTIONS java_init_options
133 #undef LANG_HOOKS_HANDLE_OPTION
134 #define LANG_HOOKS_HANDLE_OPTION java_handle_option
135 #undef LANG_HOOKS_POST_OPTIONS
136 #define LANG_HOOKS_POST_OPTIONS java_post_options
137 #undef LANG_HOOKS_PARSE_FILE
138 #define LANG_HOOKS_PARSE_FILE java_parse_file
139 #undef LANG_HOOKS_DUP_LANG_SPECIFIC_DECL
140 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL java_dup_lang_specific_decl
141 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
142 #define LANG_HOOKS_DECL_PRINTABLE_NAME lang_printable_name
143 #undef LANG_HOOKS_PRINT_ERROR_FUNCTION
144 #define LANG_HOOKS_PRINT_ERROR_FUNCTION java_print_error_function
145 #undef LANG_HOOKS_WRITE_GLOBALS
146 #define LANG_HOOKS_WRITE_GLOBALS java_write_globals
148 #undef LANG_HOOKS_TYPE_FOR_MODE
149 #define LANG_HOOKS_TYPE_FOR_MODE java_type_for_mode
150 #undef LANG_HOOKS_TYPE_FOR_SIZE
151 #define LANG_HOOKS_TYPE_FOR_SIZE java_type_for_size
152 #undef LANG_HOOKS_CLASSIFY_RECORD
153 #define LANG_HOOKS_CLASSIFY_RECORD java_classify_record
155 #undef LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN
156 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN java_dump_tree
158 #undef LANG_HOOKS_GIMPLIFY_EXPR
159 #define LANG_HOOKS_GIMPLIFY_EXPR java_gimplify_expr
161 #undef LANG_HOOKS_DECL_OK_FOR_SIBCALL
162 #define LANG_HOOKS_DECL_OK_FOR_SIBCALL java_decl_ok_for_sibcall
164 #undef LANG_HOOKS_SET_DECL_ASSEMBLER_NAME
165 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME java_mangle_decl
167 #undef LANG_HOOKS_ATTRIBUTE_TABLE
168 #define LANG_HOOKS_ATTRIBUTE_TABLE java_attribute_table
170 #undef LANG_HOOKS_EH_PERSONALITY
171 #define LANG_HOOKS_EH_PERSONALITY java_eh_personality
173 #undef LANG_HOOKS_EH_USE_CXA_END_CLEANUP
174 #define LANG_HOOKS_EH_USE_CXA_END_CLEANUP true
176 /* Each front end provides its own. */
177 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
180 * process java-specific compiler command-line options
181 * return false, but do not complain if the option is not recognized.
183 static bool
184 java_handle_option (size_t scode, const char *arg, int value,
185 int kind ATTRIBUTE_UNUSED, location_t loc ATTRIBUTE_UNUSED,
186 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED)
188 enum opt_code code = (enum opt_code) scode;
190 switch (code)
192 case OPT_I:
193 jcf_path_include_arg (arg);
194 break;
196 case OPT_M:
197 jcf_dependency_init (1);
198 dependency_tracking |= DEPEND_ENABLE;
199 break;
201 case OPT_MD_:
202 jcf_dependency_init (1);
203 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
204 break;
206 case OPT_MF:
207 jcf_dependency_set_dep_file (arg);
208 dependency_tracking |= DEPEND_FILE_ALREADY_SET;
209 break;
211 case OPT_MM:
212 jcf_dependency_init (0);
213 dependency_tracking |= DEPEND_ENABLE;
214 break;
216 case OPT_MMD_:
217 jcf_dependency_init (0);
218 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
219 break;
221 case OPT_MP:
222 jcf_dependency_print_dummies ();
223 break;
225 case OPT_MT:
226 jcf_dependency_set_target (arg);
227 dependency_tracking |= DEPEND_TARGET_SET;
228 break;
230 case OPT_Wall:
231 flag_wall = value;
232 /* When -Wall given, enable -Wunused. We do this because the C
233 compiler does it, and people expect it. */
234 warn_unused = value;
235 break;
237 case OPT_fenable_assertions_:
238 add_enable_assert (arg, value);
239 break;
241 case OPT_fenable_assertions:
242 add_enable_assert ("", value);
243 break;
245 case OPT_fdisable_assertions_:
246 add_enable_assert (arg, !value);
247 break;
249 case OPT_fdisable_assertions:
250 add_enable_assert ("", !value);
251 break;
253 case OPT_fassume_compiled_:
254 add_assume_compiled (arg, !value);
255 break;
257 case OPT_fassume_compiled:
258 add_assume_compiled ("", !value);
259 break;
261 case OPT_fbootclasspath_:
262 jcf_path_bootclasspath_arg (arg);
263 break;
265 case OPT_faux_classpath:
266 case OPT_fclasspath_:
267 jcf_path_classpath_arg (arg);
268 break;
270 case OPT_fcompile_resource_:
271 resource_name = arg;
272 break;
274 case OPT_fdump_:
275 if (!dump_switch_p (arg))
276 return false;
277 break;
279 case OPT_fencoding_:
280 /* Nothing. */
281 break;
283 case OPT_fextdirs_:
284 jcf_path_extdirs_arg (arg);
285 break;
287 case OPT_foutput_class_dir_:
288 /* FIXME: remove; this is handled by ecj1 now. */
289 break;
291 case OPT_version:
292 v_flag = 1;
293 break;
295 case OPT_fsource_filename_:
296 java_read_sourcefilenames (arg);
297 break;
299 default:
300 if (cl_options[code].flags & CL_Java)
301 break;
302 gcc_unreachable ();
305 return true;
308 /* Global open file. */
309 FILE *finput;
311 static bool
312 java_init (void)
314 /* FIXME: Indirect dispatch isn't yet compatible with static class
315 init optimization. */
316 if (flag_indirect_dispatch)
317 always_initialize_class_p = true;
319 if (!flag_indirect_dispatch)
320 flag_indirect_classes = false;
322 jcf_path_seal (v_flag);
324 java_init_decl_processing ();
326 using_eh_for_cleanups ();
328 return true;
331 static void
332 java_finish (void)
334 jcf_dependency_write ();
337 /* Buffer used by lang_printable_name. */
338 static char *decl_buf = NULL;
340 /* Allocated size of decl_buf. */
341 static int decl_buflen = 0;
343 /* Length of used part of decl_buf; position for next character. */
344 static int decl_bufpos = 0;
346 /* Append the string STR to decl_buf.
347 It length is given by LEN; -1 means the string is nul-terminated. */
349 static void
350 put_decl_string (const char *str, int len)
352 if (len < 0)
353 len = strlen (str);
354 if (decl_bufpos + len >= decl_buflen)
356 if (decl_buf == NULL)
358 decl_buflen = len + 100;
359 decl_buf = XNEWVEC (char, decl_buflen);
361 else
363 decl_buflen *= 2;
364 decl_buf = XRESIZEVAR (char, decl_buf, decl_buflen);
367 strcpy (decl_buf + decl_bufpos, str);
368 decl_bufpos += len;
371 /* Append to decl_buf a printable name for NODE.
372 Depending on VERBOSITY, more information about NODE
373 is printed. Read the comments of decl_printable_name in
374 langhooks.h for more. */
376 static void
377 put_decl_node (tree node, int verbosity)
379 int was_pointer = 0;
380 if (TREE_CODE (node) == POINTER_TYPE)
382 node = TREE_TYPE (node);
383 was_pointer = 1;
385 if (DECL_P (node) && DECL_NAME (node) != NULL_TREE)
387 if (TREE_CODE (node) == FUNCTION_DECL)
389 if (verbosity == 0 && DECL_NAME (node))
390 /* We have been instructed to just print the bare name
391 of the function. */
393 put_decl_node (DECL_NAME (node), 0);
394 return;
397 /* We want to print the type the DECL belongs to. We don't do
398 that when we handle constructors. */
399 if (! DECL_CONSTRUCTOR_P (node)
400 && ! DECL_ARTIFICIAL (node) && DECL_CONTEXT (node)
401 /* We want to print qualified DECL names only
402 if verbosity is higher than 1. */
403 && verbosity >= 1)
405 put_decl_node (TREE_CODE (DECL_CONTEXT (node)) == FUNCTION_DECL
406 ? DECL_CONTEXT (node)
407 : TYPE_NAME (DECL_CONTEXT (node)),
408 verbosity);
409 put_decl_string (".", 1);
411 if (! DECL_CONSTRUCTOR_P (node))
412 put_decl_node (DECL_NAME (node), verbosity);
413 if (TREE_TYPE (node) != NULL_TREE
414 /* We want to print function parameters only if verbosity
415 is higher than 2. */
416 && verbosity >= 2)
418 int i = 0;
419 tree args = TYPE_ARG_TYPES (TREE_TYPE (node));
420 if (TREE_CODE (TREE_TYPE (node)) == METHOD_TYPE)
421 args = TREE_CHAIN (args);
422 put_decl_string ("(", 1);
423 for ( ; args != end_params_node; args = TREE_CHAIN (args), i++)
425 if (i > 0)
426 put_decl_string (",", 1);
427 put_decl_node (TREE_VALUE (args), verbosity);
429 put_decl_string (")", 1);
432 else
433 put_decl_node (DECL_NAME (node), verbosity);
435 else if (TYPE_P (node) && TYPE_NAME (node) != NULL_TREE)
437 if (TREE_CODE (node) == RECORD_TYPE && TYPE_ARRAY_P (node)
438 /* Print detailed array information only if verbosity is higher
439 than 2. */
440 && verbosity >= 2)
442 put_decl_node (TYPE_ARRAY_ELEMENT (node), verbosity);
443 put_decl_string("[]", 2);
445 else if (node == promoted_byte_type_node)
446 put_decl_string ("byte", 4);
447 else if (node == promoted_short_type_node)
448 put_decl_string ("short", 5);
449 else if (node == promoted_char_type_node)
450 put_decl_string ("char", 4);
451 else if (node == promoted_boolean_type_node)
452 put_decl_string ("boolean", 7);
453 else if (node == void_type_node && was_pointer)
454 put_decl_string ("null", 4);
455 else
456 put_decl_node (TYPE_NAME (node), verbosity);
458 else if (TREE_CODE (node) == IDENTIFIER_NODE)
459 put_decl_string (IDENTIFIER_POINTER (node), IDENTIFIER_LENGTH (node));
460 else
461 put_decl_string ("<unknown>", -1);
464 /* Return a user-friendly name for DECL.
465 The resulting string is only valid until the next call.
466 The value of the hook decl_printable_name is this function,
467 which is also called directly by java_print_error_function. */
469 const char *
470 lang_printable_name (tree decl, int v)
472 decl_bufpos = 0;
473 put_decl_node (decl, v);
474 put_decl_string ("", 1);
475 return decl_buf;
478 /* Print on stderr the current class and method context. This function
479 is the value of the hook print_error_function. */
481 static GTY(()) tree last_error_function_context;
482 static GTY(()) tree last_error_function;
483 static void
484 java_print_error_function (diagnostic_context *context ATTRIBUTE_UNUSED,
485 const char *file,
486 diagnostic_info *diagnostic ATTRIBUTE_UNUSED)
488 /* Don't print error messages with bogus function prototypes. */
489 if (inhibit_error_function_printing)
490 return;
492 if (current_function_decl != NULL
493 && DECL_CONTEXT (current_function_decl) != last_error_function_context)
495 if (file)
496 fprintf (stderr, "%s: ", file);
498 last_error_function_context = DECL_CONTEXT (current_function_decl);
499 fprintf (stderr, "In class '%s':\n",
500 lang_printable_name (last_error_function_context, 0));
502 if (last_error_function != current_function_decl)
504 if (file)
505 fprintf (stderr, "%s: ", file);
507 if (current_function_decl == NULL)
508 fprintf (stderr, "At top level:\n");
509 else
511 const char *name = lang_printable_name (current_function_decl, 2);
512 fprintf (stderr, "In %s '%s':\n",
513 (DECL_CONSTRUCTOR_P (current_function_decl) ? "constructor"
514 : "method"),
515 name);
518 last_error_function = current_function_decl;
523 /* Called to install the PRINT_ERROR_FUNCTION hook differently
524 according to LEVEL. LEVEL is 1 during early parsing, when function
525 prototypes aren't fully resolved. java_print_error_function is set
526 so it doesn't print incomplete function prototypes. When LEVEL is
527 2, function prototypes are fully resolved and can be printed when
528 reporting errors. */
530 void
531 lang_init_source (int level)
533 inhibit_error_function_printing = (level == 1);
536 static unsigned int
537 java_option_lang_mask (void)
539 return CL_Java;
542 /* Initialize options structure OPTS. */
544 static void
545 java_init_options_struct (struct gcc_options *opts)
547 opts->x_flag_bounds_check = 1;
548 opts->x_flag_exceptions = 1;
549 opts->x_flag_non_call_exceptions = 1;
551 /* In Java floating point operations never trap. */
552 opts->x_flag_trapping_math = 0;
553 opts->frontend_set_flag_trapping_math = true;
555 /* In Java arithmetic overflow always wraps around. */
556 opts->x_flag_wrapv = 1;
558 /* Java requires left-to-right evaluation of subexpressions. */
559 opts->x_flag_evaluation_order = 1;
561 /* Java catches NULL pointer exceptions, thus we can not necessarily
562 rely on a pointer having a non-NULL value after a dereference. */
563 opts->x_flag_delete_null_pointer_checks = 0;
566 static void
567 java_init_options (unsigned int decoded_options_count ATTRIBUTE_UNUSED,
568 struct cl_decoded_option *decoded_options ATTRIBUTE_UNUSED)
570 jcf_path_init ();
573 /* Post-switch processing. */
574 static bool
575 java_post_options (const char **pfilename)
577 const char *filename = *pfilename;
579 /* Excess precision other than "fast" requires front-end
580 support. */
581 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
582 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
583 sorry ("-fexcess-precision=standard for Java");
584 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
586 /* An absolute requirement: if we're not using indirect dispatch, we
587 must always verify everything. */
588 if (! flag_indirect_dispatch)
589 flag_verify_invocations = true;
591 if (flag_reduced_reflection)
593 if (flag_indirect_dispatch)
594 error ("-findirect-dispatch is incompatible "
595 "with -freduced-reflection");
596 if (flag_jni)
597 error ("-fjni is incompatible with -freduced-reflection");
600 /* Open input file. */
602 if (filename == 0 || !strcmp (filename, "-"))
604 finput = stdin;
605 filename = "stdin";
607 if (dependency_tracking)
608 error ("can%'t do dependency tracking with input from stdin");
610 else
612 if (dependency_tracking)
614 const char *dot;
616 /* If the target is set and the output filename is set, then
617 there's no processing to do here. Otherwise we must
618 compute one or the other. */
619 if (! ((dependency_tracking & DEPEND_TARGET_SET)
620 && (dependency_tracking & DEPEND_FILE_ALREADY_SET)))
622 dot = strrchr (filename, '.');
623 if (dot == NULL)
624 error ("couldn%'t determine target name for dependency tracking");
625 else
627 char *buf = XNEWVEC (char, dot - filename +
628 3 + sizeof (TARGET_OBJECT_SUFFIX));
629 strncpy (buf, filename, dot - filename);
631 /* If emitting class files, we might have multiple
632 targets. The class generation code takes care of
633 registering them. Otherwise we compute the
634 target name here. */
635 if ((dependency_tracking & DEPEND_TARGET_SET))
636 ; /* Nothing. */
637 else
639 strcpy (buf + (dot - filename), TARGET_OBJECT_SUFFIX);
640 jcf_dependency_set_target (buf);
643 if ((dependency_tracking & DEPEND_FILE_ALREADY_SET))
644 ; /* Nothing. */
645 else if ((dependency_tracking & DEPEND_SET_FILE))
647 strcpy (buf + (dot - filename), ".d");
648 jcf_dependency_set_dep_file (buf);
650 else
651 jcf_dependency_set_dep_file ("-");
653 free (buf);
658 linemap_add (line_table, LC_ENTER, false, filename, 0);
659 linemap_add (line_table, LC_RENAME, false, "<built-in>", 0);
661 /* Initialize the compiler back end. */
662 return false;
665 /* Return either DECL or its known constant value (if it has one). */
667 tree
668 decl_constant_value (tree decl)
670 if (/* Don't change a variable array bound or initial value to a constant
671 in a place where a variable is invalid. */
672 current_function_decl != 0
673 && ! TREE_THIS_VOLATILE (decl)
674 && TREE_READONLY (decl)
675 && DECL_INITIAL (decl) != 0
676 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
677 /* This is invalid if initial value is not constant.
678 If it has either a function call, a memory reference,
679 or a variable, then re-evaluating it could give different results. */
680 && TREE_CONSTANT (DECL_INITIAL (decl))
681 /* Check for cases where this is sub-optimal, even though valid. */
682 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
683 return DECL_INITIAL (decl);
684 return decl;
687 /* Every call to a static constructor has an associated boolean
688 variable which is in the outermost scope of the calling method.
689 This variable is used to avoid multiple calls to the static
690 constructor for each class.
692 It looks something like this:
694 foo ()
696 boolean dummy = OtherClass.is_initialized;
700 if (! dummy)
701 OtherClass.initialize();
703 ... use OtherClass.data ...
706 Each of these boolean variables has an entry in the
707 DECL_FUNCTION_INIT_TEST_TABLE of a method. When inlining a method
708 we must merge the DECL_FUNCTION_INIT_TEST_TABLE from the function
709 being inlined and create the boolean variables in the outermost
710 scope of the method being inlined into. */
712 /* Create a mapping from a boolean variable in a method being inlined
713 to one in the scope of the method being inlined into. */
715 static int
716 merge_init_test_initialization (void **entry, void *x)
718 struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
719 splay_tree decl_map = (splay_tree)x;
720 splay_tree_node n;
721 tree *init_test_decl;
723 /* See if we have remapped this declaration. If we haven't there's
724 a bug in the inliner. */
725 n = splay_tree_lookup (decl_map, (splay_tree_key) ite->value);
726 gcc_assert (n);
728 /* Create a new entry for the class and its remapped boolean
729 variable. If we already have a mapping for this class we've
730 already initialized it, so don't overwrite the value. */
731 init_test_decl = java_treetreehash_new
732 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
733 if (!*init_test_decl)
734 *init_test_decl = (tree)n->value;
736 /* This fixes a weird case.
738 The front end assumes that once we have called a method that
739 initializes some class, we can assume the class is initialized. It
740 does this by setting the DECL_INITIAL of the init_test_decl for that
741 class, and no initializations are emitted for that class.
743 However, what if the method that is supposed to do the initialization
744 is itself inlined in the caller? When expanding the called method
745 we'll assume that the class initialization has already been done,
746 because the DECL_INITIAL of the init_test_decl is set.
748 To fix this we remove the DECL_INITIAL (in the caller scope) of all
749 the init_test_decls corresponding to classes initialized by the
750 inlined method. This makes the caller no longer assume that the
751 method being inlined does any class initializations. */
752 DECL_INITIAL (*init_test_decl) = NULL;
754 return true;
757 /* Merge the DECL_FUNCTION_INIT_TEST_TABLE from the function we're
758 inlining. */
760 void
761 java_inlining_merge_static_initializers (tree fn, void *decl_map)
763 htab_traverse
764 (DECL_FUNCTION_INIT_TEST_TABLE (fn),
765 merge_init_test_initialization, decl_map);
768 /* Lookup a DECL_FUNCTION_INIT_TEST_TABLE entry in the method we're
769 inlining into. If we already have a corresponding entry in that
770 class we don't need to create another one, so we create a mapping
771 from the variable in the inlined class to the corresponding
772 pre-existing one. */
774 static int
775 inline_init_test_initialization (void **entry, void *x)
777 struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
778 splay_tree decl_map = (splay_tree)x;
780 tree h = java_treetreehash_find
781 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
782 if (! h)
783 return true;
784 splay_tree_insert (decl_map,
785 (splay_tree_key) ite->value,
786 (splay_tree_value) h);
787 return true;
790 /* Look up the boolean variables in the DECL_FUNCTION_INIT_TEST_TABLE
791 of a method being inlined. For each hone, if we already have a
792 variable associated with the same class in the method being inlined
793 into, create a new mapping for it. */
795 void
796 java_inlining_map_static_initializers (tree fn, void *decl_map)
798 htab_traverse
799 (DECL_FUNCTION_INIT_TEST_TABLE (fn),
800 inline_init_test_initialization, decl_map);
803 /* Avoid voluminous output for deep recursion of compound exprs. */
805 static void
806 dump_compound_expr (dump_info_p di, tree t)
808 int i;
810 for (i=0; i<2; i++)
812 switch (TREE_CODE (TREE_OPERAND (t, i)))
814 case COMPOUND_EXPR:
815 dump_compound_expr (di, TREE_OPERAND (t, i));
816 break;
818 default:
819 dump_child ("expr", TREE_OPERAND (t, i));
824 static bool
825 java_dump_tree (void *dump_info, tree t)
827 enum tree_code code;
828 dump_info_p di = (dump_info_p) dump_info;
830 /* Figure out what kind of node this is. */
831 code = TREE_CODE (t);
833 switch (code)
835 case FUNCTION_DECL:
836 dump_child ("args", DECL_ARGUMENTS (t));
837 if (DECL_EXTERNAL (t))
838 dump_string (di, "undefined");
839 if (TREE_PUBLIC (t))
840 dump_string (di, "extern");
841 else
842 dump_string (di, "static");
843 if (DECL_LANG_SPECIFIC (t) && !dump_flag (di, TDF_SLIM, t))
844 dump_child ("inline body", DECL_SAVED_TREE (t));
845 return true;
847 case RETURN_EXPR:
848 dump_child ("expr", TREE_OPERAND (t, 0));
849 return true;
851 case GOTO_EXPR:
852 dump_child ("goto", TREE_OPERAND (t, 0));
853 return true;
855 case LABEL_EXPR:
856 dump_child ("label", TREE_OPERAND (t, 0));
857 return true;
859 case BLOCK:
860 if (BLOCK_EXPR_BODY (t))
862 tree local = BLOCK_VARS (t);
863 while (local)
865 tree next = TREE_CHAIN (local);
866 dump_child ("var", local);
867 local = next;
871 tree block = BLOCK_EXPR_BODY (t);
872 dump_child ("body", block);
873 block = TREE_CHAIN (block);
876 return true;
878 case COMPOUND_EXPR:
879 if (!dump_flag (di, TDF_SLIM, t))
880 return false;
881 dump_compound_expr (di, t);
882 return true;
884 default:
885 break;
887 return false;
890 /* Java calls can't, in general, be sibcalls because we need an
891 accurate stack trace in order to guarantee correct operation of
892 methods such as Class.forName(String) and
893 SecurityManager.getClassContext(). */
895 static bool
896 java_decl_ok_for_sibcall (const_tree decl)
898 return (decl != NULL && DECL_CONTEXT (decl) == output_class
899 && !DECL_UNINLINABLE (decl));
902 static enum classify_record
903 java_classify_record (tree type)
905 if (! CLASS_P (type))
906 return RECORD_IS_STRUCT;
908 if (CLASS_INTERFACE (TYPE_NAME (type)))
909 return RECORD_IS_INTERFACE;
911 return RECORD_IS_CLASS;
914 static GTY(()) tree java_eh_personality_decl;
916 static tree
917 java_eh_personality (void)
919 if (!java_eh_personality_decl)
920 java_eh_personality_decl = build_personality_function ("gcj");
921 return java_eh_personality_decl;
924 #include "gt-java-lang.h"