Merged with mainline at revision 128810.
[official-gcc.git] / gcc / java / lang.c
blob333eb8c32a1bb7c7596e8eb33f3c6c2186bf7d20
1 /* Java(TM) language-specific utility routines.
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007 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 "rtl.h"
34 #include "expr.h"
35 #include "java-tree.h"
36 #include "jcf.h"
37 #include "toplev.h"
38 #include "langhooks.h"
39 #include "langhooks-def.h"
40 #include "flags.h"
41 #include "ggc.h"
42 #include "diagnostic.h"
43 #include "tree-inline.h"
44 #include "splay-tree.h"
45 #include "tree-dump.h"
46 #include "opts.h"
47 #include "options.h"
49 static bool java_init (void);
50 static void java_finish (void);
51 static unsigned int java_init_options (unsigned int, const char **);
52 static bool java_post_options (const char **);
54 static int java_handle_option (size_t scode, const char *arg, int value);
55 static void put_decl_string (const char *, int);
56 static void put_decl_node (tree);
57 static void java_print_error_function (diagnostic_context *, const char *);
58 static int merge_init_test_initialization (void * *, void *);
59 static int inline_init_test_initialization (void * *, void *);
60 static bool java_dump_tree (void *, tree);
61 static void dump_compound_expr (dump_info_p, tree);
62 static bool java_decl_ok_for_sibcall (const_tree);
63 static tree java_get_callee_fndecl (const_tree);
64 static void java_clear_binding_stack (void);
66 #ifndef TARGET_OBJECT_SUFFIX
67 # define TARGET_OBJECT_SUFFIX ".o"
68 #endif
70 /* Table indexed by tree code giving a string containing a character
71 classifying the tree code. Possibilities are
72 t, d, s, c, r, <, 1 and 2. See java/java-tree.def for details. */
74 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
76 const enum tree_code_class tree_code_type[] = {
77 #include "tree.def"
78 tcc_exceptional,
79 #include "java-tree.def"
81 #undef DEFTREECODE
83 /* Table indexed by tree code giving number of expression
84 operands beyond the fixed part of the node structure.
85 Not used for types or decls. */
87 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
89 const unsigned char tree_code_length[] = {
90 #include "tree.def"
92 #include "java-tree.def"
94 #undef DEFTREECODE
96 /* Names of tree components.
97 Used for printing out the tree and error messages. */
98 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
100 const char *const tree_code_name[] = {
101 #include "tree.def"
102 "@@dummy",
103 #include "java-tree.def"
105 #undef DEFTREECODE
107 /* Table of machine-independent attributes. */
108 const struct attribute_spec java_attribute_table[] =
110 { "nonnull", 0, -1, false, true, true,
111 NULL },
112 { NULL, 0, 0, false, false, false, NULL }
115 /* Used to avoid printing error messages with bogus function
116 prototypes. Starts out false. */
117 static bool inhibit_error_function_printing;
119 const char *resource_name;
121 /* When nonzero, -Wall was turned on. */
122 int flag_wall = 0;
124 /* When nonzero, report use of deprecated classes, methods, or fields. */
125 int flag_deprecated = 1;
127 /* When zero, don't optimize static class initialization. This flag shouldn't
128 be tested alone, use STATIC_CLASS_INITIALIZATION_OPTIMIZATION_P instead. */
129 /* FIXME: Make this work with gimplify. */
130 /* int flag_optimize_sci = 0; */
132 /* Don't attempt to verify invocations. */
133 int flag_verify_invocations = 0;
135 /* When nonzero, print extra version information. */
136 static int v_flag = 0;
138 JCF *current_jcf;
140 /* Variable controlling how dependency tracking is enabled in
141 java_init. */
142 static int dependency_tracking = 0;
144 /* Flag values for DEPENDENCY_TRACKING. */
145 #define DEPEND_SET_FILE 1
146 #define DEPEND_ENABLE 2
147 #define DEPEND_TARGET_SET 4
148 #define DEPEND_FILE_ALREADY_SET 8
150 struct language_function GTY(())
152 int unused;
155 #undef LANG_HOOKS_NAME
156 #define LANG_HOOKS_NAME "GNU Java"
157 #undef LANG_HOOKS_INIT
158 #define LANG_HOOKS_INIT java_init
159 #undef LANG_HOOKS_FINISH
160 #define LANG_HOOKS_FINISH java_finish
161 #undef LANG_HOOKS_INIT_OPTIONS
162 #define LANG_HOOKS_INIT_OPTIONS java_init_options
163 #undef LANG_HOOKS_HANDLE_OPTION
164 #define LANG_HOOKS_HANDLE_OPTION java_handle_option
165 #undef LANG_HOOKS_POST_OPTIONS
166 #define LANG_HOOKS_POST_OPTIONS java_post_options
167 #undef LANG_HOOKS_PARSE_FILE
168 #define LANG_HOOKS_PARSE_FILE java_parse_file
169 #undef LANG_HOOKS_MARK_ADDRESSABLE
170 #define LANG_HOOKS_MARK_ADDRESSABLE java_mark_addressable
171 #undef LANG_HOOKS_DUP_LANG_SPECIFIC_DECL
172 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL java_dup_lang_specific_decl
173 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
174 #define LANG_HOOKS_DECL_PRINTABLE_NAME lang_printable_name
175 #undef LANG_HOOKS_PRINT_ERROR_FUNCTION
176 #define LANG_HOOKS_PRINT_ERROR_FUNCTION java_print_error_function
178 #undef LANG_HOOKS_TYPE_FOR_MODE
179 #define LANG_HOOKS_TYPE_FOR_MODE java_type_for_mode
180 #undef LANG_HOOKS_TYPE_FOR_SIZE
181 #define LANG_HOOKS_TYPE_FOR_SIZE java_type_for_size
183 #undef LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN
184 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN java_dump_tree
186 #undef LANG_HOOKS_GIMPLIFY_EXPR
187 #define LANG_HOOKS_GIMPLIFY_EXPR java_gimplify_expr
189 #undef LANG_HOOKS_DECL_OK_FOR_SIBCALL
190 #define LANG_HOOKS_DECL_OK_FOR_SIBCALL java_decl_ok_for_sibcall
192 #undef LANG_HOOKS_GET_CALLEE_FNDECL
193 #define LANG_HOOKS_GET_CALLEE_FNDECL java_get_callee_fndecl
195 #undef LANG_HOOKS_CLEAR_BINDING_STACK
196 #define LANG_HOOKS_CLEAR_BINDING_STACK java_clear_binding_stack
198 #undef LANG_HOOKS_SET_DECL_ASSEMBLER_NAME
199 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME java_mangle_decl
201 #undef LANG_HOOKS_ATTRIBUTE_TABLE
202 #define LANG_HOOKS_ATTRIBUTE_TABLE java_attribute_table
204 /* Each front end provides its own. */
205 const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
208 * process java-specific compiler command-line options
209 * return 0, but do not complain if the option is not recognized.
211 static int
212 java_handle_option (size_t scode, const char *arg, int value)
214 enum opt_code code = (enum opt_code) scode;
216 switch (code)
218 case OPT_I:
219 jcf_path_include_arg (arg);
220 break;
222 case OPT_M:
223 jcf_dependency_init (1);
224 dependency_tracking |= DEPEND_ENABLE;
225 break;
227 case OPT_MD_:
228 jcf_dependency_init (1);
229 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
230 break;
232 case OPT_MF:
233 jcf_dependency_set_dep_file (arg);
234 dependency_tracking |= DEPEND_FILE_ALREADY_SET;
235 break;
237 case OPT_MM:
238 jcf_dependency_init (0);
239 dependency_tracking |= DEPEND_ENABLE;
240 break;
242 case OPT_MMD_:
243 jcf_dependency_init (0);
244 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
245 break;
247 case OPT_MP:
248 jcf_dependency_print_dummies ();
249 break;
251 case OPT_MT:
252 jcf_dependency_set_target (arg);
253 dependency_tracking |= DEPEND_TARGET_SET;
254 break;
256 case OPT_Wall:
257 flag_wall = value;
258 /* When -Wall given, enable -Wunused. We do this because the C
259 compiler does it, and people expect it. */
260 set_Wunused (value);
261 break;
263 case OPT_fenable_assertions_:
264 add_enable_assert (arg, value);
265 break;
267 case OPT_fenable_assertions:
268 add_enable_assert ("", value);
269 break;
271 case OPT_fdisable_assertions_:
272 add_enable_assert (arg, !value);
273 break;
275 case OPT_fdisable_assertions:
276 add_enable_assert ("", !value);
277 break;
279 case OPT_fassume_compiled_:
280 add_assume_compiled (arg, !value);
281 break;
283 case OPT_fassume_compiled:
284 add_assume_compiled ("", !value);
285 break;
287 case OPT_fbootclasspath_:
288 jcf_path_bootclasspath_arg (arg);
289 break;
291 case OPT_faux_classpath:
292 case OPT_fclasspath_:
293 case OPT_fCLASSPATH_:
294 jcf_path_classpath_arg (arg);
295 break;
297 case OPT_fcompile_resource_:
298 resource_name = arg;
299 break;
301 case OPT_fdump_:
302 if (!dump_switch_p (arg))
303 return 0;
304 break;
306 case OPT_fencoding_:
307 /* Nothing. */
308 break;
310 case OPT_fextdirs_:
311 jcf_path_extdirs_arg (arg);
312 break;
314 case OPT_foutput_class_dir_:
315 /* FIXME: remove; this is handled by ecj1 now. */
316 break;
318 case OPT_version:
319 v_flag = 1;
320 break;
322 case OPT_fsource_filename_:
323 java_read_sourcefilenames (arg);
324 break;
326 default:
327 if (cl_options[code].flags & CL_Java)
328 break;
329 gcc_unreachable ();
332 return 1;
335 /* Global open file. */
336 FILE *finput;
338 static bool
339 java_init (void)
341 /* FIXME: Indirect dispatch isn't yet compatible with static class
342 init optimization. */
343 if (flag_indirect_dispatch)
344 always_initialize_class_p = true;
346 if (!flag_indirect_dispatch)
347 flag_indirect_classes = false;
349 jcf_path_seal (v_flag);
351 java_init_decl_processing ();
353 using_eh_for_cleanups ();
355 return true;
358 static void
359 java_finish (void)
361 jcf_dependency_write ();
364 /* Buffer used by lang_printable_name. */
365 static char *decl_buf = NULL;
367 /* Allocated size of decl_buf. */
368 static int decl_buflen = 0;
370 /* Length of used part of decl_buf; position for next character. */
371 static int decl_bufpos = 0;
373 /* Append the string STR to decl_buf.
374 It length is given by LEN; -1 means the string is nul-terminated. */
376 static void
377 put_decl_string (const char *str, int len)
379 if (len < 0)
380 len = strlen (str);
381 if (decl_bufpos + len >= decl_buflen)
383 if (decl_buf == NULL)
385 decl_buflen = len + 100;
386 decl_buf = XNEWVEC (char, decl_buflen);
388 else
390 decl_buflen *= 2;
391 decl_buf = xrealloc (decl_buf, decl_buflen);
394 strcpy (decl_buf + decl_bufpos, str);
395 decl_bufpos += len;
398 /* Append to decl_buf a printable name for NODE. */
400 static void
401 put_decl_node (tree node)
403 int was_pointer = 0;
404 if (TREE_CODE (node) == POINTER_TYPE)
406 node = TREE_TYPE (node);
407 was_pointer = 1;
409 if (DECL_P (node) && DECL_NAME (node) != NULL_TREE)
411 if (TREE_CODE (node) == FUNCTION_DECL)
413 /* We want to print the type the DECL belongs to. We don't do
414 that when we handle constructors. */
415 if (! DECL_CONSTRUCTOR_P (node)
416 && ! DECL_ARTIFICIAL (node) && DECL_CONTEXT (node))
418 put_decl_node (TYPE_NAME (DECL_CONTEXT (node)));
419 put_decl_string (".", 1);
421 if (! DECL_CONSTRUCTOR_P (node))
422 put_decl_node (DECL_NAME (node));
423 if (TREE_TYPE (node) != NULL_TREE)
425 int i = 0;
426 tree args = TYPE_ARG_TYPES (TREE_TYPE (node));
427 if (TREE_CODE (TREE_TYPE (node)) == METHOD_TYPE)
428 args = TREE_CHAIN (args);
429 put_decl_string ("(", 1);
430 for ( ; args != end_params_node; args = TREE_CHAIN (args), i++)
432 if (i > 0)
433 put_decl_string (",", 1);
434 put_decl_node (TREE_VALUE (args));
436 put_decl_string (")", 1);
439 else
440 put_decl_node (DECL_NAME (node));
442 else if (TYPE_P (node) && TYPE_NAME (node) != NULL_TREE)
444 if (TREE_CODE (node) == RECORD_TYPE && TYPE_ARRAY_P (node))
446 put_decl_node (TYPE_ARRAY_ELEMENT (node));
447 put_decl_string("[]", 2);
449 else if (node == promoted_byte_type_node)
450 put_decl_string ("byte", 4);
451 else if (node == promoted_short_type_node)
452 put_decl_string ("short", 5);
453 else if (node == promoted_char_type_node)
454 put_decl_string ("char", 4);
455 else if (node == promoted_boolean_type_node)
456 put_decl_string ("boolean", 7);
457 else if (node == void_type_node && was_pointer)
458 put_decl_string ("null", 4);
459 else
460 put_decl_node (TYPE_NAME (node));
462 else if (TREE_CODE (node) == IDENTIFIER_NODE)
463 put_decl_string (IDENTIFIER_POINTER (node), IDENTIFIER_LENGTH (node));
464 else
465 put_decl_string ("<unknown>", -1);
468 /* Return a user-friendly name for DECL.
469 The resulting string is only valid until the next call.
470 The value of the hook decl_printable_name is this function,
471 which is also called directly by java_print_error_function. */
473 const char *
474 lang_printable_name (tree decl, int v)
476 decl_bufpos = 0;
477 if (v == 0 && TREE_CODE (decl) == FUNCTION_DECL)
478 put_decl_node (DECL_NAME (decl));
479 else
480 put_decl_node (decl);
481 put_decl_string ("", 1);
482 return decl_buf;
485 /* Print on stderr the current class and method context. This function
486 is the value of the hook print_error_function. */
488 static GTY(()) tree last_error_function_context;
489 static GTY(()) tree last_error_function;
490 static void
491 java_print_error_function (diagnostic_context *context ATTRIBUTE_UNUSED,
492 const char *file)
494 /* Don't print error messages with bogus function prototypes. */
495 if (inhibit_error_function_printing)
496 return;
498 if (current_function_decl != NULL
499 && DECL_CONTEXT (current_function_decl) != last_error_function_context)
501 if (file)
502 fprintf (stderr, "%s: ", file);
504 last_error_function_context = DECL_CONTEXT (current_function_decl);
505 fprintf (stderr, "In class '%s':\n",
506 lang_printable_name (last_error_function_context, 0));
508 if (last_error_function != current_function_decl)
510 if (file)
511 fprintf (stderr, "%s: ", file);
513 if (current_function_decl == NULL)
514 fprintf (stderr, "At top level:\n");
515 else
517 const char *name = lang_printable_name (current_function_decl, 2);
518 fprintf (stderr, "In %s '%s':\n",
519 (DECL_CONSTRUCTOR_P (current_function_decl) ? "constructor"
520 : "method"),
521 name);
524 last_error_function = current_function_decl;
529 /* Called to install the PRINT_ERROR_FUNCTION hook differently
530 according to LEVEL. LEVEL is 1 during early parsing, when function
531 prototypes aren't fully resolved. java_print_error_function is set
532 so it doesn't print incomplete function prototypes. When LEVEL is
533 2, function prototypes are fully resolved and can be printed when
534 reporting errors. */
536 void
537 lang_init_source (int level)
539 inhibit_error_function_printing = (level == 1);
542 static unsigned int
543 java_init_options (unsigned int argc ATTRIBUTE_UNUSED,
544 const char **argv ATTRIBUTE_UNUSED)
546 flag_bounds_check = 1;
547 flag_exceptions = 1;
548 flag_non_call_exceptions = 1;
550 /* In Java floating point operations never trap. */
551 flag_trapping_math = 0;
553 /* In Java arithmetic overflow always wraps around. */
554 flag_wrapv = 1;
556 /* Java requires left-to-right evaluation of subexpressions. */
557 flag_evaluation_order = 1;
559 /* Unit at a time is disabled for Java because it is considered
560 too expensive. */
561 no_unit_at_a_time_default = 1;
563 jcf_path_init ();
565 return CL_Java;
568 /* Post-switch processing. */
569 static bool
570 java_post_options (const char **pfilename)
572 const char *filename = *pfilename;
574 /* Use tree inlining. */
575 if (!flag_no_inline)
576 flag_no_inline = 1;
577 if (flag_inline_functions)
578 flag_inline_trees = 2;
580 /* An absolute requirement: if we're not using indirect dispatch, we
581 must always verify everything. */
582 if (! flag_indirect_dispatch)
583 flag_verify_invocations = true;
585 if (flag_reduced_reflection)
587 if (flag_indirect_dispatch)
588 error ("-findirect-dispatch is incompatible "
589 "with -freduced-reflection");
590 if (flag_jni)
591 error ("-fjni is incompatible with -freduced-reflection");
594 /* Open input file. */
596 if (filename == 0 || !strcmp (filename, "-"))
598 finput = stdin;
599 filename = "stdin";
601 if (dependency_tracking)
602 error ("can't do dependency tracking with input from stdin");
604 else
606 if (dependency_tracking)
608 char *dot;
610 /* If the target is set and the output filename is set, then
611 there's no processing to do here. Otherwise we must
612 compute one or the other. */
613 if (! ((dependency_tracking & DEPEND_TARGET_SET)
614 && (dependency_tracking & DEPEND_FILE_ALREADY_SET)))
616 dot = strrchr (filename, '.');
617 if (dot == NULL)
618 error ("couldn't determine target name for dependency tracking");
619 else
621 char *buf = XNEWVEC (char, dot - filename +
622 3 + sizeof (TARGET_OBJECT_SUFFIX));
623 strncpy (buf, filename, dot - filename);
625 /* If emitting class files, we might have multiple
626 targets. The class generation code takes care of
627 registering them. Otherwise we compute the
628 target name here. */
629 if ((dependency_tracking & DEPEND_TARGET_SET))
630 ; /* Nothing. */
631 else
633 strcpy (buf + (dot - filename), TARGET_OBJECT_SUFFIX);
634 jcf_dependency_set_target (buf);
637 if ((dependency_tracking & DEPEND_FILE_ALREADY_SET))
638 ; /* Nothing. */
639 else if ((dependency_tracking & DEPEND_SET_FILE))
641 strcpy (buf + (dot - filename), ".d");
642 jcf_dependency_set_dep_file (buf);
644 else
645 jcf_dependency_set_dep_file ("-");
647 free (buf);
652 #ifdef USE_MAPPED_LOCATION
653 linemap_add (line_table, LC_ENTER, false, filename, 0);
654 linemap_add (line_table, LC_RENAME, false, "<built-in>", 0);
655 #endif
657 /* Initialize the compiler back end. */
658 return false;
661 /* Return either DECL or its known constant value (if it has one). */
663 tree
664 decl_constant_value (tree decl)
666 if (/* Don't change a variable array bound or initial value to a constant
667 in a place where a variable is invalid. */
668 current_function_decl != 0
669 && ! TREE_THIS_VOLATILE (decl)
670 && TREE_READONLY (decl)
671 && DECL_INITIAL (decl) != 0
672 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
673 /* This is invalid if initial value is not constant.
674 If it has either a function call, a memory reference,
675 or a variable, then re-evaluating it could give different results. */
676 && TREE_CONSTANT (DECL_INITIAL (decl))
677 /* Check for cases where this is sub-optimal, even though valid. */
678 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
679 return DECL_INITIAL (decl);
680 return decl;
683 /* Every call to a static constructor has an associated boolean
684 variable which is in the outermost scope of the calling method.
685 This variable is used to avoid multiple calls to the static
686 constructor for each class.
688 It looks something like this:
690 foo ()
692 boolean dummy = OtherClass.is_initialized;
696 if (! dummy)
697 OtherClass.initialize();
699 ... use OtherClass.data ...
702 Each of these boolean variables has an entry in the
703 DECL_FUNCTION_INIT_TEST_TABLE of a method. When inlining a method
704 we must merge the DECL_FUNCTION_INIT_TEST_TABLE from the function
705 being inlined and create the boolean variables in the outermost
706 scope of the method being inlined into. */
708 /* Create a mapping from a boolean variable in a method being inlined
709 to one in the scope of the method being inlined into. */
711 static int
712 merge_init_test_initialization (void **entry, void *x)
714 struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
715 splay_tree decl_map = (splay_tree)x;
716 splay_tree_node n;
717 tree *init_test_decl;
719 /* See if we have remapped this declaration. If we haven't there's
720 a bug in the inliner. */
721 n = splay_tree_lookup (decl_map, (splay_tree_key) ite->value);
722 gcc_assert (n);
724 /* Create a new entry for the class and its remapped boolean
725 variable. If we already have a mapping for this class we've
726 already initialized it, so don't overwrite the value. */
727 init_test_decl = java_treetreehash_new
728 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
729 if (!*init_test_decl)
730 *init_test_decl = (tree)n->value;
732 /* This fixes a weird case.
734 The front end assumes that once we have called a method that
735 initializes some class, we can assume the class is initialized. It
736 does this by setting the DECL_INITIAL of the init_test_decl for that
737 class, and no initializations are emitted for that class.
739 However, what if the method that is supposed to do the initialization
740 is itself inlined in the caller? When expanding the called method
741 we'll assume that the class initialization has already been done,
742 because the DECL_INITIAL of the init_test_decl is set.
744 To fix this we remove the DECL_INITIAL (in the caller scope) of all
745 the init_test_decls corresponding to classes initialized by the
746 inlined method. This makes the caller no longer assume that the
747 method being inlined does any class initializations. */
748 DECL_INITIAL (*init_test_decl) = NULL;
750 return true;
753 /* Merge the DECL_FUNCTION_INIT_TEST_TABLE from the function we're
754 inlining. */
756 void
757 java_inlining_merge_static_initializers (tree fn, void *decl_map)
759 htab_traverse
760 (DECL_FUNCTION_INIT_TEST_TABLE (fn),
761 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. */
770 static int
771 inline_init_test_initialization (void **entry, void *x)
773 struct treetreehash_entry *ite = (struct treetreehash_entry *) *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 htab_traverse
795 (DECL_FUNCTION_INIT_TEST_TABLE (fn),
796 inline_init_test_initialization, decl_map);
799 /* Avoid voluminous output for deep recursion of compound exprs. */
801 static void
802 dump_compound_expr (dump_info_p di, tree t)
804 int i;
806 for (i=0; i<2; i++)
808 switch (TREE_CODE (TREE_OPERAND (t, i)))
810 case COMPOUND_EXPR:
811 dump_compound_expr (di, TREE_OPERAND (t, i));
812 break;
814 default:
815 dump_child ("expr", TREE_OPERAND (t, i));
820 static bool
821 java_dump_tree (void *dump_info, tree t)
823 enum tree_code code;
824 dump_info_p di = (dump_info_p) dump_info;
826 /* Figure out what kind of node this is. */
827 code = TREE_CODE (t);
829 switch (code)
831 case FUNCTION_DECL:
832 dump_child ("args", DECL_ARGUMENTS (t));
833 if (DECL_EXTERNAL (t))
834 dump_string (di, "undefined");
835 if (TREE_PUBLIC (t))
836 dump_string (di, "extern");
837 else
838 dump_string (di, "static");
839 if (DECL_LANG_SPECIFIC (t) && !dump_flag (di, TDF_SLIM, t))
840 dump_child ("inline body", DECL_SAVED_TREE (t));
841 return true;
843 case RETURN_EXPR:
844 dump_child ("expr", TREE_OPERAND (t, 0));
845 return true;
847 case GOTO_EXPR:
848 dump_child ("goto", TREE_OPERAND (t, 0));
849 return true;
851 case LABEL_EXPR:
852 dump_child ("label", TREE_OPERAND (t, 0));
853 return true;
855 case BLOCK:
856 if (BLOCK_EXPR_BODY (t))
858 tree local = BLOCK_VARS (t);
859 while (local)
861 tree next = TREE_CHAIN (local);
862 dump_child ("var", local);
863 local = next;
867 tree block = BLOCK_EXPR_BODY (t);
868 dump_child ("body", block);
869 block = TREE_CHAIN (block);
872 return true;
874 case COMPOUND_EXPR:
875 if (!dump_flag (di, TDF_SLIM, t))
876 return false;
877 dump_compound_expr (di, t);
878 return true;
880 default:
881 break;
883 return false;
886 /* Java calls can't, in general, be sibcalls because we need an
887 accurate stack trace in order to guarantee correct operation of
888 methods such as Class.forName(String) and
889 SecurityManager.getClassContext(). */
891 static bool
892 java_decl_ok_for_sibcall (const_tree decl)
894 return (decl != NULL && DECL_CONTEXT (decl) == output_class
895 && DECL_INLINE (decl));
898 /* Given a call_expr, try to figure out what its target might be. In
899 the case of an indirection via the atable, search for the decl. If
900 the decl is external, we return NULL. If we don't, the optimizer
901 will replace the indirection with a direct call, which undoes the
902 purpose of the atable indirection. */
903 static tree
904 java_get_callee_fndecl (const_tree call_expr)
906 tree method, table, element, atable_methods;
908 HOST_WIDE_INT index;
910 /* FIXME: This is disabled because we end up passing calls through
911 the PLT, and we do NOT want to do that. */
912 return NULL;
914 if (TREE_CODE (call_expr) != CALL_EXPR)
915 return NULL;
916 method = CALL_EXPR_FN (call_expr);
917 STRIP_NOPS (method);
918 if (TREE_CODE (method) != ARRAY_REF)
919 return NULL;
920 table = TREE_OPERAND (method, 0);
921 if (! DECL_LANG_SPECIFIC(table)
922 || !DECL_OWNER (table)
923 || TYPE_ATABLE_DECL (DECL_OWNER (table)) != table)
924 return NULL;
926 atable_methods = TYPE_ATABLE_METHODS (DECL_OWNER (table));
927 index = TREE_INT_CST_LOW (TREE_OPERAND (method, 1));
929 /* FIXME: Replace this for loop with a hash table lookup. */
930 for (element = atable_methods; element; element = TREE_CHAIN (element))
932 if (index == 1)
934 tree purpose = TREE_PURPOSE (element);
935 if (TREE_CODE (purpose) == FUNCTION_DECL
936 && ! DECL_EXTERNAL (purpose))
937 return purpose;
938 else
939 return NULL;
941 --index;
944 return NULL;
948 /* Clear the binding stack. */
949 static void
950 java_clear_binding_stack (void)
952 while (!global_bindings_p ())
953 poplevel (0, 0, 0);
956 #include "gt-java-lang.h"