Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / java / lang.c
blob4ade9364113d55416f95b3c1715c47d62036e5fc
1 /* Java(TM) language-specific utility routines.
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
3 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 2, 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 COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
22 Java and all Java-based marks are trademarks or registered trademarks
23 of Sun Microsystems, Inc. in the United States and other countries.
24 The Free Software Foundation is independent of Sun Microsystems, Inc. */
26 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "tree.h"
33 #include "input.h"
34 #include "rtl.h"
35 #include "expr.h"
36 #include "java-tree.h"
37 #include "jcf.h"
38 #include "toplev.h"
39 #include "langhooks.h"
40 #include "langhooks-def.h"
41 #include "flags.h"
42 #include "ggc.h"
43 #include "diagnostic.h"
44 #include "tree-inline.h"
45 #include "splay-tree.h"
46 #include "tree-dump.h"
47 #include "opts.h"
48 #include "options.h"
50 static bool java_init (void);
51 static void java_finish (void);
52 static unsigned int java_init_options (unsigned int, const char **);
53 static bool java_post_options (const char **);
55 static int java_handle_option (size_t scode, const char *arg, int value);
56 static void put_decl_string (const char *, int);
57 static void put_decl_node (tree);
58 static void java_print_error_function (diagnostic_context *, const char *);
59 static tree java_tree_inlining_walk_subtrees (tree *, int *, walk_tree_fn,
60 void *, struct pointer_set_t *);
61 static int merge_init_test_initialization (void * *, void *);
62 static int inline_init_test_initialization (void * *, void *);
63 static bool java_can_use_bit_fields_p (void);
64 static bool java_dump_tree (void *, tree);
65 static void dump_compound_expr (dump_info_p, tree);
66 static bool java_decl_ok_for_sibcall (tree);
67 static tree java_get_callee_fndecl (tree);
68 static void java_clear_binding_stack (void);
70 #ifndef TARGET_OBJECT_SUFFIX
71 # define TARGET_OBJECT_SUFFIX ".o"
72 #endif
74 /* Table indexed by tree code giving a string containing a character
75 classifying the tree code. Possibilities are
76 t, d, s, c, r, <, 1 and 2. See java/java-tree.def for details. */
78 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
80 const enum tree_code_class tree_code_type[] = {
81 #include "tree.def"
82 tcc_exceptional,
83 #include "java-tree.def"
85 #undef DEFTREECODE
87 /* Table indexed by tree code giving number of expression
88 operands beyond the fixed part of the node structure.
89 Not used for types or decls. */
91 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
93 const unsigned char tree_code_length[] = {
94 #include "tree.def"
96 #include "java-tree.def"
98 #undef DEFTREECODE
100 /* Names of tree components.
101 Used for printing out the tree and error messages. */
102 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
104 const char *const tree_code_name[] = {
105 #include "tree.def"
106 "@@dummy",
107 #include "java-tree.def"
109 #undef DEFTREECODE
111 /* Used to avoid printing error messages with bogus function
112 prototypes. Starts out false. */
113 static bool inhibit_error_function_printing;
115 int compiling_from_source;
117 const char *resource_name;
119 /* When nonzero, -Wall was turned on. */
120 int flag_wall = 0;
122 /* The encoding of the source file. */
123 const char *current_encoding = NULL;
125 /* When nonzero, report use of deprecated classes, methods, or fields. */
126 int flag_deprecated = 1;
128 /* When zero, don't optimize static class initialization. This flag shouldn't
129 be tested alone, use STATIC_CLASS_INITIALIZATION_OPTIMIZATION_P instead. */
130 /* FIXME: Make this work with gimplify. */
131 /* int flag_optimize_sci = 0; */
133 /* Don't attempt to verify invocations. */
134 int flag_verify_invocations = 0;
136 /* True if the new bytecode verifier should be used. */
137 int flag_new_verifier = 1;
139 /* When nonzero, print extra version information. */
140 static int v_flag = 0;
142 JCF *current_jcf;
144 /* Variable controlling how dependency tracking is enabled in
145 java_init. */
146 static int dependency_tracking = 0;
148 /* Flag values for DEPENDENCY_TRACKING. */
149 #define DEPEND_SET_FILE 1
150 #define DEPEND_ENABLE 2
151 #define DEPEND_TARGET_SET 4
152 #define DEPEND_FILE_ALREADY_SET 8
154 struct language_function GTY(())
156 int unused;
159 #undef LANG_HOOKS_NAME
160 #define LANG_HOOKS_NAME "GNU Java"
161 #undef LANG_HOOKS_INIT
162 #define LANG_HOOKS_INIT java_init
163 #undef LANG_HOOKS_FINISH
164 #define LANG_HOOKS_FINISH java_finish
165 #undef LANG_HOOKS_INIT_OPTIONS
166 #define LANG_HOOKS_INIT_OPTIONS java_init_options
167 #undef LANG_HOOKS_HANDLE_OPTION
168 #define LANG_HOOKS_HANDLE_OPTION java_handle_option
169 #undef LANG_HOOKS_POST_OPTIONS
170 #define LANG_HOOKS_POST_OPTIONS java_post_options
171 #undef LANG_HOOKS_PARSE_FILE
172 #define LANG_HOOKS_PARSE_FILE java_parse_file
173 #undef LANG_HOOKS_MARK_ADDRESSABLE
174 #define LANG_HOOKS_MARK_ADDRESSABLE java_mark_addressable
175 #undef LANG_HOOKS_DUP_LANG_SPECIFIC_DECL
176 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL java_dup_lang_specific_decl
177 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
178 #define LANG_HOOKS_DECL_PRINTABLE_NAME lang_printable_name
179 #undef LANG_HOOKS_PRINT_ERROR_FUNCTION
180 #define LANG_HOOKS_PRINT_ERROR_FUNCTION java_print_error_function
181 #undef LANG_HOOKS_CAN_USE_BIT_FIELDS_P
182 #define LANG_HOOKS_CAN_USE_BIT_FIELDS_P java_can_use_bit_fields_p
184 #undef LANG_HOOKS_TYPE_FOR_MODE
185 #define LANG_HOOKS_TYPE_FOR_MODE java_type_for_mode
186 #undef LANG_HOOKS_TYPE_FOR_SIZE
187 #define LANG_HOOKS_TYPE_FOR_SIZE java_type_for_size
188 #undef LANG_HOOKS_SIGNED_TYPE
189 #define LANG_HOOKS_SIGNED_TYPE java_signed_type
190 #undef LANG_HOOKS_UNSIGNED_TYPE
191 #define LANG_HOOKS_UNSIGNED_TYPE java_unsigned_type
192 #undef LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE
193 #define LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE java_signed_or_unsigned_type
195 #undef LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN
196 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN java_dump_tree
198 #undef LANG_HOOKS_GIMPLIFY_EXPR
199 #define LANG_HOOKS_GIMPLIFY_EXPR java_gimplify_expr
201 #undef LANG_HOOKS_TREE_INLINING_WALK_SUBTREES
202 #define LANG_HOOKS_TREE_INLINING_WALK_SUBTREES java_tree_inlining_walk_subtrees
204 #undef LANG_HOOKS_DECL_OK_FOR_SIBCALL
205 #define LANG_HOOKS_DECL_OK_FOR_SIBCALL java_decl_ok_for_sibcall
207 #undef LANG_HOOKS_GET_CALLEE_FNDECL
208 #define LANG_HOOKS_GET_CALLEE_FNDECL java_get_callee_fndecl
210 #undef LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION
211 #define LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION java_expand_body
213 #undef LANG_HOOKS_CLEAR_BINDING_STACK
214 #define LANG_HOOKS_CLEAR_BINDING_STACK java_clear_binding_stack
216 #undef LANG_HOOKS_SET_DECL_ASSEMBLER_NAME
217 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME java_mangle_decl
219 /* Each front end provides its own. */
220 const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
223 * process java-specific compiler command-line options
224 * return 0, but do not complain if the option is not recognized.
226 static int
227 java_handle_option (size_t scode, const char *arg, int value)
229 enum opt_code code = (enum opt_code) scode;
231 switch (code)
233 case OPT_I:
234 jcf_path_include_arg (arg);
235 break;
237 case OPT_M:
238 jcf_dependency_init (1);
239 dependency_tracking |= DEPEND_ENABLE;
240 break;
242 case OPT_MD_:
243 jcf_dependency_init (1);
244 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
245 break;
247 case OPT_MF:
248 jcf_dependency_set_dep_file (arg);
249 dependency_tracking |= DEPEND_FILE_ALREADY_SET;
250 break;
252 case OPT_MM:
253 jcf_dependency_init (0);
254 dependency_tracking |= DEPEND_ENABLE;
255 break;
257 case OPT_MMD_:
258 jcf_dependency_init (0);
259 dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
260 break;
262 case OPT_MP:
263 jcf_dependency_print_dummies ();
264 break;
266 case OPT_MT:
267 jcf_dependency_set_target (arg);
268 dependency_tracking |= DEPEND_TARGET_SET;
269 break;
271 case OPT_Wall:
272 flag_wall = value;
273 flag_redundant = value;
274 flag_extraneous_semicolon = value;
275 /* When -Wall given, enable -Wunused. We do this because the C
276 compiler does it, and people expect it. */
277 set_Wunused (value);
278 break;
280 case OPT_fenable_assertions_:
281 add_enable_assert (arg, value);
282 break;
284 case OPT_fenable_assertions:
285 add_enable_assert ("", value);
286 break;
288 case OPT_fdisable_assertions_:
289 add_enable_assert (arg, !value);
290 break;
292 case OPT_fdisable_assertions:
293 add_enable_assert ("", !value);
294 break;
296 case OPT_fassume_compiled_:
297 add_assume_compiled (arg, !value);
298 break;
300 case OPT_fassume_compiled:
301 add_assume_compiled ("", !value);
302 break;
304 case OPT_fbootclasspath_:
305 jcf_path_bootclasspath_arg (arg);
306 break;
308 case OPT_fclasspath_:
309 case OPT_fCLASSPATH_:
310 jcf_path_classpath_arg (arg);
311 break;
313 case OPT_fcompile_resource_:
314 resource_name = arg;
315 break;
317 case OPT_fdump_:
318 if (!dump_switch_p (arg))
319 return 0;
320 break;
322 case OPT_fencoding_:
323 current_encoding = arg;
324 break;
326 case OPT_fextdirs_:
327 jcf_path_extdirs_arg (arg);
328 break;
330 case OPT_foutput_class_dir_:
331 jcf_write_base_directory = arg;
332 break;
334 case OPT_version:
335 v_flag = 1;
336 break;
338 default:
339 if (cl_options[code].flags & CL_Java)
340 break;
341 abort();
344 return 1;
347 /* Global open file. */
348 FILE *finput;
350 static bool
351 java_init (void)
353 #if 0
354 extern int flag_minimal_debug;
355 flag_minimal_debug = 0;
356 #endif
358 /* FIXME: Indirect dispatch isn't yet compatible with static class
359 init optimization. */
360 if (flag_indirect_dispatch)
361 always_initialize_class_p = true;
363 /* Force minimum function alignment if g++ uses the least significant
364 bit of function pointers to store the virtual bit. This is required
365 to keep vtables compatible. */
366 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
367 && force_align_functions_log < 1)
368 force_align_functions_log = 1;
370 jcf_path_seal (v_flag);
372 java_init_decl_processing ();
374 using_eh_for_cleanups ();
376 return true;
379 static void
380 java_finish (void)
382 jcf_dependency_write ();
385 /* Buffer used by lang_printable_name. */
386 static char *decl_buf = NULL;
388 /* Allocated size of decl_buf. */
389 static int decl_buflen = 0;
391 /* Length of used part of decl_buf; position for next character. */
392 static int decl_bufpos = 0;
394 /* Append the string STR to decl_buf.
395 It length is given by LEN; -1 means the string is nul-terminated. */
397 static void
398 put_decl_string (const char *str, int len)
400 if (len < 0)
401 len = strlen (str);
402 if (decl_bufpos + len >= decl_buflen)
404 if (decl_buf == NULL)
406 decl_buflen = len + 100;
407 decl_buf = xmalloc (decl_buflen);
409 else
411 decl_buflen *= 2;
412 decl_buf = xrealloc (decl_buf, decl_buflen);
415 strcpy (decl_buf + decl_bufpos, str);
416 decl_bufpos += len;
419 /* Append to decl_buf a printable name for NODE. */
421 static void
422 put_decl_node (tree node)
424 int was_pointer = 0;
425 if (TREE_CODE (node) == POINTER_TYPE)
427 node = TREE_TYPE (node);
428 was_pointer = 1;
430 if (DECL_P (node) && DECL_NAME (node) != NULL_TREE)
432 if (TREE_CODE (node) == FUNCTION_DECL)
434 /* We want to print the type the DECL belongs to. We don't do
435 that when we handle constructors. */
436 if (! DECL_CONSTRUCTOR_P (node)
437 && ! DECL_ARTIFICIAL (node) && DECL_CONTEXT (node))
439 put_decl_node (TYPE_NAME (DECL_CONTEXT (node)));
440 put_decl_string (".", 1);
442 if (! DECL_CONSTRUCTOR_P (node))
443 put_decl_node (DECL_NAME (node));
444 if (TREE_TYPE (node) != NULL_TREE)
446 int i = 0;
447 tree args = TYPE_ARG_TYPES (TREE_TYPE (node));
448 if (TREE_CODE (TREE_TYPE (node)) == METHOD_TYPE)
449 args = TREE_CHAIN (args);
450 put_decl_string ("(", 1);
451 for ( ; args != end_params_node; args = TREE_CHAIN (args), i++)
453 if (i > 0)
454 put_decl_string (",", 1);
455 put_decl_node (TREE_VALUE (args));
457 put_decl_string (")", 1);
460 else
461 put_decl_node (DECL_NAME (node));
463 else if (TYPE_P (node) && TYPE_NAME (node) != NULL_TREE)
465 if (TREE_CODE (node) == RECORD_TYPE && TYPE_ARRAY_P (node))
467 put_decl_node (TYPE_ARRAY_ELEMENT (node));
468 put_decl_string("[]", 2);
470 else if (node == promoted_byte_type_node)
471 put_decl_string ("byte", 4);
472 else if (node == promoted_short_type_node)
473 put_decl_string ("short", 5);
474 else if (node == promoted_char_type_node)
475 put_decl_string ("char", 4);
476 else if (node == promoted_boolean_type_node)
477 put_decl_string ("boolean", 7);
478 else if (node == void_type_node && was_pointer)
479 put_decl_string ("null", 4);
480 else
481 put_decl_node (TYPE_NAME (node));
483 else if (TREE_CODE (node) == IDENTIFIER_NODE)
484 put_decl_string (IDENTIFIER_POINTER (node), IDENTIFIER_LENGTH (node));
485 else
486 put_decl_string ("<unknown>", -1);
489 /* Return a user-friendly name for DECL.
490 The resulting string is only valid until the next call.
491 The value of the hook decl_printable_name is this function,
492 which is also called directly by java_print_error_function. */
494 const char *
495 lang_printable_name (tree decl, int v)
497 decl_bufpos = 0;
498 if (v == 0 && TREE_CODE (decl) == FUNCTION_DECL)
499 put_decl_node (DECL_NAME (decl));
500 else
501 put_decl_node (decl);
502 put_decl_string ("", 1);
503 return decl_buf;
506 /* Print on stderr the current class and method context. This function
507 is the value of the hook print_error_function. */
509 static GTY(()) tree last_error_function_context;
510 static GTY(()) tree last_error_function;
511 static void
512 java_print_error_function (diagnostic_context *context ATTRIBUTE_UNUSED,
513 const char *file)
515 /* Don't print error messages with bogus function prototypes. */
516 if (inhibit_error_function_printing)
517 return;
519 if (current_function_decl != NULL
520 && DECL_CONTEXT (current_function_decl) != last_error_function_context)
522 if (file)
523 fprintf (stderr, "%s: ", file);
525 last_error_function_context = DECL_CONTEXT (current_function_decl);
526 fprintf (stderr, "In class '%s':\n",
527 lang_printable_name (last_error_function_context, 0));
529 if (last_error_function != current_function_decl)
531 if (file)
532 fprintf (stderr, "%s: ", file);
534 if (current_function_decl == NULL)
535 fprintf (stderr, "At top level:\n");
536 else
538 const char *name = lang_printable_name (current_function_decl, 2);
539 fprintf (stderr, "In %s '%s':\n",
540 (DECL_CONSTRUCTOR_P (current_function_decl) ? "constructor"
541 : "method"),
542 name);
545 last_error_function = current_function_decl;
550 /* Called to install the PRINT_ERROR_FUNCTION hook differently
551 according to LEVEL. LEVEL is 1 during early parsing, when function
552 prototypes aren't fully resolved. java_print_error_function is set
553 so it doesn't print incomplete function prototypes. When LEVEL is
554 2, function prototypes are fully resolved and can be printed when
555 reporting errors. */
557 void
558 lang_init_source (int level)
560 inhibit_error_function_printing = (level == 1);
563 static unsigned int
564 java_init_options (unsigned int argc ATTRIBUTE_UNUSED,
565 const char **argv ATTRIBUTE_UNUSED)
567 flag_bounds_check = 1;
568 flag_exceptions = 1;
569 flag_non_call_exceptions = 1;
571 /* In Java floating point operations never trap. */
572 flag_trapping_math = 0;
574 /* In Java arithmetic overflow always wraps around. */
575 flag_wrapv = 1;
577 /* Java requires left-to-right evaluation of subexpressions. */
578 flag_evaluation_order = 1;
580 jcf_path_init ();
582 return CL_Java;
585 static bool
586 java_can_use_bit_fields_p (void)
588 /* The bit-field optimizations cause problems when generating class
589 files. */
590 return flag_emit_class_files ? false : true;
593 /* Post-switch processing. */
594 static bool
595 java_post_options (const char **pfilename)
597 const char *filename = *pfilename;
599 /* Use tree inlining. */
600 if (!flag_no_inline)
601 flag_no_inline = 1;
602 if (flag_inline_functions)
603 flag_inline_trees = 2;
605 /* An absolute requirement: if we're not using indirect dispatch, we
606 must always verify everything. */
607 if (! flag_indirect_dispatch)
608 flag_verify_invocations = true;
609 else
611 /* If we are using indirect dispatch, then we want the new
612 verifier as well. */
613 flag_new_verifier = 1;
616 /* Open input file. */
618 if (filename == 0 || !strcmp (filename, "-"))
620 finput = stdin;
621 filename = "stdin";
623 if (dependency_tracking)
624 error ("can't do dependency tracking with input from stdin");
626 else
628 if (dependency_tracking)
630 char *dot;
632 /* If the target is set and the output filename is set, then
633 there's no processing to do here. Otherwise we must
634 compute one or the other. */
635 if (! ((dependency_tracking & DEPEND_TARGET_SET)
636 && (dependency_tracking & DEPEND_FILE_ALREADY_SET)))
638 dot = strrchr (filename, '.');
639 if (dot == NULL)
640 error ("couldn't determine target name for dependency tracking");
641 else
643 char *buf = xmalloc (dot - filename +
644 3 + sizeof (TARGET_OBJECT_SUFFIX));
645 strncpy (buf, filename, dot - filename);
647 /* If emitting class files, we might have multiple
648 targets. The class generation code takes care of
649 registering them. Otherwise we compute the
650 target name here. */
651 if ((dependency_tracking & DEPEND_TARGET_SET))
652 ; /* Nothing. */
653 else if (flag_emit_class_files)
654 jcf_dependency_set_target (NULL);
655 else
657 strcpy (buf + (dot - filename), TARGET_OBJECT_SUFFIX);
658 jcf_dependency_set_target (buf);
661 if ((dependency_tracking & DEPEND_FILE_ALREADY_SET))
662 ; /* Nothing. */
663 else if ((dependency_tracking & DEPEND_SET_FILE))
665 strcpy (buf + (dot - filename), ".d");
666 jcf_dependency_set_dep_file (buf);
668 else
669 jcf_dependency_set_dep_file ("-");
671 free (buf);
676 #ifdef USE_MAPPED_LOCATION
677 linemap_add (&line_table, LC_ENTER, false, filename, 0);
678 linemap_add (&line_table, LC_RENAME, false, "<built-in>", 0);
679 #endif
681 /* Initialize the compiler back end. */
682 return false;
685 /* Return either DECL or its known constant value (if it has one). */
687 tree
688 decl_constant_value (tree decl)
690 if (/* Don't change a variable array bound or initial value to a constant
691 in a place where a variable is invalid. */
692 current_function_decl != 0
693 && ! TREE_THIS_VOLATILE (decl)
694 && TREE_READONLY (decl)
695 && DECL_INITIAL (decl) != 0
696 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
697 /* This is invalid if initial value is not constant.
698 If it has either a function call, a memory reference,
699 or a variable, then re-evaluating it could give different results. */
700 && TREE_CONSTANT (DECL_INITIAL (decl))
701 /* Check for cases where this is sub-optimal, even though valid. */
702 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
703 return DECL_INITIAL (decl);
704 return decl;
707 /* Walk the language specific tree nodes during inlining. */
709 static tree
710 java_tree_inlining_walk_subtrees (tree *tp ATTRIBUTE_UNUSED,
711 int *subtrees ATTRIBUTE_UNUSED,
712 walk_tree_fn func ATTRIBUTE_UNUSED,
713 void *data ATTRIBUTE_UNUSED,
714 struct pointer_set_t *pset ATTRIBUTE_UNUSED)
716 enum tree_code code;
717 tree result;
719 #define WALK_SUBTREE(NODE) \
720 do \
722 result = walk_tree (&(NODE), func, data, pset); \
723 if (result) \
724 return result; \
726 while (0)
728 tree t = *tp;
729 if (!t)
730 return NULL_TREE;
732 code = TREE_CODE (t);
733 switch (code)
735 case BLOCK:
736 WALK_SUBTREE (BLOCK_EXPR_BODY (t));
737 return NULL_TREE;
739 case EXIT_BLOCK_EXPR:
740 *subtrees = 0;
741 return NULL_TREE;
743 default:
744 return NULL_TREE;
747 #undef WALK_SUBTREE
750 /* Every call to a static constructor has an associated boolean
751 variable which is in the outermost scope of the calling method.
752 This variable is used to avoid multiple calls to the static
753 constructor for each class.
755 It looks something like this:
757 foo ()
759 boolean dummy = OtherClass.is_initialized;
763 if (! dummy)
764 OtherClass.initialize();
766 ... use OtherClass.data ...
769 Each of these boolean variables has an entry in the
770 DECL_FUNCTION_INIT_TEST_TABLE of a method. When inlining a method
771 we must merge the DECL_FUNCTION_INIT_TEST_TABLE from the function
772 being inlined and create the boolean variables in the outermost
773 scope of the method being inlined into. */
775 /* Create a mapping from a boolean variable in a method being inlined
776 to one in the scope of the method being inlined into. */
778 static int
779 merge_init_test_initialization (void **entry, void *x)
781 struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
782 splay_tree decl_map = (splay_tree)x;
783 splay_tree_node n;
784 tree *init_test_decl;
786 /* See if we have remapped this declaration. If we haven't there's
787 a bug in the inliner. */
788 n = splay_tree_lookup (decl_map, (splay_tree_key) ite->value);
789 if (! n)
790 abort ();
792 /* Create a new entry for the class and its remapped boolean
793 variable. If we already have a mapping for this class we've
794 already initialized it, so don't overwrite the value. */
795 init_test_decl = java_treetreehash_new
796 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
797 if (!*init_test_decl)
798 *init_test_decl = (tree)n->value;
800 /* This fixes a weird case.
802 The front end assumes that once we have called a method that
803 initializes some class, we can assume the class is initialized. It
804 does this by setting the DECL_INITIAL of the init_test_decl for that
805 class, and no initializations are emitted for that class.
807 However, what if the method that is supposed to do the initialization
808 is itself inlined in the caller? When expanding the called method
809 we'll assume that the class initialization has already been done,
810 because the DECL_INITIAL of the init_test_decl is set.
812 To fix this we remove the DECL_INITIAL (in the caller scope) of all
813 the init_test_decls corresponding to classes initialized by the
814 inlined method. This makes the caller no longer assume that the
815 method being inlined does any class initializations. */
816 DECL_INITIAL (*init_test_decl) = NULL;
818 return true;
821 /* Merge the DECL_FUNCTION_INIT_TEST_TABLE from the function we're
822 inlining. */
824 void
825 java_inlining_merge_static_initializers (tree fn, void *decl_map)
827 htab_traverse
828 (DECL_FUNCTION_INIT_TEST_TABLE (fn),
829 merge_init_test_initialization, decl_map);
832 /* Lookup a DECL_FUNCTION_INIT_TEST_TABLE entry in the method we're
833 inlining into. If we already have a corresponding entry in that
834 class we don't need to create another one, so we create a mapping
835 from the variable in the inlined class to the corresponding
836 pre-existing one. */
838 static int
839 inline_init_test_initialization (void **entry, void *x)
841 struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
842 splay_tree decl_map = (splay_tree)x;
844 tree h = java_treetreehash_find
845 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl), ite->key);
846 if (! h)
847 return true;
848 splay_tree_insert (decl_map,
849 (splay_tree_key) ite->value,
850 (splay_tree_value) h);
851 return true;
854 /* Look up the boolean variables in the DECL_FUNCTION_INIT_TEST_TABLE
855 of a method being inlined. For each hone, if we already have a
856 variable associated with the same class in the method being inlined
857 into, create a new mapping for it. */
859 void
860 java_inlining_map_static_initializers (tree fn, void *decl_map)
862 htab_traverse
863 (DECL_FUNCTION_INIT_TEST_TABLE (fn),
864 inline_init_test_initialization, decl_map);
867 /* Avoid voluminous output for deep recursion of compound exprs. */
869 static void
870 dump_compound_expr (dump_info_p di, tree t)
872 int i;
874 for (i=0; i<2; i++)
876 switch (TREE_CODE (TREE_OPERAND (t, i)))
878 case COMPOUND_EXPR:
879 dump_compound_expr (di, TREE_OPERAND (t, i));
880 break;
882 case EXPR_WITH_FILE_LOCATION:
884 tree wfl_node = EXPR_WFL_NODE (TREE_OPERAND (t, i));
885 dump_child ("expr", wfl_node);
886 break;
889 default:
890 dump_child ("expr", TREE_OPERAND (t, i));
895 static bool
896 java_dump_tree (void *dump_info, tree t)
898 enum tree_code code;
899 dump_info_p di = (dump_info_p) dump_info;
901 /* Figure out what kind of node this is. */
902 code = TREE_CODE (t);
904 switch (code)
906 case FUNCTION_DECL:
907 dump_child ("args", DECL_ARGUMENTS (t));
908 if (DECL_EXTERNAL (t))
909 dump_string (di, "undefined");
910 if (TREE_PUBLIC (t))
911 dump_string (di, "extern");
912 else
913 dump_string (di, "static");
914 if (DECL_LANG_SPECIFIC (t))
915 dump_child ("body", DECL_FUNCTION_BODY (t));
916 if (DECL_LANG_SPECIFIC (t) && !dump_flag (di, TDF_SLIM, t))
917 dump_child ("inline body", DECL_SAVED_TREE (t));
918 return true;
920 case RETURN_EXPR:
921 dump_child ("expr", TREE_OPERAND (t, 0));
922 return true;
924 case GOTO_EXPR:
925 dump_child ("goto", TREE_OPERAND (t, 0));
926 return true;
928 case LABEL_EXPR:
929 dump_child ("label", TREE_OPERAND (t, 0));
930 return true;
932 case LABELED_BLOCK_EXPR:
933 dump_child ("label", LABELED_BLOCK_LABEL (t));
934 dump_child ("block", LABELED_BLOCK_BODY (t));
935 return true;
937 case EXIT_BLOCK_EXPR:
938 dump_child ("block", EXIT_BLOCK_LABELED_BLOCK (t));
939 return true;
941 case BLOCK:
942 if (BLOCK_EXPR_BODY (t))
944 tree local = BLOCK_VARS (t);
945 while (local)
947 tree next = TREE_CHAIN (local);
948 dump_child ("var", local);
949 local = next;
953 tree block = BLOCK_EXPR_BODY (t);
954 dump_child ("body", block);
955 block = TREE_CHAIN (block);
958 return true;
960 case COMPOUND_EXPR:
961 if (!dump_flag (di, TDF_SLIM, t))
962 return false;
963 dump_compound_expr (di, t);
964 return true;
966 default:
967 break;
969 return false;
972 /* Java calls can't, in general, be sibcalls because we need an
973 accurate stack trace in order to guarantee correct operation of
974 methods such as Class.forName(String) and
975 SecurityManager.getClassContext(). */
977 static bool
978 java_decl_ok_for_sibcall (tree decl)
980 return decl != NULL && DECL_CONTEXT (decl) == output_class;
983 /* Given a call_expr, try to figure out what its target might be. In
984 the case of an indirection via the atable, search for the decl. If
985 the decl is external, we return NULL. If we don't, the optimizer
986 will replace the indirection with a direct call, which undoes the
987 purpose of the atable indirection. */
988 static tree
989 java_get_callee_fndecl (tree call_expr)
991 tree method, table, element, atable_methods;
993 HOST_WIDE_INT index;
995 /* FIXME: This is disabled because we end up passing calls through
996 the PLT, and we do NOT want to do that. */
997 return NULL;
999 if (TREE_CODE (call_expr) != CALL_EXPR)
1000 return NULL;
1001 method = TREE_OPERAND (call_expr, 0);
1002 STRIP_NOPS (method);
1003 if (TREE_CODE (method) != ARRAY_REF)
1004 return NULL;
1005 table = TREE_OPERAND (method, 0);
1006 if (! DECL_LANG_SPECIFIC(table)
1007 || !DECL_OWNER (table)
1008 || TYPE_ATABLE_DECL (DECL_OWNER (table)) != table)
1009 return NULL;
1011 atable_methods = TYPE_ATABLE_METHODS (DECL_OWNER (table));
1012 index = TREE_INT_CST_LOW (TREE_OPERAND (method, 1));
1014 /* FIXME: Replace this for loop with a hash table lookup. */
1015 for (element = atable_methods; element; element = TREE_CHAIN (element))
1017 if (index == 1)
1019 tree purpose = TREE_PURPOSE (element);
1020 if (TREE_CODE (purpose) == FUNCTION_DECL
1021 && ! DECL_EXTERNAL (purpose))
1022 return purpose;
1023 else
1024 return NULL;
1026 --index;
1029 return NULL;
1033 /* Clear the binding stack. */
1034 static void
1035 java_clear_binding_stack (void)
1037 while (!global_bindings_p ())
1038 poplevel (0, 0, 0);
1041 #include "gt-java-lang.h"