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 2, or (at your option)
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, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, 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. */
30 #include "coretypes.h"
36 #include "java-tree.h"
39 #include "langhooks.h"
40 #include "langhooks-def.h"
43 #include "diagnostic.h"
44 #include "tree-inline.h"
45 #include "splay-tree.h"
46 #include "tree-dump.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_dump_tree (void *, tree
);
64 static void dump_compound_expr (dump_info_p
, tree
);
65 static bool java_decl_ok_for_sibcall (tree
);
66 static tree
java_get_callee_fndecl (tree
);
67 static void java_clear_binding_stack (void);
69 #ifndef TARGET_OBJECT_SUFFIX
70 # define TARGET_OBJECT_SUFFIX ".o"
73 /* Table indexed by tree code giving a string containing a character
74 classifying the tree code. Possibilities are
75 t, d, s, c, r, <, 1 and 2. See java/java-tree.def for details. */
77 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
79 const enum tree_code_class tree_code_type
[] = {
82 #include "java-tree.def"
86 /* Table indexed by tree code giving number of expression
87 operands beyond the fixed part of the node structure.
88 Not used for types or decls. */
90 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
92 const unsigned char tree_code_length
[] = {
95 #include "java-tree.def"
99 /* Names of tree components.
100 Used for printing out the tree and error messages. */
101 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
103 const char *const tree_code_name
[] = {
106 #include "java-tree.def"
110 /* Table of machine-independent attributes. */
111 const struct attribute_spec java_attribute_table
[] =
113 { "nonnull", 0, -1, false, true, true,
115 { NULL
, 0, 0, false, false, false, NULL
}
118 /* Used to avoid printing error messages with bogus function
119 prototypes. Starts out false. */
120 static bool inhibit_error_function_printing
;
122 const char *resource_name
;
124 /* When nonzero, -Wall was turned on. */
127 /* When nonzero, report use of deprecated classes, methods, or fields. */
128 int flag_deprecated
= 1;
130 /* When zero, don't optimize static class initialization. This flag shouldn't
131 be tested alone, use STATIC_CLASS_INITIALIZATION_OPTIMIZATION_P instead. */
132 /* FIXME: Make this work with gimplify. */
133 /* int flag_optimize_sci = 0; */
135 /* Don't attempt to verify invocations. */
136 int flag_verify_invocations
= 0;
138 /* When nonzero, print extra version information. */
139 static int v_flag
= 0;
143 /* Variable controlling how dependency tracking is enabled in
145 static int dependency_tracking
= 0;
147 /* Flag values for DEPENDENCY_TRACKING. */
148 #define DEPEND_SET_FILE 1
149 #define DEPEND_ENABLE 2
150 #define DEPEND_TARGET_SET 4
151 #define DEPEND_FILE_ALREADY_SET 8
153 struct language_function
GTY(())
158 #undef LANG_HOOKS_NAME
159 #define LANG_HOOKS_NAME "GNU Java"
160 #undef LANG_HOOKS_INIT
161 #define LANG_HOOKS_INIT java_init
162 #undef LANG_HOOKS_FINISH
163 #define LANG_HOOKS_FINISH java_finish
164 #undef LANG_HOOKS_INIT_OPTIONS
165 #define LANG_HOOKS_INIT_OPTIONS java_init_options
166 #undef LANG_HOOKS_HANDLE_OPTION
167 #define LANG_HOOKS_HANDLE_OPTION java_handle_option
168 #undef LANG_HOOKS_POST_OPTIONS
169 #define LANG_HOOKS_POST_OPTIONS java_post_options
170 #undef LANG_HOOKS_PARSE_FILE
171 #define LANG_HOOKS_PARSE_FILE java_parse_file
172 #undef LANG_HOOKS_MARK_ADDRESSABLE
173 #define LANG_HOOKS_MARK_ADDRESSABLE java_mark_addressable
174 #undef LANG_HOOKS_DUP_LANG_SPECIFIC_DECL
175 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL java_dup_lang_specific_decl
176 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
177 #define LANG_HOOKS_DECL_PRINTABLE_NAME lang_printable_name
178 #undef LANG_HOOKS_PRINT_ERROR_FUNCTION
179 #define LANG_HOOKS_PRINT_ERROR_FUNCTION java_print_error_function
181 #undef LANG_HOOKS_TYPE_FOR_MODE
182 #define LANG_HOOKS_TYPE_FOR_MODE java_type_for_mode
183 #undef LANG_HOOKS_TYPE_FOR_SIZE
184 #define LANG_HOOKS_TYPE_FOR_SIZE java_type_for_size
185 #undef LANG_HOOKS_SIGNED_TYPE
186 #define LANG_HOOKS_SIGNED_TYPE java_signed_type
187 #undef LANG_HOOKS_UNSIGNED_TYPE
188 #define LANG_HOOKS_UNSIGNED_TYPE java_unsigned_type
189 #undef LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE
190 #define LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE java_signed_or_unsigned_type
192 #undef LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN
193 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN java_dump_tree
195 #undef LANG_HOOKS_GIMPLIFY_EXPR
196 #define LANG_HOOKS_GIMPLIFY_EXPR java_gimplify_expr
198 #undef LANG_HOOKS_TREE_INLINING_WALK_SUBTREES
199 #define LANG_HOOKS_TREE_INLINING_WALK_SUBTREES java_tree_inlining_walk_subtrees
201 #undef LANG_HOOKS_DECL_OK_FOR_SIBCALL
202 #define LANG_HOOKS_DECL_OK_FOR_SIBCALL java_decl_ok_for_sibcall
204 #undef LANG_HOOKS_GET_CALLEE_FNDECL
205 #define LANG_HOOKS_GET_CALLEE_FNDECL java_get_callee_fndecl
207 #undef LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION
208 #define LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION java_expand_body
210 #undef LANG_HOOKS_CLEAR_BINDING_STACK
211 #define LANG_HOOKS_CLEAR_BINDING_STACK java_clear_binding_stack
213 #undef LANG_HOOKS_SET_DECL_ASSEMBLER_NAME
214 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME java_mangle_decl
216 #undef LANG_HOOKS_ATTRIBUTE_TABLE
217 #define LANG_HOOKS_ATTRIBUTE_TABLE java_attribute_table
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.
227 java_handle_option (size_t scode
, const char *arg
, int value
)
229 enum opt_code code
= (enum opt_code
) scode
;
234 jcf_path_include_arg (arg
);
238 jcf_dependency_init (1);
239 dependency_tracking
|= DEPEND_ENABLE
;
243 jcf_dependency_init (1);
244 dependency_tracking
|= DEPEND_SET_FILE
| DEPEND_ENABLE
;
248 jcf_dependency_set_dep_file (arg
);
249 dependency_tracking
|= DEPEND_FILE_ALREADY_SET
;
253 jcf_dependency_init (0);
254 dependency_tracking
|= DEPEND_ENABLE
;
258 jcf_dependency_init (0);
259 dependency_tracking
|= DEPEND_SET_FILE
| DEPEND_ENABLE
;
263 jcf_dependency_print_dummies ();
267 jcf_dependency_set_target (arg
);
268 dependency_tracking
|= DEPEND_TARGET_SET
;
273 /* When -Wall given, enable -Wunused. We do this because the C
274 compiler does it, and people expect it. */
278 case OPT_fenable_assertions_
:
279 add_enable_assert (arg
, value
);
282 case OPT_fenable_assertions
:
283 add_enable_assert ("", value
);
286 case OPT_fdisable_assertions_
:
287 add_enable_assert (arg
, !value
);
290 case OPT_fdisable_assertions
:
291 add_enable_assert ("", !value
);
294 case OPT_fassume_compiled_
:
295 add_assume_compiled (arg
, !value
);
298 case OPT_fassume_compiled
:
299 add_assume_compiled ("", !value
);
302 case OPT_fbootclasspath_
:
303 jcf_path_bootclasspath_arg (arg
);
306 case OPT_faux_classpath
:
307 case OPT_fclasspath_
:
308 case OPT_fCLASSPATH_
:
309 jcf_path_classpath_arg (arg
);
312 case OPT_fcompile_resource_
:
317 if (!dump_switch_p (arg
))
326 jcf_path_extdirs_arg (arg
);
329 case OPT_foutput_class_dir_
:
330 /* FIXME: remove; this is handled by ecj1 now. */
337 case OPT_fsource_filename_
:
338 java_read_sourcefilenames (arg
);
342 if (cl_options
[code
].flags
& CL_Java
)
350 /* Global open file. */
356 /* FIXME: Indirect dispatch isn't yet compatible with static class
357 init optimization. */
358 if (flag_indirect_dispatch
)
359 always_initialize_class_p
= true;
361 if (!flag_indirect_dispatch
)
362 flag_indirect_classes
= false;
364 /* Force minimum function alignment if g++ uses the least significant
365 bit of function pointers to store the virtual bit. This is required
366 to keep vtables compatible. */
367 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
== ptrmemfunc_vbit_in_pfn
368 && force_align_functions_log
< 1)
369 force_align_functions_log
= 1;
371 jcf_path_seal (v_flag
);
373 java_init_decl_processing ();
375 using_eh_for_cleanups ();
383 jcf_dependency_write ();
386 /* Buffer used by lang_printable_name. */
387 static char *decl_buf
= NULL
;
389 /* Allocated size of decl_buf. */
390 static int decl_buflen
= 0;
392 /* Length of used part of decl_buf; position for next character. */
393 static int decl_bufpos
= 0;
395 /* Append the string STR to decl_buf.
396 It length is given by LEN; -1 means the string is nul-terminated. */
399 put_decl_string (const char *str
, int len
)
403 if (decl_bufpos
+ len
>= decl_buflen
)
405 if (decl_buf
== NULL
)
407 decl_buflen
= len
+ 100;
408 decl_buf
= XNEWVEC (char, decl_buflen
);
413 decl_buf
= xrealloc (decl_buf
, decl_buflen
);
416 strcpy (decl_buf
+ decl_bufpos
, str
);
420 /* Append to decl_buf a printable name for NODE. */
423 put_decl_node (tree node
)
426 if (TREE_CODE (node
) == POINTER_TYPE
)
428 node
= TREE_TYPE (node
);
431 if (DECL_P (node
) && DECL_NAME (node
) != NULL_TREE
)
433 if (TREE_CODE (node
) == FUNCTION_DECL
)
435 /* We want to print the type the DECL belongs to. We don't do
436 that when we handle constructors. */
437 if (! DECL_CONSTRUCTOR_P (node
)
438 && ! DECL_ARTIFICIAL (node
) && DECL_CONTEXT (node
))
440 put_decl_node (TYPE_NAME (DECL_CONTEXT (node
)));
441 put_decl_string (".", 1);
443 if (! DECL_CONSTRUCTOR_P (node
))
444 put_decl_node (DECL_NAME (node
));
445 if (TREE_TYPE (node
) != NULL_TREE
)
448 tree args
= TYPE_ARG_TYPES (TREE_TYPE (node
));
449 if (TREE_CODE (TREE_TYPE (node
)) == METHOD_TYPE
)
450 args
= TREE_CHAIN (args
);
451 put_decl_string ("(", 1);
452 for ( ; args
!= end_params_node
; args
= TREE_CHAIN (args
), i
++)
455 put_decl_string (",", 1);
456 put_decl_node (TREE_VALUE (args
));
458 put_decl_string (")", 1);
462 put_decl_node (DECL_NAME (node
));
464 else if (TYPE_P (node
) && TYPE_NAME (node
) != NULL_TREE
)
466 if (TREE_CODE (node
) == RECORD_TYPE
&& TYPE_ARRAY_P (node
))
468 put_decl_node (TYPE_ARRAY_ELEMENT (node
));
469 put_decl_string("[]", 2);
471 else if (node
== promoted_byte_type_node
)
472 put_decl_string ("byte", 4);
473 else if (node
== promoted_short_type_node
)
474 put_decl_string ("short", 5);
475 else if (node
== promoted_char_type_node
)
476 put_decl_string ("char", 4);
477 else if (node
== promoted_boolean_type_node
)
478 put_decl_string ("boolean", 7);
479 else if (node
== void_type_node
&& was_pointer
)
480 put_decl_string ("null", 4);
482 put_decl_node (TYPE_NAME (node
));
484 else if (TREE_CODE (node
) == IDENTIFIER_NODE
)
485 put_decl_string (IDENTIFIER_POINTER (node
), IDENTIFIER_LENGTH (node
));
487 put_decl_string ("<unknown>", -1);
490 /* Return a user-friendly name for DECL.
491 The resulting string is only valid until the next call.
492 The value of the hook decl_printable_name is this function,
493 which is also called directly by java_print_error_function. */
496 lang_printable_name (tree decl
, int v
)
499 if (v
== 0 && TREE_CODE (decl
) == FUNCTION_DECL
)
500 put_decl_node (DECL_NAME (decl
));
502 put_decl_node (decl
);
503 put_decl_string ("", 1);
507 /* Print on stderr the current class and method context. This function
508 is the value of the hook print_error_function. */
510 static GTY(()) tree last_error_function_context
;
511 static GTY(()) tree last_error_function
;
513 java_print_error_function (diagnostic_context
*context ATTRIBUTE_UNUSED
,
516 /* Don't print error messages with bogus function prototypes. */
517 if (inhibit_error_function_printing
)
520 if (current_function_decl
!= NULL
521 && DECL_CONTEXT (current_function_decl
) != last_error_function_context
)
524 fprintf (stderr
, "%s: ", file
);
526 last_error_function_context
= DECL_CONTEXT (current_function_decl
);
527 fprintf (stderr
, "In class '%s':\n",
528 lang_printable_name (last_error_function_context
, 0));
530 if (last_error_function
!= current_function_decl
)
533 fprintf (stderr
, "%s: ", file
);
535 if (current_function_decl
== NULL
)
536 fprintf (stderr
, "At top level:\n");
539 const char *name
= lang_printable_name (current_function_decl
, 2);
540 fprintf (stderr
, "In %s '%s':\n",
541 (DECL_CONSTRUCTOR_P (current_function_decl
) ? "constructor"
546 last_error_function
= current_function_decl
;
551 /* Called to install the PRINT_ERROR_FUNCTION hook differently
552 according to LEVEL. LEVEL is 1 during early parsing, when function
553 prototypes aren't fully resolved. java_print_error_function is set
554 so it doesn't print incomplete function prototypes. When LEVEL is
555 2, function prototypes are fully resolved and can be printed when
559 lang_init_source (int level
)
561 inhibit_error_function_printing
= (level
== 1);
565 java_init_options (unsigned int argc ATTRIBUTE_UNUSED
,
566 const char **argv ATTRIBUTE_UNUSED
)
568 flag_bounds_check
= 1;
570 flag_non_call_exceptions
= 1;
572 /* In Java floating point operations never trap. */
573 flag_trapping_math
= 0;
575 /* In Java arithmetic overflow always wraps around. */
578 /* Java requires left-to-right evaluation of subexpressions. */
579 flag_evaluation_order
= 1;
581 /* Unit at a time is disabled for Java because it is considered
583 no_unit_at_a_time_default
= 1;
590 /* Post-switch processing. */
592 java_post_options (const char **pfilename
)
594 const char *filename
= *pfilename
;
596 /* Use tree inlining. */
599 if (flag_inline_functions
)
600 flag_inline_trees
= 2;
602 /* An absolute requirement: if we're not using indirect dispatch, we
603 must always verify everything. */
604 if (! flag_indirect_dispatch
)
605 flag_verify_invocations
= true;
607 if (flag_reduced_reflection
)
609 if (flag_indirect_dispatch
)
610 error ("-findirect-dispatch is incompatible "
611 "with -freduced-reflection");
613 error ("-fjni is incompatible with -freduced-reflection");
616 /* Open input file. */
618 if (filename
== 0 || !strcmp (filename
, "-"))
623 if (dependency_tracking
)
624 error ("can't do dependency tracking with input from stdin");
628 if (dependency_tracking
)
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
, '.');
640 error ("couldn't determine target name for dependency tracking");
643 char *buf
= XNEWVEC (char, 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
651 if ((dependency_tracking
& DEPEND_TARGET_SET
))
655 strcpy (buf
+ (dot
- filename
), TARGET_OBJECT_SUFFIX
);
656 jcf_dependency_set_target (buf
);
659 if ((dependency_tracking
& DEPEND_FILE_ALREADY_SET
))
661 else if ((dependency_tracking
& DEPEND_SET_FILE
))
663 strcpy (buf
+ (dot
- filename
), ".d");
664 jcf_dependency_set_dep_file (buf
);
667 jcf_dependency_set_dep_file ("-");
674 #ifdef USE_MAPPED_LOCATION
675 linemap_add (&line_table
, LC_ENTER
, false, filename
, 0);
676 linemap_add (&line_table
, LC_RENAME
, false, "<built-in>", 0);
679 /* Initialize the compiler back end. */
683 /* Return either DECL or its known constant value (if it has one). */
686 decl_constant_value (tree decl
)
688 if (/* Don't change a variable array bound or initial value to a constant
689 in a place where a variable is invalid. */
690 current_function_decl
!= 0
691 && ! TREE_THIS_VOLATILE (decl
)
692 && TREE_READONLY (decl
)
693 && DECL_INITIAL (decl
) != 0
694 && TREE_CODE (DECL_INITIAL (decl
)) != ERROR_MARK
695 /* This is invalid if initial value is not constant.
696 If it has either a function call, a memory reference,
697 or a variable, then re-evaluating it could give different results. */
698 && TREE_CONSTANT (DECL_INITIAL (decl
))
699 /* Check for cases where this is sub-optimal, even though valid. */
700 && TREE_CODE (DECL_INITIAL (decl
)) != CONSTRUCTOR
)
701 return DECL_INITIAL (decl
);
705 /* Walk the language specific tree nodes during inlining. */
708 java_tree_inlining_walk_subtrees (tree
*tp ATTRIBUTE_UNUSED
,
709 int *subtrees ATTRIBUTE_UNUSED
,
710 walk_tree_fn func ATTRIBUTE_UNUSED
,
711 void *data ATTRIBUTE_UNUSED
,
712 struct pointer_set_t
*pset ATTRIBUTE_UNUSED
)
717 #define WALK_SUBTREE(NODE) \
720 result = walk_tree (&(NODE), func, data, pset); \
730 code
= TREE_CODE (t
);
734 WALK_SUBTREE (BLOCK_EXPR_BODY (t
));
737 case EXIT_BLOCK_EXPR
:
748 /* Every call to a static constructor has an associated boolean
749 variable which is in the outermost scope of the calling method.
750 This variable is used to avoid multiple calls to the static
751 constructor for each class.
753 It looks something like this:
757 boolean dummy = OtherClass.is_initialized;
762 OtherClass.initialize();
764 ... use OtherClass.data ...
767 Each of these boolean variables has an entry in the
768 DECL_FUNCTION_INIT_TEST_TABLE of a method. When inlining a method
769 we must merge the DECL_FUNCTION_INIT_TEST_TABLE from the function
770 being inlined and create the boolean variables in the outermost
771 scope of the method being inlined into. */
773 /* Create a mapping from a boolean variable in a method being inlined
774 to one in the scope of the method being inlined into. */
777 merge_init_test_initialization (void **entry
, void *x
)
779 struct treetreehash_entry
*ite
= (struct treetreehash_entry
*) *entry
;
780 splay_tree decl_map
= (splay_tree
)x
;
782 tree
*init_test_decl
;
784 /* See if we have remapped this declaration. If we haven't there's
785 a bug in the inliner. */
786 n
= splay_tree_lookup (decl_map
, (splay_tree_key
) ite
->value
);
789 /* Create a new entry for the class and its remapped boolean
790 variable. If we already have a mapping for this class we've
791 already initialized it, so don't overwrite the value. */
792 init_test_decl
= java_treetreehash_new
793 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl
), ite
->key
);
794 if (!*init_test_decl
)
795 *init_test_decl
= (tree
)n
->value
;
797 /* This fixes a weird case.
799 The front end assumes that once we have called a method that
800 initializes some class, we can assume the class is initialized. It
801 does this by setting the DECL_INITIAL of the init_test_decl for that
802 class, and no initializations are emitted for that class.
804 However, what if the method that is supposed to do the initialization
805 is itself inlined in the caller? When expanding the called method
806 we'll assume that the class initialization has already been done,
807 because the DECL_INITIAL of the init_test_decl is set.
809 To fix this we remove the DECL_INITIAL (in the caller scope) of all
810 the init_test_decls corresponding to classes initialized by the
811 inlined method. This makes the caller no longer assume that the
812 method being inlined does any class initializations. */
813 DECL_INITIAL (*init_test_decl
) = NULL
;
818 /* Merge the DECL_FUNCTION_INIT_TEST_TABLE from the function we're
822 java_inlining_merge_static_initializers (tree fn
, void *decl_map
)
825 (DECL_FUNCTION_INIT_TEST_TABLE (fn
),
826 merge_init_test_initialization
, decl_map
);
829 /* Lookup a DECL_FUNCTION_INIT_TEST_TABLE entry in the method we're
830 inlining into. If we already have a corresponding entry in that
831 class we don't need to create another one, so we create a mapping
832 from the variable in the inlined class to the corresponding
836 inline_init_test_initialization (void **entry
, void *x
)
838 struct treetreehash_entry
*ite
= (struct treetreehash_entry
*) *entry
;
839 splay_tree decl_map
= (splay_tree
)x
;
841 tree h
= java_treetreehash_find
842 (DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl
), ite
->key
);
845 splay_tree_insert (decl_map
,
846 (splay_tree_key
) ite
->value
,
847 (splay_tree_value
) h
);
851 /* Look up the boolean variables in the DECL_FUNCTION_INIT_TEST_TABLE
852 of a method being inlined. For each hone, if we already have a
853 variable associated with the same class in the method being inlined
854 into, create a new mapping for it. */
857 java_inlining_map_static_initializers (tree fn
, void *decl_map
)
860 (DECL_FUNCTION_INIT_TEST_TABLE (fn
),
861 inline_init_test_initialization
, decl_map
);
864 /* Avoid voluminous output for deep recursion of compound exprs. */
867 dump_compound_expr (dump_info_p di
, tree t
)
873 switch (TREE_CODE (TREE_OPERAND (t
, i
)))
876 dump_compound_expr (di
, TREE_OPERAND (t
, i
));
880 dump_child ("expr", TREE_OPERAND (t
, i
));
886 java_dump_tree (void *dump_info
, tree t
)
889 dump_info_p di
= (dump_info_p
) dump_info
;
891 /* Figure out what kind of node this is. */
892 code
= TREE_CODE (t
);
897 dump_child ("args", DECL_ARGUMENTS (t
));
898 if (DECL_EXTERNAL (t
))
899 dump_string (di
, "undefined");
901 dump_string (di
, "extern");
903 dump_string (di
, "static");
904 if (DECL_LANG_SPECIFIC (t
))
905 dump_child ("body", DECL_FUNCTION_BODY (t
));
906 if (DECL_LANG_SPECIFIC (t
) && !dump_flag (di
, TDF_SLIM
, t
))
907 dump_child ("inline body", DECL_SAVED_TREE (t
));
911 dump_child ("expr", TREE_OPERAND (t
, 0));
915 dump_child ("goto", TREE_OPERAND (t
, 0));
919 dump_child ("label", TREE_OPERAND (t
, 0));
922 case LABELED_BLOCK_EXPR
:
923 dump_child ("label", LABELED_BLOCK_LABEL (t
));
924 dump_child ("block", LABELED_BLOCK_BODY (t
));
927 case EXIT_BLOCK_EXPR
:
928 dump_child ("block", EXIT_BLOCK_LABELED_BLOCK (t
));
932 if (BLOCK_EXPR_BODY (t
))
934 tree local
= BLOCK_VARS (t
);
937 tree next
= TREE_CHAIN (local
);
938 dump_child ("var", local
);
943 tree block
= BLOCK_EXPR_BODY (t
);
944 dump_child ("body", block
);
945 block
= TREE_CHAIN (block
);
951 if (!dump_flag (di
, TDF_SLIM
, t
))
953 dump_compound_expr (di
, t
);
962 /* Java calls can't, in general, be sibcalls because we need an
963 accurate stack trace in order to guarantee correct operation of
964 methods such as Class.forName(String) and
965 SecurityManager.getClassContext(). */
968 java_decl_ok_for_sibcall (tree decl
)
970 return (decl
!= NULL
&& DECL_CONTEXT (decl
) == output_class
971 && DECL_INLINE (decl
));
974 /* Given a call_expr, try to figure out what its target might be. In
975 the case of an indirection via the atable, search for the decl. If
976 the decl is external, we return NULL. If we don't, the optimizer
977 will replace the indirection with a direct call, which undoes the
978 purpose of the atable indirection. */
980 java_get_callee_fndecl (tree call_expr
)
982 tree method
, table
, element
, atable_methods
;
986 /* FIXME: This is disabled because we end up passing calls through
987 the PLT, and we do NOT want to do that. */
990 if (TREE_CODE (call_expr
) != CALL_EXPR
)
992 method
= CALL_EXPR_FN (call_expr
);
994 if (TREE_CODE (method
) != ARRAY_REF
)
996 table
= TREE_OPERAND (method
, 0);
997 if (! DECL_LANG_SPECIFIC(table
)
998 || !DECL_OWNER (table
)
999 || TYPE_ATABLE_DECL (DECL_OWNER (table
)) != table
)
1002 atable_methods
= TYPE_ATABLE_METHODS (DECL_OWNER (table
));
1003 index
= TREE_INT_CST_LOW (TREE_OPERAND (method
, 1));
1005 /* FIXME: Replace this for loop with a hash table lookup. */
1006 for (element
= atable_methods
; element
; element
= TREE_CHAIN (element
))
1010 tree purpose
= TREE_PURPOSE (element
);
1011 if (TREE_CODE (purpose
) == FUNCTION_DECL
1012 && ! DECL_EXTERNAL (purpose
))
1024 /* Clear the binding stack. */
1026 java_clear_binding_stack (void)
1028 while (!global_bindings_p ())
1032 #include "gt-java-lang.h"