2001-08-23 Alexandre Petit-Bianco <apbianco@redhat.com>
[official-gcc.git] / gcc / java / parse.y
blobb6054d418f7da7c8106d33f691bcf2cf75d36407
1 /* Source code parsing and tree node generation for the GNU compiler
2 for the Java(TM) language.
3 Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.
23 Java and all Java-based marks are trademarks or registered trademarks
24 of Sun Microsystems, Inc. in the United States and other countries.
25 The Free Software Foundation is independent of Sun Microsystems, Inc. */
27 /* This file parses java source code and issues a tree node image
28 suitable for code generation (byte code and targeted CPU assembly
29 language).
31 The grammar conforms to the Java grammar described in "The Java(TM)
32 Language Specification. J. Gosling, B. Joy, G. Steele. Addison Wesley
33 1996, ISBN 0-201-63451-1"
35 The following modifications were brought to the original grammar:
37 method_body: added the rule '| block SC_TK'
38 static_initializer: added the rule 'static block SC_TK'.
40 Note: All the extra rules described above should go away when the
41 empty_statement rule will work.
43 statement_nsi: 'nsi' should be read no_short_if.
45 Some rules have been modified to support JDK1.1 inner classes
46 definitions and other extensions. */
49 #include "config.h"
50 #include "system.h"
51 #include <dirent.h>
52 #include "tree.h"
53 #include "rtl.h"
54 #include "obstack.h"
55 #include "toplev.h"
56 #include "flags.h"
57 #include "java-tree.h"
58 #include "jcf.h"
59 #include "lex.h"
60 #include "parse.h"
61 #include "zipfile.h"
62 #include "convert.h"
63 #include "buffer.h"
64 #include "xref.h"
65 #include "function.h"
66 #include "except.h"
67 #include "ggc.h"
69 #ifndef DIR_SEPARATOR
70 #define DIR_SEPARATOR '/'
71 #endif
73 /* Local function prototypes */
74 static char *java_accstring_lookup PARAMS ((int));
75 static void classitf_redefinition_error PARAMS ((const char *,tree, tree, tree));
76 static void variable_redefinition_error PARAMS ((tree, tree, tree, int));
77 static tree create_class PARAMS ((int, tree, tree, tree));
78 static tree create_interface PARAMS ((int, tree, tree));
79 static void end_class_declaration PARAMS ((int));
80 static tree find_field PARAMS ((tree, tree));
81 static tree lookup_field_wrapper PARAMS ((tree, tree));
82 static int duplicate_declaration_error_p PARAMS ((tree, tree, tree));
83 static void register_fields PARAMS ((int, tree, tree));
84 static tree parser_qualified_classname PARAMS ((tree));
85 static int parser_check_super PARAMS ((tree, tree, tree));
86 static int parser_check_super_interface PARAMS ((tree, tree, tree));
87 static void check_modifiers_consistency PARAMS ((int));
88 static tree lookup_cl PARAMS ((tree));
89 static tree lookup_java_method2 PARAMS ((tree, tree, int));
90 static tree method_header PARAMS ((int, tree, tree, tree));
91 static void fix_method_argument_names PARAMS ((tree ,tree));
92 static tree method_declarator PARAMS ((tree, tree));
93 static void parse_warning_context PARAMS ((tree cl, const char *msg, ...))
94 ATTRIBUTE_PRINTF_2;
95 static void issue_warning_error_from_context PARAMS ((tree, const char *msg, va_list))
96 ATTRIBUTE_PRINTF (2, 0);
97 static void parse_ctor_invocation_error PARAMS ((void));
98 static tree parse_jdk1_1_error PARAMS ((const char *));
99 static void complete_class_report_errors PARAMS ((jdep *));
100 static int process_imports PARAMS ((void));
101 static void read_import_dir PARAMS ((tree));
102 static int find_in_imports_on_demand PARAMS ((tree));
103 static void find_in_imports PARAMS ((tree));
104 static void check_static_final_variable_assignment_flag PARAMS ((tree));
105 static void reset_static_final_variable_assignment_flag PARAMS ((tree));
106 static void check_final_variable_local_assignment_flag PARAMS ((tree, tree));
107 static void reset_final_variable_local_assignment_flag PARAMS ((tree));
108 static int check_final_variable_indirect_assignment PARAMS ((tree));
109 static void check_final_variable_global_assignment_flag PARAMS ((tree));
110 static void check_inner_class_access PARAMS ((tree, tree, tree));
111 static int check_pkg_class_access PARAMS ((tree, tree));
112 static void register_package PARAMS ((tree));
113 static tree resolve_package PARAMS ((tree, tree *));
114 static tree lookup_package_type PARAMS ((const char *, int));
115 static tree resolve_class PARAMS ((tree, tree, tree, tree));
116 static void declare_local_variables PARAMS ((int, tree, tree));
117 static void source_start_java_method PARAMS ((tree));
118 static void source_end_java_method PARAMS ((void));
119 static tree find_name_in_single_imports PARAMS ((tree));
120 static void check_abstract_method_header PARAMS ((tree));
121 static tree lookup_java_interface_method2 PARAMS ((tree, tree));
122 static tree resolve_expression_name PARAMS ((tree, tree *));
123 static tree maybe_create_class_interface_decl PARAMS ((tree, tree, tree, tree));
124 static int check_class_interface_creation PARAMS ((int, int, tree,
125 tree, tree, tree));
126 static tree patch_method_invocation PARAMS ((tree, tree, tree, int,
127 int *, tree *));
128 static int breakdown_qualified PARAMS ((tree *, tree *, tree));
129 static int in_same_package PARAMS ((tree, tree));
130 static tree resolve_and_layout PARAMS ((tree, tree));
131 static tree qualify_and_find PARAMS ((tree, tree, tree));
132 static tree resolve_no_layout PARAMS ((tree, tree));
133 static int invocation_mode PARAMS ((tree, int));
134 static tree find_applicable_accessible_methods_list PARAMS ((int, tree,
135 tree, tree));
136 static void search_applicable_methods_list PARAMS ((int, tree, tree, tree,
137 tree *, tree *));
138 static tree find_most_specific_methods_list PARAMS ((tree));
139 static int argument_types_convertible PARAMS ((tree, tree));
140 static tree patch_invoke PARAMS ((tree, tree, tree));
141 static int maybe_use_access_method PARAMS ((int, tree *, tree *));
142 static tree lookup_method_invoke PARAMS ((int, tree, tree, tree, tree));
143 static tree register_incomplete_type PARAMS ((int, tree, tree, tree));
144 static tree check_inner_circular_reference PARAMS ((tree, tree));
145 static tree check_circular_reference PARAMS ((tree));
146 static tree obtain_incomplete_type PARAMS ((tree));
147 static tree java_complete_lhs PARAMS ((tree));
148 static tree java_complete_tree PARAMS ((tree));
149 static tree maybe_generate_pre_expand_clinit PARAMS ((tree));
150 static int analyze_clinit_body PARAMS ((tree));
151 static int maybe_yank_clinit PARAMS ((tree));
152 static void start_complete_expand_method PARAMS ((tree));
153 static void java_complete_expand_method PARAMS ((tree));
154 static void java_expand_method_bodies PARAMS ((tree));
155 static int unresolved_type_p PARAMS ((tree, tree *));
156 static void create_jdep_list PARAMS ((struct parser_ctxt *));
157 static tree build_expr_block PARAMS ((tree, tree));
158 static tree enter_block PARAMS ((void));
159 static tree exit_block PARAMS ((void));
160 static tree lookup_name_in_blocks PARAMS ((tree));
161 static void maybe_absorb_scoping_blocks PARAMS ((void));
162 static tree build_method_invocation PARAMS ((tree, tree));
163 static tree build_new_invocation PARAMS ((tree, tree));
164 static tree build_assignment PARAMS ((int, int, tree, tree));
165 static tree build_binop PARAMS ((enum tree_code, int, tree, tree));
166 static int check_final_assignment PARAMS ((tree ,tree));
167 static tree patch_assignment PARAMS ((tree, tree, tree ));
168 static tree patch_binop PARAMS ((tree, tree, tree));
169 static tree build_unaryop PARAMS ((int, int, tree));
170 static tree build_incdec PARAMS ((int, int, tree, int));
171 static tree patch_unaryop PARAMS ((tree, tree));
172 static tree build_cast PARAMS ((int, tree, tree));
173 static tree build_null_of_type PARAMS ((tree));
174 static tree patch_cast PARAMS ((tree, tree));
175 static int valid_ref_assignconv_cast_p PARAMS ((tree, tree, int));
176 static int valid_builtin_assignconv_identity_widening_p PARAMS ((tree, tree));
177 static int valid_cast_to_p PARAMS ((tree, tree));
178 static int valid_method_invocation_conversion_p PARAMS ((tree, tree));
179 static tree try_builtin_assignconv PARAMS ((tree, tree, tree));
180 static tree try_reference_assignconv PARAMS ((tree, tree));
181 static tree build_unresolved_array_type PARAMS ((tree));
182 static tree build_array_from_name PARAMS ((tree, tree, tree, tree *));
183 static tree build_array_ref PARAMS ((int, tree, tree));
184 static tree patch_array_ref PARAMS ((tree));
185 static tree make_qualified_name PARAMS ((tree, tree, int));
186 static tree merge_qualified_name PARAMS ((tree, tree));
187 static tree make_qualified_primary PARAMS ((tree, tree, int));
188 static int resolve_qualified_expression_name PARAMS ((tree, tree *,
189 tree *, tree *));
190 static void qualify_ambiguous_name PARAMS ((tree));
191 static tree resolve_field_access PARAMS ((tree, tree *, tree *));
192 static tree build_newarray_node PARAMS ((tree, tree, int));
193 static tree patch_newarray PARAMS ((tree));
194 static tree resolve_type_during_patch PARAMS ((tree));
195 static tree build_this PARAMS ((int));
196 static tree build_wfl_wrap PARAMS ((tree, int));
197 static tree build_return PARAMS ((int, tree));
198 static tree patch_return PARAMS ((tree));
199 static tree maybe_access_field PARAMS ((tree, tree, tree));
200 static int complete_function_arguments PARAMS ((tree));
201 static int check_for_static_method_reference PARAMS ((tree, tree, tree,
202 tree, tree));
203 static int not_accessible_p PARAMS ((tree, tree, tree, int));
204 static void check_deprecation PARAMS ((tree, tree));
205 static int class_in_current_package PARAMS ((tree));
206 static tree build_if_else_statement PARAMS ((int, tree, tree, tree));
207 static tree patch_if_else_statement PARAMS ((tree));
208 static tree add_stmt_to_compound PARAMS ((tree, tree, tree));
209 static tree add_stmt_to_block PARAMS ((tree, tree, tree));
210 static tree patch_exit_expr PARAMS ((tree));
211 static tree build_labeled_block PARAMS ((int, tree));
212 static tree finish_labeled_statement PARAMS ((tree, tree));
213 static tree build_bc_statement PARAMS ((int, int, tree));
214 static tree patch_bc_statement PARAMS ((tree));
215 static tree patch_loop_statement PARAMS ((tree));
216 static tree build_new_loop PARAMS ((tree));
217 static tree build_loop_body PARAMS ((int, tree, int));
218 static tree finish_loop_body PARAMS ((int, tree, tree, int));
219 static tree build_debugable_stmt PARAMS ((int, tree));
220 static tree finish_for_loop PARAMS ((int, tree, tree, tree));
221 static tree patch_switch_statement PARAMS ((tree));
222 static tree string_constant_concatenation PARAMS ((tree, tree));
223 static tree build_string_concatenation PARAMS ((tree, tree));
224 static tree patch_string_cst PARAMS ((tree));
225 static tree patch_string PARAMS ((tree));
226 static tree encapsulate_with_try_catch PARAMS ((int, tree, tree, tree));
227 static tree build_try_statement PARAMS ((int, tree, tree));
228 static tree build_try_finally_statement PARAMS ((int, tree, tree));
229 static tree patch_try_statement PARAMS ((tree));
230 static tree patch_synchronized_statement PARAMS ((tree, tree));
231 static tree patch_throw_statement PARAMS ((tree, tree));
232 static void check_thrown_exceptions PARAMS ((int, tree));
233 static int check_thrown_exceptions_do PARAMS ((tree));
234 static void purge_unchecked_exceptions PARAMS ((tree));
235 static bool ctors_unchecked_throws_clause_p PARAMS ((tree));
236 static void check_throws_clauses PARAMS ((tree, tree, tree));
237 static void finish_method_declaration PARAMS ((tree));
238 static tree build_super_invocation PARAMS ((tree));
239 static int verify_constructor_circularity PARAMS ((tree, tree));
240 static char *constructor_circularity_msg PARAMS ((tree, tree));
241 static tree build_this_super_qualified_invocation PARAMS ((int, tree, tree,
242 int, int));
243 static const char *get_printable_method_name PARAMS ((tree));
244 static tree patch_conditional_expr PARAMS ((tree, tree, tree));
245 static tree generate_finit PARAMS ((tree));
246 static tree generate_instinit PARAMS ((tree));
247 static tree build_instinit_invocation PARAMS ((tree));
248 static void fix_constructors PARAMS ((tree));
249 static tree build_alias_initializer_parameter_list PARAMS ((int, tree,
250 tree, int *));
251 static void craft_constructor PARAMS ((tree, tree));
252 static int verify_constructor_super PARAMS ((tree));
253 static tree create_artificial_method PARAMS ((tree, int, tree, tree, tree));
254 static void start_artificial_method_body PARAMS ((tree));
255 static void end_artificial_method_body PARAMS ((tree));
256 static int check_method_redefinition PARAMS ((tree, tree));
257 static int check_method_types_complete PARAMS ((tree));
258 static void java_check_regular_methods PARAMS ((tree));
259 static void java_check_abstract_methods PARAMS ((tree));
260 static tree maybe_build_primttype_type_ref PARAMS ((tree, tree));
261 static void unreachable_stmt_error PARAMS ((tree));
262 static tree find_expr_with_wfl PARAMS ((tree));
263 static void missing_return_error PARAMS ((tree));
264 static tree build_new_array_init PARAMS ((int, tree));
265 static tree patch_new_array_init PARAMS ((tree, tree));
266 static tree maybe_build_array_element_wfl PARAMS ((tree));
267 static int array_constructor_check_entry PARAMS ((tree, tree));
268 static const char *purify_type_name PARAMS ((const char *));
269 static tree fold_constant_for_init PARAMS ((tree, tree));
270 static tree strip_out_static_field_access_decl PARAMS ((tree));
271 static jdeplist *reverse_jdep_list PARAMS ((struct parser_ctxt *));
272 static void static_ref_err PARAMS ((tree, tree, tree));
273 static void parser_add_interface PARAMS ((tree, tree, tree));
274 static void add_superinterfaces PARAMS ((tree, tree));
275 static tree jdep_resolve_class PARAMS ((jdep *));
276 static int note_possible_classname PARAMS ((const char *, int));
277 static void java_complete_expand_classes PARAMS ((void));
278 static void java_complete_expand_class PARAMS ((tree));
279 static void java_complete_expand_methods PARAMS ((tree));
280 static tree cut_identifier_in_qualified PARAMS ((tree));
281 static tree java_stabilize_reference PARAMS ((tree));
282 static tree do_unary_numeric_promotion PARAMS ((tree));
283 static char * operator_string PARAMS ((tree));
284 static tree do_merge_string_cste PARAMS ((tree, const char *, int, int));
285 static tree merge_string_cste PARAMS ((tree, tree, int));
286 static tree java_refold PARAMS ((tree));
287 static int java_decl_equiv PARAMS ((tree, tree));
288 static int binop_compound_p PARAMS ((enum tree_code));
289 static tree search_loop PARAMS ((tree));
290 static int labeled_block_contains_loop_p PARAMS ((tree, tree));
291 static int check_abstract_method_definitions PARAMS ((int, tree, tree));
292 static void java_check_abstract_method_definitions PARAMS ((tree));
293 static void java_debug_context_do PARAMS ((int));
294 static void java_parser_context_push_initialized_field PARAMS ((void));
295 static void java_parser_context_pop_initialized_field PARAMS ((void));
296 static tree reorder_static_initialized PARAMS ((tree));
297 static void java_parser_context_suspend PARAMS ((void));
298 static void java_parser_context_resume PARAMS ((void));
299 static int pop_current_osb PARAMS ((struct parser_ctxt *));
301 /* JDK 1.1 work. FIXME */
303 static tree maybe_make_nested_class_name PARAMS ((tree));
304 static void make_nested_class_name PARAMS ((tree));
305 static void set_nested_class_simple_name_value PARAMS ((tree, int));
306 static void link_nested_class_to_enclosing PARAMS ((void));
307 static tree resolve_inner_class PARAMS ((struct hash_table *, tree, tree *,
308 tree *, tree));
309 static tree find_as_inner_class PARAMS ((tree, tree, tree));
310 static tree find_as_inner_class_do PARAMS ((tree, tree));
311 static int check_inner_class_redefinition PARAMS ((tree, tree));
313 static tree build_thisn_assign PARAMS ((void));
314 static tree build_current_thisn PARAMS ((tree));
315 static tree build_access_to_thisn PARAMS ((tree, tree, int));
316 static tree maybe_build_thisn_access_method PARAMS ((tree));
318 static tree build_outer_field_access PARAMS ((tree, tree));
319 static tree build_outer_field_access_methods PARAMS ((tree));
320 static tree build_outer_field_access_expr PARAMS ((int, tree, tree,
321 tree, tree));
322 static tree build_outer_method_access_method PARAMS ((tree));
323 static tree build_new_access_id PARAMS ((void));
324 static tree build_outer_field_access_method PARAMS ((tree, tree, tree,
325 tree, tree));
327 static int outer_field_access_p PARAMS ((tree, tree));
328 static int outer_field_expanded_access_p PARAMS ((tree, tree *,
329 tree *, tree *));
330 static tree outer_field_access_fix PARAMS ((tree, tree, tree));
331 static tree build_incomplete_class_ref PARAMS ((int, tree));
332 static tree patch_incomplete_class_ref PARAMS ((tree));
333 static tree create_anonymous_class PARAMS ((int, tree));
334 static void patch_anonymous_class PARAMS ((tree, tree, tree));
335 static void add_inner_class_fields PARAMS ((tree, tree));
337 static tree build_dot_class_method PARAMS ((tree));
338 static tree build_dot_class_method_invocation PARAMS ((tree));
339 static void create_new_parser_context PARAMS ((int));
340 static void mark_parser_ctxt PARAMS ((void *));
341 static tree maybe_build_class_init_for_field PARAMS ((tree, tree));
343 static bool attach_init_test_initialization_flags PARAMS ((struct hash_entry *,
344 PTR));
345 static bool adjust_init_test_initialization PARAMS ((struct hash_entry *,
346 PTR));
347 static bool emit_test_initialization PARAMS ((struct hash_entry *, PTR));
349 /* Number of error found so far. */
350 int java_error_count;
351 /* Number of warning found so far. */
352 int java_warning_count;
353 /* Tell when not to fold, when doing xrefs */
354 int do_not_fold;
355 /* Cyclic inheritance report, as it can be set by layout_class */
356 const char *cyclic_inheritance_report;
358 /* The current parser context */
359 struct parser_ctxt *ctxp;
361 /* List of things that were analyzed for which code will be generated */
362 struct parser_ctxt *ctxp_for_generation = NULL;
364 /* binop_lookup maps token to tree_code. It is used where binary
365 operations are involved and required by the parser. RDIV_EXPR
366 covers both integral/floating point division. The code is changed
367 once the type of both operator is worked out. */
369 static enum tree_code binop_lookup[19] =
371 PLUS_EXPR, MINUS_EXPR, MULT_EXPR, RDIV_EXPR, TRUNC_MOD_EXPR,
372 LSHIFT_EXPR, RSHIFT_EXPR, URSHIFT_EXPR,
373 BIT_AND_EXPR, BIT_XOR_EXPR, BIT_IOR_EXPR,
374 TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR,
375 EQ_EXPR, NE_EXPR, GT_EXPR, GE_EXPR, LT_EXPR, LE_EXPR,
377 #define BINOP_LOOKUP(VALUE) \
378 binop_lookup [((VALUE) - PLUS_TK) % ARRAY_SIZE (binop_lookup)]
380 /* This is the end index for binary operators that can also be used
381 in compound assignements. */
382 #define BINOP_COMPOUND_CANDIDATES 11
384 /* The "$L" identifier we use to create labels. */
385 static tree label_id = NULL_TREE;
387 /* The "StringBuffer" identifier used for the String `+' operator. */
388 static tree wfl_string_buffer = NULL_TREE;
390 /* The "append" identifier used for String `+' operator. */
391 static tree wfl_append = NULL_TREE;
393 /* The "toString" identifier used for String `+' operator. */
394 static tree wfl_to_string = NULL_TREE;
396 /* The "java.lang" import qualified name. */
397 static tree java_lang_id = NULL_TREE;
399 /* The generated `inst$' identifier used for generated enclosing
400 instance/field access functions. */
401 static tree inst_id = NULL_TREE;
403 /* The "java.lang.Cloneable" qualified name. */
404 static tree java_lang_cloneable = NULL_TREE;
406 /* The "java.io.Serializable" qualified name. */
407 static tree java_io_serializable = NULL_TREE;
409 /* Context and flag for static blocks */
410 static tree current_static_block = NULL_TREE;
412 /* The generated `write_parm_value$' identifier. */
413 static tree wpv_id;
415 /* The list of all packages we've seen so far */
416 static tree package_list = NULL_TREE;
418 /* Hold THIS for the scope of the current public method decl. */
419 static tree current_this;
421 /* Hold a list of catch clauses list. The first element of this list is
422 the list of the catch clauses of the currently analysed try block. */
423 static tree currently_caught_type_list;
425 static tree src_parse_roots[1] = { NULL_TREE };
427 /* All classes seen from source code */
428 #define gclass_list src_parse_roots[0]
430 /* Check modifiers. If one doesn't fit, retrieve it in its declaration
431 line and point it out. */
432 /* Should point out the one that don't fit. ASCII/unicode, going
433 backward. FIXME */
435 #define check_modifiers(__message, __value, __mask) do { \
436 if ((__value) & ~(__mask)) \
438 int i, remainder = (__value) & ~(__mask); \
439 for (i = 0; i <= 10; i++) \
440 if ((1 << i) & remainder) \
441 parse_error_context (ctxp->modifier_ctx [i], (__message), \
442 java_accstring_lookup (1 << i)); \
444 } while (0)
448 %union {
449 tree node;
450 int sub_token;
451 struct {
452 int token;
453 int location;
454 } operator;
455 int value;
459 #include "lex.c"
462 %pure_parser
464 /* Things defined here have to match the order of what's in the
465 binop_lookup table. */
467 %token PLUS_TK MINUS_TK MULT_TK DIV_TK REM_TK
468 %token LS_TK SRS_TK ZRS_TK
469 %token AND_TK XOR_TK OR_TK
470 %token BOOL_AND_TK BOOL_OR_TK
471 %token EQ_TK NEQ_TK GT_TK GTE_TK LT_TK LTE_TK
473 /* This maps to the same binop_lookup entry than the token above */
475 %token PLUS_ASSIGN_TK MINUS_ASSIGN_TK MULT_ASSIGN_TK DIV_ASSIGN_TK
476 %token REM_ASSIGN_TK
477 %token LS_ASSIGN_TK SRS_ASSIGN_TK ZRS_ASSIGN_TK
478 %token AND_ASSIGN_TK XOR_ASSIGN_TK OR_ASSIGN_TK
481 /* Modifier TOKEN have to be kept in this order. Don't scramble it */
483 %token PUBLIC_TK PRIVATE_TK PROTECTED_TK
484 %token STATIC_TK FINAL_TK SYNCHRONIZED_TK
485 %token VOLATILE_TK TRANSIENT_TK NATIVE_TK
486 %token PAD_TK ABSTRACT_TK MODIFIER_TK
487 %token STRICT_TK
489 /* Keep those two in order, too */
490 %token DECR_TK INCR_TK
492 /* From now one, things can be in any order */
494 %token DEFAULT_TK IF_TK THROW_TK
495 %token BOOLEAN_TK DO_TK IMPLEMENTS_TK
496 %token THROWS_TK BREAK_TK IMPORT_TK
497 %token ELSE_TK INSTANCEOF_TK RETURN_TK
498 %token VOID_TK CATCH_TK INTERFACE_TK
499 %token CASE_TK EXTENDS_TK FINALLY_TK
500 %token SUPER_TK WHILE_TK CLASS_TK
501 %token SWITCH_TK CONST_TK TRY_TK
502 %token FOR_TK NEW_TK CONTINUE_TK
503 %token GOTO_TK PACKAGE_TK THIS_TK
505 %token BYTE_TK SHORT_TK INT_TK LONG_TK
506 %token CHAR_TK INTEGRAL_TK
508 %token FLOAT_TK DOUBLE_TK FP_TK
510 %token ID_TK
512 %token REL_QM_TK REL_CL_TK NOT_TK NEG_TK
514 %token ASSIGN_ANY_TK ASSIGN_TK
515 %token OP_TK CP_TK OCB_TK CCB_TK OSB_TK CSB_TK SC_TK C_TK DOT_TK
517 %token STRING_LIT_TK CHAR_LIT_TK INT_LIT_TK FP_LIT_TK
518 %token TRUE_TK FALSE_TK BOOL_LIT_TK NULL_TK
520 %type <value> modifiers MODIFIER_TK final synchronized
522 %type <node> super ID_TK identifier
523 %type <node> name simple_name qualified_name
524 %type <node> type_declaration compilation_unit
525 field_declaration method_declaration extends_interfaces
526 interfaces interface_type_list
527 class_member_declaration
528 import_declarations package_declaration
529 type_declarations interface_body
530 interface_member_declaration constant_declaration
531 interface_member_declarations interface_type
532 abstract_method_declaration interface_type_list
533 %type <node> class_body_declaration class_member_declaration
534 static_initializer constructor_declaration block
535 %type <node> class_body_declarations constructor_header
536 %type <node> class_or_interface_type class_type class_type_list
537 constructor_declarator explicit_constructor_invocation
538 %type <node> dim_expr dim_exprs this_or_super throws
540 %type <node> variable_declarator_id variable_declarator
541 variable_declarators variable_initializer
542 variable_initializers constructor_body
543 array_initializer
545 %type <node> class_body block_end constructor_block_end
546 %type <node> statement statement_without_trailing_substatement
547 labeled_statement if_then_statement label_decl
548 if_then_else_statement while_statement for_statement
549 statement_nsi labeled_statement_nsi do_statement
550 if_then_else_statement_nsi while_statement_nsi
551 for_statement_nsi statement_expression_list for_init
552 for_update statement_expression expression_statement
553 primary_no_new_array expression primary
554 array_creation_expression array_type
555 class_instance_creation_expression field_access
556 method_invocation array_access something_dot_new
557 argument_list postfix_expression while_expression
558 post_increment_expression post_decrement_expression
559 unary_expression_not_plus_minus unary_expression
560 pre_increment_expression pre_decrement_expression
561 unary_expression_not_plus_minus cast_expression
562 multiplicative_expression additive_expression
563 shift_expression relational_expression
564 equality_expression and_expression
565 exclusive_or_expression inclusive_or_expression
566 conditional_and_expression conditional_or_expression
567 conditional_expression assignment_expression
568 left_hand_side assignment for_header for_begin
569 constant_expression do_statement_begin empty_statement
570 switch_statement synchronized_statement throw_statement
571 try_statement switch_expression switch_block
572 catches catch_clause catch_clause_parameter finally
573 anonymous_class_creation
574 %type <node> return_statement break_statement continue_statement
576 %type <operator> ASSIGN_TK MULT_ASSIGN_TK DIV_ASSIGN_TK
577 %type <operator> REM_ASSIGN_TK PLUS_ASSIGN_TK MINUS_ASSIGN_TK
578 %type <operator> LS_ASSIGN_TK SRS_ASSIGN_TK ZRS_ASSIGN_TK
579 %type <operator> AND_ASSIGN_TK XOR_ASSIGN_TK OR_ASSIGN_TK
580 %type <operator> ASSIGN_ANY_TK assignment_operator
581 %token <operator> EQ_TK GTE_TK ZRS_TK SRS_TK GT_TK LTE_TK LS_TK
582 %token <operator> BOOL_AND_TK AND_TK BOOL_OR_TK OR_TK INCR_TK PLUS_TK
583 %token <operator> DECR_TK MINUS_TK MULT_TK DIV_TK XOR_TK REM_TK NEQ_TK
584 %token <operator> NEG_TK REL_QM_TK REL_CL_TK NOT_TK LT_TK OCB_TK CCB_TK
585 %token <operator> OP_TK OSB_TK DOT_TK THROW_TK INSTANCEOF_TK
586 %type <operator> THIS_TK SUPER_TK RETURN_TK BREAK_TK CONTINUE_TK
587 %type <operator> CASE_TK DEFAULT_TK TRY_TK CATCH_TK SYNCHRONIZED_TK
588 %type <operator> NEW_TK
590 %type <node> method_body
592 %type <node> literal INT_LIT_TK FP_LIT_TK BOOL_LIT_TK CHAR_LIT_TK
593 STRING_LIT_TK NULL_TK VOID_TK
595 %type <node> IF_TK WHILE_TK FOR_TK
597 %type <node> formal_parameter_list formal_parameter
598 method_declarator method_header
600 %type <node> primitive_type reference_type type
601 BOOLEAN_TK INTEGRAL_TK FP_TK
603 /* Added or modified JDK 1.1 rule types */
604 %type <node> type_literals
607 /* 19.2 Production from 2.3: The Syntactic Grammar */
608 goal:
610 /* Register static variables with the garbage
611 collector. */
612 ggc_add_tree_root (&label_id, 1);
613 ggc_add_tree_root (&wfl_string_buffer, 1);
614 ggc_add_tree_root (&wfl_append, 1);
615 ggc_add_tree_root (&wfl_to_string, 1);
616 ggc_add_tree_root (&java_lang_id, 1);
617 ggc_add_tree_root (&inst_id, 1);
618 ggc_add_tree_root (&java_lang_cloneable, 1);
619 ggc_add_tree_root (&java_io_serializable, 1);
620 ggc_add_tree_root (&current_static_block, 1);
621 ggc_add_tree_root (&wpv_id, 1);
622 ggc_add_tree_root (&package_list, 1);
623 ggc_add_tree_root (&current_this, 1);
624 ggc_add_tree_root (&currently_caught_type_list, 1);
625 ggc_add_root (&ctxp, 1,
626 sizeof (struct parser_ctxt *),
627 mark_parser_ctxt);
628 ggc_add_root (&ctxp_for_generation, 1,
629 sizeof (struct parser_ctxt *),
630 mark_parser_ctxt);
632 compilation_unit
636 /* 19.3 Productions from 3: Lexical structure */
637 literal:
638 INT_LIT_TK
639 | FP_LIT_TK
640 | BOOL_LIT_TK
641 | CHAR_LIT_TK
642 | STRING_LIT_TK
643 | NULL_TK
646 /* 19.4 Productions from 4: Types, Values and Variables */
647 type:
648 primitive_type
649 | reference_type
652 primitive_type:
653 INTEGRAL_TK
654 | FP_TK
655 | BOOLEAN_TK
658 reference_type:
659 class_or_interface_type
660 | array_type
663 class_or_interface_type:
664 name
667 class_type:
668 class_or_interface_type /* Default rule */
671 interface_type:
672 class_or_interface_type
675 array_type:
676 primitive_type dims
678 int osb = pop_current_osb (ctxp);
679 tree t = build_java_array_type (($1), -1);
680 while (--osb)
681 t = build_unresolved_array_type (t);
682 $$ = t;
684 | name dims
686 int osb = pop_current_osb (ctxp);
687 tree t = $1;
688 while (osb--)
689 t = build_unresolved_array_type (t);
690 $$ = t;
694 /* 19.5 Productions from 6: Names */
695 name:
696 simple_name /* Default rule */
697 | qualified_name /* Default rule */
700 simple_name:
701 identifier /* Default rule */
704 qualified_name:
705 name DOT_TK identifier
706 { $$ = make_qualified_name ($1, $3, $2.location); }
709 identifier:
710 ID_TK
713 /* 19.6: Production from 7: Packages */
714 compilation_unit:
715 {$$ = NULL;}
716 | package_declaration
717 | import_declarations
718 | type_declarations
719 | package_declaration import_declarations
720 | package_declaration type_declarations
721 | import_declarations type_declarations
722 | package_declaration import_declarations type_declarations
725 import_declarations:
726 import_declaration
728 $$ = NULL;
730 | import_declarations import_declaration
732 $$ = NULL;
736 type_declarations:
737 type_declaration
738 | type_declarations type_declaration
741 package_declaration:
742 PACKAGE_TK name SC_TK
744 ctxp->package = EXPR_WFL_NODE ($2);
745 register_package (ctxp->package);
747 | PACKAGE_TK error
748 {yyerror ("Missing name"); RECOVER;}
749 | PACKAGE_TK name error
750 {yyerror ("';' expected"); RECOVER;}
753 import_declaration:
754 single_type_import_declaration
755 | type_import_on_demand_declaration
758 single_type_import_declaration:
759 IMPORT_TK name SC_TK
761 tree name = EXPR_WFL_NODE ($2), last_name;
762 int i = IDENTIFIER_LENGTH (name)-1;
763 const char *last = &IDENTIFIER_POINTER (name)[i];
764 while (last != IDENTIFIER_POINTER (name))
766 if (last [0] == '.')
767 break;
768 last--;
770 last_name = get_identifier (++last);
771 if (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (last_name))
773 tree err = find_name_in_single_imports (last_name);
774 if (err && err != name)
775 parse_error_context
776 ($2, "Ambiguous class: `%s' and `%s'",
777 IDENTIFIER_POINTER (name),
778 IDENTIFIER_POINTER (err));
779 else
780 REGISTER_IMPORT ($2, last_name);
782 else
783 REGISTER_IMPORT ($2, last_name);
785 | IMPORT_TK error
786 {yyerror ("Missing name"); RECOVER;}
787 | IMPORT_TK name error
788 {yyerror ("';' expected"); RECOVER;}
791 type_import_on_demand_declaration:
792 IMPORT_TK name DOT_TK MULT_TK SC_TK
794 tree name = EXPR_WFL_NODE ($2);
795 tree it;
796 /* Search for duplicates. */
797 for (it = ctxp->import_demand_list; it; it = TREE_CHAIN (it))
798 if (EXPR_WFL_NODE (TREE_PURPOSE (it)) == name)
799 break;
800 /* Don't import the same thing more than once, just ignore
801 duplicates (7.5.2) */
802 if (! it)
804 read_import_dir ($2);
805 ctxp->import_demand_list =
806 chainon (ctxp->import_demand_list,
807 build_tree_list ($2, NULL_TREE));
810 | IMPORT_TK name DOT_TK error
811 {yyerror ("'*' expected"); RECOVER;}
812 | IMPORT_TK name DOT_TK MULT_TK error
813 {yyerror ("';' expected"); RECOVER;}
816 type_declaration:
817 class_declaration
818 { end_class_declaration (0); }
819 | interface_declaration
820 { end_class_declaration (0); }
821 | empty_statement
822 | error
824 YYERROR_NOW;
825 yyerror ("Class or interface declaration expected");
829 /* 19.7 Shortened from the original:
830 modifiers: modifier | modifiers modifier
831 modifier: any of public... */
832 modifiers:
833 MODIFIER_TK
835 $$ = (1 << $1);
837 | modifiers MODIFIER_TK
839 int acc = (1 << $2);
840 if ($$ & acc)
841 parse_error_context
842 (ctxp->modifier_ctx [$2], "Modifier `%s' declared twice",
843 java_accstring_lookup (acc));
844 else
846 $$ |= acc;
851 /* 19.8.1 Production from $8.1: Class Declaration */
852 class_declaration:
853 modifiers CLASS_TK identifier super interfaces
854 { create_class ($1, $3, $4, $5); }
855 class_body
856 | CLASS_TK identifier super interfaces
857 { create_class (0, $2, $3, $4); }
858 class_body
859 | modifiers CLASS_TK error
860 {yyerror ("Missing class name"); RECOVER;}
861 | CLASS_TK error
862 {yyerror ("Missing class name"); RECOVER;}
863 | CLASS_TK identifier error
865 if (!ctxp->class_err) yyerror ("'{' expected");
866 DRECOVER(class1);
868 | modifiers CLASS_TK identifier error
869 {if (!ctxp->class_err) yyerror ("'{' expected"); RECOVER;}
872 super:
873 { $$ = NULL; }
874 | EXTENDS_TK class_type
875 { $$ = $2; }
876 | EXTENDS_TK class_type error
877 {yyerror ("'{' expected"); ctxp->class_err=1;}
878 | EXTENDS_TK error
879 {yyerror ("Missing super class name"); ctxp->class_err=1;}
882 interfaces:
883 { $$ = NULL_TREE; }
884 | IMPLEMENTS_TK interface_type_list
885 { $$ = $2; }
886 | IMPLEMENTS_TK error
888 ctxp->class_err=1;
889 yyerror ("Missing interface name");
893 interface_type_list:
894 interface_type
896 ctxp->interface_number = 1;
897 $$ = build_tree_list ($1, NULL_TREE);
899 | interface_type_list C_TK interface_type
901 ctxp->interface_number++;
902 $$ = chainon ($1, build_tree_list ($3, NULL_TREE));
904 | interface_type_list C_TK error
905 {yyerror ("Missing interface name"); RECOVER;}
908 class_body:
909 OCB_TK CCB_TK
911 /* Store the location of the `}' when doing xrefs */
912 if (flag_emit_xref)
913 DECL_END_SOURCE_LINE (GET_CPC ()) =
914 EXPR_WFL_ADD_COL ($2.location, 1);
915 $$ = GET_CPC ();
917 | OCB_TK class_body_declarations CCB_TK
919 /* Store the location of the `}' when doing xrefs */
920 if (flag_emit_xref)
921 DECL_END_SOURCE_LINE (GET_CPC ()) =
922 EXPR_WFL_ADD_COL ($3.location, 1);
923 $$ = GET_CPC ();
927 class_body_declarations:
928 class_body_declaration
929 | class_body_declarations class_body_declaration
932 class_body_declaration:
933 class_member_declaration
934 | static_initializer
935 | constructor_declaration
936 | block /* Added, JDK1.1, instance initializer */
938 if ($1 != empty_stmt_node)
940 TREE_CHAIN ($1) = CPC_INSTANCE_INITIALIZER_STMT (ctxp);
941 SET_CPC_INSTANCE_INITIALIZER_STMT (ctxp, $1);
946 class_member_declaration:
947 field_declaration
948 | method_declaration
949 | class_declaration /* Added, JDK1.1 inner classes */
950 { end_class_declaration (1); }
951 | interface_declaration /* Added, JDK1.1 inner interfaces */
952 { end_class_declaration (1); }
953 | empty_statement
956 /* 19.8.2 Productions from 8.3: Field Declarations */
957 field_declaration:
958 type variable_declarators SC_TK
959 { register_fields (0, $1, $2); }
960 | modifiers type variable_declarators SC_TK
962 check_modifiers
963 ("Illegal modifier `%s' for field declaration",
964 $1, FIELD_MODIFIERS);
965 check_modifiers_consistency ($1);
966 register_fields ($1, $2, $3);
970 variable_declarators:
971 /* Should we use build_decl_list () instead ? FIXME */
972 variable_declarator /* Default rule */
973 | variable_declarators C_TK variable_declarator
974 { $$ = chainon ($1, $3); }
975 | variable_declarators C_TK error
976 {yyerror ("Missing term"); RECOVER;}
979 variable_declarator:
980 variable_declarator_id
981 { $$ = build_tree_list ($1, NULL_TREE); }
982 | variable_declarator_id ASSIGN_TK variable_initializer
984 if (java_error_count)
985 $3 = NULL_TREE;
986 $$ = build_tree_list
987 ($1, build_assignment ($2.token, $2.location, $1, $3));
989 | variable_declarator_id ASSIGN_TK error
991 yyerror ("Missing variable initializer");
992 $$ = build_tree_list ($1, NULL_TREE);
993 RECOVER;
995 | variable_declarator_id ASSIGN_TK variable_initializer error
997 yyerror ("';' expected");
998 $$ = build_tree_list ($1, NULL_TREE);
999 RECOVER;
1003 variable_declarator_id:
1004 identifier
1005 | variable_declarator_id OSB_TK CSB_TK
1006 { $$ = build_unresolved_array_type ($1); }
1007 | identifier error
1008 {yyerror ("Invalid declaration"); DRECOVER(vdi);}
1009 | variable_declarator_id OSB_TK error
1011 tree node = java_lval.node;
1012 if (node && (TREE_CODE (node) == INTEGER_CST
1013 || TREE_CODE (node) == EXPR_WITH_FILE_LOCATION))
1014 yyerror ("Can't specify array dimension in a declaration");
1015 else
1016 yyerror ("']' expected");
1017 DRECOVER(vdi);
1019 | variable_declarator_id CSB_TK error
1020 {yyerror ("Unbalanced ']'"); DRECOVER(vdi);}
1023 variable_initializer:
1024 expression
1025 | array_initializer
1028 /* 19.8.3 Productions from 8.4: Method Declarations */
1029 method_declaration:
1030 method_header
1032 current_function_decl = $1;
1033 if (current_function_decl
1034 && TREE_CODE (current_function_decl) == FUNCTION_DECL)
1035 source_start_java_method (current_function_decl);
1036 else
1037 current_function_decl = NULL_TREE;
1039 method_body
1040 { finish_method_declaration ($3); }
1041 | method_header error
1042 {YYNOT_TWICE yyerror ("'{' expected"); RECOVER;}
1045 method_header:
1046 type method_declarator throws
1047 { $$ = method_header (0, $1, $2, $3); }
1048 | VOID_TK method_declarator throws
1049 { $$ = method_header (0, void_type_node, $2, $3); }
1050 | modifiers type method_declarator throws
1051 { $$ = method_header ($1, $2, $3, $4); }
1052 | modifiers VOID_TK method_declarator throws
1053 { $$ = method_header ($1, void_type_node, $3, $4); }
1054 | type error
1056 yyerror ("Invalid method declaration, method name required");
1057 RECOVER;
1059 | modifiers type error
1060 {RECOVER;}
1061 | VOID_TK error
1062 {yyerror ("Identifier expected"); RECOVER;}
1063 | modifiers VOID_TK error
1064 {yyerror ("Identifier expected"); RECOVER;}
1065 | modifiers error
1067 yyerror ("Invalid method declaration, return type required");
1068 RECOVER;
1072 method_declarator:
1073 identifier OP_TK CP_TK
1075 ctxp->formal_parameter_number = 0;
1076 $$ = method_declarator ($1, NULL_TREE);
1078 | identifier OP_TK formal_parameter_list CP_TK
1079 { $$ = method_declarator ($1, $3); }
1080 | method_declarator OSB_TK CSB_TK
1082 EXPR_WFL_LINECOL (wfl_operator) = $2.location;
1083 TREE_PURPOSE ($1) =
1084 build_unresolved_array_type (TREE_PURPOSE ($1));
1085 parse_warning_context
1086 (wfl_operator,
1087 "Discouraged form of returned type specification");
1089 | identifier OP_TK error
1090 {yyerror ("')' expected"); DRECOVER(method_declarator);}
1091 | method_declarator OSB_TK error
1092 {yyerror ("']' expected"); RECOVER;}
1095 formal_parameter_list:
1096 formal_parameter
1098 ctxp->formal_parameter_number = 1;
1100 | formal_parameter_list C_TK formal_parameter
1102 ctxp->formal_parameter_number += 1;
1103 $$ = chainon ($1, $3);
1105 | formal_parameter_list C_TK error
1106 { yyerror ("Missing formal parameter term"); RECOVER; }
1109 formal_parameter:
1110 type variable_declarator_id
1112 $$ = build_tree_list ($2, $1);
1114 | final type variable_declarator_id /* Added, JDK1.1 final parms */
1116 $$ = build_tree_list ($3, $2);
1117 ARG_FINAL_P ($$) = 1;
1119 | type error
1121 yyerror ("Missing identifier"); RECOVER;
1122 $$ = NULL_TREE;
1124 | final type error
1126 yyerror ("Missing identifier"); RECOVER;
1127 $$ = NULL_TREE;
1131 final:
1132 modifiers
1134 check_modifiers ("Illegal modifier `%s'. Only `final' was expected here",
1135 $1, ACC_FINAL);
1136 if ($1 != ACC_FINAL)
1137 MODIFIER_WFL (FINAL_TK) = build_wfl_node (NULL_TREE);
1141 throws:
1142 { $$ = NULL_TREE; }
1143 | THROWS_TK class_type_list
1144 { $$ = $2; }
1145 | THROWS_TK error
1146 {yyerror ("Missing class type term"); RECOVER;}
1149 class_type_list:
1150 class_type
1151 { $$ = build_tree_list ($1, $1); }
1152 | class_type_list C_TK class_type
1153 { $$ = tree_cons ($3, $3, $1); }
1154 | class_type_list C_TK error
1155 {yyerror ("Missing class type term"); RECOVER;}
1158 method_body:
1159 block
1160 | SC_TK { $$ = NULL_TREE; }
1163 /* 19.8.4 Productions from 8.5: Static Initializers */
1164 static_initializer:
1165 static block
1167 TREE_CHAIN ($2) = CPC_STATIC_INITIALIZER_STMT (ctxp);
1168 SET_CPC_STATIC_INITIALIZER_STMT (ctxp, $2);
1169 current_static_block = NULL_TREE;
1173 static: /* Test lval.sub_token here */
1174 modifiers
1176 check_modifiers ("Illegal modifier `%s' for static initializer", $1, ACC_STATIC);
1177 /* Can't have a static initializer in an innerclass */
1178 if ($1 | ACC_STATIC &&
1179 GET_CPC_LIST () && !TOPLEVEL_CLASS_DECL_P (GET_CPC ()))
1180 parse_error_context
1181 (MODIFIER_WFL (STATIC_TK),
1182 "Can't define static initializer in class `%s'. Static initializer can only be defined in top-level classes",
1183 IDENTIFIER_POINTER (DECL_NAME (GET_CPC ())));
1184 SOURCE_FRONTEND_DEBUG (("Modifiers: %d", $1));
1188 /* 19.8.5 Productions from 8.6: Constructor Declarations */
1189 constructor_declaration:
1190 constructor_header
1192 current_function_decl = $1;
1193 source_start_java_method (current_function_decl);
1195 constructor_body
1196 { finish_method_declaration ($3); }
1199 constructor_header:
1200 constructor_declarator throws
1201 { $$ = method_header (0, NULL_TREE, $1, $2); }
1202 | modifiers constructor_declarator throws
1203 { $$ = method_header ($1, NULL_TREE, $2, $3); }
1206 constructor_declarator:
1207 simple_name OP_TK CP_TK
1209 ctxp->formal_parameter_number = 0;
1210 $$ = method_declarator ($1, NULL_TREE);
1212 | simple_name OP_TK formal_parameter_list CP_TK
1213 { $$ = method_declarator ($1, $3); }
1216 constructor_body:
1217 /* Unlike regular method, we always need a complete (empty)
1218 body so we can safely perform all the required code
1219 addition (super invocation and field initialization) */
1220 block_begin constructor_block_end
1222 BLOCK_EXPR_BODY ($2) = empty_stmt_node;
1223 $$ = $2;
1225 | block_begin explicit_constructor_invocation constructor_block_end
1226 { $$ = $3; }
1227 | block_begin block_statements constructor_block_end
1228 { $$ = $3; }
1229 | block_begin explicit_constructor_invocation block_statements constructor_block_end
1230 { $$ = $4; }
1233 constructor_block_end:
1234 block_end
1237 /* Error recovery for that rule moved down expression_statement: rule. */
1238 explicit_constructor_invocation:
1239 this_or_super OP_TK CP_TK SC_TK
1241 $$ = build_method_invocation ($1, NULL_TREE);
1242 $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $$);
1243 $$ = java_method_add_stmt (current_function_decl, $$);
1245 | this_or_super OP_TK argument_list CP_TK SC_TK
1247 $$ = build_method_invocation ($1, $3);
1248 $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $$);
1249 $$ = java_method_add_stmt (current_function_decl, $$);
1251 /* Added, JDK1.1 inner classes. Modified because the rule
1252 'primary' couldn't work. */
1253 | name DOT_TK SUPER_TK OP_TK argument_list CP_TK SC_TK
1254 {$$ = parse_jdk1_1_error ("explicit constructor invocation"); }
1255 | name DOT_TK SUPER_TK OP_TK CP_TK SC_TK
1256 {$$ = parse_jdk1_1_error ("explicit constructor invocation"); }
1259 this_or_super: /* Added, simplifies error diagnostics */
1260 THIS_TK
1262 tree wfl = build_wfl_node (this_identifier_node);
1263 EXPR_WFL_LINECOL (wfl) = $1.location;
1264 $$ = wfl;
1266 | SUPER_TK
1268 tree wfl = build_wfl_node (super_identifier_node);
1269 EXPR_WFL_LINECOL (wfl) = $1.location;
1270 $$ = wfl;
1274 /* 19.9 Productions from 9: Interfaces */
1275 /* 19.9.1 Productions from 9.1: Interfaces Declarations */
1276 interface_declaration:
1277 INTERFACE_TK identifier
1278 { create_interface (0, $2, NULL_TREE); }
1279 interface_body
1280 | modifiers INTERFACE_TK identifier
1281 { create_interface ($1, $3, NULL_TREE); }
1282 interface_body
1283 | INTERFACE_TK identifier extends_interfaces
1284 { create_interface (0, $2, $3); }
1285 interface_body
1286 | modifiers INTERFACE_TK identifier extends_interfaces
1287 { create_interface ($1, $3, $4); }
1288 interface_body
1289 | INTERFACE_TK identifier error
1290 {yyerror ("'{' expected"); RECOVER;}
1291 | modifiers INTERFACE_TK identifier error
1292 {yyerror ("'{' expected"); RECOVER;}
1295 extends_interfaces:
1296 EXTENDS_TK interface_type
1298 ctxp->interface_number = 1;
1299 $$ = build_tree_list ($2, NULL_TREE);
1301 | extends_interfaces C_TK interface_type
1303 ctxp->interface_number++;
1304 $$ = chainon ($1, build_tree_list ($3, NULL_TREE));
1306 | EXTENDS_TK error
1307 {yyerror ("Invalid interface type"); RECOVER;}
1308 | extends_interfaces C_TK error
1309 {yyerror ("Missing term"); RECOVER;}
1312 interface_body:
1313 OCB_TK CCB_TK
1314 { $$ = NULL_TREE; }
1315 | OCB_TK interface_member_declarations CCB_TK
1316 { $$ = NULL_TREE; }
1319 interface_member_declarations:
1320 interface_member_declaration
1321 | interface_member_declarations interface_member_declaration
1324 interface_member_declaration:
1325 constant_declaration
1326 | abstract_method_declaration
1327 | class_declaration /* Added, JDK1.1 inner classes */
1328 { end_class_declaration (1); }
1329 | interface_declaration /* Added, JDK1.1 inner interfaces */
1330 { end_class_declaration (1); }
1333 constant_declaration:
1334 field_declaration
1337 abstract_method_declaration:
1338 method_header SC_TK
1340 check_abstract_method_header ($1);
1341 current_function_decl = NULL_TREE; /* FIXME ? */
1343 | method_header error
1344 {yyerror ("';' expected"); RECOVER;}
1347 /* 19.10 Productions from 10: Arrays */
1348 array_initializer:
1349 OCB_TK CCB_TK
1350 { $$ = build_new_array_init ($1.location, NULL_TREE); }
1351 | OCB_TK C_TK CCB_TK
1352 { $$ = build_new_array_init ($1.location, NULL_TREE); }
1353 | OCB_TK variable_initializers CCB_TK
1354 { $$ = build_new_array_init ($1.location, $2); }
1355 | OCB_TK variable_initializers C_TK CCB_TK
1356 { $$ = build_new_array_init ($1.location, $2); }
1359 variable_initializers:
1360 variable_initializer
1362 $$ = tree_cons (maybe_build_array_element_wfl ($1),
1363 $1, NULL_TREE);
1365 | variable_initializers C_TK variable_initializer
1367 $$ = tree_cons (maybe_build_array_element_wfl ($3), $3, $1);
1369 | variable_initializers C_TK error
1370 {yyerror ("Missing term"); RECOVER;}
1373 /* 19.11 Production from 14: Blocks and Statements */
1374 block:
1375 OCB_TK CCB_TK
1377 /* Store the location of the `}' when doing xrefs */
1378 if (current_function_decl && flag_emit_xref)
1379 DECL_END_SOURCE_LINE (current_function_decl) =
1380 EXPR_WFL_ADD_COL ($2.location, 1);
1381 $$ = empty_stmt_node;
1383 | block_begin block_statements block_end
1384 { $$ = $3; }
1387 block_begin:
1388 OCB_TK
1389 { enter_block (); }
1392 block_end:
1393 CCB_TK
1395 maybe_absorb_scoping_blocks ();
1396 /* Store the location of the `}' when doing xrefs */
1397 if (current_function_decl && flag_emit_xref)
1398 DECL_END_SOURCE_LINE (current_function_decl) =
1399 EXPR_WFL_ADD_COL ($1.location, 1);
1400 $$ = exit_block ();
1401 if (!BLOCK_SUBBLOCKS ($$))
1402 BLOCK_SUBBLOCKS ($$) = empty_stmt_node;
1406 block_statements:
1407 block_statement
1408 | block_statements block_statement
1411 block_statement:
1412 local_variable_declaration_statement
1413 | statement
1414 { java_method_add_stmt (current_function_decl, $1); }
1415 | class_declaration /* Added, JDK1.1 local classes */
1417 LOCAL_CLASS_P (TREE_TYPE (GET_CPC ())) = 1;
1418 end_class_declaration (1);
1422 local_variable_declaration_statement:
1423 local_variable_declaration SC_TK /* Can't catch missing ';' here */
1426 local_variable_declaration:
1427 type variable_declarators
1428 { declare_local_variables (0, $1, $2); }
1429 | final type variable_declarators /* Added, JDK1.1 final locals */
1430 { declare_local_variables ($1, $2, $3); }
1433 statement:
1434 statement_without_trailing_substatement
1435 | labeled_statement
1436 | if_then_statement
1437 | if_then_else_statement
1438 | while_statement
1439 | for_statement
1440 { $$ = exit_block (); }
1443 statement_nsi:
1444 statement_without_trailing_substatement
1445 | labeled_statement_nsi
1446 | if_then_else_statement_nsi
1447 | while_statement_nsi
1448 | for_statement_nsi
1449 { $$ = exit_block (); }
1452 statement_without_trailing_substatement:
1453 block
1454 | empty_statement
1455 | expression_statement
1456 | switch_statement
1457 | do_statement
1458 | break_statement
1459 | continue_statement
1460 | return_statement
1461 | synchronized_statement
1462 | throw_statement
1463 | try_statement
1466 empty_statement:
1467 SC_TK
1469 if (flag_extraneous_semicolon
1470 && ! current_static_block
1471 && (! current_function_decl ||
1472 /* Verify we're not in a inner class declaration */
1473 (GET_CPC () != TYPE_NAME
1474 (DECL_CONTEXT (current_function_decl)))))
1477 EXPR_WFL_SET_LINECOL (wfl_operator, lineno, -1);
1478 parse_warning_context (wfl_operator, "An empty declaration is a deprecated feature that should not be used");
1480 $$ = empty_stmt_node;
1484 label_decl:
1485 identifier REL_CL_TK
1487 $$ = build_labeled_block (EXPR_WFL_LINECOL ($1),
1488 EXPR_WFL_NODE ($1));
1489 pushlevel (2);
1490 push_labeled_block ($$);
1491 PUSH_LABELED_BLOCK ($$);
1495 labeled_statement:
1496 label_decl statement
1497 { $$ = finish_labeled_statement ($1, $2); }
1498 | identifier error
1499 {yyerror ("':' expected"); RECOVER;}
1502 labeled_statement_nsi:
1503 label_decl statement_nsi
1504 { $$ = finish_labeled_statement ($1, $2); }
1507 /* We concentrate here a bunch of error handling rules that we couldn't write
1508 earlier, because expression_statement catches a missing ';'. */
1509 expression_statement:
1510 statement_expression SC_TK
1512 /* We have a statement. Generate a WFL around it so
1513 we can debug it */
1514 $$ = build_expr_wfl ($1, input_filename, lineno, 0);
1515 /* We know we have a statement, so set the debug
1516 info to be eventually generate here. */
1517 $$ = JAVA_MAYBE_GENERATE_DEBUG_INFO ($$);
1519 | error SC_TK
1521 YYNOT_TWICE yyerror ("Invalid expression statement");
1522 DRECOVER (expr_stmt);
1524 | error OCB_TK
1526 YYNOT_TWICE yyerror ("Invalid expression statement");
1527 DRECOVER (expr_stmt);
1529 | error CCB_TK
1531 YYNOT_TWICE yyerror ("Invalid expression statement");
1532 DRECOVER (expr_stmt);
1534 | this_or_super OP_TK error
1535 {yyerror ("')' expected"); RECOVER;}
1536 | this_or_super OP_TK CP_TK error
1538 parse_ctor_invocation_error ();
1539 RECOVER;
1541 | this_or_super OP_TK argument_list error
1542 {yyerror ("')' expected"); RECOVER;}
1543 | this_or_super OP_TK argument_list CP_TK error
1545 parse_ctor_invocation_error ();
1546 RECOVER;
1548 | name DOT_TK SUPER_TK error
1549 {yyerror ("'(' expected"); RECOVER;}
1550 | name DOT_TK SUPER_TK OP_TK error
1551 {yyerror ("')' expected"); RECOVER;}
1552 | name DOT_TK SUPER_TK OP_TK argument_list error
1553 {yyerror ("')' expected"); RECOVER;}
1554 | name DOT_TK SUPER_TK OP_TK argument_list CP_TK error
1555 {yyerror ("';' expected"); RECOVER;}
1556 | name DOT_TK SUPER_TK OP_TK CP_TK error
1557 {yyerror ("';' expected"); RECOVER;}
1560 statement_expression:
1561 assignment
1562 | pre_increment_expression
1563 | pre_decrement_expression
1564 | post_increment_expression
1565 | post_decrement_expression
1566 | method_invocation
1567 | class_instance_creation_expression
1570 if_then_statement:
1571 IF_TK OP_TK expression CP_TK statement
1573 $$ = build_if_else_statement ($2.location, $3,
1574 $5, NULL_TREE);
1576 | IF_TK error
1577 {yyerror ("'(' expected"); RECOVER;}
1578 | IF_TK OP_TK error
1579 {yyerror ("Missing term"); RECOVER;}
1580 | IF_TK OP_TK expression error
1581 {yyerror ("')' expected"); RECOVER;}
1584 if_then_else_statement:
1585 IF_TK OP_TK expression CP_TK statement_nsi ELSE_TK statement
1586 { $$ = build_if_else_statement ($2.location, $3, $5, $7); }
1589 if_then_else_statement_nsi:
1590 IF_TK OP_TK expression CP_TK statement_nsi ELSE_TK statement_nsi
1591 { $$ = build_if_else_statement ($2.location, $3, $5, $7); }
1594 switch_statement:
1595 switch_expression
1597 enter_block ();
1599 switch_block
1601 /* Make into "proper list" of COMPOUND_EXPRs.
1602 I.e. make the last statment also have its own
1603 COMPOUND_EXPR. */
1604 maybe_absorb_scoping_blocks ();
1605 TREE_OPERAND ($1, 1) = exit_block ();
1606 $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $1);
1610 switch_expression:
1611 SWITCH_TK OP_TK expression CP_TK
1613 $$ = build (SWITCH_EXPR, NULL_TREE, $3, NULL_TREE);
1614 EXPR_WFL_LINECOL ($$) = $2.location;
1616 | SWITCH_TK error
1617 {yyerror ("'(' expected"); RECOVER;}
1618 | SWITCH_TK OP_TK error
1619 {yyerror ("Missing term or ')'"); DRECOVER(switch_statement);}
1620 | SWITCH_TK OP_TK expression CP_TK error
1621 {yyerror ("'{' expected"); RECOVER;}
1624 /* Default assignment is there to avoid type node on switch_block
1625 node. */
1627 switch_block:
1628 OCB_TK CCB_TK
1629 { $$ = NULL_TREE; }
1630 | OCB_TK switch_labels CCB_TK
1631 { $$ = NULL_TREE; }
1632 | OCB_TK switch_block_statement_groups CCB_TK
1633 { $$ = NULL_TREE; }
1634 | OCB_TK switch_block_statement_groups switch_labels CCB_TK
1635 { $$ = NULL_TREE; }
1638 switch_block_statement_groups:
1639 switch_block_statement_group
1640 | switch_block_statement_groups switch_block_statement_group
1643 switch_block_statement_group:
1644 switch_labels block_statements
1647 switch_labels:
1648 switch_label
1649 | switch_labels switch_label
1652 switch_label:
1653 CASE_TK constant_expression REL_CL_TK
1655 tree lab = build1 (CASE_EXPR, NULL_TREE, $2);
1656 EXPR_WFL_LINECOL (lab) = $1.location;
1657 java_method_add_stmt (current_function_decl, lab);
1659 | DEFAULT_TK REL_CL_TK
1661 tree lab = build (DEFAULT_EXPR, NULL_TREE, NULL_TREE);
1662 EXPR_WFL_LINECOL (lab) = $1.location;
1663 java_method_add_stmt (current_function_decl, lab);
1665 | CASE_TK error
1666 {yyerror ("Missing or invalid constant expression"); RECOVER;}
1667 | CASE_TK constant_expression error
1668 {yyerror ("':' expected"); RECOVER;}
1669 | DEFAULT_TK error
1670 {yyerror ("':' expected"); RECOVER;}
1673 while_expression:
1674 WHILE_TK OP_TK expression CP_TK
1676 tree body = build_loop_body ($2.location, $3, 0);
1677 $$ = build_new_loop (body);
1681 while_statement:
1682 while_expression statement
1683 { $$ = finish_loop_body (0, NULL_TREE, $2, 0); }
1684 | WHILE_TK error
1685 {YYERROR_NOW; yyerror ("'(' expected"); RECOVER;}
1686 | WHILE_TK OP_TK error
1687 {yyerror ("Missing term and ')' expected"); RECOVER;}
1688 | WHILE_TK OP_TK expression error
1689 {yyerror ("')' expected"); RECOVER;}
1692 while_statement_nsi:
1693 while_expression statement_nsi
1694 { $$ = finish_loop_body (0, NULL_TREE, $2, 0); }
1697 do_statement_begin:
1698 DO_TK
1700 tree body = build_loop_body (0, NULL_TREE, 1);
1701 $$ = build_new_loop (body);
1703 /* Need error handing here. FIXME */
1706 do_statement:
1707 do_statement_begin statement WHILE_TK OP_TK expression CP_TK SC_TK
1708 { $$ = finish_loop_body ($4.location, $5, $2, 1); }
1711 for_statement:
1712 for_begin SC_TK expression SC_TK for_update CP_TK statement
1714 if (TREE_CODE_CLASS (TREE_CODE ($3)) == 'c')
1715 $3 = build_wfl_node ($3);
1716 $$ = finish_for_loop (EXPR_WFL_LINECOL ($3), $3, $5, $7);
1718 | for_begin SC_TK SC_TK for_update CP_TK statement
1720 $$ = finish_for_loop (0, NULL_TREE, $4, $6);
1721 /* We have not condition, so we get rid of the EXIT_EXPR */
1722 LOOP_EXPR_BODY_CONDITION_EXPR (LOOP_EXPR_BODY ($$), 0) =
1723 empty_stmt_node;
1725 | for_begin SC_TK error
1726 {yyerror ("Invalid control expression"); RECOVER;}
1727 | for_begin SC_TK expression SC_TK error
1728 {yyerror ("Invalid update expression"); RECOVER;}
1729 | for_begin SC_TK SC_TK error
1730 {yyerror ("Invalid update expression"); RECOVER;}
1733 for_statement_nsi:
1734 for_begin SC_TK expression SC_TK for_update CP_TK statement_nsi
1735 { $$ = finish_for_loop (EXPR_WFL_LINECOL ($3), $3, $5, $7);}
1736 | for_begin SC_TK SC_TK for_update CP_TK statement_nsi
1738 $$ = finish_for_loop (0, NULL_TREE, $4, $6);
1739 /* We have not condition, so we get rid of the EXIT_EXPR */
1740 LOOP_EXPR_BODY_CONDITION_EXPR (LOOP_EXPR_BODY ($$), 0) =
1741 empty_stmt_node;
1745 for_header:
1746 FOR_TK OP_TK
1748 /* This scope defined for local variable that may be
1749 defined within the scope of the for loop */
1750 enter_block ();
1752 | FOR_TK error
1753 {yyerror ("'(' expected"); DRECOVER(for_1);}
1754 | FOR_TK OP_TK error
1755 {yyerror ("Invalid init statement"); RECOVER;}
1758 for_begin:
1759 for_header for_init
1761 /* We now declare the loop body. The loop is
1762 declared as a for loop. */
1763 tree body = build_loop_body (0, NULL_TREE, 0);
1764 $$ = build_new_loop (body);
1765 FOR_LOOP_P ($$) = 1;
1766 /* The loop is added to the current block the for
1767 statement is defined within */
1768 java_method_add_stmt (current_function_decl, $$);
1771 for_init: /* Can be empty */
1772 { $$ = empty_stmt_node; }
1773 | statement_expression_list
1775 /* Init statement recorded within the previously
1776 defined block scope */
1777 $$ = java_method_add_stmt (current_function_decl, $1);
1779 | local_variable_declaration
1781 /* Local variable are recorded within the previously
1782 defined block scope */
1783 $$ = NULL_TREE;
1785 | statement_expression_list error
1786 {yyerror ("';' expected"); DRECOVER(for_init_1);}
1789 for_update: /* Can be empty */
1790 {$$ = empty_stmt_node;}
1791 | statement_expression_list
1792 { $$ = build_debugable_stmt (BUILD_LOCATION (), $1); }
1795 statement_expression_list:
1796 statement_expression
1797 { $$ = add_stmt_to_compound (NULL_TREE, NULL_TREE, $1); }
1798 | statement_expression_list C_TK statement_expression
1799 { $$ = add_stmt_to_compound ($1, NULL_TREE, $3); }
1800 | statement_expression_list C_TK error
1801 {yyerror ("Missing term"); RECOVER;}
1804 break_statement:
1805 BREAK_TK SC_TK
1806 { $$ = build_bc_statement ($1.location, 1, NULL_TREE); }
1807 | BREAK_TK identifier SC_TK
1808 { $$ = build_bc_statement ($1.location, 1, $2); }
1809 | BREAK_TK error
1810 {yyerror ("Missing term"); RECOVER;}
1811 | BREAK_TK identifier error
1812 {yyerror ("';' expected"); RECOVER;}
1815 continue_statement:
1816 CONTINUE_TK SC_TK
1817 { $$ = build_bc_statement ($1.location, 0, NULL_TREE); }
1818 | CONTINUE_TK identifier SC_TK
1819 { $$ = build_bc_statement ($1.location, 0, $2); }
1820 | CONTINUE_TK error
1821 {yyerror ("Missing term"); RECOVER;}
1822 | CONTINUE_TK identifier error
1823 {yyerror ("';' expected"); RECOVER;}
1826 return_statement:
1827 RETURN_TK SC_TK
1828 { $$ = build_return ($1.location, NULL_TREE); }
1829 | RETURN_TK expression SC_TK
1830 { $$ = build_return ($1.location, $2); }
1831 | RETURN_TK error
1832 {yyerror ("Missing term"); RECOVER;}
1833 | RETURN_TK expression error
1834 {yyerror ("';' expected"); RECOVER;}
1837 throw_statement:
1838 THROW_TK expression SC_TK
1840 $$ = build1 (THROW_EXPR, NULL_TREE, $2);
1841 EXPR_WFL_LINECOL ($$) = $1.location;
1843 | THROW_TK error
1844 {yyerror ("Missing term"); RECOVER;}
1845 | THROW_TK expression error
1846 {yyerror ("';' expected"); RECOVER;}
1849 synchronized_statement:
1850 synchronized OP_TK expression CP_TK block
1852 $$ = build (SYNCHRONIZED_EXPR, NULL_TREE, $3, $5);
1853 EXPR_WFL_LINECOL ($$) =
1854 EXPR_WFL_LINECOL (MODIFIER_WFL (SYNCHRONIZED_TK));
1856 | synchronized OP_TK expression CP_TK error
1857 {yyerror ("'{' expected"); RECOVER;}
1858 | synchronized error
1859 {yyerror ("'(' expected"); RECOVER;}
1860 | synchronized OP_TK error CP_TK
1861 {yyerror ("Missing term"); RECOVER;}
1862 | synchronized OP_TK error
1863 {yyerror ("Missing term"); RECOVER;}
1866 synchronized:
1867 modifiers
1869 check_modifiers (
1870 "Illegal modifier `%s'. Only `synchronized' was expected here",
1871 $1, ACC_SYNCHRONIZED);
1872 if ($1 != ACC_SYNCHRONIZED)
1873 MODIFIER_WFL (SYNCHRONIZED_TK) =
1874 build_wfl_node (NULL_TREE);
1878 try_statement:
1879 TRY_TK block catches
1880 { $$ = build_try_statement ($1.location, $2, $3); }
1881 | TRY_TK block finally
1882 { $$ = build_try_finally_statement ($1.location, $2, $3); }
1883 | TRY_TK block catches finally
1884 { $$ = build_try_finally_statement
1885 ($1.location, build_try_statement ($1.location,
1886 $2, $3), $4);
1888 | TRY_TK error
1889 {yyerror ("'{' expected"); DRECOVER (try_statement);}
1892 catches:
1893 catch_clause
1894 | catches catch_clause
1896 TREE_CHAIN ($2) = $1;
1897 $$ = $2;
1901 catch_clause:
1902 catch_clause_parameter block
1904 java_method_add_stmt (current_function_decl, $2);
1905 exit_block ();
1906 $$ = $1;
1909 catch_clause_parameter:
1910 CATCH_TK OP_TK formal_parameter CP_TK
1912 /* We add a block to define a scope for
1913 formal_parameter (CCBP). The formal parameter is
1914 declared initialized by the appropriate function
1915 call */
1916 tree ccpb = enter_block ();
1917 tree init = build_assignment
1918 (ASSIGN_TK, $2.location, TREE_PURPOSE ($3),
1919 build (JAVA_EXC_OBJ_EXPR, ptr_type_node));
1920 declare_local_variables (0, TREE_VALUE ($3),
1921 build_tree_list (TREE_PURPOSE ($3),
1922 init));
1923 $$ = build1 (CATCH_EXPR, NULL_TREE, ccpb);
1924 EXPR_WFL_LINECOL ($$) = $1.location;
1926 | CATCH_TK error
1927 {yyerror ("'(' expected"); RECOVER; $$ = NULL_TREE;}
1928 | CATCH_TK OP_TK error
1930 yyerror ("Missing term or ')' expected");
1931 RECOVER; $$ = NULL_TREE;
1933 | CATCH_TK OP_TK error CP_TK /* That's for () */
1934 {yyerror ("Missing term"); RECOVER; $$ = NULL_TREE;}
1937 finally:
1938 FINALLY_TK block
1939 { $$ = $2; }
1940 | FINALLY_TK error
1941 {yyerror ("'{' expected"); RECOVER; }
1944 /* 19.12 Production from 15: Expressions */
1945 primary:
1946 primary_no_new_array
1947 | array_creation_expression
1950 primary_no_new_array:
1951 literal
1952 | THIS_TK
1953 { $$ = build_this ($1.location); }
1954 | OP_TK expression CP_TK
1955 {$$ = $2;}
1956 | class_instance_creation_expression
1957 | field_access
1958 | method_invocation
1959 | array_access
1960 | type_literals
1961 /* Added, JDK1.1 inner classes. Documentation is wrong
1962 refering to a 'ClassName' (class_name) rule that doesn't
1963 exist. Used name: instead. */
1964 | name DOT_TK THIS_TK
1966 tree wfl = build_wfl_node (this_identifier_node);
1967 $$ = make_qualified_primary ($1, wfl, EXPR_WFL_LINECOL ($1));
1969 | OP_TK expression error
1970 {yyerror ("')' expected"); RECOVER;}
1971 | name DOT_TK error
1972 {yyerror ("'class' or 'this' expected" ); RECOVER;}
1973 | primitive_type DOT_TK error
1974 {yyerror ("'class' expected" ); RECOVER;}
1975 | VOID_TK DOT_TK error
1976 {yyerror ("'class' expected" ); RECOVER;}
1979 type_literals:
1980 name DOT_TK CLASS_TK
1981 { $$ = build_incomplete_class_ref ($2.location, $1); }
1982 | array_type DOT_TK CLASS_TK
1983 { $$ = build_incomplete_class_ref ($2.location, $1); }
1984 | primitive_type DOT_TK CLASS_TK
1985 { $$ = build_incomplete_class_ref ($2.location, $1); }
1986 | VOID_TK DOT_TK CLASS_TK
1988 $$ = build_incomplete_class_ref ($2.location,
1989 void_type_node);
1993 class_instance_creation_expression:
1994 NEW_TK class_type OP_TK argument_list CP_TK
1995 { $$ = build_new_invocation ($2, $4); }
1996 | NEW_TK class_type OP_TK CP_TK
1997 { $$ = build_new_invocation ($2, NULL_TREE); }
1998 | anonymous_class_creation
1999 /* Added, JDK1.1 inner classes, modified to use name or
2000 primary instead of primary solely which couldn't work in
2001 all situations. */
2002 | something_dot_new identifier OP_TK CP_TK
2004 tree ctor = build_new_invocation ($2, NULL_TREE);
2005 $$ = make_qualified_primary ($1, ctor,
2006 EXPR_WFL_LINECOL ($1));
2008 | something_dot_new identifier OP_TK CP_TK class_body
2009 | something_dot_new identifier OP_TK argument_list CP_TK
2011 tree ctor = build_new_invocation ($2, $4);
2012 $$ = make_qualified_primary ($1, ctor,
2013 EXPR_WFL_LINECOL ($1));
2015 | something_dot_new identifier OP_TK argument_list CP_TK class_body
2016 | NEW_TK error SC_TK
2017 {yyerror ("'(' expected"); DRECOVER(new_1);}
2018 | NEW_TK class_type error
2019 {yyerror ("'(' expected"); RECOVER;}
2020 | NEW_TK class_type OP_TK error
2021 {yyerror ("')' or term expected"); RECOVER;}
2022 | NEW_TK class_type OP_TK argument_list error
2023 {yyerror ("')' expected"); RECOVER;}
2024 | something_dot_new error
2025 {YYERROR_NOW; yyerror ("Identifier expected"); RECOVER;}
2026 | something_dot_new identifier error
2027 {yyerror ("'(' expected"); RECOVER;}
2030 /* Created after JDK1.1 rules originally added to
2031 class_instance_creation_expression, but modified to use
2032 'class_type' instead of 'TypeName' (type_name) which is mentionned
2033 in the documentation but doesn't exist. */
2035 anonymous_class_creation:
2036 NEW_TK class_type OP_TK argument_list CP_TK
2037 { create_anonymous_class ($1.location, $2); }
2038 class_body
2040 tree id = build_wfl_node (DECL_NAME (GET_CPC ()));
2041 EXPR_WFL_LINECOL (id) = EXPR_WFL_LINECOL ($2);
2043 end_class_declaration (1);
2045 /* Now we can craft the new expression */
2046 $$ = build_new_invocation (id, $4);
2048 /* Note that we can't possibly be here if
2049 `class_type' is an interface (in which case the
2050 anonymous class extends Object and implements
2051 `class_type', hence its constructor can't have
2052 arguments.) */
2054 /* Otherwise, the innerclass must feature a
2055 constructor matching `argument_list'. Anonymous
2056 classes are a bit special: it's impossible to
2057 define constructor for them, hence constructors
2058 must be generated following the hints provided by
2059 the `new' expression. Whether a super constructor
2060 of that nature exists or not is to be verified
2061 later on in verify_constructor_super.
2063 It's during the expansion of a `new' statement
2064 refering to an anonymous class that a ctor will
2065 be generated for the anonymous class, with the
2066 right arguments. */
2069 | NEW_TK class_type OP_TK CP_TK
2070 { create_anonymous_class ($1.location, $2); }
2071 class_body
2073 tree id = build_wfl_node (DECL_NAME (GET_CPC ()));
2074 EXPR_WFL_LINECOL (id) = EXPR_WFL_LINECOL ($2);
2076 end_class_declaration (1);
2078 /* Now we can craft the new expression. The
2079 statement doesn't need to be remember so that a
2080 constructor can be generated, since its signature
2081 is already known. */
2082 $$ = build_new_invocation (id, NULL_TREE);
2086 something_dot_new: /* Added, not part of the specs. */
2087 name DOT_TK NEW_TK
2088 { $$ = $1; }
2089 | primary DOT_TK NEW_TK
2090 { $$ = $1; }
2093 argument_list:
2094 expression
2096 $$ = tree_cons (NULL_TREE, $1, NULL_TREE);
2097 ctxp->formal_parameter_number = 1;
2099 | argument_list C_TK expression
2101 ctxp->formal_parameter_number += 1;
2102 $$ = tree_cons (NULL_TREE, $3, $1);
2104 | argument_list C_TK error
2105 {yyerror ("Missing term"); RECOVER;}
2108 array_creation_expression:
2109 NEW_TK primitive_type dim_exprs
2110 { $$ = build_newarray_node ($2, $3, 0); }
2111 | NEW_TK class_or_interface_type dim_exprs
2112 { $$ = build_newarray_node ($2, $3, 0); }
2113 | NEW_TK primitive_type dim_exprs dims
2114 { $$ = build_newarray_node ($2, $3, pop_current_osb (ctxp));}
2115 | NEW_TK class_or_interface_type dim_exprs dims
2116 { $$ = build_newarray_node ($2, $3, pop_current_osb (ctxp));}
2117 /* Added, JDK1.1 anonymous array. Initial documentation rule
2118 modified */
2119 | NEW_TK class_or_interface_type dims array_initializer
2121 char *sig;
2122 int osb = pop_current_osb (ctxp);
2123 while (osb--)
2124 obstack_1grow (&temporary_obstack, '[');
2125 sig = obstack_finish (&temporary_obstack);
2126 $$ = build (NEW_ANONYMOUS_ARRAY_EXPR, NULL_TREE,
2127 $2, get_identifier (sig), $4);
2129 | NEW_TK primitive_type dims array_initializer
2131 int osb = pop_current_osb (ctxp);
2132 tree type = $2;
2133 while (osb--)
2134 type = build_java_array_type (type, -1);
2135 $$ = build (NEW_ANONYMOUS_ARRAY_EXPR, NULL_TREE,
2136 build_pointer_type (type), NULL_TREE, $4);
2138 | NEW_TK error CSB_TK
2139 {yyerror ("'[' expected"); DRECOVER ("]");}
2140 | NEW_TK error OSB_TK
2141 {yyerror ("']' expected"); RECOVER;}
2144 dim_exprs:
2145 dim_expr
2146 { $$ = build_tree_list (NULL_TREE, $1); }
2147 | dim_exprs dim_expr
2148 { $$ = tree_cons (NULL_TREE, $2, $$); }
2151 dim_expr:
2152 OSB_TK expression CSB_TK
2154 if (JNUMERIC_TYPE_P (TREE_TYPE ($2)))
2156 $2 = build_wfl_node ($2);
2157 TREE_TYPE ($2) = NULL_TREE;
2159 EXPR_WFL_LINECOL ($2) = $1.location;
2160 $$ = $2;
2162 | OSB_TK expression error
2163 {yyerror ("']' expected"); RECOVER;}
2164 | OSB_TK error
2166 yyerror ("Missing term");
2167 yyerror ("']' expected");
2168 RECOVER;
2172 dims:
2173 OSB_TK CSB_TK
2175 int allocate = 0;
2176 /* If not initialized, allocate memory for the osb
2177 numbers stack */
2178 if (!ctxp->osb_limit)
2180 allocate = ctxp->osb_limit = 32;
2181 ctxp->osb_depth = -1;
2183 /* If capacity overflown, reallocate a bigger chunk */
2184 else if (ctxp->osb_depth+1 == ctxp->osb_limit)
2185 allocate = ctxp->osb_limit << 1;
2187 if (allocate)
2189 allocate *= sizeof (int);
2190 if (ctxp->osb_number)
2191 ctxp->osb_number = (int *)xrealloc (ctxp->osb_number,
2192 allocate);
2193 else
2194 ctxp->osb_number = (int *)xmalloc (allocate);
2196 ctxp->osb_depth++;
2197 CURRENT_OSB (ctxp) = 1;
2199 | dims OSB_TK CSB_TK
2200 { CURRENT_OSB (ctxp)++; }
2201 | dims OSB_TK error
2202 { yyerror ("']' expected"); RECOVER;}
2205 field_access:
2206 primary DOT_TK identifier
2207 { $$ = make_qualified_primary ($1, $3, $2.location); }
2208 /* FIXME - REWRITE TO:
2209 { $$ = build_binop (COMPONENT_REF, $2.location, $1, $3); } */
2210 | SUPER_TK DOT_TK identifier
2212 tree super_wfl = build_wfl_node (super_identifier_node);
2213 EXPR_WFL_LINECOL (super_wfl) = $1.location;
2214 $$ = make_qualified_name (super_wfl, $3, $2.location);
2216 | SUPER_TK error
2217 {yyerror ("Field expected"); DRECOVER (super_field_acces);}
2220 method_invocation:
2221 name OP_TK CP_TK
2222 { $$ = build_method_invocation ($1, NULL_TREE); }
2223 | name OP_TK argument_list CP_TK
2224 { $$ = build_method_invocation ($1, $3); }
2225 | primary DOT_TK identifier OP_TK CP_TK
2227 if (TREE_CODE ($1) == THIS_EXPR)
2228 $$ = build_this_super_qualified_invocation
2229 (1, $3, NULL_TREE, 0, $2.location);
2230 else
2232 tree invok = build_method_invocation ($3, NULL_TREE);
2233 $$ = make_qualified_primary ($1, invok, $2.location);
2236 | primary DOT_TK identifier OP_TK argument_list CP_TK
2238 if (TREE_CODE ($1) == THIS_EXPR)
2239 $$ = build_this_super_qualified_invocation
2240 (1, $3, $5, 0, $2.location);
2241 else
2243 tree invok = build_method_invocation ($3, $5);
2244 $$ = make_qualified_primary ($1, invok, $2.location);
2247 | SUPER_TK DOT_TK identifier OP_TK CP_TK
2249 $$ = build_this_super_qualified_invocation
2250 (0, $3, NULL_TREE, $1.location, $2.location);
2252 | SUPER_TK DOT_TK identifier OP_TK argument_list CP_TK
2254 $$ = build_this_super_qualified_invocation
2255 (0, $3, $5, $1.location, $2.location);
2257 /* Screws up thing. I let it here until I'm convinced it can
2258 be removed. FIXME
2259 | primary DOT_TK error
2260 {yyerror ("'(' expected"); DRECOVER(bad);} */
2261 | SUPER_TK DOT_TK error CP_TK
2262 { yyerror ("'(' expected"); DRECOVER (method_invocation); }
2263 | SUPER_TK DOT_TK error DOT_TK
2264 { yyerror ("'(' expected"); DRECOVER (method_invocation); }
2267 array_access:
2268 name OSB_TK expression CSB_TK
2269 { $$ = build_array_ref ($2.location, $1, $3); }
2270 | primary_no_new_array OSB_TK expression CSB_TK
2271 { $$ = build_array_ref ($2.location, $1, $3); }
2272 | name OSB_TK error
2274 yyerror ("Missing term and ']' expected");
2275 DRECOVER(array_access);
2277 | name OSB_TK expression error
2279 yyerror ("']' expected");
2280 DRECOVER(array_access);
2282 | primary_no_new_array OSB_TK error
2284 yyerror ("Missing term and ']' expected");
2285 DRECOVER(array_access);
2287 | primary_no_new_array OSB_TK expression error
2289 yyerror ("']' expected");
2290 DRECOVER(array_access);
2294 postfix_expression:
2295 primary
2296 | name
2297 | post_increment_expression
2298 | post_decrement_expression
2301 post_increment_expression:
2302 postfix_expression INCR_TK
2303 { $$ = build_incdec ($2.token, $2.location, $1, 1); }
2306 post_decrement_expression:
2307 postfix_expression DECR_TK
2308 { $$ = build_incdec ($2.token, $2.location, $1, 1); }
2311 unary_expression:
2312 pre_increment_expression
2313 | pre_decrement_expression
2314 | PLUS_TK unary_expression
2315 {$$ = build_unaryop ($1.token, $1.location, $2); }
2316 | MINUS_TK unary_expression
2317 {$$ = build_unaryop ($1.token, $1.location, $2); }
2318 | unary_expression_not_plus_minus
2319 | PLUS_TK error
2320 {yyerror ("Missing term"); RECOVER}
2321 | MINUS_TK error
2322 {yyerror ("Missing term"); RECOVER}
2325 pre_increment_expression:
2326 INCR_TK unary_expression
2327 {$$ = build_incdec ($1.token, $1.location, $2, 0); }
2328 | INCR_TK error
2329 {yyerror ("Missing term"); RECOVER}
2332 pre_decrement_expression:
2333 DECR_TK unary_expression
2334 {$$ = build_incdec ($1.token, $1.location, $2, 0); }
2335 | DECR_TK error
2336 {yyerror ("Missing term"); RECOVER}
2339 unary_expression_not_plus_minus:
2340 postfix_expression
2341 | NOT_TK unary_expression
2342 {$$ = build_unaryop ($1.token, $1.location, $2); }
2343 | NEG_TK unary_expression
2344 {$$ = build_unaryop ($1.token, $1.location, $2); }
2345 | cast_expression
2346 | NOT_TK error
2347 {yyerror ("Missing term"); RECOVER}
2348 | NEG_TK error
2349 {yyerror ("Missing term"); RECOVER}
2352 cast_expression: /* Error handling here is potentially weak */
2353 OP_TK primitive_type dims CP_TK unary_expression
2355 tree type = $2;
2356 int osb = pop_current_osb (ctxp);
2357 while (osb--)
2358 type = build_java_array_type (type, -1);
2359 $$ = build_cast ($1.location, type, $5);
2361 | OP_TK primitive_type CP_TK unary_expression
2362 { $$ = build_cast ($1.location, $2, $4); }
2363 | OP_TK expression CP_TK unary_expression_not_plus_minus
2364 { $$ = build_cast ($1.location, $2, $4); }
2365 | OP_TK name dims CP_TK unary_expression_not_plus_minus
2367 const char *ptr;
2368 int osb = pop_current_osb (ctxp);
2369 while (osb--)
2370 obstack_1grow (&temporary_obstack, '[');
2371 obstack_grow0 (&temporary_obstack,
2372 IDENTIFIER_POINTER (EXPR_WFL_NODE ($2)),
2373 IDENTIFIER_LENGTH (EXPR_WFL_NODE ($2)));
2374 ptr = obstack_finish (&temporary_obstack);
2375 EXPR_WFL_NODE ($2) = get_identifier (ptr);
2376 $$ = build_cast ($1.location, $2, $5);
2378 | OP_TK primitive_type OSB_TK error
2379 {yyerror ("']' expected, invalid type expression");}
2380 | OP_TK error
2382 YYNOT_TWICE yyerror ("Invalid type expression"); RECOVER;
2383 RECOVER;
2385 | OP_TK primitive_type dims CP_TK error
2386 {yyerror ("Missing term"); RECOVER;}
2387 | OP_TK primitive_type CP_TK error
2388 {yyerror ("Missing term"); RECOVER;}
2389 | OP_TK name dims CP_TK error
2390 {yyerror ("Missing term"); RECOVER;}
2393 multiplicative_expression:
2394 unary_expression
2395 | multiplicative_expression MULT_TK unary_expression
2397 $$ = build_binop (BINOP_LOOKUP ($2.token),
2398 $2.location, $1, $3);
2400 | multiplicative_expression DIV_TK unary_expression
2402 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2403 $1, $3);
2405 | multiplicative_expression REM_TK unary_expression
2407 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2408 $1, $3);
2410 | multiplicative_expression MULT_TK error
2411 {yyerror ("Missing term"); RECOVER;}
2412 | multiplicative_expression DIV_TK error
2413 {yyerror ("Missing term"); RECOVER;}
2414 | multiplicative_expression REM_TK error
2415 {yyerror ("Missing term"); RECOVER;}
2418 additive_expression:
2419 multiplicative_expression
2420 | additive_expression PLUS_TK multiplicative_expression
2422 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2423 $1, $3);
2425 | additive_expression MINUS_TK multiplicative_expression
2427 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2428 $1, $3);
2430 | additive_expression PLUS_TK error
2431 {yyerror ("Missing term"); RECOVER;}
2432 | additive_expression MINUS_TK error
2433 {yyerror ("Missing term"); RECOVER;}
2436 shift_expression:
2437 additive_expression
2438 | shift_expression LS_TK additive_expression
2440 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2441 $1, $3);
2443 | shift_expression SRS_TK additive_expression
2445 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2446 $1, $3);
2448 | shift_expression ZRS_TK additive_expression
2450 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2451 $1, $3);
2453 | shift_expression LS_TK error
2454 {yyerror ("Missing term"); RECOVER;}
2455 | shift_expression SRS_TK error
2456 {yyerror ("Missing term"); RECOVER;}
2457 | shift_expression ZRS_TK error
2458 {yyerror ("Missing term"); RECOVER;}
2461 relational_expression:
2462 shift_expression
2463 | relational_expression LT_TK shift_expression
2465 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2466 $1, $3);
2468 | relational_expression GT_TK shift_expression
2470 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2471 $1, $3);
2473 | relational_expression LTE_TK shift_expression
2475 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2476 $1, $3);
2478 | relational_expression GTE_TK shift_expression
2480 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2481 $1, $3);
2483 | relational_expression INSTANCEOF_TK reference_type
2484 { $$ = build_binop (INSTANCEOF_EXPR, $2.location, $1, $3); }
2485 | relational_expression LT_TK error
2486 {yyerror ("Missing term"); RECOVER;}
2487 | relational_expression GT_TK error
2488 {yyerror ("Missing term"); RECOVER;}
2489 | relational_expression LTE_TK error
2490 {yyerror ("Missing term"); RECOVER;}
2491 | relational_expression GTE_TK error
2492 {yyerror ("Missing term"); RECOVER;}
2493 | relational_expression INSTANCEOF_TK error
2494 {yyerror ("Invalid reference type"); RECOVER;}
2497 equality_expression:
2498 relational_expression
2499 | equality_expression EQ_TK relational_expression
2501 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2502 $1, $3);
2504 | equality_expression NEQ_TK relational_expression
2506 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2507 $1, $3);
2509 | equality_expression EQ_TK error
2510 {yyerror ("Missing term"); RECOVER;}
2511 | equality_expression NEQ_TK error
2512 {yyerror ("Missing term"); RECOVER;}
2515 and_expression:
2516 equality_expression
2517 | and_expression AND_TK equality_expression
2519 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2520 $1, $3);
2522 | and_expression AND_TK error
2523 {yyerror ("Missing term"); RECOVER;}
2526 exclusive_or_expression:
2527 and_expression
2528 | exclusive_or_expression XOR_TK and_expression
2530 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2531 $1, $3);
2533 | exclusive_or_expression XOR_TK error
2534 {yyerror ("Missing term"); RECOVER;}
2537 inclusive_or_expression:
2538 exclusive_or_expression
2539 | inclusive_or_expression OR_TK exclusive_or_expression
2541 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2542 $1, $3);
2544 | inclusive_or_expression OR_TK error
2545 {yyerror ("Missing term"); RECOVER;}
2548 conditional_and_expression:
2549 inclusive_or_expression
2550 | conditional_and_expression BOOL_AND_TK inclusive_or_expression
2552 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2553 $1, $3);
2555 | conditional_and_expression BOOL_AND_TK error
2556 {yyerror ("Missing term"); RECOVER;}
2559 conditional_or_expression:
2560 conditional_and_expression
2561 | conditional_or_expression BOOL_OR_TK conditional_and_expression
2563 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2564 $1, $3);
2566 | conditional_or_expression BOOL_OR_TK error
2567 {yyerror ("Missing term"); RECOVER;}
2570 conditional_expression: /* Error handling here is weak */
2571 conditional_or_expression
2572 | conditional_or_expression REL_QM_TK expression REL_CL_TK conditional_expression
2574 $$ = build (CONDITIONAL_EXPR, NULL_TREE, $1, $3, $5);
2575 EXPR_WFL_LINECOL ($$) = $2.location;
2577 | conditional_or_expression REL_QM_TK REL_CL_TK error
2579 YYERROR_NOW;
2580 yyerror ("Missing term");
2581 DRECOVER (1);
2583 | conditional_or_expression REL_QM_TK error
2584 {yyerror ("Missing term"); DRECOVER (2);}
2585 | conditional_or_expression REL_QM_TK expression REL_CL_TK error
2586 {yyerror ("Missing term"); DRECOVER (3);}
2589 assignment_expression:
2590 conditional_expression
2591 | assignment
2594 assignment:
2595 left_hand_side assignment_operator assignment_expression
2596 { $$ = build_assignment ($2.token, $2.location, $1, $3); }
2597 | left_hand_side assignment_operator error
2599 YYNOT_TWICE yyerror ("Missing term");
2600 DRECOVER (assign);
2604 left_hand_side:
2605 name
2606 | field_access
2607 | array_access
2610 assignment_operator:
2611 ASSIGN_ANY_TK
2612 | ASSIGN_TK
2615 expression:
2616 assignment_expression
2619 constant_expression:
2620 expression
2625 /* Helper function to retrieve an OSB count. Should be used when the
2626 `dims:' rule is being used. */
2628 static int
2629 pop_current_osb (ctxp)
2630 struct parser_ctxt *ctxp;
2632 int to_return;
2634 if (ctxp->osb_depth < 0)
2635 abort ();
2637 to_return = CURRENT_OSB (ctxp);
2638 ctxp->osb_depth--;
2640 return to_return;
2645 /* This section of the code deal with save/restoring parser contexts.
2646 Add mode documentation here. FIXME */
2648 /* Helper function. Create a new parser context. With
2649 COPY_FROM_PREVIOUS set to a non zero value, content of the previous
2650 context is copied, otherwise, the new context is zeroed. The newly
2651 created context becomes the current one. */
2653 static void
2654 create_new_parser_context (copy_from_previous)
2655 int copy_from_previous;
2657 struct parser_ctxt *new;
2659 new = (struct parser_ctxt *)xmalloc(sizeof (struct parser_ctxt));
2660 if (copy_from_previous)
2662 memcpy ((PTR)new, (PTR)ctxp, sizeof (struct parser_ctxt));
2663 new->saved_data_ctx = 1;
2665 else
2666 memset ((PTR) new, 0, sizeof (struct parser_ctxt));
2668 new->next = ctxp;
2669 ctxp = new;
2672 /* Create a new parser context and make it the current one. */
2674 void
2675 java_push_parser_context ()
2677 create_new_parser_context (0);
2680 void
2681 java_pop_parser_context (generate)
2682 int generate;
2684 tree current;
2685 struct parser_ctxt *toFree, *next;
2687 if (!ctxp)
2688 return;
2690 toFree = ctxp;
2691 next = ctxp->next;
2692 if (next)
2694 lineno = ctxp->lineno;
2695 current_class = ctxp->class_type;
2698 /* If the old and new lexers differ, then free the old one. */
2699 if (ctxp->lexer && next && ctxp->lexer != next->lexer)
2700 java_destroy_lexer (ctxp->lexer);
2702 /* Set the single import class file flag to 0 for the current list
2703 of imported things */
2704 for (current = ctxp->import_list; current; current = TREE_CHAIN (current))
2705 IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (TREE_VALUE (current)) = 0;
2707 /* And restore those of the previous context */
2708 if ((ctxp = next)) /* Assignment is really meant here */
2709 for (current = ctxp->import_list; current; current = TREE_CHAIN (current))
2710 IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (TREE_VALUE (current)) = 1;
2712 /* If we pushed a context to parse a class intended to be generated,
2713 we keep it so we can remember the class. What we could actually
2714 do is to just update a list of class names. */
2715 if (generate)
2717 toFree->next = ctxp_for_generation;
2718 ctxp_for_generation = toFree;
2720 else
2721 free (toFree);
2724 /* Create a parser context for the use of saving some global
2725 variables. */
2727 void
2728 java_parser_context_save_global ()
2730 if (!ctxp)
2732 java_push_parser_context ();
2733 ctxp->saved_data_ctx = 1;
2736 /* If this context already stores data, create a new one suitable
2737 for data storage. */
2738 else if (ctxp->saved_data)
2739 create_new_parser_context (1);
2741 ctxp->lineno = lineno;
2742 ctxp->class_type = current_class;
2743 ctxp->filename = input_filename;
2744 ctxp->function_decl = current_function_decl;
2745 ctxp->saved_data = 1;
2748 /* Restore some global variables from the previous context. Make the
2749 previous context the current one. */
2751 void
2752 java_parser_context_restore_global ()
2754 lineno = ctxp->lineno;
2755 current_class = ctxp->class_type;
2756 input_filename = ctxp->filename;
2757 if (wfl_operator)
2759 tree s;
2760 BUILD_FILENAME_IDENTIFIER_NODE (s, input_filename);
2761 EXPR_WFL_FILENAME_NODE (wfl_operator) = s;
2763 current_function_decl = ctxp->function_decl;
2764 ctxp->saved_data = 0;
2765 if (ctxp->saved_data_ctx)
2766 java_pop_parser_context (0);
2769 /* Suspend vital data for the current class/function being parsed so
2770 that an other class can be parsed. Used to let local/anonymous
2771 classes be parsed. */
2773 static void
2774 java_parser_context_suspend ()
2776 /* This makes debugging through java_debug_context easier */
2777 static const char *name = "<inner buffer context>";
2779 /* Duplicate the previous context, use it to save the globals we're
2780 interested in */
2781 create_new_parser_context (1);
2782 ctxp->function_decl = current_function_decl;
2783 ctxp->class_type = current_class;
2785 /* Then create a new context which inherits all data from the
2786 previous one. This will be the new current context */
2787 create_new_parser_context (1);
2789 /* Help debugging */
2790 ctxp->next->filename = name;
2793 /* Resume vital data for the current class/function being parsed so
2794 that an other class can be parsed. Used to let local/anonymous
2795 classes be parsed. The trick is the data storing file position
2796 informations must be restored to their current value, so parsing
2797 can resume as if no context was ever saved. */
2799 static void
2800 java_parser_context_resume ()
2802 struct parser_ctxt *old = ctxp; /* This one is to be discarded */
2803 struct parser_ctxt *saver = old->next; /* This one contain saved info */
2804 struct parser_ctxt *restored = saver->next; /* This one is the old current */
2806 /* We need to inherit the list of classes to complete/generate */
2807 restored->classd_list = old->classd_list;
2808 restored->class_list = old->class_list;
2810 /* Restore the current class and function from the saver */
2811 current_class = saver->class_type;
2812 current_function_decl = saver->function_decl;
2814 /* Retrive the restored context */
2815 ctxp = restored;
2817 /* Re-installed the data for the parsing to carry on */
2818 memcpy (&ctxp->marker_begining, &old->marker_begining,
2819 (size_t)(&ctxp->marker_end - &ctxp->marker_begining));
2821 /* Buffer context can now be discarded */
2822 free (saver);
2823 free (old);
2826 /* Add a new anchor node to which all statement(s) initializing static
2827 and non static initialized upon declaration field(s) will be
2828 linked. */
2830 static void
2831 java_parser_context_push_initialized_field ()
2833 tree node;
2835 node = build_tree_list (NULL_TREE, NULL_TREE);
2836 TREE_CHAIN (node) = CPC_STATIC_INITIALIZER_LIST (ctxp);
2837 CPC_STATIC_INITIALIZER_LIST (ctxp) = node;
2839 node = build_tree_list (NULL_TREE, NULL_TREE);
2840 TREE_CHAIN (node) = CPC_INITIALIZER_LIST (ctxp);
2841 CPC_INITIALIZER_LIST (ctxp) = node;
2843 node = build_tree_list (NULL_TREE, NULL_TREE);
2844 TREE_CHAIN (node) = CPC_INSTANCE_INITIALIZER_LIST (ctxp);
2845 CPC_INSTANCE_INITIALIZER_LIST (ctxp) = node;
2848 /* Pop the lists of initialized field. If this lists aren't empty,
2849 remember them so we can use it to create and populate the finit$
2850 or <clinit> functions. */
2852 static void
2853 java_parser_context_pop_initialized_field ()
2855 tree stmts;
2856 tree class_type = TREE_TYPE (GET_CPC ());
2858 if (CPC_INITIALIZER_LIST (ctxp))
2860 stmts = CPC_INITIALIZER_STMT (ctxp);
2861 CPC_INITIALIZER_LIST (ctxp) = TREE_CHAIN (CPC_INITIALIZER_LIST (ctxp));
2862 if (stmts && !java_error_count)
2863 TYPE_FINIT_STMT_LIST (class_type) = reorder_static_initialized (stmts);
2866 if (CPC_STATIC_INITIALIZER_LIST (ctxp))
2868 stmts = CPC_STATIC_INITIALIZER_STMT (ctxp);
2869 CPC_STATIC_INITIALIZER_LIST (ctxp) =
2870 TREE_CHAIN (CPC_STATIC_INITIALIZER_LIST (ctxp));
2871 /* Keep initialization in order to enforce 8.5 */
2872 if (stmts && !java_error_count)
2873 TYPE_CLINIT_STMT_LIST (class_type) = nreverse (stmts);
2876 /* JDK 1.1 instance initializers */
2877 if (CPC_INSTANCE_INITIALIZER_LIST (ctxp))
2879 stmts = CPC_INSTANCE_INITIALIZER_STMT (ctxp);
2880 CPC_INSTANCE_INITIALIZER_LIST (ctxp) =
2881 TREE_CHAIN (CPC_INSTANCE_INITIALIZER_LIST (ctxp));
2882 if (stmts && !java_error_count)
2883 TYPE_II_STMT_LIST (class_type) = nreverse (stmts);
2887 static tree
2888 reorder_static_initialized (list)
2889 tree list;
2891 /* We have to keep things in order. The alias initializer have to
2892 come first, then the initialized regular field, in reverse to
2893 keep them in lexical order. */
2894 tree marker, previous = NULL_TREE;
2895 for (marker = list; marker; previous = marker, marker = TREE_CHAIN (marker))
2896 if (TREE_CODE (marker) == TREE_LIST
2897 && !TREE_VALUE (marker) && !TREE_PURPOSE (marker))
2898 break;
2900 /* No static initialized, the list is fine as is */
2901 if (!previous)
2902 list = TREE_CHAIN (marker);
2904 /* No marker? reverse the whole list */
2905 else if (!marker)
2906 list = nreverse (list);
2908 /* Otherwise, reverse what's after the marker and the new reordered
2909 sublist will replace the marker. */
2910 else
2912 TREE_CHAIN (previous) = NULL_TREE;
2913 list = nreverse (list);
2914 list = chainon (TREE_CHAIN (marker), list);
2916 return list;
2919 /* Helper functions to dump the parser context stack. */
2921 #define TAB_CONTEXT(C) \
2922 {int i; for (i = 0; i < (C); i++) fputc (' ', stderr);}
2924 static void
2925 java_debug_context_do (tab)
2926 int tab;
2928 struct parser_ctxt *copy = ctxp;
2929 while (copy)
2931 TAB_CONTEXT (tab);
2932 fprintf (stderr, "ctxt: 0x%0lX\n", (unsigned long)copy);
2933 TAB_CONTEXT (tab);
2934 fprintf (stderr, "filename: %s\n", copy->filename);
2935 TAB_CONTEXT (tab);
2936 fprintf (stderr, "lineno: %d\n", copy->lineno);
2937 TAB_CONTEXT (tab);
2938 fprintf (stderr, "package: %s\n",
2939 (copy->package ?
2940 IDENTIFIER_POINTER (copy->package) : "<none>"));
2941 TAB_CONTEXT (tab);
2942 fprintf (stderr, "context for saving: %d\n", copy->saved_data_ctx);
2943 TAB_CONTEXT (tab);
2944 fprintf (stderr, "saved data: %d\n", copy->saved_data);
2945 copy = copy->next;
2946 tab += 2;
2950 /* Dump the stacked up parser contexts. Intended to be called from a
2951 debugger. */
2953 void
2954 java_debug_context ()
2956 java_debug_context_do (0);
2961 /* Flag for the error report routine to issue the error the first time
2962 it's called (overriding the default behavior which is to drop the
2963 first invocation and honor the second one, taking advantage of a
2964 richer context. */
2965 static int force_error = 0;
2967 /* Reporting an constructor invocation error. */
2968 static void
2969 parse_ctor_invocation_error ()
2971 if (DECL_CONSTRUCTOR_P (current_function_decl))
2972 yyerror ("Constructor invocation must be first thing in a constructor");
2973 else
2974 yyerror ("Only constructors can invoke constructors");
2977 /* Reporting JDK1.1 features not implemented. */
2979 static tree
2980 parse_jdk1_1_error (msg)
2981 const char *msg;
2983 sorry (": `%s' JDK1.1(TM) feature", msg);
2984 java_error_count++;
2985 return empty_stmt_node;
2988 static int do_warning = 0;
2990 void
2991 yyerror (msg)
2992 const char *msg;
2994 static java_lc elc;
2995 static int prev_lineno;
2996 static const char *prev_msg;
2998 int save_lineno;
2999 char *remainder, *code_from_source;
3001 if (!force_error && prev_lineno == lineno)
3002 return;
3004 /* Save current error location but report latter, when the context is
3005 richer. */
3006 if (ctxp->java_error_flag == 0)
3008 ctxp->java_error_flag = 1;
3009 elc = ctxp->elc;
3010 /* Do something to use the previous line if we're reaching the
3011 end of the file... */
3012 #ifdef VERBOSE_SKELETON
3013 printf ("* Error detected (%s)\n", (msg ? msg : "(null)"));
3014 #endif
3015 return;
3018 /* Ignore duplicate message on the same line. BTW, this is dubious. FIXME */
3019 if (!force_error && msg == prev_msg && prev_lineno == elc.line)
3020 return;
3022 ctxp->java_error_flag = 0;
3023 if (do_warning)
3024 java_warning_count++;
3025 else
3026 java_error_count++;
3028 if (elc.col == 0 && msg && msg[1] == ';')
3030 elc.col = ctxp->p_line->char_col-1;
3031 elc.line = ctxp->p_line->lineno;
3034 save_lineno = lineno;
3035 prev_lineno = lineno = elc.line;
3036 prev_msg = msg;
3038 code_from_source = java_get_line_col (ctxp->filename, elc.line, elc.col);
3039 obstack_grow0 (&temporary_obstack,
3040 code_from_source, strlen (code_from_source));
3041 remainder = obstack_finish (&temporary_obstack);
3042 if (do_warning)
3043 warning ("%s.\n%s", msg, remainder);
3044 else
3045 error ("%s.\n%s", msg, remainder);
3047 /* This allow us to cheaply avoid an extra 'Invalid expression
3048 statement' error report when errors have been already reported on
3049 the same line. This occurs when we report an error but don't have
3050 a synchronization point other than ';', which
3051 expression_statement is the only one to take care of. */
3052 ctxp->prevent_ese = lineno = save_lineno;
3055 static void
3056 issue_warning_error_from_context (cl, msg, ap)
3057 tree cl;
3058 const char *msg;
3059 va_list ap;
3061 const char *saved, *saved_input_filename;
3062 char buffer [4096];
3063 vsprintf (buffer, msg, ap);
3064 force_error = 1;
3066 ctxp->elc.line = EXPR_WFL_LINENO (cl);
3067 ctxp->elc.col = (EXPR_WFL_COLNO (cl) == 0xfff ? -1 :
3068 (EXPR_WFL_COLNO (cl) == 0xffe ? -2 : EXPR_WFL_COLNO (cl)));
3070 /* We have a CL, that's a good reason for using it if it contains data */
3071 saved = ctxp->filename;
3072 if (TREE_CODE (cl) == EXPR_WITH_FILE_LOCATION && EXPR_WFL_FILENAME_NODE (cl))
3073 ctxp->filename = EXPR_WFL_FILENAME (cl);
3074 saved_input_filename = input_filename;
3075 input_filename = ctxp->filename;
3076 java_error (NULL);
3077 java_error (buffer);
3078 ctxp->filename = saved;
3079 input_filename = saved_input_filename;
3080 force_error = 0;
3083 /* Issue an error message at a current source line CL */
3085 void
3086 parse_error_context VPARAMS ((tree cl, const char *msg, ...))
3088 #ifndef ANSI_PROTOTYPES
3089 tree cl;
3090 const char *msg;
3091 #endif
3092 va_list ap;
3094 VA_START (ap, msg);
3095 #ifndef ANSI_PROTOTYPES
3096 cl = va_arg (ap, tree);
3097 msg = va_arg (ap, const char *);
3098 #endif
3099 issue_warning_error_from_context (cl, msg, ap);
3100 va_end (ap);
3103 /* Issue a warning at a current source line CL */
3105 static void
3106 parse_warning_context VPARAMS ((tree cl, const char *msg, ...))
3108 #ifndef ANSI_PROTOTYPES
3109 tree cl;
3110 const char *msg;
3111 #endif
3112 va_list ap;
3114 VA_START (ap, msg);
3115 #ifndef ANSI_PROTOTYPES
3116 cl = va_arg (ap, tree);
3117 msg = va_arg (ap, const char *);
3118 #endif
3120 force_error = do_warning = 1;
3121 issue_warning_error_from_context (cl, msg, ap);
3122 do_warning = force_error = 0;
3123 va_end (ap);
3126 static tree
3127 find_expr_with_wfl (node)
3128 tree node;
3130 while (node)
3132 char code;
3133 tree to_return;
3135 switch (TREE_CODE (node))
3137 case BLOCK:
3138 node = BLOCK_EXPR_BODY (node);
3139 continue;
3141 case COMPOUND_EXPR:
3142 to_return = find_expr_with_wfl (TREE_OPERAND (node, 0));
3143 if (to_return)
3144 return to_return;
3145 node = TREE_OPERAND (node, 1);
3146 continue;
3148 case LOOP_EXPR:
3149 node = TREE_OPERAND (node, 0);
3150 continue;
3152 case LABELED_BLOCK_EXPR:
3153 node = TREE_OPERAND (node, 1);
3154 continue;
3156 default:
3157 code = TREE_CODE_CLASS (TREE_CODE (node));
3158 if (((code == '1') || (code == '2') || (code == 'e'))
3159 && EXPR_WFL_LINECOL (node))
3160 return node;
3161 return NULL_TREE;
3164 return NULL_TREE;
3167 /* Issue a missing return statement error. Uses METHOD to figure the
3168 last line of the method the error occurs in. */
3170 static void
3171 missing_return_error (method)
3172 tree method;
3174 EXPR_WFL_SET_LINECOL (wfl_operator, DECL_SOURCE_LINE_LAST (method), -2);
3175 parse_error_context (wfl_operator, "Missing return statement");
3178 /* Issue an unreachable statement error. From NODE, find the next
3179 statement to report appropriately. */
3180 static void
3181 unreachable_stmt_error (node)
3182 tree node;
3184 /* Browse node to find the next expression node that has a WFL. Use
3185 the location to report the error */
3186 if (TREE_CODE (node) == COMPOUND_EXPR)
3187 node = find_expr_with_wfl (TREE_OPERAND (node, 1));
3188 else
3189 node = find_expr_with_wfl (node);
3191 if (node)
3193 EXPR_WFL_SET_LINECOL (wfl_operator, EXPR_WFL_LINENO (node), -2);
3194 parse_error_context (wfl_operator, "Unreachable statement");
3196 else
3197 abort ();
3201 java_report_errors ()
3203 if (java_error_count)
3204 fprintf (stderr, "%d error%s",
3205 java_error_count, (java_error_count == 1 ? "" : "s"));
3206 if (java_warning_count)
3207 fprintf (stderr, "%s%d warning%s", (java_error_count ? ", " : ""),
3208 java_warning_count, (java_warning_count == 1 ? "" : "s"));
3209 if (java_error_count || java_warning_count)
3210 putc ('\n', stderr);
3211 return java_error_count;
3214 static char *
3215 java_accstring_lookup (flags)
3216 int flags;
3218 static char buffer [80];
3219 #define COPY_RETURN(S) {strcpy (buffer, S); return buffer;}
3221 /* Access modifier looked-up first for easier report on forbidden
3222 access. */
3223 if (flags & ACC_PUBLIC) COPY_RETURN ("public");
3224 if (flags & ACC_PRIVATE) COPY_RETURN ("private");
3225 if (flags & ACC_PROTECTED) COPY_RETURN ("protected");
3226 if (flags & ACC_STATIC) COPY_RETURN ("static");
3227 if (flags & ACC_FINAL) COPY_RETURN ("final");
3228 if (flags & ACC_SYNCHRONIZED) COPY_RETURN ("synchronized");
3229 if (flags & ACC_VOLATILE) COPY_RETURN ("volatile");
3230 if (flags & ACC_TRANSIENT) COPY_RETURN ("transient");
3231 if (flags & ACC_NATIVE) COPY_RETURN ("native");
3232 if (flags & ACC_INTERFACE) COPY_RETURN ("interface");
3233 if (flags & ACC_ABSTRACT) COPY_RETURN ("abstract");
3235 buffer [0] = '\0';
3236 return buffer;
3237 #undef COPY_RETURN
3240 /* Issuing error messages upon redefinition of classes, interfaces or
3241 variables. */
3243 static void
3244 classitf_redefinition_error (context, id, decl, cl)
3245 const char *context;
3246 tree id, decl, cl;
3248 parse_error_context (cl, "%s `%s' already defined in %s:%d",
3249 context, IDENTIFIER_POINTER (id),
3250 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3251 /* Here we should point out where its redefined. It's a unicode. FIXME */
3254 static void
3255 variable_redefinition_error (context, name, type, line)
3256 tree context, name, type;
3257 int line;
3259 const char *type_name;
3261 /* Figure a proper name for type. We might haven't resolved it */
3262 if (TREE_CODE (type) == POINTER_TYPE && !TREE_TYPE (type))
3263 type_name = IDENTIFIER_POINTER (TYPE_NAME (type));
3264 else
3265 type_name = lang_printable_name (type, 0);
3267 parse_error_context (context,
3268 "Variable `%s' is already defined in this method and was declared `%s %s' at line %d",
3269 IDENTIFIER_POINTER (name),
3270 type_name, IDENTIFIER_POINTER (name), line);
3273 static tree
3274 build_array_from_name (type, type_wfl, name, ret_name)
3275 tree type, type_wfl, name, *ret_name;
3277 int more_dims = 0;
3278 const char *string;
3280 /* Eventually get more dims */
3281 string = IDENTIFIER_POINTER (name);
3282 while (string [more_dims] == '[')
3283 more_dims++;
3285 /* If we have, then craft a new type for this variable */
3286 if (more_dims)
3288 tree save = type;
3290 name = get_identifier (&string [more_dims]);
3292 /* If we have a pointer, use its type */
3293 if (TREE_CODE (type) == POINTER_TYPE)
3294 type = TREE_TYPE (type);
3296 /* Building the first dimension of a primitive type uses this
3297 function */
3298 if (JPRIMITIVE_TYPE_P (type))
3300 type = build_java_array_type (type, -1);
3301 more_dims--;
3303 /* Otherwise, if we have a WFL for this type, use it (the type
3304 is already an array on an unresolved type, and we just keep
3305 on adding dimensions) */
3306 else if (type_wfl)
3308 int i = 0;
3309 type = type_wfl;
3310 string = IDENTIFIER_POINTER (TYPE_NAME (save));
3311 while (string[i] == '[')
3312 ++i;
3313 more_dims += i;
3316 /* Add all the dimensions */
3317 while (more_dims--)
3318 type = build_unresolved_array_type (type);
3320 /* The type may have been incomplete in the first place */
3321 if (type_wfl)
3322 type = obtain_incomplete_type (type);
3325 if (ret_name)
3326 *ret_name = name;
3327 return type;
3330 /* Build something that the type identifier resolver will identify as
3331 being an array to an unresolved type. TYPE_WFL is a WFL on a
3332 identifier. */
3334 static tree
3335 build_unresolved_array_type (type_or_wfl)
3336 tree type_or_wfl;
3338 const char *ptr;
3339 tree wfl;
3341 /* TYPE_OR_WFL might be an array on a resolved type. In this case,
3342 just create a array type */
3343 if (TREE_CODE (type_or_wfl) == RECORD_TYPE)
3344 return build_java_array_type (type_or_wfl, -1);
3346 obstack_1grow (&temporary_obstack, '[');
3347 obstack_grow0 (&temporary_obstack,
3348 IDENTIFIER_POINTER (EXPR_WFL_NODE (type_or_wfl)),
3349 IDENTIFIER_LENGTH (EXPR_WFL_NODE (type_or_wfl)));
3350 ptr = obstack_finish (&temporary_obstack);
3351 wfl = build_expr_wfl (get_identifier (ptr),
3352 EXPR_WFL_FILENAME (type_or_wfl),
3353 EXPR_WFL_LINENO (type_or_wfl),
3354 EXPR_WFL_COLNO (type_or_wfl));
3355 /* Re-install the existing qualifications so that the type can be
3356 resolved properly. */
3357 EXPR_WFL_QUALIFICATION (wfl) = EXPR_WFL_QUALIFICATION (type_or_wfl);
3358 return wfl;
3361 static void
3362 parser_add_interface (class_decl, interface_decl, wfl)
3363 tree class_decl, interface_decl, wfl;
3365 if (maybe_add_interface (TREE_TYPE (class_decl), TREE_TYPE (interface_decl)))
3366 parse_error_context (wfl, "Interface `%s' repeated",
3367 IDENTIFIER_POINTER (DECL_NAME (interface_decl)));
3370 /* Bulk of common class/interface checks. Return 1 if an error was
3371 encountered. TAG is 0 for a class, 1 for an interface. */
3373 static int
3374 check_class_interface_creation (is_interface, flags, raw_name, qualified_name, decl, cl)
3375 int is_interface, flags;
3376 tree raw_name, qualified_name, decl, cl;
3378 tree node;
3379 int sca = 0; /* Static class allowed */
3380 int icaf = 0; /* Inner class allowed flags */
3381 int uaaf = CLASS_MODIFIERS; /* Usually allowed access flags */
3383 if (!quiet_flag)
3384 fprintf (stderr, " %s%s %s",
3385 (CPC_INNER_P () ? "inner" : ""),
3386 (is_interface ? "interface" : "class"),
3387 IDENTIFIER_POINTER (qualified_name));
3389 /* Scope of an interface/class type name:
3390 - Can't be imported by a single type import
3391 - Can't already exists in the package */
3392 if (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (raw_name)
3393 && (node = find_name_in_single_imports (raw_name))
3394 && !CPC_INNER_P ())
3396 parse_error_context
3397 (cl, "%s name `%s' clashes with imported type `%s'",
3398 (is_interface ? "Interface" : "Class"),
3399 IDENTIFIER_POINTER (raw_name), IDENTIFIER_POINTER (node));
3400 return 1;
3402 if (decl && CLASS_COMPLETE_P (decl))
3404 classitf_redefinition_error ((is_interface ? "Interface" : "Class"),
3405 qualified_name, decl, cl);
3406 return 1;
3409 if (check_inner_class_redefinition (raw_name, cl))
3410 return 1;
3412 /* If public, file name should match class/interface name, except
3413 when dealing with an inner class */
3414 if (!CPC_INNER_P () && (flags & ACC_PUBLIC ))
3416 const char *f;
3418 /* Contains OS dependent assumption on path separator. FIXME */
3419 for (f = &input_filename [strlen (input_filename)];
3420 f != input_filename && f[0] != '/' && f[0] != DIR_SEPARATOR;
3421 f--)
3423 if (f[0] == '/' || f[0] == DIR_SEPARATOR)
3424 f++;
3425 if (strncmp (IDENTIFIER_POINTER (raw_name),
3426 f , IDENTIFIER_LENGTH (raw_name)) ||
3427 f [IDENTIFIER_LENGTH (raw_name)] != '.')
3428 parse_error_context
3429 (cl, "Public %s `%s' must be defined in a file called `%s.java'",
3430 (is_interface ? "interface" : "class"),
3431 IDENTIFIER_POINTER (qualified_name),
3432 IDENTIFIER_POINTER (raw_name));
3435 /* Static classes can be declared only in top level classes. Note:
3436 once static, a inner class is a top level class. */
3437 if (flags & ACC_STATIC)
3439 /* Catch the specific error of declaring an class inner class
3440 with no toplevel enclosing class. Prevent check_modifiers from
3441 complaining a second time */
3442 if (CPC_INNER_P () && !TOPLEVEL_CLASS_DECL_P (GET_CPC()))
3444 parse_error_context (cl, "Inner class `%s' can't be static. Static classes can only occur in interfaces and top-level classes",
3445 IDENTIFIER_POINTER (qualified_name));
3446 sca = ACC_STATIC;
3448 /* Else, in the context of a top-level class declaration, let
3449 `check_modifiers' do its job, otherwise, give it a go */
3450 else
3451 sca = (GET_CPC_LIST () ? ACC_STATIC : 0);
3454 /* Inner classes can be declared private or protected
3455 within their enclosing classes. */
3456 if (CPC_INNER_P ())
3458 /* A class which is local to a block can't be public, private,
3459 protected or static. But it is created final, so allow this
3460 one. */
3461 if (current_function_decl)
3462 icaf = sca = uaaf = ACC_FINAL;
3463 else
3465 check_modifiers_consistency (flags);
3466 icaf = ACC_PROTECTED;
3467 if (! CLASS_INTERFACE (GET_CPC ()))
3468 icaf |= ACC_PRIVATE;
3472 if (is_interface)
3474 if (CPC_INNER_P ())
3475 uaaf = INTERFACE_INNER_MODIFIERS;
3476 else
3477 uaaf = INTERFACE_MODIFIERS;
3479 check_modifiers ("Illegal modifier `%s' for interface declaration",
3480 flags, uaaf);
3482 else
3483 check_modifiers ((current_function_decl ?
3484 "Illegal modifier `%s' for local class declaration" :
3485 "Illegal modifier `%s' for class declaration"),
3486 flags, uaaf|sca|icaf);
3487 return 0;
3490 static void
3491 make_nested_class_name (cpc_list)
3492 tree cpc_list;
3494 tree name;
3496 if (!cpc_list)
3497 return;
3498 else
3499 make_nested_class_name (TREE_CHAIN (cpc_list));
3501 /* Pick the qualified name when dealing with the first upmost
3502 enclosing class */
3503 name = (TREE_CHAIN (cpc_list) ?
3504 TREE_PURPOSE (cpc_list) : DECL_NAME (TREE_VALUE (cpc_list)));
3505 obstack_grow (&temporary_obstack,
3506 IDENTIFIER_POINTER (name), IDENTIFIER_LENGTH (name));
3507 /* Why is NO_DOLLAR_IN_LABEL defined? */
3508 #if 0
3509 #ifdef NO_DOLLAR_IN_LABEL
3510 internal_error ("Can't use '$' as a separator for inner classes");
3511 #endif
3512 #endif
3513 obstack_1grow (&temporary_obstack, '$');
3516 /* Can't redefine a class already defined in an earlier scope. */
3518 static int
3519 check_inner_class_redefinition (raw_name, cl)
3520 tree raw_name, cl;
3522 tree scope_list;
3524 for (scope_list = GET_CPC_LIST (); scope_list;
3525 scope_list = GET_NEXT_ENCLOSING_CPC (scope_list))
3526 if (raw_name == GET_CPC_UN_NODE (scope_list))
3528 parse_error_context
3529 (cl, "The class name `%s' is already defined in this scope. An inner class may not have the same simple name as any of its enclosing classes",
3530 IDENTIFIER_POINTER (raw_name));
3531 return 1;
3533 return 0;
3536 /* Tries to find a decl for CLASS_TYPE within ENCLOSING. If we fail,
3537 we remember ENCLOSING and SUPER. */
3539 static tree
3540 resolve_inner_class (circularity_hash, cl, enclosing, super, class_type)
3541 struct hash_table *circularity_hash;
3542 tree cl, *enclosing, *super, class_type;
3544 tree local_enclosing = *enclosing;
3545 tree local_super = NULL_TREE;
3547 while (local_enclosing)
3549 tree intermediate, decl;
3551 hash_lookup (circularity_hash,
3552 (const hash_table_key) local_enclosing, TRUE, NULL);
3554 if ((decl = find_as_inner_class (local_enclosing, class_type, cl)))
3555 return decl;
3557 intermediate = local_enclosing;
3558 /* Explore enclosing contexts. */
3559 while (INNER_CLASS_DECL_P (intermediate))
3561 intermediate = DECL_CONTEXT (intermediate);
3562 if ((decl = find_as_inner_class (intermediate, class_type, cl)))
3563 return decl;
3566 /* Now go to the upper classes, bail out if necessary. We will
3567 analyze the returned SUPER and act accordingly (see
3568 do_resolve_class.) */
3569 local_super = CLASSTYPE_SUPER (TREE_TYPE (local_enclosing));
3570 if (!local_super || local_super == object_type_node)
3571 break;
3573 if (TREE_CODE (local_super) == POINTER_TYPE)
3574 local_super = do_resolve_class (NULL, local_super, NULL, NULL);
3575 else
3576 local_super = TYPE_NAME (local_super);
3578 /* We may not have checked for circular inheritance yet, so do so
3579 here to prevent an infinite loop. */
3580 if (hash_lookup (circularity_hash,
3581 (const hash_table_key) local_super, FALSE, NULL))
3583 if (!cl)
3584 cl = lookup_cl (local_enclosing);
3586 parse_error_context
3587 (cl, "Cyclic inheritance involving %s",
3588 IDENTIFIER_POINTER (DECL_NAME (local_enclosing)));
3589 local_enclosing = NULL_TREE;
3591 else
3592 local_enclosing = local_super;
3595 /* We failed. Return LOCAL_SUPER and LOCAL_ENCLOSING. */
3596 *super = local_super;
3597 *enclosing = local_enclosing;
3599 return NULL_TREE;
3602 /* Within ENCLOSING, find a decl for NAME and return it. NAME can be
3603 qualified. */
3605 static tree
3606 find_as_inner_class (enclosing, name, cl)
3607 tree enclosing, name, cl;
3609 tree qual, to_return;
3610 if (!enclosing)
3611 return NULL_TREE;
3613 name = TYPE_NAME (name);
3615 /* First search: within the scope of `enclosing', search for name */
3616 if (QUALIFIED_P (name) && cl && EXPR_WFL_NODE (cl) == name)
3617 qual = EXPR_WFL_QUALIFICATION (cl);
3618 else if (cl)
3619 qual = build_tree_list (cl, NULL_TREE);
3620 else
3621 qual = build_tree_list (build_expr_wfl (name, NULL, 0, 0), NULL_TREE);
3623 if ((to_return = find_as_inner_class_do (qual, enclosing)))
3624 return to_return;
3626 /* We're dealing with a qualified name. Try to resolve thing until
3627 we get something that is an enclosing class. */
3628 if (QUALIFIED_P (name) && cl && EXPR_WFL_NODE (cl) == name)
3630 tree acc = NULL_TREE, decl = NULL_TREE, ptr;
3632 for (qual = EXPR_WFL_QUALIFICATION (cl); qual && !decl;
3633 qual = TREE_CHAIN (qual))
3635 acc = merge_qualified_name (acc,
3636 EXPR_WFL_NODE (TREE_PURPOSE (qual)));
3637 BUILD_PTR_FROM_NAME (ptr, acc);
3639 /* Don't try to resolve ACC as a class name if it follows
3640 the current package name. We don't want to pick something
3641 that's accidentally there: for example `a.b.c' in package
3642 `a.b' shouldn't trigger loading `a' if it's there by
3643 itself. */
3644 if (ctxp->package
3645 && strstr (IDENTIFIER_POINTER (ctxp->package),
3646 IDENTIFIER_POINTER (acc)))
3647 decl = NULL;
3648 else
3649 decl = do_resolve_class (NULL_TREE, ptr, NULL_TREE, cl);
3652 /* A NULL qual and a decl means that the search ended
3653 successfully?!? We have to do something then. FIXME */
3655 if (decl)
3656 enclosing = decl;
3657 else
3658 qual = EXPR_WFL_QUALIFICATION (cl);
3660 /* Otherwise, create a qual for the other part of the resolution. */
3661 else
3662 qual = build_tree_list (build_expr_wfl (name, NULL, 0, 0), NULL_TREE);
3664 return find_as_inner_class_do (qual, enclosing);
3667 /* We go inside the list of sub classes and try to find a way
3668 through. */
3670 static tree
3671 find_as_inner_class_do (qual, enclosing)
3672 tree qual, enclosing;
3674 if (!qual)
3675 return NULL_TREE;
3677 for (; qual && enclosing; qual = TREE_CHAIN (qual))
3679 tree name_to_match = EXPR_WFL_NODE (TREE_PURPOSE (qual));
3680 tree next_enclosing = NULL_TREE;
3681 tree inner_list;
3683 for (inner_list = DECL_INNER_CLASS_LIST (enclosing);
3684 inner_list; inner_list = TREE_CHAIN (inner_list))
3686 if (TREE_VALUE (inner_list) == name_to_match)
3688 next_enclosing = TREE_PURPOSE (inner_list);
3689 break;
3692 enclosing = next_enclosing;
3695 return (!qual && enclosing ? enclosing : NULL_TREE);
3698 /* Reach all inner classes and tie their unqualified name to a
3699 DECL. */
3701 static void
3702 set_nested_class_simple_name_value (outer, set)
3703 tree outer;
3704 int set;
3706 tree l;
3708 for (l = DECL_INNER_CLASS_LIST (outer); l; l = TREE_CHAIN (l))
3709 IDENTIFIER_GLOBAL_VALUE (TREE_VALUE (l)) = (set ?
3710 TREE_PURPOSE (l) : NULL_TREE);
3713 static void
3714 link_nested_class_to_enclosing ()
3716 if (GET_ENCLOSING_CPC ())
3718 tree enclosing = GET_ENCLOSING_CPC_CONTEXT ();
3719 DECL_INNER_CLASS_LIST (enclosing) =
3720 tree_cons (GET_CPC (), GET_CPC_UN (),
3721 DECL_INNER_CLASS_LIST (enclosing));
3722 enclosing = enclosing;
3726 static tree
3727 maybe_make_nested_class_name (name)
3728 tree name;
3730 tree id = NULL_TREE;
3732 if (CPC_INNER_P ())
3734 make_nested_class_name (GET_CPC_LIST ());
3735 obstack_grow0 (&temporary_obstack,
3736 IDENTIFIER_POINTER (name),
3737 IDENTIFIER_LENGTH (name));
3738 id = get_identifier (obstack_finish (&temporary_obstack));
3739 if (ctxp->package)
3740 QUALIFIED_P (id) = 1;
3742 return id;
3745 /* If DECL is NULL, create and push a new DECL, record the current
3746 line CL and do other maintenance things. */
3748 static tree
3749 maybe_create_class_interface_decl (decl, raw_name, qualified_name, cl)
3750 tree decl, raw_name, qualified_name, cl;
3752 if (!decl)
3753 decl = push_class (make_class (), qualified_name);
3755 /* Take care of the file and line business */
3756 DECL_SOURCE_FILE (decl) = EXPR_WFL_FILENAME (cl);
3757 /* If we're emiting xrefs, store the line/col number information */
3758 if (flag_emit_xref)
3759 DECL_SOURCE_LINE (decl) = EXPR_WFL_LINECOL (cl);
3760 else
3761 DECL_SOURCE_LINE (decl) = EXPR_WFL_LINENO (cl);
3762 CLASS_FROM_SOURCE_P (TREE_TYPE (decl)) = 1;
3763 CLASS_PARSED_P (TREE_TYPE (decl)) = 1;
3764 CLASS_FROM_CURRENTLY_COMPILED_P (TREE_TYPE (decl)) =
3765 IS_A_COMMAND_LINE_FILENAME_P (EXPR_WFL_FILENAME_NODE (cl));
3767 PUSH_CPC (decl, raw_name);
3768 DECL_CONTEXT (decl) = GET_ENCLOSING_CPC_CONTEXT ();
3770 /* Link the declaration to the already seen ones */
3771 TREE_CHAIN (decl) = ctxp->class_list;
3772 ctxp->class_list = decl;
3774 /* Create a new nodes in the global lists */
3775 gclass_list = tree_cons (NULL_TREE, decl, gclass_list);
3776 all_class_list = tree_cons (NULL_TREE, decl, all_class_list);
3778 /* Install a new dependency list element */
3779 create_jdep_list (ctxp);
3781 SOURCE_FRONTEND_DEBUG (("Defining class/interface %s",
3782 IDENTIFIER_POINTER (qualified_name)));
3783 return decl;
3786 static void
3787 add_superinterfaces (decl, interface_list)
3788 tree decl, interface_list;
3790 tree node;
3791 /* Superinterface(s): if present and defined, parser_check_super_interface ()
3792 takes care of ensuring that:
3793 - This is an accessible interface type,
3794 - Circularity detection.
3795 parser_add_interface is then called. If present but not defined,
3796 the check operation is delayed until the super interface gets
3797 defined. */
3798 for (node = interface_list; node; node = TREE_CHAIN (node))
3800 tree current = TREE_PURPOSE (node);
3801 tree idecl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (current));
3802 if (idecl && CLASS_LOADED_P (TREE_TYPE (idecl)))
3804 if (!parser_check_super_interface (idecl, decl, current))
3805 parser_add_interface (decl, idecl, current);
3807 else
3808 register_incomplete_type (JDEP_INTERFACE,
3809 current, decl, NULL_TREE);
3813 /* Create an interface in pass1 and return its decl. Return the
3814 interface's decl in pass 2. */
3816 static tree
3817 create_interface (flags, id, super)
3818 int flags;
3819 tree id, super;
3821 tree raw_name = EXPR_WFL_NODE (id);
3822 tree q_name = parser_qualified_classname (raw_name);
3823 tree decl = IDENTIFIER_CLASS_VALUE (q_name);
3825 /* Certain syntax errors are making SUPER be like ID. Avoid this
3826 case. */
3827 if (ctxp->class_err && id == super)
3828 super = NULL;
3830 EXPR_WFL_NODE (id) = q_name; /* Keep source location, even if refined. */
3832 /* Basic checks: scope, redefinition, modifiers */
3833 if (check_class_interface_creation (1, flags, raw_name, q_name, decl, id))
3835 PUSH_ERROR ();
3836 return NULL_TREE;
3839 /* Suspend the current parsing context if we're parsing an inner
3840 interface */
3841 if (CPC_INNER_P ())
3843 java_parser_context_suspend ();
3844 /* Interface members are public. */
3845 if (CLASS_INTERFACE (GET_CPC ()))
3846 flags |= ACC_PUBLIC;
3849 /* Push a new context for (static) initialized upon declaration fields */
3850 java_parser_context_push_initialized_field ();
3852 /* Interface modifiers check
3853 - public/abstract allowed (already done at that point)
3854 - abstract is obsolete (comes first, it's a warning, or should be)
3855 - Can't use twice the same (checked in the modifier rule) */
3856 if ((flags & ACC_ABSTRACT) && flag_redundant)
3857 parse_warning_context
3858 (MODIFIER_WFL (ABSTRACT_TK),
3859 "Redundant use of `abstract' modifier. Interface `%s' is implicitely abstract", IDENTIFIER_POINTER (raw_name));
3861 /* Create a new decl if DECL is NULL, otherwise fix it */
3862 decl = maybe_create_class_interface_decl (decl, raw_name, q_name, id);
3864 /* Set super info and mark the class a complete */
3865 set_super_info (ACC_INTERFACE | flags, TREE_TYPE (decl),
3866 object_type_node, ctxp->interface_number);
3867 ctxp->interface_number = 0;
3868 CLASS_COMPLETE_P (decl) = 1;
3869 add_superinterfaces (decl, super);
3871 return decl;
3874 /* Anonymous class counter. Will be reset to 1 every time a non
3875 anonymous class gets created. */
3876 static int anonymous_class_counter = 1;
3878 /* Patch anonymous class CLASS, by either extending or implementing
3879 DEP. */
3881 static void
3882 patch_anonymous_class (type_decl, class_decl, wfl)
3883 tree type_decl, class_decl, wfl;
3885 tree class = TREE_TYPE (class_decl);
3886 tree type = TREE_TYPE (type_decl);
3887 tree binfo = TYPE_BINFO (class);
3889 /* If it's an interface, implement it */
3890 if (CLASS_INTERFACE (type_decl))
3892 tree s_binfo;
3893 int length;
3895 if (parser_check_super_interface (type_decl, class_decl, wfl))
3896 return;
3898 s_binfo = TREE_VEC_ELT (BINFO_BASETYPES (TYPE_BINFO (class)), 0);
3899 length = TREE_VEC_LENGTH (TYPE_BINFO_BASETYPES (class))+1;
3900 TYPE_BINFO_BASETYPES (class) = make_tree_vec (length);
3901 TREE_VEC_ELT (BINFO_BASETYPES (TYPE_BINFO (class)), 0) = s_binfo;
3902 /* And add the interface */
3903 parser_add_interface (class_decl, type_decl, wfl);
3905 /* Otherwise, it's a type we want to extend */
3906 else
3908 if (parser_check_super (type_decl, class_decl, wfl))
3909 return;
3910 BINFO_TYPE (TREE_VEC_ELT (BINFO_BASETYPES (binfo), 0)) = type;
3914 static tree
3915 create_anonymous_class (location, type_name)
3916 int location;
3917 tree type_name;
3919 char buffer [80];
3920 tree super = NULL_TREE, itf = NULL_TREE;
3921 tree id, type_decl, class;
3923 /* The unqualified name of the anonymous class. It's just a number. */
3924 sprintf (buffer, "%d", anonymous_class_counter++);
3925 id = build_wfl_node (get_identifier (buffer));
3926 EXPR_WFL_LINECOL (id) = location;
3928 /* We know about the type to extend/implement. We go ahead */
3929 if ((type_decl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (type_name))))
3931 /* Create a class which either implements on extends the designated
3932 class. The class bears an innacessible name. */
3933 if (CLASS_INTERFACE (type_decl))
3935 /* It's OK to modify it here. It's been already used and
3936 shouldn't be reused */
3937 ctxp->interface_number = 1;
3938 /* Interfaces should presented as a list of WFLs */
3939 itf = build_tree_list (type_name, NULL_TREE);
3941 else
3942 super = type_name;
3945 class = create_class (ACC_FINAL, id, super, itf);
3947 /* We didn't know anything about the stuff. We register a dependence. */
3948 if (!type_decl)
3949 register_incomplete_type (JDEP_ANONYMOUS, type_name, class, NULL_TREE);
3951 ANONYMOUS_CLASS_P (TREE_TYPE (class)) = 1;
3952 return class;
3955 /* Create a class in pass1 and return its decl. Return class
3956 interface's decl in pass 2. */
3958 static tree
3959 create_class (flags, id, super, interfaces)
3960 int flags;
3961 tree id, super, interfaces;
3963 tree raw_name = EXPR_WFL_NODE (id);
3964 tree class_id, decl;
3965 tree super_decl_type;
3967 /* Certain syntax errors are making SUPER be like ID. Avoid this
3968 case. */
3969 if (ctxp->class_err && id == super)
3970 super = NULL;
3972 class_id = parser_qualified_classname (raw_name);
3973 decl = IDENTIFIER_CLASS_VALUE (class_id);
3974 EXPR_WFL_NODE (id) = class_id;
3976 /* Basic check: scope, redefinition, modifiers */
3977 if (check_class_interface_creation (0, flags, raw_name, class_id, decl, id))
3979 PUSH_ERROR ();
3980 return NULL_TREE;
3983 /* Suspend the current parsing context if we're parsing an inner
3984 class or an anonymous class. */
3985 if (CPC_INNER_P ())
3987 java_parser_context_suspend ();
3988 /* Interface members are public. */
3989 if (CLASS_INTERFACE (GET_CPC ()))
3990 flags |= ACC_PUBLIC;
3993 /* Push a new context for (static) initialized upon declaration fields */
3994 java_parser_context_push_initialized_field ();
3996 /* Class modifier check:
3997 - Allowed modifier (already done at that point)
3998 - abstract AND final forbidden
3999 - Public classes defined in the correct file */
4000 if ((flags & ACC_ABSTRACT) && (flags & ACC_FINAL))
4001 parse_error_context
4002 (id, "Class `%s' can't be declared both abstract and final",
4003 IDENTIFIER_POINTER (raw_name));
4005 /* Create a new decl if DECL is NULL, otherwise fix it */
4006 decl = maybe_create_class_interface_decl (decl, raw_name, class_id, id);
4008 /* If SUPER exists, use it, otherwise use Object */
4009 if (super)
4011 /* Can't extend java.lang.Object */
4012 if (TREE_TYPE (IDENTIFIER_CLASS_VALUE (class_id)) == object_type_node)
4014 parse_error_context (id, "Can't extend `java.lang.Object'");
4015 return NULL_TREE;
4018 super_decl_type =
4019 register_incomplete_type (JDEP_SUPER, super, decl, NULL_TREE);
4021 else if (TREE_TYPE (decl) != object_type_node)
4022 super_decl_type = object_type_node;
4023 /* We're defining java.lang.Object */
4024 else
4025 super_decl_type = NULL_TREE;
4027 /* A class nested in an interface is implicitly static. */
4028 if (INNER_CLASS_DECL_P (decl)
4029 && CLASS_INTERFACE (TYPE_NAME (TREE_TYPE (DECL_CONTEXT (decl)))))
4031 flags |= ACC_STATIC;
4034 /* Set super info and mark the class as complete. */
4035 set_super_info (flags, TREE_TYPE (decl), super_decl_type,
4036 ctxp->interface_number);
4037 ctxp->interface_number = 0;
4038 CLASS_COMPLETE_P (decl) = 1;
4039 add_superinterfaces (decl, interfaces);
4041 /* Add the private this$<n> field, Replicate final locals still in
4042 scope as private final fields mangled like val$<local_name>.
4043 This doesn't not occur for top level (static) inner classes. */
4044 if (PURE_INNER_CLASS_DECL_P (decl))
4045 add_inner_class_fields (decl, current_function_decl);
4047 /* If doing xref, store the location at which the inherited class
4048 (if any) was seen. */
4049 if (flag_emit_xref && super)
4050 DECL_INHERITED_SOURCE_LINE (decl) = EXPR_WFL_LINECOL (super);
4052 /* Eventually sets the @deprecated tag flag */
4053 CHECK_DEPRECATED (decl);
4055 /* Reset the anonymous class counter when declaring non inner classes */
4056 if (!INNER_CLASS_DECL_P (decl))
4057 anonymous_class_counter = 1;
4059 return decl;
4062 /* End a class declaration: register the statements used to create
4063 finit$ and <clinit>, pop the current class and resume the prior
4064 parser context if necessary. */
4066 static void
4067 end_class_declaration (resume)
4068 int resume;
4070 /* If an error occured, context weren't pushed and won't need to be
4071 popped by a resume. */
4072 int no_error_occured = ctxp->next && GET_CPC () != error_mark_node;
4074 java_parser_context_pop_initialized_field ();
4075 POP_CPC ();
4076 if (resume && no_error_occured)
4077 java_parser_context_resume ();
4079 /* We're ending a class declaration, this is a good time to reset
4080 the interface cout. Note that might have been already done in
4081 create_interface, but if at that time an inner class was being
4082 dealt with, the interface count was reset in a context created
4083 for the sake of handling inner classes declaration. */
4084 ctxp->interface_number = 0;
4087 static void
4088 add_inner_class_fields (class_decl, fct_decl)
4089 tree class_decl;
4090 tree fct_decl;
4092 tree block, marker, f;
4094 f = add_field (TREE_TYPE (class_decl),
4095 build_current_thisn (TREE_TYPE (class_decl)),
4096 build_pointer_type (TREE_TYPE (DECL_CONTEXT (class_decl))),
4097 ACC_PRIVATE);
4098 FIELD_THISN (f) = 1;
4100 if (!fct_decl)
4101 return;
4103 for (block = GET_CURRENT_BLOCK (fct_decl);
4104 block && TREE_CODE (block) == BLOCK; block = BLOCK_SUPERCONTEXT (block))
4106 tree decl;
4107 for (decl = BLOCK_EXPR_DECLS (block); decl; decl = TREE_CHAIN (decl))
4109 tree name, pname;
4110 tree wfl, init, list;
4112 /* Avoid non final arguments. */
4113 if (!LOCAL_FINAL_P (decl))
4114 continue;
4116 MANGLE_OUTER_LOCAL_VARIABLE_NAME (name, DECL_NAME (decl));
4117 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID (pname, DECL_NAME (decl));
4118 wfl = build_wfl_node (name);
4119 init = build_wfl_node (pname);
4120 /* Build an initialization for the field: it will be
4121 initialized by a parameter added to finit$, bearing a
4122 mangled name of the field itself (param$<n>.) The
4123 parameter is provided to finit$ by the constructor
4124 invoking it (hence the constructor will also feature a
4125 hidden parameter, set to the value of the outer context
4126 local at the time the inner class is created.)
4128 Note: we take into account all possible locals that can
4129 be accessed by the inner class. It's actually not trivial
4130 to minimize these aliases down to the ones really
4131 used. One way to do that would be to expand all regular
4132 methods first, then finit$ to get a picture of what's
4133 used. It works with the exception that we would have to
4134 go back on all constructor invoked in regular methods to
4135 have their invokation reworked (to include the right amount
4136 of alias initializer parameters.)
4138 The only real way around, I think, is a first pass to
4139 identify locals really used in the inner class. We leave
4140 the flag FIELD_LOCAL_ALIAS_USED around for that future
4141 use.
4143 On the other hand, it only affect local inner classes,
4144 whose constructors (and finit$ call) will be featuring
4145 unecessary arguments. It's easy for a developper to keep
4146 this number of parameter down by using the `final'
4147 keyword only when necessary. For the time being, we can
4148 issue a warning on unecessary finals. FIXME */
4149 init = build_assignment (ASSIGN_TK, EXPR_WFL_LINECOL (wfl),
4150 wfl, init);
4152 /* Register the field. The TREE_LIST holding the part
4153 initialized/initializer will be marked ARG_FINAL_P so
4154 that the created field can be marked
4155 FIELD_LOCAL_ALIAS. */
4156 list = build_tree_list (wfl, init);
4157 ARG_FINAL_P (list) = 1;
4158 register_fields (ACC_PRIVATE | ACC_FINAL, TREE_TYPE (decl), list);
4162 if (!CPC_INITIALIZER_STMT (ctxp))
4163 return;
4165 /* If we ever registered an alias field, insert and marker to
4166 remeber where the list ends. The second part of the list (the one
4167 featuring initialized fields) so it can be later reversed to
4168 enforce 8.5. The marker will be removed during that operation. */
4169 marker = build_tree_list (NULL_TREE, NULL_TREE);
4170 TREE_CHAIN (marker) = CPC_INITIALIZER_STMT (ctxp);
4171 SET_CPC_INITIALIZER_STMT (ctxp, marker);
4174 /* Can't use lookup_field () since we don't want to load the class and
4175 can't set the CLASS_LOADED_P flag */
4177 static tree
4178 find_field (class, name)
4179 tree class;
4180 tree name;
4182 tree decl;
4183 for (decl = TYPE_FIELDS (class); decl; decl = TREE_CHAIN (decl))
4185 if (DECL_NAME (decl) == name)
4186 return decl;
4188 return NULL_TREE;
4191 /* Wrap around lookup_field that doesn't potentially upset the value
4192 of CLASS */
4194 static tree
4195 lookup_field_wrapper (class, name)
4196 tree class, name;
4198 tree type = class;
4199 tree decl = NULL_TREE;
4200 java_parser_context_save_global ();
4202 /* Last chance: if we're within the context of an inner class, we
4203 might be trying to access a local variable defined in an outer
4204 context. We try to look for it now. */
4205 if (INNER_CLASS_TYPE_P (class) && TREE_CODE (name) == IDENTIFIER_NODE)
4207 tree new_name;
4208 MANGLE_OUTER_LOCAL_VARIABLE_NAME (new_name, name);
4209 decl = lookup_field (&type, new_name);
4210 if (decl && decl != error_mark_node)
4211 FIELD_LOCAL_ALIAS_USED (decl) = 1;
4213 if (!decl || decl == error_mark_node)
4215 type = class;
4216 decl = lookup_field (&type, name);
4219 java_parser_context_restore_global ();
4220 return decl == error_mark_node ? NULL : decl;
4223 /* Find duplicate field within the same class declarations and report
4224 the error. Returns 1 if a duplicated field was found, 0
4225 otherwise. */
4227 static int
4228 duplicate_declaration_error_p (new_field_name, new_type, cl)
4229 tree new_field_name, new_type, cl;
4231 /* This might be modified to work with method decl as well */
4232 tree decl = find_field (TREE_TYPE (GET_CPC ()), new_field_name);
4233 if (decl)
4235 char *t1 = xstrdup (purify_type_name
4236 ((TREE_CODE (new_type) == POINTER_TYPE
4237 && TREE_TYPE (new_type) == NULL_TREE) ?
4238 IDENTIFIER_POINTER (TYPE_NAME (new_type)) :
4239 lang_printable_name (new_type, 1)));
4240 /* The type may not have been completed by the time we report
4241 the error */
4242 char *t2 = xstrdup (purify_type_name
4243 ((TREE_CODE (TREE_TYPE (decl)) == POINTER_TYPE
4244 && TREE_TYPE (TREE_TYPE (decl)) == NULL_TREE) ?
4245 IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE (decl))) :
4246 lang_printable_name (TREE_TYPE (decl), 1)));
4247 parse_error_context
4248 (cl , "Duplicate variable declaration: `%s %s' was `%s %s' (%s:%d)",
4249 t1, IDENTIFIER_POINTER (new_field_name),
4250 t2, IDENTIFIER_POINTER (DECL_NAME (decl)),
4251 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
4252 free (t1);
4253 free (t2);
4254 return 1;
4256 return 0;
4259 /* Field registration routine. If TYPE doesn't exist, field
4260 declarations are linked to the undefined TYPE dependency list, to
4261 be later resolved in java_complete_class () */
4263 static void
4264 register_fields (flags, type, variable_list)
4265 int flags;
4266 tree type, variable_list;
4268 tree current, saved_type;
4269 tree class_type = NULL_TREE;
4270 int saved_lineno = lineno;
4271 int must_chain = 0;
4272 tree wfl = NULL_TREE;
4274 if (GET_CPC ())
4275 class_type = TREE_TYPE (GET_CPC ());
4277 if (!class_type || class_type == error_mark_node)
4278 return;
4280 /* If we're adding fields to interfaces, those fields are public,
4281 static, final */
4282 if (CLASS_INTERFACE (TYPE_NAME (class_type)))
4284 OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (PUBLIC_TK),
4285 flags, ACC_PUBLIC, "interface field(s)");
4286 OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (STATIC_TK),
4287 flags, ACC_STATIC, "interface field(s)");
4288 OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (FINAL_TK),
4289 flags, ACC_FINAL, "interface field(s)");
4290 check_modifiers ("Illegal interface member modifier `%s'", flags,
4291 INTERFACE_FIELD_MODIFIERS);
4292 flags |= (ACC_PUBLIC | ACC_STATIC | ACC_FINAL);
4295 /* Obtain a suitable type for resolution, if necessary */
4296 SET_TYPE_FOR_RESOLUTION (type, wfl, must_chain);
4298 /* If TYPE is fully resolved and we don't have a reference, make one */
4299 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4301 for (current = variable_list, saved_type = type; current;
4302 current = TREE_CHAIN (current), type = saved_type)
4304 tree real_type;
4305 tree field_decl;
4306 tree cl = TREE_PURPOSE (current);
4307 tree init = TREE_VALUE (current);
4308 tree current_name = EXPR_WFL_NODE (cl);
4310 /* Can't declare non-final static fields in inner classes */
4311 if ((flags & ACC_STATIC) && !TOPLEVEL_CLASS_TYPE_P (class_type)
4312 && !(flags & ACC_FINAL))
4313 parse_error_context
4314 (cl, "Field `%s' can't be static in inner class `%s' unless it is final",
4315 IDENTIFIER_POINTER (EXPR_WFL_NODE (cl)),
4316 lang_printable_name (class_type, 0));
4318 /* Process NAME, as it may specify extra dimension(s) for it */
4319 type = build_array_from_name (type, wfl, current_name, &current_name);
4321 /* Type adjustment. We may have just readjusted TYPE because
4322 the variable specified more dimensions. Make sure we have
4323 a reference if we can and don't have one already. Also
4324 change the name if we have an init. */
4325 if (type != saved_type)
4327 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4328 if (init)
4329 EXPR_WFL_NODE (TREE_OPERAND (init, 0)) = current_name;
4332 real_type = GET_REAL_TYPE (type);
4333 /* Check for redeclarations */
4334 if (duplicate_declaration_error_p (current_name, real_type, cl))
4335 continue;
4337 /* Set lineno to the line the field was found and create a
4338 declaration for it. Eventually sets the @deprecated tag flag. */
4339 if (flag_emit_xref)
4340 lineno = EXPR_WFL_LINECOL (cl);
4341 else
4342 lineno = EXPR_WFL_LINENO (cl);
4343 field_decl = add_field (class_type, current_name, real_type, flags);
4344 CHECK_DEPRECATED (field_decl);
4346 /* If the field denotes a final instance variable, then we
4347 allocate a LANG_DECL_SPECIFIC part to keep track of its
4348 initialization. We also mark whether the field was
4349 initialized upon it's declaration. We don't do that if the
4350 created field is an alias to a final local. */
4351 if (!ARG_FINAL_P (current) && (flags & ACC_FINAL))
4353 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (field_decl);
4354 DECL_FIELD_FINAL_WFL (field_decl) = cl;
4355 if ((flags & ACC_STATIC) && init)
4356 DECL_FIELD_FINAL_IUD (field_decl) = 1;
4359 /* If the couple initializer/initialized is marked ARG_FINAL_P,
4360 we mark the created field FIELD_LOCAL_ALIAS, so that we can
4361 hide parameters to this inner class finit$ and
4362 constructors. It also means that the field isn't final per
4363 say. */
4364 if (ARG_FINAL_P (current))
4366 FIELD_LOCAL_ALIAS (field_decl) = 1;
4367 FIELD_FINAL (field_decl) = 0;
4370 /* Check if we must chain. */
4371 if (must_chain)
4372 register_incomplete_type (JDEP_FIELD, wfl, field_decl, type);
4374 /* If we have an initialization value tied to the field */
4375 if (init)
4377 /* The field is declared static */
4378 if (flags & ACC_STATIC)
4380 /* We include the field and its initialization part into
4381 a list used to generate <clinit>. After <clinit> is
4382 walked, field initializations will be processed and
4383 fields initialized with known constants will be taken
4384 out of <clinit> and have their DECL_INITIAL set
4385 appropriately. */
4386 TREE_CHAIN (init) = CPC_STATIC_INITIALIZER_STMT (ctxp);
4387 SET_CPC_STATIC_INITIALIZER_STMT (ctxp, init);
4388 if (TREE_OPERAND (init, 1)
4389 && TREE_CODE (TREE_OPERAND (init, 1)) == NEW_ARRAY_INIT)
4390 TREE_STATIC (TREE_OPERAND (init, 1)) = 1;
4392 /* A non-static field declared with an immediate initialization is
4393 to be initialized in <init>, if any. This field is remembered
4394 to be processed at the time of the generation of <init>. */
4395 else
4397 TREE_CHAIN (init) = CPC_INITIALIZER_STMT (ctxp);
4398 SET_CPC_INITIALIZER_STMT (ctxp, init);
4400 MODIFY_EXPR_FROM_INITIALIZATION_P (init) = 1;
4401 DECL_INITIAL (field_decl) = TREE_OPERAND (init, 1);
4404 lineno = saved_lineno;
4407 /* Generate finit$, using the list of initialized fields to populate
4408 its body. finit$'s parameter(s) list is adjusted to include the
4409 one(s) used to initialized the field(s) caching outer context
4410 local(s). */
4412 static tree
4413 generate_finit (class_type)
4414 tree class_type;
4416 int count = 0;
4417 tree list = TYPE_FINIT_STMT_LIST (class_type);
4418 tree mdecl, current, parms;
4420 parms = build_alias_initializer_parameter_list (AIPL_FUNCTION_CREATION,
4421 class_type, NULL_TREE,
4422 &count);
4423 CRAFTED_PARAM_LIST_FIXUP (parms);
4424 mdecl = create_artificial_method (class_type, ACC_PRIVATE, void_type_node,
4425 finit_identifier_node, parms);
4426 fix_method_argument_names (parms, mdecl);
4427 layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
4428 mdecl, NULL_TREE);
4429 DECL_FUNCTION_NAP (mdecl) = count;
4430 start_artificial_method_body (mdecl);
4432 for (current = list; current; current = TREE_CHAIN (current))
4433 java_method_add_stmt (mdecl,
4434 build_debugable_stmt (EXPR_WFL_LINECOL (current),
4435 current));
4436 end_artificial_method_body (mdecl);
4437 return mdecl;
4440 /* Generate a function to run the instance initialization code. The
4441 private method is called `instinit$'. Unless we're dealing with an
4442 anonymous class, we determine whether all ctors of CLASS_TYPE
4443 declare a checked exception in their `throws' clause in order to
4444 see whether it's necessary to encapsulate the instance initializer
4445 statements in a try/catch/rethrow sequence. */
4447 static tree
4448 generate_instinit (class_type)
4449 tree class_type;
4451 tree current;
4452 tree compound = NULL_TREE;
4453 tree parms = tree_cons (this_identifier_node,
4454 build_pointer_type (class_type), end_params_node);
4455 tree mdecl = create_artificial_method (class_type, ACC_PRIVATE,
4456 void_type_node,
4457 instinit_identifier_node, parms);
4459 layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
4460 mdecl, NULL_TREE);
4462 /* Gather all the statements in a compound */
4463 for (current = TYPE_II_STMT_LIST (class_type);
4464 current; current = TREE_CHAIN (current))
4465 compound = add_stmt_to_compound (compound, NULL_TREE, current);
4467 /* We need to encapsulate COMPOUND by a try/catch statement to
4468 rethrow exceptions that might occur in the instance initializer.
4469 We do that only if all ctors of CLASS_TYPE are set to catch a
4470 checked exception. This doesn't apply to anonymous classes (since
4471 they don't have declared ctors.) */
4472 if (!ANONYMOUS_CLASS_P (class_type) &&
4473 ctors_unchecked_throws_clause_p (class_type))
4475 compound = encapsulate_with_try_catch (0, exception_type_node, compound,
4476 build1 (THROW_EXPR, NULL_TREE,
4477 build_wfl_node (wpv_id)));
4478 DECL_FUNCTION_THROWS (mdecl) = build_tree_list (NULL_TREE,
4479 exception_type_node);
4482 start_artificial_method_body (mdecl);
4483 java_method_add_stmt (mdecl, compound);
4484 end_artificial_method_body (mdecl);
4486 return mdecl;
4489 /* FIXME */
4490 static tree
4491 build_instinit_invocation (class_type)
4492 tree class_type;
4494 tree to_return = NULL_TREE;
4496 if (TYPE_II_STMT_LIST (class_type))
4498 tree parm = build_tree_list (NULL_TREE,
4499 build_wfl_node (this_identifier_node));
4500 to_return =
4501 build_method_invocation (build_wfl_node (instinit_identifier_node),
4502 parm);
4504 return to_return;
4507 /* Shared accros method_declarator and method_header to remember the
4508 patch stage that was reached during the declaration of the method.
4509 A method DECL is built differently is there is no patch
4510 (JDEP_NO_PATCH) or a patch (JDEP_METHOD or JDEP_METHOD_RETURN)
4511 pending on the currently defined method. */
4513 static int patch_stage;
4515 /* Check the method declaration and add the method to its current
4516 class. If the argument list is known to contain incomplete types,
4517 the method is partially added and the registration will be resume
4518 once the method arguments resolved. If TYPE is NULL, we're dealing
4519 with a constructor. */
4521 static tree
4522 method_header (flags, type, mdecl, throws)
4523 int flags;
4524 tree type, mdecl, throws;
4526 tree type_wfl = NULL_TREE;
4527 tree meth_name = NULL_TREE;
4528 tree current, orig_arg, this_class = NULL;
4529 tree id, meth;
4530 int saved_lineno;
4531 int constructor_ok = 0, must_chain;
4532 int count;
4534 if (mdecl == error_mark_node)
4535 return error_mark_node;
4536 meth = TREE_VALUE (mdecl);
4537 id = TREE_PURPOSE (mdecl);
4539 check_modifiers_consistency (flags);
4541 if (GET_CPC ())
4542 this_class = TREE_TYPE (GET_CPC ());
4544 if (!this_class || this_class == error_mark_node)
4545 return NULL_TREE;
4547 /* There are some forbidden modifiers for an abstract method and its
4548 class must be abstract as well. */
4549 if (type && (flags & ACC_ABSTRACT))
4551 ABSTRACT_CHECK (flags, ACC_PRIVATE, id, "Private");
4552 ABSTRACT_CHECK (flags, ACC_STATIC, id, "Static");
4553 ABSTRACT_CHECK (flags, ACC_FINAL, id, "Final");
4554 ABSTRACT_CHECK (flags, ACC_NATIVE, id, "Native");
4555 ABSTRACT_CHECK (flags, ACC_SYNCHRONIZED,id, "Synchronized");
4556 if (!CLASS_ABSTRACT (TYPE_NAME (this_class))
4557 && !CLASS_INTERFACE (TYPE_NAME (this_class)))
4558 parse_error_context
4559 (id, "Class `%s' must be declared abstract to define abstract method `%s'",
4560 IDENTIFIER_POINTER (DECL_NAME (GET_CPC ())),
4561 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4564 /* Things to be checked when declaring a constructor */
4565 if (!type)
4567 int ec = java_error_count;
4568 /* 8.6: Constructor declarations: we might be trying to define a
4569 method without specifying a return type. */
4570 if (EXPR_WFL_NODE (id) != GET_CPC_UN ())
4571 parse_error_context
4572 (id, "Invalid method declaration, return type required");
4573 /* 8.6.3: Constructor modifiers */
4574 else
4576 JCONSTRUCTOR_CHECK (flags, ACC_ABSTRACT, id, "abstract");
4577 JCONSTRUCTOR_CHECK (flags, ACC_STATIC, id, "static");
4578 JCONSTRUCTOR_CHECK (flags, ACC_FINAL, id, "final");
4579 JCONSTRUCTOR_CHECK (flags, ACC_NATIVE, id, "native");
4580 JCONSTRUCTOR_CHECK (flags, ACC_SYNCHRONIZED, id, "synchronized");
4582 /* If we found error here, we don't consider it's OK to tread
4583 the method definition as a constructor, for the rest of this
4584 function */
4585 if (ec == java_error_count)
4586 constructor_ok = 1;
4589 /* Method declared within the scope of an interface are implicitly
4590 abstract and public. Conflicts with other erroneously provided
4591 modifiers are checked right after. */
4593 if (CLASS_INTERFACE (TYPE_NAME (this_class)))
4595 /* If FLAGS isn't set because of a modifier, turn the
4596 corresponding modifier WFL to NULL so we issue a warning on
4597 the obsolete use of the modifier */
4598 if (!(flags & ACC_PUBLIC))
4599 MODIFIER_WFL (PUBLIC_TK) = NULL;
4600 if (!(flags & ACC_ABSTRACT))
4601 MODIFIER_WFL (ABSTRACT_TK) = NULL;
4602 flags |= ACC_PUBLIC;
4603 flags |= ACC_ABSTRACT;
4606 /* Inner class can't declare static methods */
4607 if ((flags & ACC_STATIC) && !TOPLEVEL_CLASS_TYPE_P (this_class))
4609 parse_error_context
4610 (id, "Method `%s' can't be static in inner class `%s'. Only members of interfaces and top-level classes can be static",
4611 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)),
4612 lang_printable_name (this_class, 0));
4615 /* Modifiers context reset moved up, so abstract method declaration
4616 modifiers can be later checked. */
4618 /* Set constructor returned type to void and method name to <init>,
4619 unless we found an error identifier the constructor (in which
4620 case we retain the original name) */
4621 if (!type)
4623 type = void_type_node;
4624 if (constructor_ok)
4625 meth_name = init_identifier_node;
4627 else
4628 meth_name = EXPR_WFL_NODE (id);
4630 /* Do the returned type resolution and registration if necessary */
4631 SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
4633 if (meth_name)
4634 type = build_array_from_name (type, type_wfl, meth_name, &meth_name);
4635 EXPR_WFL_NODE (id) = meth_name;
4636 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4638 if (must_chain)
4640 patch_stage = JDEP_METHOD_RETURN;
4641 register_incomplete_type (patch_stage, type_wfl, id, type);
4642 TREE_TYPE (meth) = GET_REAL_TYPE (type);
4644 else
4645 TREE_TYPE (meth) = type;
4647 saved_lineno = lineno;
4648 /* When defining an abstract or interface method, the curly
4649 bracket at level 1 doesn't exist because there is no function
4650 body */
4651 lineno = (ctxp->first_ccb_indent1 ? ctxp->first_ccb_indent1 :
4652 EXPR_WFL_LINENO (id));
4654 /* Remember the original argument list */
4655 orig_arg = TYPE_ARG_TYPES (meth);
4657 if (patch_stage) /* includes ret type and/or all args */
4659 jdep *jdep;
4660 meth = add_method_1 (this_class, flags, meth_name, meth);
4661 /* Patch for the return type */
4662 if (patch_stage == JDEP_METHOD_RETURN)
4664 jdep = CLASSD_LAST (ctxp->classd_list);
4665 JDEP_GET_PATCH (jdep) = &TREE_TYPE (TREE_TYPE (meth));
4667 /* This is the stop JDEP. METH allows the function's signature
4668 to be computed. */
4669 register_incomplete_type (JDEP_METHOD_END, NULL_TREE, meth, NULL_TREE);
4671 else
4672 meth = add_method (this_class, flags, meth_name,
4673 build_java_signature (meth));
4675 /* Remember final parameters */
4676 MARK_FINAL_PARMS (meth, orig_arg);
4678 /* Fix the method argument list so we have the argument name
4679 information */
4680 fix_method_argument_names (orig_arg, meth);
4682 /* Register the parameter number and re-install the current line
4683 number */
4684 DECL_MAX_LOCALS (meth) = ctxp->formal_parameter_number+1;
4685 lineno = saved_lineno;
4687 /* Register exception specified by the `throws' keyword for
4688 resolution and set the method decl appropriate field to the list.
4689 Note: the grammar ensures that what we get here are class
4690 types. */
4691 if (throws)
4693 throws = nreverse (throws);
4694 for (current = throws; current; current = TREE_CHAIN (current))
4696 register_incomplete_type (JDEP_EXCEPTION, TREE_VALUE (current),
4697 NULL_TREE, NULL_TREE);
4698 JDEP_GET_PATCH (CLASSD_LAST (ctxp->classd_list)) =
4699 &TREE_VALUE (current);
4701 DECL_FUNCTION_THROWS (meth) = throws;
4704 if (TREE_TYPE (GET_CPC ()) != object_type_node)
4705 DECL_FUNCTION_WFL (meth) = id;
4707 /* Set the flag if we correctly processed a constructor */
4708 if (constructor_ok)
4710 DECL_CONSTRUCTOR_P (meth) = 1;
4711 /* Compute and store the number of artificial parameters declared
4712 for this constructor */
4713 for (count = 0, current = TYPE_FIELDS (this_class); current;
4714 current = TREE_CHAIN (current))
4715 if (FIELD_LOCAL_ALIAS (current))
4716 count++;
4717 DECL_FUNCTION_NAP (meth) = count;
4720 /* Eventually set the @deprecated tag flag */
4721 CHECK_DEPRECATED (meth);
4723 /* If doing xref, store column and line number information instead
4724 of the line number only. */
4725 if (flag_emit_xref)
4726 DECL_SOURCE_LINE (meth) = EXPR_WFL_LINECOL (id);
4728 return meth;
4731 static void
4732 fix_method_argument_names (orig_arg, meth)
4733 tree orig_arg, meth;
4735 tree arg = TYPE_ARG_TYPES (TREE_TYPE (meth));
4736 if (TREE_CODE (TREE_TYPE (meth)) == METHOD_TYPE)
4738 TREE_PURPOSE (arg) = this_identifier_node;
4739 arg = TREE_CHAIN (arg);
4741 while (orig_arg != end_params_node)
4743 TREE_PURPOSE (arg) = TREE_PURPOSE (orig_arg);
4744 orig_arg = TREE_CHAIN (orig_arg);
4745 arg = TREE_CHAIN (arg);
4749 /* Complete the method declaration with METHOD_BODY. */
4751 static void
4752 finish_method_declaration (method_body)
4753 tree method_body;
4755 int flags;
4757 if (!current_function_decl)
4758 return;
4760 flags = get_access_flags_from_decl (current_function_decl);
4762 /* 8.4.5 Method Body */
4763 if ((flags & ACC_ABSTRACT || flags & ACC_NATIVE) && method_body)
4765 tree name = DECL_NAME (current_function_decl);
4766 parse_error_context (DECL_FUNCTION_WFL (current_function_decl),
4767 "%s method `%s' can't have a body defined",
4768 (METHOD_NATIVE (current_function_decl) ?
4769 "Native" : "Abstract"),
4770 IDENTIFIER_POINTER (name));
4771 method_body = NULL_TREE;
4773 else if (!(flags & ACC_ABSTRACT) && !(flags & ACC_NATIVE) && !method_body)
4775 tree name = DECL_NAME (current_function_decl);
4776 parse_error_context
4777 (DECL_FUNCTION_WFL (current_function_decl),
4778 "Non native and non abstract method `%s' must have a body defined",
4779 IDENTIFIER_POINTER (name));
4780 method_body = NULL_TREE;
4783 if (flag_emit_class_files && method_body
4784 && TREE_CODE (method_body) == NOP_EXPR
4785 && TREE_TYPE (current_function_decl)
4786 && TREE_TYPE (TREE_TYPE (current_function_decl)) == void_type_node)
4787 method_body = build1 (RETURN_EXPR, void_type_node, NULL);
4789 BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (current_function_decl)) = method_body;
4790 maybe_absorb_scoping_blocks ();
4791 /* Exit function's body */
4792 exit_block ();
4793 /* Merge last line of the function with first line, directly in the
4794 function decl. It will be used to emit correct debug info. */
4795 if (!flag_emit_xref)
4796 DECL_SOURCE_LINE_MERGE (current_function_decl, ctxp->last_ccb_indent1);
4798 /* Since function's argument's list are shared, reset the
4799 ARG_FINAL_P parameter that might have been set on some of this
4800 function parameters. */
4801 UNMARK_FINAL_PARMS (current_function_decl);
4803 /* So we don't have an irrelevant function declaration context for
4804 the next static block we'll see. */
4805 current_function_decl = NULL_TREE;
4808 /* Build a an error message for constructor circularity errors. */
4810 static char *
4811 constructor_circularity_msg (from, to)
4812 tree from, to;
4814 static char string [4096];
4815 char *t = xstrdup (lang_printable_name (from, 0));
4816 sprintf (string, "`%s' invokes `%s'", t, lang_printable_name (to, 0));
4817 free (t);
4818 return string;
4821 /* Verify a circular call to METH. Return 1 if an error is found, 0
4822 otherwise. */
4824 static int
4825 verify_constructor_circularity (meth, current)
4826 tree meth, current;
4828 static tree list = NULL_TREE;
4829 static int initialized_p;
4830 tree c;
4832 /* If we haven't already registered LIST with the garbage collector,
4833 do so now. */
4834 if (!initialized_p)
4836 ggc_add_tree_root (&list, 1);
4837 initialized_p = 1;
4840 for (c = DECL_CONSTRUCTOR_CALLS (current); c; c = TREE_CHAIN (c))
4842 if (TREE_VALUE (c) == meth)
4844 char *t;
4845 if (list)
4847 tree liste;
4848 list = nreverse (list);
4849 for (liste = list; liste; liste = TREE_CHAIN (liste))
4851 parse_error_context
4852 (TREE_PURPOSE (TREE_PURPOSE (liste)), "%s",
4853 constructor_circularity_msg
4854 (TREE_VALUE (liste), TREE_VALUE (TREE_PURPOSE (liste))));
4855 java_error_count--;
4858 t = xstrdup (lang_printable_name (meth, 0));
4859 parse_error_context (TREE_PURPOSE (c),
4860 "%s: recursive invocation of constructor `%s'",
4861 constructor_circularity_msg (current, meth), t);
4862 free (t);
4863 list = NULL_TREE;
4864 return 1;
4867 for (c = DECL_CONSTRUCTOR_CALLS (current); c; c = TREE_CHAIN (c))
4869 list = tree_cons (c, current, list);
4870 if (verify_constructor_circularity (meth, TREE_VALUE (c)))
4871 return 1;
4872 list = TREE_CHAIN (list);
4874 return 0;
4877 /* Check modifiers that can be declared but exclusively */
4879 static void
4880 check_modifiers_consistency (flags)
4881 int flags;
4883 int acc_count = 0;
4884 tree cl = NULL_TREE;
4886 THIS_MODIFIER_ONLY (flags, ACC_PUBLIC, PUBLIC_TK, acc_count, cl);
4887 THIS_MODIFIER_ONLY (flags, ACC_PRIVATE, PRIVATE_TK, acc_count, cl);
4888 THIS_MODIFIER_ONLY (flags, ACC_PROTECTED, PROTECTED_TK, acc_count, cl);
4889 if (acc_count > 1)
4890 parse_error_context
4891 (cl, "Inconsistent member declaration. At most one of `public', `private', or `protected' may be specified");
4893 acc_count = 0;
4894 cl = NULL_TREE;
4895 THIS_MODIFIER_ONLY (flags, ACC_FINAL, FINAL_TK, acc_count, cl);
4896 THIS_MODIFIER_ONLY (flags, ACC_VOLATILE, VOLATILE_TK, acc_count, cl);
4897 if (acc_count > 1)
4898 parse_error_context (cl,
4899 "Inconsistent member declaration. At most one of `final' or `volatile' may be specified");
4902 /* Check the methode header METH for abstract specifics features */
4904 static void
4905 check_abstract_method_header (meth)
4906 tree meth;
4908 int flags = get_access_flags_from_decl (meth);
4910 OBSOLETE_MODIFIER_WARNING2 (MODIFIER_WFL (ABSTRACT_TK), flags,
4911 ACC_ABSTRACT, "abstract method",
4912 IDENTIFIER_POINTER (DECL_NAME (meth)));
4913 OBSOLETE_MODIFIER_WARNING2 (MODIFIER_WFL (PUBLIC_TK), flags,
4914 ACC_PUBLIC, "abstract method",
4915 IDENTIFIER_POINTER (DECL_NAME (meth)));
4917 check_modifiers ("Illegal modifier `%s' for interface method",
4918 flags, INTERFACE_METHOD_MODIFIERS);
4921 /* Create a FUNCTION_TYPE node and start augmenting it with the
4922 declared function arguments. Arguments type that can't be resolved
4923 are left as they are, but the returned node is marked as containing
4924 incomplete types. */
4926 static tree
4927 method_declarator (id, list)
4928 tree id, list;
4930 tree arg_types = NULL_TREE, current, node;
4931 tree meth = make_node (FUNCTION_TYPE);
4932 jdep *jdep;
4934 patch_stage = JDEP_NO_PATCH;
4936 if (GET_CPC () == error_mark_node)
4937 return error_mark_node;
4939 /* If we're dealing with an inner class constructor, we hide the
4940 this$<n> decl in the name field of its parameter declaration. We
4941 also might have to hide the outer context local alias
4942 initializers. Not done when the class is a toplevel class. */
4943 if (PURE_INNER_CLASS_DECL_P (GET_CPC ())
4944 && EXPR_WFL_NODE (id) == GET_CPC_UN ())
4946 tree aliases_list, type, thisn;
4947 /* First the aliases, linked to the regular parameters */
4948 aliases_list =
4949 build_alias_initializer_parameter_list (AIPL_FUNCTION_DECLARATION,
4950 TREE_TYPE (GET_CPC ()),
4951 NULL_TREE, NULL);
4952 list = chainon (nreverse (aliases_list), list);
4954 /* Then this$<n> */
4955 type = TREE_TYPE (DECL_CONTEXT (GET_CPC ()));
4956 thisn = build_current_thisn (TREE_TYPE (GET_CPC ()));
4957 list = tree_cons (build_wfl_node (thisn), build_pointer_type (type),
4958 list);
4961 for (current = list; current; current = TREE_CHAIN (current))
4963 int must_chain = 0;
4964 tree wfl_name = TREE_PURPOSE (current);
4965 tree type = TREE_VALUE (current);
4966 tree name = EXPR_WFL_NODE (wfl_name);
4967 tree already, arg_node;
4968 tree type_wfl = NULL_TREE;
4969 tree real_type;
4971 /* Obtain a suitable type for resolution, if necessary */
4972 SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
4974 /* Process NAME, as it may specify extra dimension(s) for it */
4975 type = build_array_from_name (type, type_wfl, name, &name);
4976 EXPR_WFL_NODE (wfl_name) = name;
4978 real_type = GET_REAL_TYPE (type);
4979 if (TREE_CODE (real_type) == RECORD_TYPE)
4981 real_type = promote_type (real_type);
4982 if (TREE_CODE (type) == TREE_LIST)
4983 TREE_PURPOSE (type) = real_type;
4986 /* Check redefinition */
4987 for (already = arg_types; already; already = TREE_CHAIN (already))
4988 if (TREE_PURPOSE (already) == name)
4990 parse_error_context
4991 (wfl_name, "Variable `%s' is used more than once in the argument list of method `%s'",
4992 IDENTIFIER_POINTER (name),
4993 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4994 break;
4997 /* If we've an incomplete argument type, we know there is a location
4998 to patch when the type get resolved, later. */
4999 jdep = NULL;
5000 if (must_chain)
5002 patch_stage = JDEP_METHOD;
5003 type = register_incomplete_type (patch_stage,
5004 type_wfl, wfl_name, type);
5005 jdep = CLASSD_LAST (ctxp->classd_list);
5006 JDEP_MISC (jdep) = id;
5009 /* The argument node: a name and a (possibly) incomplete type. */
5010 arg_node = build_tree_list (name, real_type);
5011 /* Remeber arguments declared final. */
5012 ARG_FINAL_P (arg_node) = ARG_FINAL_P (current);
5014 if (jdep)
5015 JDEP_GET_PATCH (jdep) = &TREE_VALUE (arg_node);
5016 TREE_CHAIN (arg_node) = arg_types;
5017 arg_types = arg_node;
5019 TYPE_ARG_TYPES (meth) = chainon (nreverse (arg_types), end_params_node);
5020 node = build_tree_list (id, meth);
5021 return node;
5024 static int
5025 unresolved_type_p (wfl, returned)
5026 tree wfl;
5027 tree *returned;
5030 if (TREE_CODE (wfl) == EXPR_WITH_FILE_LOCATION)
5032 if (returned)
5034 tree decl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (wfl));
5035 if (decl && current_class && (decl == TYPE_NAME (current_class)))
5036 *returned = TREE_TYPE (decl);
5037 else if (GET_CPC_UN () == EXPR_WFL_NODE (wfl))
5038 *returned = TREE_TYPE (GET_CPC ());
5039 else
5040 *returned = NULL_TREE;
5042 return 1;
5044 if (returned)
5045 *returned = wfl;
5046 return 0;
5049 /* From NAME, build a qualified identifier node using the
5050 qualification from the current package definition. */
5052 static tree
5053 parser_qualified_classname (name)
5054 tree name;
5056 tree nested_class_name;
5058 if ((nested_class_name = maybe_make_nested_class_name (name)))
5059 return nested_class_name;
5061 if (ctxp->package)
5062 return merge_qualified_name (ctxp->package, name);
5063 else
5064 return name;
5067 /* Called once the type a interface extends is resolved. Returns 0 if
5068 everything is OK. */
5070 static int
5071 parser_check_super_interface (super_decl, this_decl, this_wfl)
5072 tree super_decl, this_decl, this_wfl;
5074 tree super_type = TREE_TYPE (super_decl);
5076 /* Has to be an interface */
5077 if (!CLASS_INTERFACE (super_decl))
5079 parse_error_context
5080 (this_wfl, "Can't use %s `%s' to implement/extend %s `%s'",
5081 (TYPE_ARRAY_P (super_type) ? "array" : "class"),
5082 IDENTIFIER_POINTER (DECL_NAME (super_decl)),
5083 (CLASS_INTERFACE (TYPE_NAME (TREE_TYPE (this_decl))) ?
5084 "interface" : "class"),
5085 IDENTIFIER_POINTER (DECL_NAME (this_decl)));
5086 return 1;
5089 /* Check top-level interface access. Inner classes are subject to member
5090 access rules (6.6.1). */
5091 if (! INNER_CLASS_P (super_type)
5092 && check_pkg_class_access (DECL_NAME (super_decl), lookup_cl (this_decl)))
5093 return 1;
5095 SOURCE_FRONTEND_DEBUG (("Completing interface %s with %s",
5096 IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5097 IDENTIFIER_POINTER (DECL_NAME (super_decl))));
5098 return 0;
5101 /* Makes sure that SUPER_DECL is suitable to extend THIS_DECL. Returns
5102 0 if everthing is OK. */
5104 static int
5105 parser_check_super (super_decl, this_decl, wfl)
5106 tree super_decl, this_decl, wfl;
5108 tree super_type = TREE_TYPE (super_decl);
5110 /* SUPER should be a CLASS (neither an array nor an interface) */
5111 if (TYPE_ARRAY_P (super_type) || CLASS_INTERFACE (TYPE_NAME (super_type)))
5113 parse_error_context
5114 (wfl, "Class `%s' can't subclass %s `%s'",
5115 IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5116 (CLASS_INTERFACE (TYPE_NAME (super_type)) ? "interface" : "array"),
5117 IDENTIFIER_POINTER (DECL_NAME (super_decl)));
5118 return 1;
5121 if (CLASS_FINAL (TYPE_NAME (super_type)))
5123 parse_error_context (wfl, "Can't subclass final classes: %s",
5124 IDENTIFIER_POINTER (DECL_NAME (super_decl)));
5125 return 1;
5128 /* Check top-level class scope. Inner classes are subject to member access
5129 rules (6.6.1). */
5130 if (! INNER_CLASS_P (super_type)
5131 && (check_pkg_class_access (DECL_NAME (super_decl), wfl)))
5132 return 1;
5134 SOURCE_FRONTEND_DEBUG (("Completing class %s with %s",
5135 IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5136 IDENTIFIER_POINTER (DECL_NAME (super_decl))));
5137 return 0;
5140 /* Create a new dependency list and link it (in a LIFO manner) to the
5141 CTXP list of type dependency list. */
5143 static void
5144 create_jdep_list (ctxp)
5145 struct parser_ctxt *ctxp;
5147 jdeplist *new = (jdeplist *)xmalloc (sizeof (jdeplist));
5148 new->first = new->last = NULL;
5149 new->next = ctxp->classd_list;
5150 ctxp->classd_list = new;
5153 static jdeplist *
5154 reverse_jdep_list (ctxp)
5155 struct parser_ctxt *ctxp;
5157 register jdeplist *prev = NULL, *current, *next;
5158 for (current = ctxp->classd_list; current; current = next)
5160 next = current->next;
5161 current->next = prev;
5162 prev = current;
5164 return prev;
5167 /* Create a fake pointer based on the ID stored in
5168 TYPE_NAME. TYPE_NAME can be a WFL or a incomplete type asking to be
5169 registered again. */
5171 static tree
5172 obtain_incomplete_type (type_name)
5173 tree type_name;
5175 tree ptr = NULL_TREE, name;
5177 if (TREE_CODE (type_name) == EXPR_WITH_FILE_LOCATION)
5178 name = EXPR_WFL_NODE (type_name);
5179 else if (INCOMPLETE_TYPE_P (type_name))
5180 name = TYPE_NAME (type_name);
5181 else
5182 abort ();
5184 BUILD_PTR_FROM_NAME (ptr, name);
5185 layout_type (ptr);
5187 return ptr;
5190 /* Register a incomplete type whose name is WFL. Reuse PTR if PTR is
5191 non NULL instead of computing a new fake type based on WFL. The new
5192 dependency is inserted in the current type dependency list, in FIFO
5193 manner. */
5195 static tree
5196 register_incomplete_type (kind, wfl, decl, ptr)
5197 int kind;
5198 tree wfl, decl, ptr;
5200 jdep *new = (jdep *)xmalloc (sizeof (jdep));
5202 if (!ptr && kind != JDEP_METHOD_END) /* JDEP_METHOD_END is a mere marker */
5203 ptr = obtain_incomplete_type (wfl);
5205 JDEP_KIND (new) = kind;
5206 JDEP_DECL (new) = decl;
5207 JDEP_TO_RESOLVE (new) = ptr;
5208 JDEP_WFL (new) = wfl;
5209 JDEP_CHAIN (new) = NULL;
5210 JDEP_MISC (new) = NULL_TREE;
5211 /* For some dependencies, set the enclosing class of the current
5212 class to be the enclosing context */
5213 if ((kind == JDEP_SUPER || kind == JDEP_INTERFACE
5214 || kind == JDEP_ANONYMOUS)
5215 && GET_ENCLOSING_CPC ())
5216 JDEP_ENCLOSING (new) = TREE_VALUE (GET_ENCLOSING_CPC ());
5217 else
5218 JDEP_ENCLOSING (new) = GET_CPC ();
5219 JDEP_GET_PATCH (new) = (tree *)NULL;
5221 JDEP_INSERT (ctxp->classd_list, new);
5223 return ptr;
5226 /* This checks for circular references with innerclasses. We start
5227 from SOURCE and should never reach TARGET. Extended/implemented
5228 types in SOURCE have their enclosing context checked not to reach
5229 TARGET. When the last enclosing context of SOURCE is reached, its
5230 extended/implemented types are also checked not to reach TARGET.
5231 In case of error, WFL of the offending type is returned; NULL_TREE
5232 otherwise. */
5234 static tree
5235 check_inner_circular_reference (source, target)
5236 tree source;
5237 tree target;
5239 tree basetype_vec = TYPE_BINFO_BASETYPES (source);
5240 tree ctx, cl;
5241 int i;
5243 if (!basetype_vec)
5244 return NULL_TREE;
5246 for (i = 0; i < TREE_VEC_LENGTH (basetype_vec); i++)
5248 tree su = BINFO_TYPE (TREE_VEC_ELT (basetype_vec, i));
5250 if (inherits_from_p (su, target))
5251 return lookup_cl (TYPE_NAME (su));
5253 for (ctx = DECL_CONTEXT (TYPE_NAME (su)); ctx; ctx = DECL_CONTEXT (ctx))
5255 /* An enclosing context shouldn't be TARGET */
5256 if (ctx == TYPE_NAME (target))
5257 return lookup_cl (TYPE_NAME (su));
5259 /* When we reach the enclosing last context, start a check
5260 on it, with the same target */
5261 if (! DECL_CONTEXT (ctx) &&
5262 (cl = check_inner_circular_reference (TREE_TYPE (ctx), target)))
5263 return cl;
5266 return NULL_TREE;
5269 /* Explore TYPE's `extends' clause member(s) and return the WFL of the
5270 offending type if a circularity is detected. NULL_TREE is returned
5271 otherwise. TYPE can be an interface or a class. */
5273 static tree
5274 check_circular_reference (type)
5275 tree type;
5277 tree basetype_vec = TYPE_BINFO_BASETYPES (type);
5278 int i;
5280 if (!basetype_vec)
5281 return NULL_TREE;
5283 if (! CLASS_INTERFACE (TYPE_NAME (type)))
5285 if (inherits_from_p (CLASSTYPE_SUPER (type), type))
5286 return lookup_cl (TYPE_NAME (type));
5287 return NULL_TREE;
5290 for (i = 0; i < TREE_VEC_LENGTH (basetype_vec); i++)
5292 tree vec_elt = TREE_VEC_ELT (basetype_vec, i);
5293 if (vec_elt && BINFO_TYPE (vec_elt) != object_type_node
5294 && interface_of_p (type, BINFO_TYPE (vec_elt)))
5295 return lookup_cl (TYPE_NAME (BINFO_TYPE (vec_elt)));
5297 return NULL_TREE;
5300 void
5301 java_check_circular_reference ()
5303 tree current;
5304 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
5306 tree type = TREE_TYPE (current);
5307 tree cl;
5309 cl = check_circular_reference (type);
5310 if (! cl)
5311 cl = check_inner_circular_reference (type, type);
5312 if (cl)
5313 parse_error_context (cl, "Cyclic class inheritance%s",
5314 (cyclic_inheritance_report ?
5315 cyclic_inheritance_report : ""));
5319 /* Augment the parameter list PARM with parameters crafted to
5320 initialize outer context locals aliases. Through ARTIFICIAL, a
5321 count is kept of the number of crafted parameters. MODE governs
5322 what eventually gets created: something suitable for a function
5323 creation or a function invocation, either the constructor or
5324 finit$. */
5326 static tree
5327 build_alias_initializer_parameter_list (mode, class_type, parm, artificial)
5328 int mode;
5329 tree class_type, parm;
5330 int *artificial;
5332 tree field;
5333 tree additional_parms = NULL_TREE;
5335 for (field = TYPE_FIELDS (class_type); field; field = TREE_CHAIN (field))
5336 if (FIELD_LOCAL_ALIAS (field))
5338 const char *buffer = IDENTIFIER_POINTER (DECL_NAME (field));
5339 tree purpose = NULL_TREE, value = NULL_TREE, name = NULL_TREE;
5340 tree mangled_id;
5342 switch (mode)
5344 case AIPL_FUNCTION_DECLARATION:
5345 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (mangled_id,
5346 &buffer [4]);
5347 purpose = build_wfl_node (mangled_id);
5348 if (TREE_CODE (TREE_TYPE (field)) == POINTER_TYPE)
5349 value = build_wfl_node (TYPE_NAME (TREE_TYPE (field)));
5350 else
5351 value = TREE_TYPE (field);
5352 break;
5354 case AIPL_FUNCTION_CREATION:
5355 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (purpose,
5356 &buffer [4]);
5357 value = TREE_TYPE (field);
5358 break;
5360 case AIPL_FUNCTION_FINIT_INVOCATION:
5361 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (mangled_id,
5362 &buffer [4]);
5363 /* Now, this is wrong. purpose should always be the NAME
5364 of something and value its matching value (decl, type,
5365 etc...) FIXME -- but there is a lot to fix. */
5367 /* When invoked for this kind of operation, we already
5368 know whether a field is used or not. */
5369 purpose = TREE_TYPE (field);
5370 value = build_wfl_node (mangled_id);
5371 break;
5373 case AIPL_FUNCTION_CTOR_INVOCATION:
5374 /* There are two case: the constructor invokation happends
5375 outside the local inner, in which case, locales from the outer
5376 context are directly used.
5378 Otherwise, we fold to using the alias directly. */
5379 if (class_type == current_class)
5380 value = field;
5381 else
5383 name = get_identifier (&buffer[4]);
5384 value = IDENTIFIER_LOCAL_VALUE (name);
5386 break;
5388 additional_parms = tree_cons (purpose, value, additional_parms);
5389 if (artificial)
5390 *artificial +=1;
5392 if (additional_parms)
5394 if (ANONYMOUS_CLASS_P (class_type)
5395 && mode == AIPL_FUNCTION_CTOR_INVOCATION)
5396 additional_parms = nreverse (additional_parms);
5397 parm = chainon (additional_parms, parm);
5400 return parm;
5403 /* Craft a constructor for CLASS_DECL -- what we should do when none
5404 where found. ARGS is non NULL when a special signature must be
5405 enforced. This is the case for anonymous classes. */
5407 static void
5408 craft_constructor (class_decl, args)
5409 tree class_decl, args;
5411 tree class_type = TREE_TYPE (class_decl);
5412 tree parm = NULL_TREE;
5413 int flags = (get_access_flags_from_decl (class_decl) & ACC_PUBLIC ?
5414 ACC_PUBLIC : 0);
5415 int i = 0, artificial = 0;
5416 tree decl, ctor_name;
5417 char buffer [80];
5419 /* The constructor name is <init> unless we're dealing with an
5420 anonymous class, in which case the name will be fixed after having
5421 be expanded. */
5422 if (ANONYMOUS_CLASS_P (class_type))
5423 ctor_name = DECL_NAME (class_decl);
5424 else
5425 ctor_name = init_identifier_node;
5427 /* If we're dealing with an inner class constructor, we hide the
5428 this$<n> decl in the name field of its parameter declaration. */
5429 if (PURE_INNER_CLASS_TYPE_P (class_type))
5431 tree type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class_type)));
5432 parm = tree_cons (build_current_thisn (class_type),
5433 build_pointer_type (type), parm);
5435 /* Some more arguments to be hidden here. The values of the local
5436 variables of the outer context that the inner class needs to see. */
5437 parm = build_alias_initializer_parameter_list (AIPL_FUNCTION_CREATION,
5438 class_type, parm,
5439 &artificial);
5442 /* Then if there are any args to be enforced, enforce them now */
5443 for (; args && args != end_params_node; args = TREE_CHAIN (args))
5445 sprintf (buffer, "parm%d", i++);
5446 parm = tree_cons (get_identifier (buffer), TREE_VALUE (args), parm);
5449 CRAFTED_PARAM_LIST_FIXUP (parm);
5450 decl = create_artificial_method (class_type, flags, void_type_node,
5451 ctor_name, parm);
5452 fix_method_argument_names (parm, decl);
5453 /* Now, mark the artificial parameters. */
5454 DECL_FUNCTION_NAP (decl) = artificial;
5455 DECL_FUNCTION_SYNTHETIC_CTOR (decl) = DECL_CONSTRUCTOR_P (decl) = 1;
5459 /* Fix the constructors. This will be called right after circular
5460 references have been checked. It is necessary to fix constructors
5461 early even if no code generation will take place for that class:
5462 some generated constructor might be required by the class whose
5463 compilation triggered this one to be simply loaded. */
5465 void
5466 java_fix_constructors ()
5468 tree current;
5470 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
5472 tree class_type = TREE_TYPE (current);
5473 int saw_ctor = 0;
5474 tree decl;
5476 if (CLASS_INTERFACE (TYPE_NAME (class_type)))
5477 continue;
5479 current_class = class_type;
5480 for (decl = TYPE_METHODS (class_type); decl; decl = TREE_CHAIN (decl))
5482 if (DECL_CONSTRUCTOR_P (decl))
5484 fix_constructors (decl);
5485 saw_ctor = 1;
5489 /* Anonymous class constructor can't be generated that early. */
5490 if (!saw_ctor && !ANONYMOUS_CLASS_P (class_type))
5491 craft_constructor (current, NULL_TREE);
5495 /* safe_layout_class just makes sure that we can load a class without
5496 disrupting the current_class, input_file, lineno, etc, information
5497 about the class processed currently. */
5499 void
5500 safe_layout_class (class)
5501 tree class;
5503 tree save_current_class = current_class;
5504 const char *save_input_filename = input_filename;
5505 int save_lineno = lineno;
5507 layout_class (class);
5509 current_class = save_current_class;
5510 input_filename = save_input_filename;
5511 lineno = save_lineno;
5514 static tree
5515 jdep_resolve_class (dep)
5516 jdep *dep;
5518 tree decl;
5520 if (JDEP_RESOLVED_P (dep))
5521 decl = JDEP_RESOLVED_DECL (dep);
5522 else
5524 decl = resolve_class (JDEP_ENCLOSING (dep), JDEP_TO_RESOLVE (dep),
5525 JDEP_DECL (dep), JDEP_WFL (dep));
5526 JDEP_RESOLVED (dep, decl);
5529 if (!decl)
5530 complete_class_report_errors (dep);
5531 else if (PURE_INNER_CLASS_DECL_P (decl))
5533 tree inner = TREE_TYPE (decl);
5534 if (! CLASS_LOADED_P (inner))
5536 safe_layout_class (inner);
5537 if (TYPE_SIZE (inner) == error_mark_node)
5538 TYPE_SIZE (inner) = NULL_TREE;
5540 check_inner_class_access (decl, JDEP_ENCLOSING (dep), JDEP_WFL (dep));
5542 return decl;
5545 /* Complete unsatisfied class declaration and their dependencies */
5547 void
5548 java_complete_class ()
5550 tree cclass;
5551 jdeplist *cclassd;
5552 int error_found;
5553 tree type;
5555 /* Process imports */
5556 process_imports ();
5558 /* Rever things so we have the right order */
5559 ctxp->class_list = nreverse (ctxp->class_list);
5560 ctxp->classd_list = reverse_jdep_list (ctxp);
5562 for (cclassd = ctxp->classd_list, cclass = ctxp->class_list;
5563 cclass && cclassd;
5564 cclass = TREE_CHAIN (cclass), cclassd = CLASSD_CHAIN (cclassd))
5566 jdep *dep;
5567 for (dep = CLASSD_FIRST (cclassd); dep; dep = JDEP_CHAIN (dep))
5569 tree decl;
5570 if (!(decl = jdep_resolve_class (dep)))
5571 continue;
5573 /* Now it's time to patch */
5574 switch (JDEP_KIND (dep))
5576 case JDEP_SUPER:
5577 /* Simply patch super */
5578 if (parser_check_super (decl, JDEP_DECL (dep), JDEP_WFL (dep)))
5579 continue;
5580 BINFO_TYPE (TREE_VEC_ELT (BINFO_BASETYPES (TYPE_BINFO
5581 (TREE_TYPE (JDEP_DECL (dep)))), 0)) = TREE_TYPE (decl);
5582 break;
5584 case JDEP_FIELD:
5586 /* We do part of the job done in add_field */
5587 tree field_decl = JDEP_DECL (dep);
5588 tree field_type = TREE_TYPE (decl);
5589 if (TREE_CODE (field_type) == RECORD_TYPE)
5590 field_type = promote_type (field_type);
5591 TREE_TYPE (field_decl) = field_type;
5592 DECL_ALIGN (field_decl) = 0;
5593 DECL_USER_ALIGN (field_decl) = 0;
5594 layout_decl (field_decl, 0);
5595 SOURCE_FRONTEND_DEBUG
5596 (("Completed field/var decl `%s' with `%s'",
5597 IDENTIFIER_POINTER (DECL_NAME (field_decl)),
5598 IDENTIFIER_POINTER (DECL_NAME (decl))));
5599 break;
5601 case JDEP_METHOD: /* We start patching a method */
5602 case JDEP_METHOD_RETURN:
5603 error_found = 0;
5604 while (1)
5606 if (decl)
5608 type = TREE_TYPE(decl);
5609 if (TREE_CODE (type) == RECORD_TYPE)
5610 type = promote_type (type);
5611 JDEP_APPLY_PATCH (dep, type);
5612 SOURCE_FRONTEND_DEBUG
5613 (((JDEP_KIND (dep) == JDEP_METHOD_RETURN ?
5614 "Completing fct `%s' with ret type `%s'":
5615 "Completing arg `%s' with type `%s'"),
5616 IDENTIFIER_POINTER (EXPR_WFL_NODE
5617 (JDEP_DECL_WFL (dep))),
5618 IDENTIFIER_POINTER (DECL_NAME (decl))));
5620 else
5621 error_found = 1;
5622 dep = JDEP_CHAIN (dep);
5623 if (JDEP_KIND (dep) == JDEP_METHOD_END)
5624 break;
5625 else
5626 decl = jdep_resolve_class (dep);
5628 if (!error_found)
5630 tree mdecl = JDEP_DECL (dep), signature;
5631 /* Recompute and reset the signature, check first that
5632 all types are now defined. If they're not,
5633 dont build the signature. */
5634 if (check_method_types_complete (mdecl))
5636 signature = build_java_signature (TREE_TYPE (mdecl));
5637 set_java_signature (TREE_TYPE (mdecl), signature);
5640 else
5641 continue;
5642 break;
5644 case JDEP_INTERFACE:
5645 if (parser_check_super_interface (decl, JDEP_DECL (dep),
5646 JDEP_WFL (dep)))
5647 continue;
5648 parser_add_interface (JDEP_DECL (dep), decl, JDEP_WFL (dep));
5649 break;
5651 case JDEP_PARM:
5652 case JDEP_VARIABLE:
5653 type = TREE_TYPE(decl);
5654 if (TREE_CODE (type) == RECORD_TYPE)
5655 type = promote_type (type);
5656 JDEP_APPLY_PATCH (dep, type);
5657 break;
5659 case JDEP_TYPE:
5660 JDEP_APPLY_PATCH (dep, TREE_TYPE (decl));
5661 SOURCE_FRONTEND_DEBUG
5662 (("Completing a random type dependency on a '%s' node",
5663 tree_code_name [TREE_CODE (JDEP_DECL (dep))]));
5664 break;
5666 case JDEP_EXCEPTION:
5667 JDEP_APPLY_PATCH (dep, TREE_TYPE (decl));
5668 SOURCE_FRONTEND_DEBUG
5669 (("Completing `%s' `throws' argument node",
5670 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep)))));
5671 break;
5673 case JDEP_ANONYMOUS:
5674 patch_anonymous_class (decl, JDEP_DECL (dep), JDEP_WFL (dep));
5675 break;
5677 default:
5678 abort ();
5682 return;
5685 /* Resolve class CLASS_TYPE. Handle the case of trying to resolve an
5686 array. */
5688 static tree
5689 resolve_class (enclosing, class_type, decl, cl)
5690 tree enclosing, class_type, decl, cl;
5692 const char *name = IDENTIFIER_POINTER (TYPE_NAME (class_type));
5693 const char *base = name;
5694 tree resolved_type = TREE_TYPE (class_type);
5695 tree resolved_type_decl;
5697 if (resolved_type != NULL_TREE)
5699 tree resolved_type_decl = TYPE_NAME (resolved_type);
5700 if (resolved_type_decl == NULL_TREE
5701 || TREE_CODE (resolved_type_decl) == IDENTIFIER_NODE)
5703 resolved_type_decl = build_decl (TYPE_DECL,
5704 TYPE_NAME (class_type),
5705 resolved_type);
5707 return resolved_type_decl;
5710 /* 1- Check to see if we have an array. If true, find what we really
5711 want to resolve */
5712 while (name[0] == '[')
5713 name++;
5714 if (base != name)
5716 TYPE_NAME (class_type) = get_identifier (name);
5717 WFL_STRIP_BRACKET (cl, cl);
5720 /* 2- Resolve the bare type */
5721 if (!(resolved_type_decl = do_resolve_class (enclosing, class_type,
5722 decl, cl)))
5723 return NULL_TREE;
5724 resolved_type = TREE_TYPE (resolved_type_decl);
5726 /* 3- If we have and array, reconstruct the array down to its nesting */
5727 if (base != name)
5729 while (base != name)
5731 resolved_type = build_java_array_type (resolved_type, -1);
5732 name--;
5734 /* A TYPE_NAME that is a TYPE_DECL was set in
5735 build_java_array_type, return it. */
5736 resolved_type_decl = TYPE_NAME (resolved_type);
5738 TREE_TYPE (class_type) = resolved_type;
5739 return resolved_type_decl;
5742 /* Effectively perform the resolution of class CLASS_TYPE. DECL or CL
5743 are used to report error messages. Do not try to replace TYPE_NAME
5744 (class_type) by a variable, since it is changed by
5745 find_in_imports{_on_demand} and (but it doesn't really matter)
5746 qualify_and_find. */
5748 tree
5749 do_resolve_class (enclosing, class_type, decl, cl)
5750 tree enclosing, class_type, decl, cl;
5752 tree new_class_decl = NULL_TREE, super = NULL_TREE;
5753 struct hash_table _ht, *circularity_hash = &_ht;
5755 /* This hash table is used to register the classes we're going
5756 through when searching the current class as an inner class, in
5757 order to detect circular references. Remember to free it before
5758 returning the section 0- of this function. */
5759 hash_table_init (circularity_hash, hash_newfunc,
5760 java_hash_hash_tree_node, java_hash_compare_tree_node);
5762 /* 0- Search in the current class as an inner class.
5763 Maybe some code here should be added to load the class or
5764 something, at least if the class isn't an inner class and ended
5765 being loaded from class file. FIXME. */
5766 while (enclosing)
5768 new_class_decl = resolve_inner_class (circularity_hash, cl, &enclosing,
5769 &super, class_type);
5770 if (new_class_decl)
5771 break;
5773 /* If we haven't found anything because SUPER reached Object and
5774 ENCLOSING happens to be an innerclass, try the enclosing context. */
5775 if ((!super || super == object_type_node) &&
5776 enclosing && INNER_CLASS_DECL_P (enclosing))
5777 enclosing = DECL_CONTEXT (enclosing);
5778 else
5779 enclosing = NULL_TREE;
5782 hash_table_free (circularity_hash);
5784 if (new_class_decl)
5785 return new_class_decl;
5787 /* 1- Check for the type in single imports. This will change
5788 TYPE_NAME() if something relevant is found */
5789 find_in_imports (class_type);
5791 /* 2- And check for the type in the current compilation unit */
5792 if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type))))
5794 if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)) &&
5795 !CLASS_FROM_SOURCE_P (TREE_TYPE (new_class_decl)))
5796 load_class (TYPE_NAME (class_type), 0);
5797 return IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
5800 /* 3- Search according to the current package definition */
5801 if (!QUALIFIED_P (TYPE_NAME (class_type)))
5803 if ((new_class_decl = qualify_and_find (class_type, ctxp->package,
5804 TYPE_NAME (class_type))))
5805 return new_class_decl;
5808 /* 4- Check the import on demands. Don't allow bar.baz to be
5809 imported from foo.* */
5810 if (!QUALIFIED_P (TYPE_NAME (class_type)))
5811 if (find_in_imports_on_demand (class_type))
5812 return NULL_TREE;
5814 /* If found in find_in_imports_on_demant, the type has already been
5815 loaded. */
5816 if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type))))
5817 return new_class_decl;
5819 /* 5- Try with a name qualified with the package name we've seen so far */
5820 if (!QUALIFIED_P (TYPE_NAME (class_type)))
5822 tree package;
5824 /* If there is a current package (ctxp->package), it's the first
5825 element of package_list and we can skip it. */
5826 for (package = (ctxp->package ?
5827 TREE_CHAIN (package_list) : package_list);
5828 package; package = TREE_CHAIN (package))
5829 if ((new_class_decl = qualify_and_find (class_type,
5830 TREE_PURPOSE (package),
5831 TYPE_NAME (class_type))))
5832 return new_class_decl;
5835 /* 5- Check an other compilation unit that bears the name of type */
5836 load_class (TYPE_NAME (class_type), 0);
5838 if (!cl)
5839 cl = lookup_cl (decl);
5841 /* If we don't have a value for CL, then we're being called recursively.
5842 We can't check package access just yet, but it will be taken care of
5843 by the caller. */
5844 if (cl)
5846 if (check_pkg_class_access (TYPE_NAME (class_type), cl))
5847 return NULL_TREE;
5850 /* 6- Last call for a resolution */
5851 return IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
5854 static tree
5855 qualify_and_find (class_type, package, name)
5856 tree class_type, package, name;
5858 tree new_qualified = merge_qualified_name (package, name);
5859 tree new_class_decl;
5861 if (!IDENTIFIER_CLASS_VALUE (new_qualified))
5862 load_class (new_qualified, 0);
5863 if ((new_class_decl = IDENTIFIER_CLASS_VALUE (new_qualified)))
5865 if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)) &&
5866 !CLASS_FROM_SOURCE_P (TREE_TYPE (new_class_decl)))
5867 load_class (new_qualified, 0);
5868 TYPE_NAME (class_type) = new_qualified;
5869 return IDENTIFIER_CLASS_VALUE (new_qualified);
5871 return NULL_TREE;
5874 /* Resolve NAME and lay it out (if not done and if not the current
5875 parsed class). Return a decl node. This function is meant to be
5876 called when type resolution is necessary during the walk pass. */
5878 static tree
5879 resolve_and_layout (something, cl)
5880 tree something;
5881 tree cl;
5883 tree decl, decl_type;
5885 /* Don't do that on the current class */
5886 if (something == current_class)
5887 return TYPE_NAME (current_class);
5889 /* Don't do anything for void and other primitive types */
5890 if (JPRIMITIVE_TYPE_P (something) || something == void_type_node)
5891 return NULL_TREE;
5893 /* Pointer types can be reall pointer types or fake pointers. When
5894 finding a real pointer, recheck for primitive types */
5895 if (TREE_CODE (something) == POINTER_TYPE)
5897 if (TREE_TYPE (something))
5899 something = TREE_TYPE (something);
5900 if (JPRIMITIVE_TYPE_P (something) || something == void_type_node)
5901 return NULL_TREE;
5903 else
5904 something = TYPE_NAME (something);
5907 /* Don't do anything for arrays of primitive types */
5908 if (TREE_CODE (something) == RECORD_TYPE && TYPE_ARRAY_P (something)
5909 && JPRIMITIVE_TYPE_P (TYPE_ARRAY_ELEMENT (something)))
5910 return NULL_TREE;
5912 /* Something might be a WFL */
5913 if (TREE_CODE (something) == EXPR_WITH_FILE_LOCATION)
5914 something = EXPR_WFL_NODE (something);
5916 /* Otherwise, if something is not and IDENTIFIER_NODE, it can be a a
5917 TYPE_DECL or a real TYPE */
5918 else if (TREE_CODE (something) != IDENTIFIER_NODE)
5919 something = (TREE_CODE (TYPE_NAME (something)) == TYPE_DECL ?
5920 DECL_NAME (TYPE_NAME (something)) : TYPE_NAME (something));
5922 if (!(decl = resolve_no_layout (something, cl)))
5923 return NULL_TREE;
5925 /* Resolve and layout if necessary */
5926 decl_type = TREE_TYPE (decl);
5927 layout_class_methods (decl_type);
5928 /* Check methods */
5929 if (CLASS_FROM_SOURCE_P (decl_type))
5930 java_check_methods (decl);
5931 /* Layout the type if necessary */
5932 if (decl_type != current_class && !CLASS_LOADED_P (decl_type))
5933 safe_layout_class (decl_type);
5935 return decl;
5938 /* Resolve a class, returns its decl but doesn't perform any
5939 layout. The current parsing context is saved and restored */
5941 static tree
5942 resolve_no_layout (name, cl)
5943 tree name, cl;
5945 tree ptr, decl;
5946 BUILD_PTR_FROM_NAME (ptr, name);
5947 java_parser_context_save_global ();
5948 decl = resolve_class (TYPE_NAME (current_class), ptr, NULL_TREE, cl);
5949 java_parser_context_restore_global ();
5951 return decl;
5954 /* Called when reporting errors. Skip leader '[' in a complex array
5955 type description that failed to be resolved. */
5957 static const char *
5958 purify_type_name (name)
5959 const char *name;
5961 while (*name && *name == '[')
5962 name++;
5963 return name;
5966 /* The type CURRENT refers to can't be found. We print error messages. */
5968 static void
5969 complete_class_report_errors (dep)
5970 jdep *dep;
5972 const char *name;
5974 if (!JDEP_WFL (dep))
5975 return;
5977 name = IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep)));
5978 switch (JDEP_KIND (dep))
5980 case JDEP_SUPER:
5981 parse_error_context
5982 (JDEP_WFL (dep), "Superclass `%s' of class `%s' not found",
5983 purify_type_name (name),
5984 IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
5985 break;
5986 case JDEP_FIELD:
5987 parse_error_context
5988 (JDEP_WFL (dep), "Type `%s' not found in declaration of field `%s'",
5989 purify_type_name (name),
5990 IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
5991 break;
5992 case JDEP_METHOD: /* Covers arguments */
5993 parse_error_context
5994 (JDEP_WFL (dep), "Type `%s' not found in the declaration of the argument `%s' of method `%s'",
5995 purify_type_name (name),
5996 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_DECL_WFL (dep))),
5997 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_MISC (dep))));
5998 break;
5999 case JDEP_METHOD_RETURN: /* Covers return type */
6000 parse_error_context
6001 (JDEP_WFL (dep), "Type `%s' not found in the declaration of the return type of method `%s'",
6002 purify_type_name (name),
6003 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_DECL_WFL (dep))));
6004 break;
6005 case JDEP_INTERFACE:
6006 parse_error_context
6007 (JDEP_WFL (dep), "Superinterface `%s' of %s `%s' not found",
6008 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep))),
6009 (CLASS_OR_INTERFACE (JDEP_DECL (dep), "class", "interface")),
6010 IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6011 break;
6012 case JDEP_VARIABLE:
6013 parse_error_context
6014 (JDEP_WFL (dep), "Type `%s' not found in the declaration of the local variable `%s'",
6015 purify_type_name (IDENTIFIER_POINTER
6016 (EXPR_WFL_NODE (JDEP_WFL (dep)))),
6017 IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6018 break;
6019 case JDEP_EXCEPTION: /* As specified by `throws' */
6020 parse_error_context
6021 (JDEP_WFL (dep), "Class `%s' not found in `throws'",
6022 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep))));
6023 break;
6024 default:
6025 /* Fix for -Wall. Just break doing nothing. The error will be
6026 caught later */
6027 break;
6031 /* Return a static string containing the DECL prototype string. If
6032 DECL is a constructor, use the class name instead of the form
6033 <init> */
6035 static const char *
6036 get_printable_method_name (decl)
6037 tree decl;
6039 const char *to_return;
6040 tree name = NULL_TREE;
6042 if (DECL_CONSTRUCTOR_P (decl))
6044 name = DECL_NAME (decl);
6045 DECL_NAME (decl) = DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl)));
6048 to_return = lang_printable_name (decl, 0);
6049 if (DECL_CONSTRUCTOR_P (decl))
6050 DECL_NAME (decl) = name;
6052 return to_return;
6055 /* Track method being redefined inside the same class. As a side
6056 effect, set DECL_NAME to an IDENTIFIER (prior entering this
6057 function it's a FWL, so we can track errors more accurately.) */
6059 static int
6060 check_method_redefinition (class, method)
6061 tree class, method;
6063 tree redef, sig;
6065 /* There's no need to verify <clinit> and finit$ and instinit$ */
6066 if (DECL_CLINIT_P (method)
6067 || DECL_FINIT_P (method) || DECL_INSTINIT_P (method))
6068 return 0;
6070 sig = TYPE_ARGUMENT_SIGNATURE (TREE_TYPE (method));
6071 for (redef = TYPE_METHODS (class); redef; redef = TREE_CHAIN (redef))
6073 if (redef == method)
6074 break;
6075 if (DECL_NAME (redef) == DECL_NAME (method)
6076 && sig == TYPE_ARGUMENT_SIGNATURE (TREE_TYPE (redef))
6077 && !DECL_ARTIFICIAL (method))
6079 parse_error_context
6080 (DECL_FUNCTION_WFL (method), "Duplicate %s declaration `%s'",
6081 (DECL_CONSTRUCTOR_P (redef) ? "constructor" : "method"),
6082 get_printable_method_name (redef));
6083 return 1;
6086 return 0;
6089 /* Return 1 if check went ok, 0 otherwise. */
6090 static int
6091 check_abstract_method_definitions (do_interface, class_decl, type)
6092 int do_interface;
6093 tree class_decl, type;
6095 tree class = TREE_TYPE (class_decl);
6096 tree method, end_type;
6097 int ok = 1;
6099 end_type = (do_interface ? object_type_node : type);
6100 for (method = TYPE_METHODS (type); method; method = TREE_CHAIN (method))
6102 tree other_super, other_method, method_sig, method_name;
6103 int found = 0;
6104 int end_type_reached = 0;
6106 if (!METHOD_ABSTRACT (method) || METHOD_FINAL (method))
6107 continue;
6109 /* Now verify that somewhere in between TYPE and CLASS,
6110 abstract method METHOD gets a non abstract definition
6111 that is inherited by CLASS. */
6113 method_sig = build_java_signature (TREE_TYPE (method));
6114 method_name = DECL_NAME (method);
6115 if (TREE_CODE (method_name) == EXPR_WITH_FILE_LOCATION)
6116 method_name = EXPR_WFL_NODE (method_name);
6118 other_super = class;
6119 do {
6120 if (other_super == end_type)
6121 end_type_reached = 1;
6123 /* Method search */
6124 for (other_method = TYPE_METHODS (other_super); other_method;
6125 other_method = TREE_CHAIN (other_method))
6127 tree s = build_java_signature (TREE_TYPE (other_method));
6128 tree other_name = DECL_NAME (other_method);
6130 if (TREE_CODE (other_name) == EXPR_WITH_FILE_LOCATION)
6131 other_name = EXPR_WFL_NODE (other_name);
6132 if (!DECL_CLINIT_P (other_method)
6133 && !DECL_CONSTRUCTOR_P (other_method)
6134 && method_name == other_name
6135 && method_sig == s
6136 && !METHOD_ABSTRACT (other_method))
6138 found = 1;
6139 break;
6142 other_super = CLASSTYPE_SUPER (other_super);
6143 } while (!end_type_reached);
6145 /* Report that abstract METHOD didn't find an implementation
6146 that CLASS can use. */
6147 if (!found)
6149 char *t = xstrdup (lang_printable_name
6150 (TREE_TYPE (TREE_TYPE (method)), 0));
6151 tree ccn = DECL_NAME (TYPE_NAME (DECL_CONTEXT (method)));
6153 parse_error_context
6154 (lookup_cl (class_decl),
6155 "Class `%s' doesn't define the abstract method `%s %s' from %s `%s'. This method must be defined or %s `%s' must be declared abstract",
6156 IDENTIFIER_POINTER (DECL_NAME (class_decl)),
6157 t, lang_printable_name (method, 0),
6158 (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))) ?
6159 "interface" : "class"),
6160 IDENTIFIER_POINTER (ccn),
6161 (CLASS_INTERFACE (class_decl) ? "interface" : "class"),
6162 IDENTIFIER_POINTER (DECL_NAME (class_decl)));
6163 ok = 0;
6164 free (t);
6168 if (ok && do_interface)
6170 /* Check for implemented interfaces. */
6171 int i;
6172 tree vector = TYPE_BINFO_BASETYPES (type);
6173 for (i = 1; ok && vector && i < TREE_VEC_LENGTH (vector); i++)
6175 tree super = BINFO_TYPE (TREE_VEC_ELT (vector, i));
6176 ok = check_abstract_method_definitions (1, class_decl, super);
6180 return ok;
6183 /* Check that CLASS_DECL somehow implements all inherited abstract
6184 methods. */
6186 static void
6187 java_check_abstract_method_definitions (class_decl)
6188 tree class_decl;
6190 tree class = TREE_TYPE (class_decl);
6191 tree super, vector;
6192 int i;
6194 if (CLASS_ABSTRACT (class_decl))
6195 return;
6197 /* Check for inherited types */
6198 super = class;
6199 do {
6200 super = CLASSTYPE_SUPER (super);
6201 check_abstract_method_definitions (0, class_decl, super);
6202 } while (super != object_type_node);
6204 /* Check for implemented interfaces. */
6205 vector = TYPE_BINFO_BASETYPES (class);
6206 for (i = 1; i < TREE_VEC_LENGTH (vector); i++)
6208 super = BINFO_TYPE (TREE_VEC_ELT (vector, i));
6209 check_abstract_method_definitions (1, class_decl, super);
6213 /* Check all the types method DECL uses and return 1 if all of them
6214 are now complete, 0 otherwise. This is used to check whether its
6215 safe to build a method signature or not. */
6217 static int
6218 check_method_types_complete (decl)
6219 tree decl;
6221 tree type = TREE_TYPE (decl);
6222 tree args;
6224 if (!INCOMPLETE_TYPE_P (TREE_TYPE (type)))
6225 return 0;
6227 args = TYPE_ARG_TYPES (type);
6228 if (TREE_CODE (type) == METHOD_TYPE)
6229 args = TREE_CHAIN (args);
6230 for (; args != end_params_node; args = TREE_CHAIN (args))
6231 if (INCOMPLETE_TYPE_P (TREE_VALUE (args)))
6232 return 0;
6234 return 1;
6237 /* Visible interface to check methods contained in CLASS_DECL */
6239 void
6240 java_check_methods (class_decl)
6241 tree class_decl;
6243 if (CLASS_METHOD_CHECKED_P (TREE_TYPE (class_decl)))
6244 return;
6246 if (CLASS_INTERFACE (class_decl))
6247 java_check_abstract_methods (class_decl);
6248 else
6249 java_check_regular_methods (class_decl);
6251 CLASS_METHOD_CHECKED_P (TREE_TYPE (class_decl)) = 1;
6254 /* Check all the methods of CLASS_DECL. Methods are first completed
6255 then checked according to regular method existance rules. If no
6256 constructor for CLASS_DECL were encountered, then build its
6257 declaration. */
6259 static void
6260 java_check_regular_methods (class_decl)
6261 tree class_decl;
6263 int saw_constructor = ANONYMOUS_CLASS_P (TREE_TYPE (class_decl));
6264 tree method;
6265 tree class = CLASS_TO_HANDLE_TYPE (TREE_TYPE (class_decl));
6266 tree found = NULL_TREE;
6267 tree mthrows;
6269 /* It is not necessary to check methods defined in java.lang.Object */
6270 if (class == object_type_node)
6271 return;
6273 if (!TYPE_NVIRTUALS (class))
6274 TYPE_METHODS (class) = nreverse (TYPE_METHODS (class));
6276 /* Should take interfaces into account. FIXME */
6277 for (method = TYPE_METHODS (class); method; method = TREE_CHAIN (method))
6279 tree sig;
6280 tree method_wfl = DECL_FUNCTION_WFL (method);
6281 int aflags;
6283 /* Check for redefinitions */
6284 if (check_method_redefinition (class, method))
6285 continue;
6287 /* If we see one constructor a mark so we don't generate the
6288 default one. Also skip other verifications: constructors
6289 can't be inherited hence hiden or overriden */
6290 if (DECL_CONSTRUCTOR_P (method))
6292 saw_constructor = 1;
6293 continue;
6296 /* We verify things thrown by the method. They must inherits from
6297 java.lang.Throwable */
6298 for (mthrows = DECL_FUNCTION_THROWS (method);
6299 mthrows; mthrows = TREE_CHAIN (mthrows))
6301 if (!inherits_from_p (TREE_VALUE (mthrows), throwable_type_node))
6302 parse_error_context
6303 (TREE_PURPOSE (mthrows), "Class `%s' in `throws' clause must be a subclass of class `java.lang.Throwable'",
6304 IDENTIFIER_POINTER
6305 (DECL_NAME (TYPE_NAME (TREE_VALUE (mthrows)))));
6308 sig = build_java_argument_signature (TREE_TYPE (method));
6309 found = lookup_argument_method2 (class, DECL_NAME (method), sig);
6311 /* Inner class can't declare static methods */
6312 if (METHOD_STATIC (method) && !TOPLEVEL_CLASS_DECL_P (class_decl))
6314 char *t = xstrdup (lang_printable_name (class, 0));
6315 parse_error_context
6316 (method_wfl, "Method `%s' can't be static in inner class `%s'. Only members of interfaces and top-level classes can be static",
6317 lang_printable_name (method, 0), t);
6318 free (t);
6321 /* Nothing overrides or it's a private method. */
6322 if (!found)
6323 continue;
6324 if (METHOD_PRIVATE (found))
6326 found = NULL_TREE;
6327 continue;
6330 /* If `found' is declared in an interface, make sure the
6331 modifier matches. */
6332 if (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (found)))
6333 && clinit_identifier_node != DECL_NAME (found)
6334 && !METHOD_PUBLIC (method))
6336 tree found_decl = TYPE_NAME (DECL_CONTEXT (found));
6337 parse_error_context (method_wfl, "Class `%s' must override `%s' with a public method in order to implement interface `%s'",
6338 IDENTIFIER_POINTER (DECL_NAME (class_decl)),
6339 lang_printable_name (method, 0),
6340 IDENTIFIER_POINTER (DECL_NAME (found_decl)));
6343 /* Can't override a method with the same name and different return
6344 types. */
6345 if (TREE_TYPE (TREE_TYPE (found)) != TREE_TYPE (TREE_TYPE (method)))
6347 char *t = xstrdup
6348 (lang_printable_name (TREE_TYPE (TREE_TYPE (found)), 0));
6349 parse_error_context
6350 (method_wfl,
6351 "Method `%s' was defined with return type `%s' in class `%s'",
6352 lang_printable_name (found, 0), t,
6353 IDENTIFIER_POINTER
6354 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6355 free (t);
6358 aflags = get_access_flags_from_decl (found);
6360 /* Can't override final. Can't override static. */
6361 if (METHOD_FINAL (found) || METHOD_STATIC (found))
6363 /* Static *can* override static */
6364 if (METHOD_STATIC (found) && METHOD_STATIC (method))
6365 continue;
6366 parse_error_context
6367 (method_wfl,
6368 "%s methods can't be overriden. Method `%s' is %s in class `%s'",
6369 (METHOD_FINAL (found) ? "Final" : "Static"),
6370 lang_printable_name (found, 0),
6371 (METHOD_FINAL (found) ? "final" : "static"),
6372 IDENTIFIER_POINTER
6373 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6374 continue;
6377 /* Static method can't override instance method. */
6378 if (METHOD_STATIC (method))
6380 parse_error_context
6381 (method_wfl,
6382 "Instance methods can't be overriden by a static method. Method `%s' is an instance method in class `%s'",
6383 lang_printable_name (found, 0),
6384 IDENTIFIER_POINTER
6385 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6386 continue;
6389 /* - Overriding/hiding public must be public
6390 - Overriding/hiding protected must be protected or public
6391 - If the overriden or hidden method has default (package)
6392 access, then the overriding or hiding method must not be
6393 private; otherwise, a compile-time error occurs. If
6394 `found' belongs to an interface, things have been already
6395 taken care of. */
6396 if (!CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (found)))
6397 && ((METHOD_PUBLIC (found) && !METHOD_PUBLIC (method))
6398 || (METHOD_PROTECTED (found)
6399 && !(METHOD_PUBLIC (method) || METHOD_PROTECTED (method)))
6400 || (!(aflags & (ACC_PUBLIC | ACC_PRIVATE | ACC_STATIC))
6401 && METHOD_PRIVATE (method))))
6403 parse_error_context
6404 (method_wfl,
6405 "Methods can't be overridden to be more private. Method `%s' is not %s in class `%s'", lang_printable_name (method, 0),
6406 (METHOD_PUBLIC (method) ? "public" :
6407 (METHOD_PRIVATE (method) ? "private" : "protected")),
6408 IDENTIFIER_POINTER (DECL_NAME
6409 (TYPE_NAME (DECL_CONTEXT (found)))));
6410 continue;
6413 /* Overriding methods must have compatible `throws' clauses on checked
6414 exceptions, if any */
6415 check_throws_clauses (method, method_wfl, found);
6417 /* Inheriting multiple methods with the same signature. FIXME */
6420 if (!TYPE_NVIRTUALS (class))
6421 TYPE_METHODS (class) = nreverse (TYPE_METHODS (class));
6423 /* Search for inherited abstract method not yet implemented in this
6424 class. */
6425 java_check_abstract_method_definitions (class_decl);
6427 if (!saw_constructor)
6428 abort ();
6431 /* Return a non zero value if the `throws' clause of METHOD (if any)
6432 is incompatible with the `throws' clause of FOUND (if any). */
6434 static void
6435 check_throws_clauses (method, method_wfl, found)
6436 tree method, method_wfl, found;
6438 tree mthrows, fthrows;
6440 /* Can't check these things with class loaded from bytecode. FIXME */
6441 if (!CLASS_FROM_SOURCE_P (DECL_CONTEXT (found)))
6442 return;
6444 for (mthrows = DECL_FUNCTION_THROWS (method);
6445 mthrows; mthrows = TREE_CHAIN (mthrows))
6447 /* We don't verify unchecked expressions */
6448 if (IS_UNCHECKED_EXCEPTION_P (TREE_VALUE (mthrows)))
6449 continue;
6450 /* Checked expression must be compatible */
6451 for (fthrows = DECL_FUNCTION_THROWS (found);
6452 fthrows; fthrows = TREE_CHAIN (fthrows))
6453 if (inherits_from_p (TREE_VALUE (mthrows), TREE_VALUE (fthrows)))
6454 break;
6455 if (!fthrows)
6457 parse_error_context
6458 (method_wfl, "Invalid checked exception class `%s' in `throws' clause. The exception must be a subclass of an exception thrown by `%s' from class `%s'",
6459 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (TREE_VALUE (mthrows)))),
6460 lang_printable_name (found, 0),
6461 IDENTIFIER_POINTER
6462 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6467 /* Check abstract method of interface INTERFACE */
6469 static void
6470 java_check_abstract_methods (interface_decl)
6471 tree interface_decl;
6473 int i, n;
6474 tree method, basetype_vec, found;
6475 tree interface = TREE_TYPE (interface_decl);
6477 for (method = TYPE_METHODS (interface); method; method = TREE_CHAIN (method))
6479 /* 2- Check for double definition inside the defining interface */
6480 if (check_method_redefinition (interface, method))
6481 continue;
6483 /* 3- Overriding is OK as far as we preserve the return type and
6484 the thrown exceptions (FIXME) */
6485 found = lookup_java_interface_method2 (interface, method);
6486 if (found)
6488 char *t;
6489 t = xstrdup (lang_printable_name (TREE_TYPE (TREE_TYPE (found)), 0));
6490 parse_error_context
6491 (DECL_FUNCTION_WFL (found),
6492 "Method `%s' was defined with return type `%s' in class `%s'",
6493 lang_printable_name (found, 0), t,
6494 IDENTIFIER_POINTER
6495 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6496 free (t);
6497 continue;
6501 /* 4- Inherited methods can't differ by their returned types */
6502 if (!(basetype_vec = TYPE_BINFO_BASETYPES (interface)))
6503 return;
6504 n = TREE_VEC_LENGTH (basetype_vec);
6505 for (i = 0; i < n; i++)
6507 tree sub_interface_method, sub_interface;
6508 tree vec_elt = TREE_VEC_ELT (basetype_vec, i);
6509 if (!vec_elt)
6510 continue;
6511 sub_interface = BINFO_TYPE (vec_elt);
6512 for (sub_interface_method = TYPE_METHODS (sub_interface);
6513 sub_interface_method;
6514 sub_interface_method = TREE_CHAIN (sub_interface_method))
6516 found = lookup_java_interface_method2 (interface,
6517 sub_interface_method);
6518 if (found && (found != sub_interface_method))
6520 parse_error_context
6521 (lookup_cl (sub_interface_method),
6522 "Interface `%s' inherits method `%s' from interface `%s'. This method is redefined with a different return type in interface `%s'",
6523 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (interface))),
6524 lang_printable_name (found, 0),
6525 IDENTIFIER_POINTER
6526 (DECL_NAME (TYPE_NAME
6527 (DECL_CONTEXT (sub_interface_method)))),
6528 IDENTIFIER_POINTER
6529 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6535 /* Lookup methods in interfaces using their name and partial
6536 signature. Return a matching method only if their types differ. */
6538 static tree
6539 lookup_java_interface_method2 (class, method_decl)
6540 tree class, method_decl;
6542 int i, n;
6543 tree basetype_vec = TYPE_BINFO_BASETYPES (class), to_return;
6545 if (!basetype_vec)
6546 return NULL_TREE;
6548 n = TREE_VEC_LENGTH (basetype_vec);
6549 for (i = 0; i < n; i++)
6551 tree vec_elt = TREE_VEC_ELT (basetype_vec, i), to_return;
6552 if ((BINFO_TYPE (vec_elt) != object_type_node)
6553 && (to_return =
6554 lookup_java_method2 (BINFO_TYPE (vec_elt), method_decl, 1)))
6555 return to_return;
6557 for (i = 0; i < n; i++)
6559 to_return = lookup_java_interface_method2
6560 (BINFO_TYPE (TREE_VEC_ELT (basetype_vec, i)), method_decl);
6561 if (to_return)
6562 return to_return;
6565 return NULL_TREE;
6568 /* Lookup method using their name and partial signature. Return a
6569 matching method only if their types differ. */
6571 static tree
6572 lookup_java_method2 (clas, method_decl, do_interface)
6573 tree clas, method_decl;
6574 int do_interface;
6576 tree method, method_signature, method_name, method_type, name;
6578 method_signature = build_java_argument_signature (TREE_TYPE (method_decl));
6579 name = DECL_NAME (method_decl);
6580 method_name = (TREE_CODE (name) == EXPR_WITH_FILE_LOCATION ?
6581 EXPR_WFL_NODE (name) : name);
6582 method_type = TREE_TYPE (TREE_TYPE (method_decl));
6584 while (clas != NULL_TREE)
6586 for (method = TYPE_METHODS (clas);
6587 method != NULL_TREE; method = TREE_CHAIN (method))
6589 tree method_sig = build_java_argument_signature (TREE_TYPE (method));
6590 tree name = DECL_NAME (method);
6591 if ((TREE_CODE (name) == EXPR_WITH_FILE_LOCATION ?
6592 EXPR_WFL_NODE (name) : name) == method_name
6593 && method_sig == method_signature
6594 && TREE_TYPE (TREE_TYPE (method)) != method_type)
6595 return method;
6597 clas = (do_interface ? NULL_TREE : CLASSTYPE_SUPER (clas));
6599 return NULL_TREE;
6602 /* Return the line that matches DECL line number, and try its best to
6603 position the column number. Used during error reports. */
6605 static tree
6606 lookup_cl (decl)
6607 tree decl;
6609 static tree cl = NULL_TREE;
6610 char *line, *found;
6612 if (!decl)
6613 return NULL_TREE;
6615 if (cl == NULL_TREE)
6617 cl = build_expr_wfl (NULL_TREE, NULL, 0, 0);
6618 ggc_add_tree_root (&cl, 1);
6621 EXPR_WFL_FILENAME_NODE (cl) = get_identifier (DECL_SOURCE_FILE (decl));
6622 EXPR_WFL_SET_LINECOL (cl, DECL_SOURCE_LINE_FIRST (decl), -1);
6624 line = java_get_line_col (EXPR_WFL_FILENAME (cl),
6625 EXPR_WFL_LINENO (cl), EXPR_WFL_COLNO (cl));
6627 found = strstr ((const char *)line,
6628 (const char *)IDENTIFIER_POINTER (DECL_NAME (decl)));
6629 if (found)
6630 EXPR_WFL_SET_LINECOL (cl, EXPR_WFL_LINENO (cl), found - line);
6632 return cl;
6635 /* Look for a simple name in the single-type import list */
6637 static tree
6638 find_name_in_single_imports (name)
6639 tree name;
6641 tree node;
6643 for (node = ctxp->import_list; node; node = TREE_CHAIN (node))
6644 if (TREE_VALUE (node) == name)
6645 return (EXPR_WFL_NODE (TREE_PURPOSE (node)));
6647 return NULL_TREE;
6650 /* Process all single-type import. */
6652 static int
6653 process_imports ()
6655 tree import;
6656 int error_found;
6658 for (import = ctxp->import_list; import; import = TREE_CHAIN (import))
6660 tree to_be_found = EXPR_WFL_NODE (TREE_PURPOSE (import));
6661 char *original_name;
6663 obstack_grow0 (&temporary_obstack,
6664 IDENTIFIER_POINTER (to_be_found),
6665 IDENTIFIER_LENGTH (to_be_found));
6666 original_name = obstack_finish (&temporary_obstack);
6668 /* Don't load twice something already defined. */
6669 if (IDENTIFIER_CLASS_VALUE (to_be_found))
6670 continue;
6672 while (1)
6674 tree left;
6676 QUALIFIED_P (to_be_found) = 1;
6677 load_class (to_be_found, 0);
6678 error_found =
6679 check_pkg_class_access (to_be_found, TREE_PURPOSE (import));
6681 /* We found it, we can bail out */
6682 if (IDENTIFIER_CLASS_VALUE (to_be_found))
6683 break;
6685 /* We haven't found it. Maybe we're trying to access an
6686 inner class. The only way for us to know is to try again
6687 after having dropped a qualifier. If we can't break it further,
6688 we have an error. */
6689 if (breakdown_qualified (&left, NULL, to_be_found))
6690 break;
6692 to_be_found = left;
6694 if (!IDENTIFIER_CLASS_VALUE (to_be_found))
6696 parse_error_context (TREE_PURPOSE (import),
6697 "Class or interface `%s' not found in import",
6698 original_name);
6699 error_found = 1;
6702 obstack_free (&temporary_obstack, original_name);
6703 if (error_found)
6704 return 1;
6706 return 0;
6709 /* Possibly find and mark a class imported by a single-type import
6710 statement. */
6712 static void
6713 find_in_imports (class_type)
6714 tree class_type;
6716 tree import;
6718 for (import = ctxp->import_list; import; import = TREE_CHAIN (import))
6719 if (TREE_VALUE (import) == TYPE_NAME (class_type))
6721 TYPE_NAME (class_type) = EXPR_WFL_NODE (TREE_PURPOSE (import));
6722 QUALIFIED_P (TYPE_NAME (class_type)) = 1;
6726 static int
6727 note_possible_classname (name, len)
6728 const char *name;
6729 int len;
6731 tree node;
6732 if (len > 5 && strncmp (&name [len-5], ".java", 5) == 0)
6733 len = len - 5;
6734 else if (len > 6 && strncmp (&name [len-6], ".class", 6) == 0)
6735 len = len - 6;
6736 else
6737 return 0;
6738 node = ident_subst (name, len, "", '/', '.', "");
6739 IS_A_CLASSFILE_NAME (node) = 1; /* Or soon to be */
6740 QUALIFIED_P (node) = strchr (name, '/') ? 1 : 0;
6741 return 1;
6744 /* Read a import directory, gathering potential match for further type
6745 references. Indifferently reads a filesystem or a ZIP archive
6746 directory. */
6748 static void
6749 read_import_dir (wfl)
6750 tree wfl;
6752 tree package_id = EXPR_WFL_NODE (wfl);
6753 const char *package_name = IDENTIFIER_POINTER (package_id);
6754 int package_length = IDENTIFIER_LENGTH (package_id);
6755 DIR *dirp = NULL;
6756 JCF *saved_jcf = current_jcf;
6758 int found = 0;
6759 int k;
6760 void *entry;
6761 struct buffer filename[1];
6764 if (IS_AN_IMPORT_ON_DEMAND_P (package_id))
6765 return;
6766 IS_AN_IMPORT_ON_DEMAND_P (package_id) = 1;
6768 BUFFER_INIT (filename);
6769 buffer_grow (filename, package_length + 100);
6771 for (entry = jcf_path_start (); entry != NULL; entry = jcf_path_next (entry))
6773 const char *entry_name = jcf_path_name (entry);
6774 int entry_length = strlen (entry_name);
6775 if (jcf_path_is_zipfile (entry))
6777 ZipFile *zipf;
6778 buffer_grow (filename, entry_length);
6779 memcpy (filename->data, entry_name, entry_length - 1);
6780 filename->data[entry_length-1] = '\0';
6781 zipf = opendir_in_zip (filename->data, jcf_path_is_system (entry));
6782 if (zipf == NULL)
6783 error ("malformed .zip archive in CLASSPATH: %s", entry_name);
6784 else
6786 ZipDirectory *zipd = (ZipDirectory *) zipf->central_directory;
6787 BUFFER_RESET (filename);
6788 for (k = 0; k < package_length; k++)
6790 char ch = package_name[k];
6791 *filename->ptr++ = ch == '.' ? '/' : ch;
6793 *filename->ptr++ = '/';
6795 for (k = 0; k < zipf->count; k++, zipd = ZIPDIR_NEXT (zipd))
6797 const char *current_entry = ZIPDIR_FILENAME (zipd);
6798 int current_entry_len = zipd->filename_length;
6800 if (current_entry_len >= BUFFER_LENGTH (filename)
6801 && strncmp (filename->data, current_entry,
6802 BUFFER_LENGTH (filename)) != 0)
6803 continue;
6804 found |= note_possible_classname (current_entry,
6805 current_entry_len);
6809 else
6811 BUFFER_RESET (filename);
6812 buffer_grow (filename, entry_length + package_length + 4);
6813 strcpy (filename->data, entry_name);
6814 filename->ptr = filename->data + entry_length;
6815 for (k = 0; k < package_length; k++)
6817 char ch = package_name[k];
6818 *filename->ptr++ = ch == '.' ? '/' : ch;
6820 *filename->ptr = '\0';
6822 dirp = opendir (filename->data);
6823 if (dirp == NULL)
6824 continue;
6825 *filename->ptr++ = '/';
6826 for (;;)
6828 int len;
6829 const char *d_name;
6830 struct dirent *direntp = readdir (dirp);
6831 if (!direntp)
6832 break;
6833 d_name = direntp->d_name;
6834 len = strlen (direntp->d_name);
6835 buffer_grow (filename, len+1);
6836 strcpy (filename->ptr, d_name);
6837 found |= note_possible_classname (filename->data + entry_length,
6838 package_length+len+1);
6840 if (dirp)
6841 closedir (dirp);
6845 free (filename->data);
6847 /* Here we should have a unified way of retrieving an entry, to be
6848 indexed. */
6849 if (!found)
6851 static int first = 1;
6852 if (first)
6854 error ("Can't find default package `%s'. Check the CLASSPATH environment variable and the access to the archives.", package_name);
6855 java_error_count++;
6856 first = 0;
6858 else
6859 parse_error_context (wfl, "Package `%s' not found in import",
6860 package_name);
6861 current_jcf = saved_jcf;
6862 return;
6864 current_jcf = saved_jcf;
6867 /* Possibly find a type in the import on demands specified
6868 types. Returns 1 if an error occured, 0 otherwise. Run throught the
6869 entire list, to detected potential double definitions. */
6871 static int
6872 find_in_imports_on_demand (class_type)
6873 tree class_type;
6875 tree node, import, node_to_use = NULL_TREE;
6876 int seen_once = -1;
6877 tree cl = NULL_TREE;
6879 for (import = ctxp->import_demand_list; import; import = TREE_CHAIN (import))
6881 const char *id_name;
6882 obstack_grow (&temporary_obstack,
6883 IDENTIFIER_POINTER (EXPR_WFL_NODE (TREE_PURPOSE (import))),
6884 IDENTIFIER_LENGTH (EXPR_WFL_NODE (TREE_PURPOSE (import))));
6885 obstack_1grow (&temporary_obstack, '.');
6886 obstack_grow0 (&temporary_obstack,
6887 IDENTIFIER_POINTER (TYPE_NAME (class_type)),
6888 IDENTIFIER_LENGTH (TYPE_NAME (class_type)));
6889 id_name = obstack_finish (&temporary_obstack);
6891 node = maybe_get_identifier (id_name);
6892 if (node && IS_A_CLASSFILE_NAME (node))
6894 if (seen_once < 0)
6896 cl = TREE_PURPOSE (import);
6897 seen_once = 1;
6898 node_to_use = node;
6900 else
6902 seen_once++;
6903 parse_error_context
6904 (TREE_PURPOSE (import),
6905 "Type `%s' also potentially defined in package `%s'",
6906 IDENTIFIER_POINTER (TYPE_NAME (class_type)),
6907 IDENTIFIER_POINTER (EXPR_WFL_NODE (TREE_PURPOSE (import))));
6912 if (seen_once == 1)
6914 /* Setup lineno so that it refers to the line of the import (in
6915 case we parse a class file and encounter errors */
6916 tree decl;
6917 int saved_lineno = lineno;
6918 lineno = EXPR_WFL_LINENO (cl);
6919 TYPE_NAME (class_type) = node_to_use;
6920 QUALIFIED_P (TYPE_NAME (class_type)) = 1;
6921 decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
6922 /* If there is no DECL set for the class or if the class isn't
6923 loaded and not seen in source yet, the load */
6924 if (!decl || (!CLASS_LOADED_P (TREE_TYPE (decl))
6925 && !CLASS_FROM_SOURCE_P (TREE_TYPE (decl))))
6927 load_class (node_to_use, 0);
6928 decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
6930 lineno = saved_lineno;
6931 if (! INNER_CLASS_P (TREE_TYPE (decl)))
6932 return check_pkg_class_access (TYPE_NAME (class_type), cl);
6933 else
6934 /* 6.6.1: Inner classes are subject to member access rules. */
6935 return 0;
6937 else
6938 return (seen_once < 0 ? 0 : seen_once); /* It's ok not to have found */
6941 /* Add package NAME to the list of package encountered so far. To
6942 speed up class lookup in do_resolve_class, we make sure a
6943 particular package is added only once. */
6945 static void
6946 register_package (name)
6947 tree name;
6949 static struct hash_table _pht, *pht = NULL;
6951 if (!pht)
6953 hash_table_init (&_pht, hash_newfunc,
6954 java_hash_hash_tree_node, java_hash_compare_tree_node);
6955 pht = &_pht;
6958 if (!hash_lookup (pht, (const hash_table_key) name, FALSE, NULL))
6960 package_list = chainon (package_list, build_tree_list (name, NULL));
6961 hash_lookup (pht, (const hash_table_key) name, TRUE, NULL);
6965 static tree
6966 resolve_package (pkg, next)
6967 tree pkg, *next;
6969 tree current, acc;
6970 tree type_name = NULL_TREE;
6971 const char *name = IDENTIFIER_POINTER (EXPR_WFL_NODE (pkg));
6973 /* The trick is to determine when the package name stops and were
6974 the name of something contained in the package starts. Then we
6975 return a fully qualified name of what we want to get. */
6977 /* Do a quick search on well known package names */
6978 if (!strncmp (name, "java.lang.reflect", 17))
6980 *next =
6981 TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (EXPR_WFL_QUALIFICATION (pkg))));
6982 type_name = lookup_package_type (name, 17);
6984 else if (!strncmp (name, "java.lang", 9))
6986 *next = TREE_CHAIN (TREE_CHAIN (EXPR_WFL_QUALIFICATION (pkg)));
6987 type_name = lookup_package_type (name, 9);
6990 /* If we found something here, return */
6991 if (type_name)
6992 return type_name;
6994 *next = EXPR_WFL_QUALIFICATION (pkg);
6996 /* Try to progressively construct a type name */
6997 if (TREE_CODE (pkg) == EXPR_WITH_FILE_LOCATION)
6998 for (acc = NULL_TREE, current = EXPR_WFL_QUALIFICATION (pkg);
6999 current; current = TREE_CHAIN (current))
7001 /* If we don't have what we're expecting, exit now. TYPE_NAME
7002 will be null and the error caught later. */
7003 if (TREE_CODE (QUAL_WFL (current)) != EXPR_WITH_FILE_LOCATION)
7004 break;
7005 acc = merge_qualified_name (acc, EXPR_WFL_NODE (QUAL_WFL (current)));
7006 if ((type_name = resolve_no_layout (acc, NULL_TREE)))
7008 type_name = acc;
7009 /* resolve_package should be used in a loop, hence we
7010 point at this one to naturally process the next one at
7011 the next iteration. */
7012 *next = current;
7013 break;
7016 return type_name;
7019 static tree
7020 lookup_package_type (name, from)
7021 const char *name;
7022 int from;
7024 char subname [128];
7025 const char *sub = &name[from+1];
7026 while (*sub != '.' && *sub)
7027 sub++;
7028 strncpy (subname, name, sub-name);
7029 subname [sub-name] = '\0';
7030 return get_identifier (subname);
7033 /* Check accessibility of inner classes according to member access rules.
7034 DECL is the inner class, ENCLOSING_DECL is the class from which the
7035 access is being attempted. */
7037 static void
7038 check_inner_class_access (decl, enclosing_decl, cl)
7039 tree decl, enclosing_decl, cl;
7041 const char *access;
7042 tree enclosing_decl_type;
7044 /* We don't issue an error message when CL is null. CL can be null
7045 as a result of processing a JDEP crafted by source_start_java_method
7046 for the purpose of patching its parm decl. But the error would
7047 have been already trapped when fixing the method's signature.
7048 DECL can also be NULL in case of earlier errors. */
7049 if (!decl || !cl)
7050 return;
7052 enclosing_decl_type = TREE_TYPE (enclosing_decl);
7054 if (CLASS_PRIVATE (decl))
7056 /* Access is permitted only within the body of the top-level
7057 class in which DECL is declared. */
7058 tree top_level = decl;
7059 while (DECL_CONTEXT (top_level))
7060 top_level = DECL_CONTEXT (top_level);
7061 while (DECL_CONTEXT (enclosing_decl))
7062 enclosing_decl = DECL_CONTEXT (enclosing_decl);
7063 if (top_level == enclosing_decl)
7064 return;
7065 access = "private";
7067 else if (CLASS_PROTECTED (decl))
7069 tree decl_context;
7070 /* Access is permitted from within the same package... */
7071 if (in_same_package (decl, enclosing_decl))
7072 return;
7074 /* ... or from within the body of a subtype of the context in which
7075 DECL is declared. */
7076 decl_context = DECL_CONTEXT (decl);
7077 while (enclosing_decl)
7079 if (CLASS_INTERFACE (decl))
7081 if (interface_of_p (TREE_TYPE (decl_context),
7082 enclosing_decl_type))
7083 return;
7085 else
7087 /* Eww. The order of the arguments is different!! */
7088 if (inherits_from_p (enclosing_decl_type,
7089 TREE_TYPE (decl_context)))
7090 return;
7092 enclosing_decl = DECL_CONTEXT (enclosing_decl);
7094 access = "protected";
7096 else if (! CLASS_PUBLIC (decl))
7098 /* Access is permitted only from within the same package as DECL. */
7099 if (in_same_package (decl, enclosing_decl))
7100 return;
7101 access = "non-public";
7103 else
7104 /* Class is public. */
7105 return;
7107 parse_error_context (cl, "Nested %s %s is %s; cannot be accessed from here",
7108 (CLASS_INTERFACE (decl) ? "interface" : "class"),
7109 lang_printable_name (decl, 0), access);
7112 /* Accessibility check for top-level classes. If CLASS_NAME is in a foreign
7113 package, it must be PUBLIC. Return 0 if no access violations were found,
7114 1 otherwise. */
7116 static int
7117 check_pkg_class_access (class_name, cl)
7118 tree class_name;
7119 tree cl;
7121 tree type;
7123 if (!IDENTIFIER_CLASS_VALUE (class_name))
7124 return 0;
7126 if (!(type = TREE_TYPE (IDENTIFIER_CLASS_VALUE (class_name))))
7127 return 0;
7129 if (!CLASS_PUBLIC (TYPE_NAME (type)))
7131 /* Access to a private class within the same package is
7132 allowed. */
7133 tree l, r;
7134 breakdown_qualified (&l, &r, class_name);
7135 if (!QUALIFIED_P (class_name) && !ctxp->package)
7136 /* Both in the empty package. */
7137 return 0;
7138 if (l == ctxp->package)
7139 /* Both in the same package. */
7140 return 0;
7142 parse_error_context
7143 (cl, "Can't access %s `%s'. Only public classes and interfaces in other packages can be accessed",
7144 (CLASS_INTERFACE (TYPE_NAME (type)) ? "interface" : "class"),
7145 IDENTIFIER_POINTER (class_name));
7146 return 1;
7148 return 0;
7151 /* Local variable declaration. */
7153 static void
7154 declare_local_variables (modifier, type, vlist)
7155 int modifier;
7156 tree type;
7157 tree vlist;
7159 tree decl, current, saved_type;
7160 tree type_wfl = NULL_TREE;
7161 int must_chain = 0;
7162 int final_p = 0;
7164 /* Push a new block if statements were seen between the last time we
7165 pushed a block and now. Keep a count of blocks to close */
7166 if (BLOCK_EXPR_BODY (GET_CURRENT_BLOCK (current_function_decl)))
7168 tree b = enter_block ();
7169 BLOCK_IS_IMPLICIT (b) = 1;
7172 if (modifier)
7174 int i;
7175 for (i = 0; i <= 10; i++) if (1 << i & modifier) break;
7176 if (modifier == ACC_FINAL)
7177 final_p = 1;
7178 else
7180 parse_error_context
7181 (ctxp->modifier_ctx [i],
7182 "Only `final' is allowed as a local variables modifier");
7183 return;
7187 /* Obtain an incomplete type if TYPE is not complete. TYPE_WFL will
7188 hold the TYPE value if a new incomplete has to be created (as
7189 opposed to being found already existing and reused). */
7190 SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
7192 /* If TYPE is fully resolved and we don't have a reference, make one */
7193 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
7195 /* Go through all the declared variables */
7196 for (current = vlist, saved_type = type; current;
7197 current = TREE_CHAIN (current), type = saved_type)
7199 tree other, real_type;
7200 tree wfl = TREE_PURPOSE (current);
7201 tree name = EXPR_WFL_NODE (wfl);
7202 tree init = TREE_VALUE (current);
7204 /* Process NAME, as it may specify extra dimension(s) for it */
7205 type = build_array_from_name (type, type_wfl, name, &name);
7207 /* Variable redefinition check */
7208 if ((other = lookup_name_in_blocks (name)))
7210 variable_redefinition_error (wfl, name, TREE_TYPE (other),
7211 DECL_SOURCE_LINE (other));
7212 continue;
7215 /* Type adjustment. We may have just readjusted TYPE because
7216 the variable specified more dimensions. Make sure we have
7217 a reference if we can and don't have one already. */
7218 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
7220 real_type = GET_REAL_TYPE (type);
7221 /* Never layout this decl. This will be done when its scope
7222 will be entered */
7223 decl = build_decl (VAR_DECL, name, real_type);
7224 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
7225 LOCAL_FINAL (decl) = final_p;
7226 BLOCK_CHAIN_DECL (decl);
7228 /* If doing xreferencing, replace the line number with the WFL
7229 compound value */
7230 if (flag_emit_xref)
7231 DECL_SOURCE_LINE (decl) = EXPR_WFL_LINECOL (wfl);
7233 /* Don't try to use an INIT statement when an error was found */
7234 if (init && java_error_count)
7235 init = NULL_TREE;
7237 /* Add the initialization function to the current function's code */
7238 if (init)
7240 /* Name might have been readjusted */
7241 EXPR_WFL_NODE (TREE_OPERAND (init, 0)) = name;
7242 MODIFY_EXPR_FROM_INITIALIZATION_P (init) = 1;
7243 java_method_add_stmt (current_function_decl,
7244 build_debugable_stmt (EXPR_WFL_LINECOL (init),
7245 init));
7248 /* Setup dependency the type of the decl */
7249 if (must_chain)
7251 jdep *dep;
7252 register_incomplete_type (JDEP_VARIABLE, type_wfl, decl, type);
7253 dep = CLASSD_LAST (ctxp->classd_list);
7254 JDEP_GET_PATCH (dep) = &TREE_TYPE (decl);
7257 SOURCE_FRONTEND_DEBUG (("Defined locals"));
7260 /* Called during parsing. Build decls from argument list. */
7262 static void
7263 source_start_java_method (fndecl)
7264 tree fndecl;
7266 tree tem;
7267 tree parm_decl;
7268 int i;
7270 if (!fndecl)
7271 return;
7273 current_function_decl = fndecl;
7275 /* New scope for the function */
7276 enter_block ();
7277 for (tem = TYPE_ARG_TYPES (TREE_TYPE (fndecl)), i = 0;
7278 tem != end_params_node; tem = TREE_CHAIN (tem), i++)
7280 tree type = TREE_VALUE (tem);
7281 tree name = TREE_PURPOSE (tem);
7283 /* If type is incomplete. Create an incomplete decl and ask for
7284 the decl to be patched later */
7285 if (INCOMPLETE_TYPE_P (type))
7287 jdep *jdep;
7288 tree real_type = GET_REAL_TYPE (type);
7289 parm_decl = build_decl (PARM_DECL, name, real_type);
7290 type = obtain_incomplete_type (type);
7291 register_incomplete_type (JDEP_PARM, NULL_TREE, NULL_TREE, type);
7292 jdep = CLASSD_LAST (ctxp->classd_list);
7293 JDEP_MISC (jdep) = name;
7294 JDEP_GET_PATCH (jdep) = &TREE_TYPE (parm_decl);
7296 else
7297 parm_decl = build_decl (PARM_DECL, name, type);
7299 /* Remember if a local variable was declared final (via its
7300 TREE_LIST of type/name.) Set LOCAL_FINAL accordingly. */
7301 if (ARG_FINAL_P (tem))
7303 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (parm_decl);
7304 LOCAL_FINAL (parm_decl) = 1;
7307 BLOCK_CHAIN_DECL (parm_decl);
7309 tem = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl));
7310 BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl)) =
7311 nreverse (tem);
7312 DECL_ARG_SLOT_COUNT (current_function_decl) = i;
7313 DECL_MAX_LOCALS (current_function_decl) = i;
7316 /* Called during parsing. Creates an artificial method declaration. */
7318 static tree
7319 create_artificial_method (class, flags, type, name, args)
7320 tree class;
7321 int flags;
7322 tree type, name, args;
7324 tree mdecl;
7326 java_parser_context_save_global ();
7327 lineno = 0;
7328 mdecl = make_node (FUNCTION_TYPE);
7329 TREE_TYPE (mdecl) = type;
7330 TYPE_ARG_TYPES (mdecl) = args;
7331 mdecl = add_method (class, flags, name, build_java_signature (mdecl));
7332 java_parser_context_restore_global ();
7333 DECL_ARTIFICIAL (mdecl) = 1;
7334 return mdecl;
7337 /* Starts the body if an artifical method. */
7339 static void
7340 start_artificial_method_body (mdecl)
7341 tree mdecl;
7343 DECL_SOURCE_LINE (mdecl) = 1;
7344 DECL_SOURCE_LINE_MERGE (mdecl, 1);
7345 source_start_java_method (mdecl);
7346 enter_block ();
7349 static void
7350 end_artificial_method_body (mdecl)
7351 tree mdecl;
7353 /* exit_block modifies DECL_FUNCTION_BODY (current_function_decl).
7354 It has to be evaluated first. (if mdecl is current_function_decl,
7355 we have an undefined behavior if no temporary variable is used.) */
7356 tree b = exit_block ();
7357 BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (mdecl)) = b;
7358 exit_block ();
7361 /* Terminate a function and expand its body. */
7363 static void
7364 source_end_java_method ()
7366 tree fndecl = current_function_decl;
7368 if (!fndecl)
7369 return;
7371 java_parser_context_save_global ();
7372 lineno = ctxp->last_ccb_indent1;
7374 /* Turn function bodies with only a NOP expr null, so they don't get
7375 generated at all and we won't get warnings when using the -W
7376 -Wall flags. */
7377 if (BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl)) == empty_stmt_node)
7378 BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl)) = NULL_TREE;
7380 /* Generate function's code */
7381 if (BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl))
7382 && ! flag_emit_class_files
7383 && ! flag_emit_xref)
7384 expand_expr_stmt (BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl)));
7386 /* pop out of its parameters */
7387 pushdecl_force_head (DECL_ARGUMENTS (fndecl));
7388 poplevel (1, 0, 1);
7389 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
7391 /* Generate rtl for function exit. */
7392 if (! flag_emit_class_files && ! flag_emit_xref)
7394 lineno = DECL_SOURCE_LINE_LAST (fndecl);
7395 expand_function_end (input_filename, lineno, 0);
7397 /* Run the optimizers and output assembler code for this function. */
7398 rest_of_compilation (fndecl);
7401 current_function_decl = NULL_TREE;
7402 java_parser_context_restore_global ();
7405 /* Record EXPR in the current function block. Complements compound
7406 expression second operand if necessary. */
7408 tree
7409 java_method_add_stmt (fndecl, expr)
7410 tree fndecl, expr;
7412 if (!GET_CURRENT_BLOCK (fndecl))
7413 return NULL_TREE;
7414 return add_stmt_to_block (GET_CURRENT_BLOCK (fndecl), NULL_TREE, expr);
7417 static tree
7418 add_stmt_to_block (b, type, stmt)
7419 tree b, type, stmt;
7421 tree body = BLOCK_EXPR_BODY (b), c;
7423 if (java_error_count)
7424 return body;
7426 if ((c = add_stmt_to_compound (body, type, stmt)) == body)
7427 return body;
7429 BLOCK_EXPR_BODY (b) = c;
7430 TREE_SIDE_EFFECTS (c) = 1;
7431 return c;
7434 /* Add STMT to EXISTING if possible, otherwise create a new
7435 COMPOUND_EXPR and add STMT to it. */
7437 static tree
7438 add_stmt_to_compound (existing, type, stmt)
7439 tree existing, type, stmt;
7441 if (existing)
7442 return build (COMPOUND_EXPR, type, existing, stmt);
7443 else
7444 return stmt;
7447 void java_layout_seen_class_methods ()
7449 tree previous_list = all_class_list;
7450 tree end = NULL_TREE;
7451 tree current;
7453 while (1)
7455 for (current = previous_list;
7456 current != end; current = TREE_CHAIN (current))
7457 layout_class_methods (TREE_TYPE (TREE_VALUE (current)));
7459 if (previous_list != all_class_list)
7461 end = previous_list;
7462 previous_list = all_class_list;
7464 else
7465 break;
7469 void
7470 java_reorder_fields ()
7472 static tree stop_reordering = NULL_TREE;
7473 static int initialized_p;
7474 tree current;
7476 /* Register STOP_REORDERING with the garbage collector. */
7477 if (!initialized_p)
7479 ggc_add_tree_root (&stop_reordering, 1);
7480 initialized_p = 1;
7483 for (current = gclass_list; current; current = TREE_CHAIN (current))
7485 current_class = TREE_TYPE (TREE_VALUE (current));
7487 if (current_class == stop_reordering)
7488 break;
7490 /* Reverse the fields, but leave the dummy field in front.
7491 Fields are already ordered for Object and Class */
7492 if (TYPE_FIELDS (current_class) && current_class != object_type_node
7493 && current_class != class_type_node)
7495 /* If the dummy field is there, reverse the right fields and
7496 just layout the type for proper fields offset */
7497 if (!DECL_NAME (TYPE_FIELDS (current_class)))
7499 tree fields = TYPE_FIELDS (current_class);
7500 TREE_CHAIN (fields) = nreverse (TREE_CHAIN (fields));
7501 TYPE_SIZE (current_class) = NULL_TREE;
7503 /* We don't have a dummy field, we need to layout the class,
7504 after having reversed the fields */
7505 else
7507 TYPE_FIELDS (current_class) =
7508 nreverse (TYPE_FIELDS (current_class));
7509 TYPE_SIZE (current_class) = NULL_TREE;
7513 /* There are cases were gclass_list will be empty. */
7514 if (gclass_list)
7515 stop_reordering = TREE_TYPE (TREE_VALUE (gclass_list));
7518 /* Layout the methods of all classes loaded in one way or another.
7519 Check methods of source parsed classes. Then reorder the
7520 fields and layout the classes or the type of all source parsed
7521 classes */
7523 void
7524 java_layout_classes ()
7526 tree current;
7527 int save_error_count = java_error_count;
7529 /* Layout the methods of all classes seen so far */
7530 java_layout_seen_class_methods ();
7531 java_parse_abort_on_error ();
7532 all_class_list = NULL_TREE;
7534 /* Then check the methods of all parsed classes */
7535 for (current = gclass_list; current; current = TREE_CHAIN (current))
7536 if (CLASS_FROM_SOURCE_P (TREE_TYPE (TREE_VALUE (current))))
7537 java_check_methods (TREE_VALUE (current));
7538 java_parse_abort_on_error ();
7540 for (current = gclass_list; current; current = TREE_CHAIN (current))
7542 current_class = TREE_TYPE (TREE_VALUE (current));
7543 layout_class (current_class);
7545 /* Error reported by the caller */
7546 if (java_error_count)
7547 return;
7550 /* We might have reloaded classes durign the process of laying out
7551 classes for code generation. We must layout the methods of those
7552 late additions, as constructor checks might use them */
7553 java_layout_seen_class_methods ();
7554 java_parse_abort_on_error ();
7557 /* Expand methods in the current set of classes rememebered for
7558 generation. */
7560 static void
7561 java_complete_expand_classes ()
7563 tree current;
7565 do_not_fold = flag_emit_xref;
7567 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
7568 if (!INNER_CLASS_DECL_P (current))
7569 java_complete_expand_class (current);
7572 /* Expand the methods found in OUTER, starting first by OUTER's inner
7573 classes, if any. */
7575 static void
7576 java_complete_expand_class (outer)
7577 tree outer;
7579 tree inner_list;
7581 set_nested_class_simple_name_value (outer, 1); /* Set */
7583 /* We need to go after all inner classes and start expanding them,
7584 starting with most nested ones. We have to do that because nested
7585 classes might add functions to outer classes */
7587 for (inner_list = DECL_INNER_CLASS_LIST (outer);
7588 inner_list; inner_list = TREE_CHAIN (inner_list))
7589 java_complete_expand_class (TREE_PURPOSE (inner_list));
7591 java_complete_expand_methods (outer);
7592 set_nested_class_simple_name_value (outer, 0); /* Reset */
7595 /* Expand methods registered in CLASS_DECL. The general idea is that
7596 we expand regular methods first. This allows us get an estimate on
7597 how outer context local alias fields are really used so we can add
7598 to the constructor just enough code to initialize them properly (it
7599 also lets us generate finit$ correctly.) Then we expand the
7600 constructors and then <clinit>. */
7602 static void
7603 java_complete_expand_methods (class_decl)
7604 tree class_decl;
7606 tree clinit, decl, first_decl;
7608 current_class = TREE_TYPE (class_decl);
7610 /* Find whether the class has final variables */
7611 for (decl = TYPE_FIELDS (current_class); decl; decl = TREE_CHAIN (decl))
7612 if (FIELD_FINAL (decl))
7614 TYPE_HAS_FINAL_VARIABLE (current_class) = 1;
7615 break;
7618 /* Initialize a new constant pool */
7619 init_outgoing_cpool ();
7621 /* Pre-expand <clinit> to figure whether we really need it or
7622 not. If we do need it, we pre-expand the static fields so they're
7623 ready to be used somewhere else. <clinit> will be fully expanded
7624 after we processed the constructors. */
7625 first_decl = TYPE_METHODS (current_class);
7626 clinit = maybe_generate_pre_expand_clinit (current_class);
7628 /* Then generate finit$ (if we need to) because constructors will
7629 try to use it.*/
7630 if (TYPE_FINIT_STMT_LIST (current_class))
7631 java_complete_expand_method (generate_finit (current_class));
7633 /* Then generate instinit$ (if we need to) because constructors will
7634 try to use it. */
7635 if (TYPE_II_STMT_LIST (current_class))
7636 java_complete_expand_method (generate_instinit (current_class));
7638 /* Now do the constructors */
7639 for (decl = first_decl ; !java_error_count && decl; decl = TREE_CHAIN (decl))
7641 int no_body;
7643 if (!DECL_CONSTRUCTOR_P (decl))
7644 continue;
7646 no_body = !DECL_FUNCTION_BODY (decl);
7647 /* Don't generate debug info on line zero when expanding a
7648 generated constructor. */
7649 if (no_body)
7650 restore_line_number_status (1);
7652 /* Reset the final local variable assignment flags */
7653 if (TYPE_HAS_FINAL_VARIABLE (current_class))
7654 reset_final_variable_local_assignment_flag (current_class);
7656 java_complete_expand_method (decl);
7658 /* Check for missed out final variable assignment */
7659 if (TYPE_HAS_FINAL_VARIABLE (current_class))
7660 check_final_variable_local_assignment_flag (current_class, decl);
7662 if (no_body)
7663 restore_line_number_status (0);
7666 /* First, do the ordinary methods. */
7667 for (decl = first_decl; decl; decl = TREE_CHAIN (decl))
7669 /* Ctors aren't part of this batch. */
7670 if (DECL_CONSTRUCTOR_P (decl) || DECL_CLINIT_P (decl))
7671 continue;
7673 /* Skip abstract or native methods -- but do handle native
7674 methods when generating JNI stubs. */
7675 if (METHOD_ABSTRACT (decl) || (! flag_jni && METHOD_NATIVE (decl)))
7677 DECL_FUNCTION_BODY (decl) = NULL_TREE;
7678 continue;
7681 if (METHOD_NATIVE (decl))
7683 tree body = build_jni_stub (decl);
7684 BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (decl)) = body;
7687 java_complete_expand_method (decl);
7690 /* If there is indeed a <clinit>, fully expand it now */
7691 if (clinit)
7693 /* Reset the final local variable assignment flags */
7694 if (TYPE_HAS_FINAL_VARIABLE (current_class))
7695 reset_static_final_variable_assignment_flag (current_class);
7696 /* Prevent the use of `this' inside <clinit> */
7697 ctxp->explicit_constructor_p = 1;
7698 java_complete_expand_method (clinit);
7699 ctxp->explicit_constructor_p = 0;
7700 /* Check for missed out static final variable assignment */
7701 if (TYPE_HAS_FINAL_VARIABLE (current_class)
7702 && !CLASS_INTERFACE (class_decl))
7703 check_static_final_variable_assignment_flag (current_class);
7706 /* We might have generated a class$ that we now want to expand */
7707 if (TYPE_DOT_CLASS (current_class))
7708 java_complete_expand_method (TYPE_DOT_CLASS (current_class));
7710 /* Now verify constructor circularity (stop after the first one we
7711 prove wrong.) */
7712 if (!CLASS_INTERFACE (class_decl))
7713 for (decl = TYPE_METHODS (current_class); decl; decl = TREE_CHAIN (decl))
7714 if (DECL_CONSTRUCTOR_P (decl)
7715 && verify_constructor_circularity (decl, decl))
7716 break;
7718 /* Final check on the initialization of final variables. */
7719 if (TYPE_HAS_FINAL_VARIABLE (current_class))
7721 check_final_variable_global_assignment_flag (current_class);
7722 /* If we have an interface, check for uninitialized fields. */
7723 if (CLASS_INTERFACE (class_decl))
7724 check_static_final_variable_assignment_flag (current_class);
7727 /* Save the constant pool. We'll need to restore it later. */
7728 TYPE_CPOOL (current_class) = outgoing_cpool;
7731 /* Attempt to create <clinit>. Pre-expand static fields so they can be
7732 safely used in some other methods/constructors. */
7734 static tree
7735 maybe_generate_pre_expand_clinit (class_type)
7736 tree class_type;
7738 tree current, mdecl;
7740 if (!TYPE_CLINIT_STMT_LIST (class_type))
7741 return NULL_TREE;
7743 /* Go through all static fields and pre expand them */
7744 for (current = TYPE_FIELDS (class_type); current;
7745 current = TREE_CHAIN (current))
7746 if (FIELD_STATIC (current))
7747 build_field_ref (NULL_TREE, class_type, DECL_NAME (current));
7749 /* Then build the <clinit> method */
7750 mdecl = create_artificial_method (class_type, ACC_STATIC, void_type_node,
7751 clinit_identifier_node, end_params_node);
7752 layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
7753 mdecl, NULL_TREE);
7754 start_artificial_method_body (mdecl);
7756 /* We process the list of assignment we produced as the result of
7757 the declaration of initialized static field and add them as
7758 statement to the <clinit> method. */
7759 for (current = TYPE_CLINIT_STMT_LIST (class_type); current;
7760 current = TREE_CHAIN (current))
7762 tree stmt = current;
7763 /* We build the assignment expression that will initialize the
7764 field to its value. There are strict rules on static
7765 initializers (8.5). FIXME */
7766 if (TREE_CODE (stmt) != BLOCK && stmt != empty_stmt_node)
7767 stmt = build_debugable_stmt (EXPR_WFL_LINECOL (stmt), stmt);
7768 java_method_add_stmt (mdecl, stmt);
7771 end_artificial_method_body (mdecl);
7773 /* Now we want to place <clinit> as the last method (because we need
7774 it at least for interface so that it doesn't interfere with the
7775 dispatch table based lookup. */
7776 if (TREE_CHAIN (TYPE_METHODS (class_type)))
7778 current = TREE_CHAIN (TYPE_METHODS (class_type));
7779 TYPE_METHODS (class_type) = current;
7781 while (TREE_CHAIN (current))
7782 current = TREE_CHAIN (current);
7784 TREE_CHAIN (current) = mdecl;
7785 TREE_CHAIN (mdecl) = NULL_TREE;
7788 return mdecl;
7791 /* Analyzes a method body and look for something that isn't a
7792 MODIFY_EXPR with a constant value. */
7794 static int
7795 analyze_clinit_body (bbody)
7796 tree bbody;
7798 while (bbody)
7799 switch (TREE_CODE (bbody))
7801 case BLOCK:
7802 bbody = BLOCK_EXPR_BODY (bbody);
7803 break;
7805 case EXPR_WITH_FILE_LOCATION:
7806 bbody = EXPR_WFL_NODE (bbody);
7807 break;
7809 case COMPOUND_EXPR:
7810 if (analyze_clinit_body (TREE_OPERAND (bbody, 0)))
7811 return 1;
7812 bbody = TREE_OPERAND (bbody, 1);
7813 break;
7815 case MODIFY_EXPR:
7816 /* Return 0 if the operand is constant, 1 otherwise. */
7817 return ! TREE_CONSTANT (TREE_OPERAND (bbody, 1));
7819 default:
7820 return 1;
7822 return 0;
7826 /* See whether we could get rid of <clinit>. Criteria are: all static
7827 final fields have constant initial values and the body of <clinit>
7828 is empty. Return 1 if <clinit> was discarded, 0 otherwise. */
7830 static int
7831 maybe_yank_clinit (mdecl)
7832 tree mdecl;
7834 tree type, current;
7835 tree fbody, bbody;
7836 int found = 0;
7838 if (!DECL_CLINIT_P (mdecl))
7839 return 0;
7841 /* If the body isn't empty, then we keep <clinit>. Note that if
7842 we're emitting classfiles, this isn't enough not to rule it
7843 out. */
7844 fbody = DECL_FUNCTION_BODY (mdecl);
7845 bbody = BLOCK_EXPR_BODY (fbody);
7846 if (bbody && bbody != error_mark_node)
7847 bbody = BLOCK_EXPR_BODY (bbody);
7848 else
7849 return 0;
7850 if (bbody && ! flag_emit_class_files && bbody != empty_stmt_node)
7851 return 0;
7853 type = DECL_CONTEXT (mdecl);
7854 current = TYPE_FIELDS (type);
7856 for (current = (current ? TREE_CHAIN (current) : current);
7857 current; current = TREE_CHAIN (current))
7859 tree f_init;
7861 /* We're not interested in non static field */
7862 if (!FIELD_STATIC (current))
7863 continue;
7865 /* Anything that isn't String or a basic type is ruled out -- or
7866 if we know how to deal with it (when doing things natively) we
7867 should generated an empty <clinit> so that SUID are computed
7868 correctly. */
7869 if (! JSTRING_TYPE_P (TREE_TYPE (current))
7870 && ! JNUMERIC_TYPE_P (TREE_TYPE (current)))
7871 break;
7873 f_init = DECL_INITIAL (current);
7874 /* If we're emitting native code, we want static final fields to
7875 have constant initializers. If we don't meet these
7876 conditions, we keep <clinit> */
7877 if (!flag_emit_class_files
7878 && !(FIELD_FINAL (current) && f_init && TREE_CONSTANT (f_init)))
7879 break;
7880 /* If we're emitting bytecode, we want static fields to have
7881 constant initializers or no initializer. If we don't meet
7882 these conditions, we keep <clinit> */
7883 if (flag_emit_class_files && f_init && !TREE_CONSTANT (f_init))
7884 break;
7887 /* Now we analyze the method body and look for something that
7888 isn't a MODIFY_EXPR */
7889 if (bbody == empty_stmt_node)
7890 found = 0;
7891 else
7892 found = analyze_clinit_body (bbody);
7894 if (current || found)
7895 return 0;
7897 /* Get rid of <clinit> in the class' list of methods */
7898 if (TYPE_METHODS (type) == mdecl)
7899 TYPE_METHODS (type) = TREE_CHAIN (mdecl);
7900 else
7901 for (current = TYPE_METHODS (type); current;
7902 current = TREE_CHAIN (current))
7903 if (TREE_CHAIN (current) == mdecl)
7905 TREE_CHAIN (current) = TREE_CHAIN (mdecl);
7906 break;
7909 return 1;
7912 /* Install the argument from MDECL. Suitable to completion and
7913 expansion of mdecl's body. */
7915 static void
7916 start_complete_expand_method (mdecl)
7917 tree mdecl;
7919 tree tem, *ptr;
7921 pushlevel (1); /* Prepare for a parameter push */
7922 ptr = &DECL_ARGUMENTS (mdecl);
7923 tem = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl));
7925 while (tem)
7927 tree next = TREE_CHAIN (tem);
7928 tree type = TREE_TYPE (tem);
7929 if (PROMOTE_PROTOTYPES
7930 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
7931 && INTEGRAL_TYPE_P (type))
7932 type = integer_type_node;
7933 DECL_ARG_TYPE (tem) = type;
7934 layout_decl (tem, 0);
7935 pushdecl (tem);
7936 *ptr = tem;
7937 ptr = &TREE_CHAIN (tem);
7938 tem = next;
7940 *ptr = NULL_TREE;
7941 pushdecl_force_head (DECL_ARGUMENTS (mdecl));
7942 lineno = DECL_SOURCE_LINE_FIRST (mdecl);
7943 build_result_decl (mdecl);
7947 /* Complete and expand a method. */
7949 static void
7950 java_complete_expand_method (mdecl)
7951 tree mdecl;
7953 tree fbody, block_body, exception_copy;
7955 current_function_decl = mdecl;
7956 /* Fix constructors before expanding them */
7957 if (DECL_CONSTRUCTOR_P (mdecl))
7958 fix_constructors (mdecl);
7960 /* Expand functions that have a body */
7961 if (!DECL_FUNCTION_BODY (mdecl))
7962 return;
7964 fbody = DECL_FUNCTION_BODY (mdecl);
7965 block_body = BLOCK_EXPR_BODY (fbody);
7966 exception_copy = NULL_TREE;
7968 current_function_decl = mdecl;
7970 if (! quiet_flag)
7971 fprintf (stderr, " [%s.",
7972 lang_printable_name (DECL_CONTEXT (mdecl), 0));
7973 announce_function (mdecl);
7974 if (! quiet_flag)
7975 fprintf (stderr, "]");
7977 /* Prepare the function for tree completion */
7978 start_complete_expand_method (mdecl);
7980 /* Install the current this */
7981 current_this = (!METHOD_STATIC (mdecl) ?
7982 BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (mdecl)) : NULL_TREE);
7984 /* Purge the `throws' list of unchecked exceptions (we save a copy
7985 of the list and re-install it later.) */
7986 exception_copy = copy_list (DECL_FUNCTION_THROWS (mdecl));
7987 purge_unchecked_exceptions (mdecl);
7989 /* Install exceptions thrown with `throws' */
7990 PUSH_EXCEPTIONS (DECL_FUNCTION_THROWS (mdecl));
7992 if (block_body != NULL_TREE)
7994 block_body = java_complete_tree (block_body);
7996 /* Before we check initialization, attached all class initialization
7997 variable to the block_body */
7998 hash_traverse (&DECL_FUNCTION_INIT_TEST_TABLE (mdecl),
7999 attach_init_test_initialization_flags, block_body);
8001 if (! flag_emit_xref && ! METHOD_NATIVE (mdecl))
8003 unsigned int state = check_for_initialization (block_body);
8005 /* Go through all the flags marking the initialization of
8006 static variables and see whether they're definitively
8007 assigned, in which case the type is remembered as
8008 definitively initialized in MDECL. */
8009 if (STATIC_CLASS_INIT_OPT_P ())
8011 hash_traverse (&DECL_FUNCTION_INIT_TEST_TABLE (mdecl),
8012 attach_initialized_static_class, (PTR)&state);
8014 /* Always register the context as properly initialized in
8015 MDECL. This used with caution helps removing extra
8016 initialization of self. */
8017 if (METHOD_STATIC (mdecl))
8018 hash_lookup (&DECL_FUNCTION_INITIALIZED_CLASS_TABLE (mdecl),
8019 (hash_table_key) DECL_CONTEXT (mdecl),
8020 TRUE, NULL);
8023 ctxp->explicit_constructor_p = 0;
8026 BLOCK_EXPR_BODY (fbody) = block_body;
8028 /* If we saw a return but couldn't evaluate it properly, we'll have
8029 an error_mark_node here. */
8030 if (block_body != error_mark_node
8031 && (block_body == NULL_TREE || CAN_COMPLETE_NORMALLY (block_body))
8032 && TREE_CODE (TREE_TYPE (TREE_TYPE (mdecl))) != VOID_TYPE
8033 && !flag_emit_xref)
8034 missing_return_error (current_function_decl);
8036 /* See if we can get rid of <clinit> if MDECL happens to be <clinit> */
8037 maybe_yank_clinit (mdecl);
8039 /* Pop the current level, with special measures if we found errors. */
8040 if (java_error_count)
8041 pushdecl_force_head (DECL_ARGUMENTS (mdecl));
8042 poplevel (1, 0, 1);
8044 /* Pop the exceptions and sanity check */
8045 POP_EXCEPTIONS();
8046 if (currently_caught_type_list)
8047 abort ();
8049 /* Restore the copy of the list of exceptions if emitting xrefs. */
8050 DECL_FUNCTION_THROWS (mdecl) = exception_copy;
8053 /* For with each class for which there's code to generate. */
8055 static void
8056 java_expand_method_bodies (class)
8057 tree class;
8059 tree decl;
8060 for (decl = TYPE_METHODS (class); decl; decl = TREE_CHAIN (decl))
8062 if (!DECL_FUNCTION_BODY (decl))
8063 continue;
8065 current_function_decl = decl;
8067 /* It's time to assign the variable flagging static class
8068 initialization based on which classes invoked static methods
8069 are definitely initializing. This should be flagged. */
8070 if (STATIC_CLASS_INIT_OPT_P ())
8071 hash_traverse (&DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (decl),
8072 adjust_init_test_initialization, NULL);
8074 /* Prepare the function for RTL expansion */
8075 start_complete_expand_method (decl);
8077 /* Expand function start, generate initialization flag
8078 assignment, and handle synchronized methods. */
8079 complete_start_java_method (decl);
8081 /* Expand the rest of the function body and terminate
8082 expansion. */
8083 source_end_java_method ();
8089 /* This section of the code deals with accessing enclosing context
8090 fields either directly by using the relevant access to this$<n> or
8091 by invoking an access method crafted for that purpose. */
8093 /* Build the necessary access from an inner class to an outer
8094 class. This routine could be optimized to cache previous result
8095 (decl, current_class and returned access). When an access method
8096 needs to be generated, it always takes the form of a read. It might
8097 be later turned into a write by calling outer_field_access_fix. */
8099 static tree
8100 build_outer_field_access (id, decl)
8101 tree id, decl;
8103 tree access = NULL_TREE;
8104 tree ctx = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current_class)));
8105 tree decl_ctx = DECL_CONTEXT (decl);
8107 /* If the immediate enclosing context of the current class is the
8108 field decl's class or inherits from it; build the access as
8109 `this$<n>.<field>'. Note that we will break the `private' barrier
8110 if we're not emitting bytecodes. */
8111 if ((ctx == decl_ctx || inherits_from_p (ctx, decl_ctx))
8112 && (!FIELD_PRIVATE (decl) || !flag_emit_class_files ))
8114 tree thisn = build_current_thisn (current_class);
8115 access = make_qualified_primary (build_wfl_node (thisn),
8116 id, EXPR_WFL_LINECOL (id));
8118 /* Otherwise, generate access methods to outer this and access the
8119 field (either using an access method or by direct access.) */
8120 else
8122 int lc = EXPR_WFL_LINECOL (id);
8124 /* Now we chain the required number of calls to the access$0 to
8125 get a hold to the enclosing instance we need, and then we
8126 build the field access. */
8127 access = build_access_to_thisn (current_class, decl_ctx, lc);
8129 /* If the field is private and we're generating bytecode, then
8130 we generate an access method */
8131 if (FIELD_PRIVATE (decl) && flag_emit_class_files )
8133 tree name = build_outer_field_access_methods (decl);
8134 access = build_outer_field_access_expr (lc, decl_ctx,
8135 name, access, NULL_TREE);
8137 /* Otherwise we use `access$(this$<j>). ... access$(this$<i>).<field>'.
8138 Once again we break the `private' access rule from a foreign
8139 class. */
8140 else
8141 access = make_qualified_primary (access, id, lc);
8143 return resolve_expression_name (access, NULL);
8146 /* Return a non zero value if NODE describes an outer field inner
8147 access. */
8149 static int
8150 outer_field_access_p (type, decl)
8151 tree type, decl;
8153 if (!INNER_CLASS_TYPE_P (type)
8154 || TREE_CODE (decl) != FIELD_DECL
8155 || DECL_CONTEXT (decl) == type)
8156 return 0;
8158 /* If the inner class extends the declaration context of the field
8159 we're try to acces, then this isn't an outer field access */
8160 if (inherits_from_p (type, DECL_CONTEXT (decl)))
8161 return 0;
8163 for (type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))); ;
8164 type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))))
8166 if (type == DECL_CONTEXT (decl))
8167 return 1;
8169 if (!DECL_CONTEXT (TYPE_NAME (type)))
8171 /* Before we give up, see whether the field is inherited from
8172 the enclosing context we're considering. */
8173 if (inherits_from_p (type, DECL_CONTEXT (decl)))
8174 return 1;
8175 break;
8179 return 0;
8182 /* Return a non zero value if NODE represents an outer field inner
8183 access that was been already expanded. As a side effect, it returns
8184 the name of the field being accessed and the argument passed to the
8185 access function, suitable for a regeneration of the access method
8186 call if necessary. */
8188 static int
8189 outer_field_expanded_access_p (node, name, arg_type, arg)
8190 tree node, *name, *arg_type, *arg;
8192 int identified = 0;
8194 if (TREE_CODE (node) != CALL_EXPR)
8195 return 0;
8197 /* Well, gcj generates slightly different tree nodes when compiling
8198 to native or bytecodes. It's the case for function calls. */
8200 if (flag_emit_class_files
8201 && TREE_CODE (node) == CALL_EXPR
8202 && OUTER_FIELD_ACCESS_IDENTIFIER_P (DECL_NAME (TREE_OPERAND (node, 0))))
8203 identified = 1;
8204 else if (!flag_emit_class_files)
8206 node = TREE_OPERAND (node, 0);
8208 if (node && TREE_OPERAND (node, 0)
8209 && TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR)
8211 node = TREE_OPERAND (node, 0);
8212 if (TREE_OPERAND (node, 0)
8213 && TREE_CODE (TREE_OPERAND (node, 0)) == FUNCTION_DECL
8214 && (OUTER_FIELD_ACCESS_IDENTIFIER_P
8215 (DECL_NAME (TREE_OPERAND (node, 0)))))
8216 identified = 1;
8220 if (identified && name && arg_type && arg)
8222 tree argument = TREE_OPERAND (node, 1);
8223 *name = DECL_NAME (TREE_OPERAND (node, 0));
8224 *arg_type = TREE_TYPE (TREE_TYPE (TREE_VALUE (argument)));
8225 *arg = TREE_VALUE (argument);
8227 return identified;
8230 /* Detect in NODE an outer field read access from an inner class and
8231 transform it into a write with RHS as an argument. This function is
8232 called from the java_complete_lhs when an assignment to a LHS can
8233 be identified. */
8235 static tree
8236 outer_field_access_fix (wfl, node, rhs)
8237 tree wfl, node, rhs;
8239 tree name, arg_type, arg;
8241 if (outer_field_expanded_access_p (node, &name, &arg_type, &arg))
8243 /* At any rate, check whether we're trying to assign a value to
8244 a final. */
8245 tree accessed = (JDECL_P (node) ? node :
8246 (TREE_CODE (node) == COMPONENT_REF ?
8247 TREE_OPERAND (node, 1) : node));
8248 if (check_final_assignment (accessed, wfl))
8249 return error_mark_node;
8251 node = build_outer_field_access_expr (EXPR_WFL_LINECOL (wfl),
8252 arg_type, name, arg, rhs);
8253 return java_complete_tree (node);
8255 return NULL_TREE;
8258 /* Construct the expression that calls an access method:
8259 <type>.access$<n>(<arg1> [, <arg2>]);
8261 ARG2 can be NULL and will be omitted in that case. It will denote a
8262 read access. */
8264 static tree
8265 build_outer_field_access_expr (lc, type, access_method_name, arg1, arg2)
8266 int lc;
8267 tree type, access_method_name, arg1, arg2;
8269 tree args, cn, access;
8271 args = arg1 ? arg1 :
8272 build_wfl_node (build_current_thisn (current_class));
8273 args = build_tree_list (NULL_TREE, args);
8275 if (arg2)
8276 args = tree_cons (NULL_TREE, arg2, args);
8278 access = build_method_invocation (build_wfl_node (access_method_name), args);
8279 cn = build_wfl_node (DECL_NAME (TYPE_NAME (type)));
8280 return make_qualified_primary (cn, access, lc);
8283 static tree
8284 build_new_access_id ()
8286 static int access_n_counter = 1;
8287 char buffer [128];
8289 sprintf (buffer, "access$%d", access_n_counter++);
8290 return get_identifier (buffer);
8293 /* Create the static access functions for the outer field DECL. We define a
8294 read:
8295 TREE_TYPE (<field>) access$<n> (DECL_CONTEXT (<field>) inst$) {
8296 return inst$.field;
8298 and a write access:
8299 TREE_TYPE (<field>) access$<n> (DECL_CONTEXT (<field>) inst$,
8300 TREE_TYPE (<field>) value$) {
8301 return inst$.field = value$;
8303 We should have a usage flags on the DECL so we can lazily turn the ones
8304 we're using for code generation. FIXME.
8307 static tree
8308 build_outer_field_access_methods (decl)
8309 tree decl;
8311 tree id, args, stmt, mdecl;
8313 if (FIELD_INNER_ACCESS_P (decl))
8314 return FIELD_INNER_ACCESS (decl);
8316 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
8318 /* Create the identifier and a function named after it. */
8319 id = build_new_access_id ();
8321 /* The identifier is marked as bearing the name of a generated write
8322 access function for outer field accessed from inner classes. */
8323 OUTER_FIELD_ACCESS_IDENTIFIER_P (id) = 1;
8325 /* Create the read access */
8326 args = build_tree_list (inst_id, build_pointer_type (DECL_CONTEXT (decl)));
8327 TREE_CHAIN (args) = end_params_node;
8328 stmt = make_qualified_primary (build_wfl_node (inst_id),
8329 build_wfl_node (DECL_NAME (decl)), 0);
8330 stmt = build_return (0, stmt);
8331 mdecl = build_outer_field_access_method (DECL_CONTEXT (decl),
8332 TREE_TYPE (decl), id, args, stmt);
8333 DECL_FUNCTION_ACCESS_DECL (mdecl) = decl;
8335 /* Create the write access method. No write access for final variable */
8336 if (!FIELD_FINAL (decl))
8338 args = build_tree_list (inst_id,
8339 build_pointer_type (DECL_CONTEXT (decl)));
8340 TREE_CHAIN (args) = build_tree_list (wpv_id, TREE_TYPE (decl));
8341 TREE_CHAIN (TREE_CHAIN (args)) = end_params_node;
8342 stmt = make_qualified_primary (build_wfl_node (inst_id),
8343 build_wfl_node (DECL_NAME (decl)), 0);
8344 stmt = build_return (0, build_assignment (ASSIGN_TK, 0, stmt,
8345 build_wfl_node (wpv_id)));
8346 mdecl = build_outer_field_access_method (DECL_CONTEXT (decl),
8347 TREE_TYPE (decl), id,
8348 args, stmt);
8350 DECL_FUNCTION_ACCESS_DECL (mdecl) = decl;
8352 /* Return the access name */
8353 return FIELD_INNER_ACCESS (decl) = id;
8356 /* Build an field access method NAME. */
8358 static tree
8359 build_outer_field_access_method (class, type, name, args, body)
8360 tree class, type, name, args, body;
8362 tree saved_current_function_decl, mdecl;
8364 /* Create the method */
8365 mdecl = create_artificial_method (class, ACC_STATIC, type, name, args);
8366 fix_method_argument_names (args, mdecl);
8367 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8369 /* Attach the method body. */
8370 saved_current_function_decl = current_function_decl;
8371 start_artificial_method_body (mdecl);
8372 java_method_add_stmt (mdecl, body);
8373 end_artificial_method_body (mdecl);
8374 current_function_decl = saved_current_function_decl;
8376 return mdecl;
8380 /* This section deals with building access function necessary for
8381 certain kinds of method invocation from inner classes. */
8383 static tree
8384 build_outer_method_access_method (decl)
8385 tree decl;
8387 tree saved_current_function_decl, mdecl;
8388 tree args = NULL_TREE, call_args = NULL_TREE;
8389 tree carg, id, body, class;
8390 char buffer [80];
8391 int parm_id_count = 0;
8393 /* Test this abort with an access to a private field */
8394 if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "access$"))
8395 abort ();
8397 /* Check the cache first */
8398 if (DECL_FUNCTION_INNER_ACCESS (decl))
8399 return DECL_FUNCTION_INNER_ACCESS (decl);
8401 class = DECL_CONTEXT (decl);
8403 /* Obtain an access identifier and mark it */
8404 id = build_new_access_id ();
8405 OUTER_FIELD_ACCESS_IDENTIFIER_P (id) = 1;
8407 carg = TYPE_ARG_TYPES (TREE_TYPE (decl));
8408 /* Create the arguments, as much as the original */
8409 for (; carg && carg != end_params_node;
8410 carg = TREE_CHAIN (carg))
8412 sprintf (buffer, "write_parm_value$%d", parm_id_count++);
8413 args = chainon (args, build_tree_list (get_identifier (buffer),
8414 TREE_VALUE (carg)));
8416 args = chainon (args, end_params_node);
8418 /* Create the method */
8419 mdecl = create_artificial_method (class, ACC_STATIC,
8420 TREE_TYPE (TREE_TYPE (decl)), id, args);
8421 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8422 /* There is a potential bug here. We should be able to use
8423 fix_method_argument_names, but then arg names get mixed up and
8424 eventually a constructor will have its this$0 altered and the
8425 outer context won't be assignment properly. The test case is
8426 stub.java FIXME */
8427 TYPE_ARG_TYPES (TREE_TYPE (mdecl)) = args;
8429 /* Attach the method body. */
8430 saved_current_function_decl = current_function_decl;
8431 start_artificial_method_body (mdecl);
8433 /* The actual method invocation uses the same args. When invoking a
8434 static methods that way, we don't want to skip the first
8435 argument. */
8436 carg = args;
8437 if (!METHOD_STATIC (decl))
8438 carg = TREE_CHAIN (carg);
8439 for (; carg && carg != end_params_node; carg = TREE_CHAIN (carg))
8440 call_args = tree_cons (NULL_TREE, build_wfl_node (TREE_PURPOSE (carg)),
8441 call_args);
8443 body = build_method_invocation (build_wfl_node (DECL_NAME (decl)),
8444 call_args);
8445 if (!METHOD_STATIC (decl))
8446 body = make_qualified_primary (build_wfl_node (TREE_PURPOSE (args)),
8447 body, 0);
8448 if (TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
8449 body = build_return (0, body);
8450 java_method_add_stmt (mdecl,body);
8451 end_artificial_method_body (mdecl);
8452 current_function_decl = saved_current_function_decl;
8454 /* Back tag the access function so it know what it accesses */
8455 DECL_FUNCTION_ACCESS_DECL (decl) = mdecl;
8457 /* Tag the current method so it knows it has an access generated */
8458 return DECL_FUNCTION_INNER_ACCESS (decl) = mdecl;
8462 /* This section of the code deals with building expressions to access
8463 the enclosing instance of an inner class. The enclosing instance is
8464 kept in a generated field called this$<n>, with <n> being the
8465 inner class nesting level (starting from 0.) */
8467 /* Build an access to a given this$<n>, always chaining access call to
8468 others. Access methods to this$<n> are build on the fly if
8469 necessary. This CAN'T be used to solely access this$<n-1> from
8470 this$<n> (which alway yield to special cases and optimization, see
8471 for example build_outer_field_access). */
8473 static tree
8474 build_access_to_thisn (from, to, lc)
8475 tree from, to;
8476 int lc;
8478 tree access = NULL_TREE;
8480 while (from != to)
8482 if (!access)
8484 access = build_current_thisn (from);
8485 access = build_wfl_node (access);
8487 else
8489 tree access0_wfl, cn;
8491 maybe_build_thisn_access_method (from);
8492 access0_wfl = build_wfl_node (access0_identifier_node);
8493 cn = build_wfl_node (DECL_NAME (TYPE_NAME (from)));
8494 EXPR_WFL_LINECOL (access0_wfl) = lc;
8495 access = build_tree_list (NULL_TREE, access);
8496 access = build_method_invocation (access0_wfl, access);
8497 access = make_qualified_primary (cn, access, lc);
8500 /* if FROM isn't an inter class, that's fine, we've done
8501 enough. What we're looking for can be accessed from there. */
8502 from = DECL_CONTEXT (TYPE_NAME (from));
8503 if (!from)
8504 break;
8505 from = TREE_TYPE (from);
8507 return access;
8510 /* Build an access function to the this$<n> local to TYPE. NULL_TREE
8511 is returned if nothing needs to be generated. Otherwise, the method
8512 generated and a method decl is returned.
8514 NOTE: These generated methods should be declared in a class file
8515 attribute so that they can't be referred to directly. */
8517 static tree
8518 maybe_build_thisn_access_method (type)
8519 tree type;
8521 tree mdecl, args, stmt, rtype;
8522 tree saved_current_function_decl;
8524 /* If TYPE is a top-level class, no access method is required.
8525 If there already is such an access method, bail out. */
8526 if (CLASS_ACCESS0_GENERATED_P (type) || !PURE_INNER_CLASS_TYPE_P (type))
8527 return NULL_TREE;
8529 /* We generate the method. The method looks like:
8530 static <outer_of_type> access$0 (<type> inst$) { return inst$.this$<n>; }
8532 args = build_tree_list (inst_id, build_pointer_type (type));
8533 TREE_CHAIN (args) = end_params_node;
8534 rtype = build_pointer_type (TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))));
8535 mdecl = create_artificial_method (type, ACC_STATIC, rtype,
8536 access0_identifier_node, args);
8537 fix_method_argument_names (args, mdecl);
8538 layout_class_method (type, NULL_TREE, mdecl, NULL_TREE);
8539 stmt = build_current_thisn (type);
8540 stmt = make_qualified_primary (build_wfl_node (inst_id),
8541 build_wfl_node (stmt), 0);
8542 stmt = build_return (0, stmt);
8544 saved_current_function_decl = current_function_decl;
8545 start_artificial_method_body (mdecl);
8546 java_method_add_stmt (mdecl, stmt);
8547 end_artificial_method_body (mdecl);
8548 current_function_decl = saved_current_function_decl;
8550 CLASS_ACCESS0_GENERATED_P (type) = 1;
8552 return mdecl;
8555 /* Craft an correctly numbered `this$<n>'string. this$0 is used for
8556 the first level of innerclassing. this$1 for the next one, etc...
8557 This function can be invoked with TYPE to NULL, available and then
8558 has to count the parser context. */
8560 static tree
8561 build_current_thisn (type)
8562 tree type;
8564 static int saved_i = -1;
8565 static tree saved_thisn = NULL_TREE;
8566 static tree saved_type = NULL_TREE;
8567 static int saved_type_i = 0;
8568 static int initialized_p;
8569 tree decl;
8570 char buffer [80];
8571 int i = 0;
8573 /* Register SAVED_THISN and SAVED_TYPE with the garbage collector. */
8574 if (!initialized_p)
8576 ggc_add_tree_root (&saved_thisn, 1);
8577 ggc_add_tree_root (&saved_type, 1);
8578 initialized_p = 1;
8581 if (type)
8583 if (type == saved_type)
8584 i = saved_type_i;
8585 else
8587 for (i = -1, decl = DECL_CONTEXT (TYPE_NAME (type));
8588 decl; decl = DECL_CONTEXT (decl), i++)
8591 saved_type = type;
8592 saved_type_i = i;
8595 else
8596 i = list_length (GET_CPC_LIST ())-2;
8598 if (i == saved_i)
8599 return saved_thisn;
8601 sprintf (buffer, "this$%d", i);
8602 saved_i = i;
8603 saved_thisn = get_identifier (buffer);
8604 return saved_thisn;
8607 /* Return the assignement to the hidden enclosing context `this$<n>'
8608 by the second incoming parameter to the innerclass constructor. The
8609 form used is `this.this$<n> = this$<n>;'. */
8611 static tree
8612 build_thisn_assign ()
8614 if (current_class && PURE_INNER_CLASS_TYPE_P (current_class))
8616 tree thisn = build_current_thisn (current_class);
8617 tree lhs = make_qualified_primary (build_wfl_node (this_identifier_node),
8618 build_wfl_node (thisn), 0);
8619 tree rhs = build_wfl_node (thisn);
8620 EXPR_WFL_SET_LINECOL (lhs, lineno, 0);
8621 return build_assignment (ASSIGN_TK, EXPR_WFL_LINECOL (lhs), lhs, rhs);
8623 return NULL_TREE;
8627 /* Building the synthetic `class$' used to implement the `.class' 1.1
8628 extension for non primitive types. This method looks like:
8630 static Class class$(String type) throws NoClassDefFoundError
8632 try {return (java.lang.Class.forName (String));}
8633 catch (ClassNotFoundException e) {
8634 throw new NoClassDefFoundError(e.getMessage());}
8635 } */
8637 static tree
8638 build_dot_class_method (class)
8639 tree class;
8641 #define BWF(S) build_wfl_node (get_identifier ((S)))
8642 #define MQN(X,Y) make_qualified_name ((X), (Y), 0)
8643 tree args, tmp, saved_current_function_decl, mdecl;
8644 tree stmt, throw_stmt;
8646 static tree get_message_wfl, type_parm_wfl;
8648 if (!get_message_wfl)
8650 get_message_wfl = build_wfl_node (get_identifier ("getMessage"));
8651 type_parm_wfl = build_wfl_node (get_identifier ("type$"));
8652 ggc_add_tree_root (&get_message_wfl, 1);
8653 ggc_add_tree_root (&type_parm_wfl, 1);
8656 /* Build the arguments */
8657 args = build_tree_list (get_identifier ("type$"),
8658 build_pointer_type (string_type_node));
8659 TREE_CHAIN (args) = end_params_node;
8661 /* Build the qualified name java.lang.Class.forName */
8662 tmp = MQN (MQN (MQN (BWF ("java"),
8663 BWF ("lang")), BWF ("Class")), BWF ("forName"));
8664 load_class (class_not_found_type_node, 1);
8665 load_class (no_class_def_found_type_node, 1);
8667 /* Create the "class$" function */
8668 mdecl = create_artificial_method (class, ACC_STATIC,
8669 build_pointer_type (class_type_node),
8670 classdollar_identifier_node, args);
8671 DECL_FUNCTION_THROWS (mdecl) =
8672 build_tree_list (NULL_TREE, no_class_def_found_type_node);
8674 /* We start by building the try block. We need to build:
8675 return (java.lang.Class.forName (type)); */
8676 stmt = build_method_invocation (tmp,
8677 build_tree_list (NULL_TREE, type_parm_wfl));
8678 stmt = build_return (0, stmt);
8680 /* Now onto the catch block. We start by building the expression
8681 throwing a new exception: throw new NoClassDefFoundError (_.getMessage) */
8682 throw_stmt = make_qualified_name (build_wfl_node (wpv_id),
8683 get_message_wfl, 0);
8684 throw_stmt = build_method_invocation (throw_stmt, NULL_TREE);
8686 /* Build new NoClassDefFoundError (_.getMessage) */
8687 throw_stmt = build_new_invocation
8688 (build_wfl_node (get_identifier ("NoClassDefFoundError")),
8689 build_tree_list (build_pointer_type (string_type_node), throw_stmt));
8691 /* Build the throw, (it's too early to use BUILD_THROW) */
8692 throw_stmt = build1 (THROW_EXPR, NULL_TREE, throw_stmt);
8694 /* Encapsulate STMT in a try block. The catch clause executes THROW_STMT */
8695 stmt = encapsulate_with_try_catch (0, class_not_found_type_node,
8696 stmt, throw_stmt);
8698 fix_method_argument_names (args, mdecl);
8699 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8700 saved_current_function_decl = current_function_decl;
8701 start_artificial_method_body (mdecl);
8702 java_method_add_stmt (mdecl, stmt);
8703 end_artificial_method_body (mdecl);
8704 current_function_decl = saved_current_function_decl;
8705 TYPE_DOT_CLASS (class) = mdecl;
8707 return mdecl;
8710 static tree
8711 build_dot_class_method_invocation (type)
8712 tree type;
8714 tree sig_id, s;
8716 if (TYPE_ARRAY_P (type))
8717 sig_id = build_java_signature (type);
8718 else
8719 sig_id = DECL_NAME (TYPE_NAME (type));
8721 /* Ensure that the proper name separator is used */
8722 sig_id = unmangle_classname (IDENTIFIER_POINTER (sig_id),
8723 IDENTIFIER_LENGTH (sig_id));
8725 s = build_string (IDENTIFIER_LENGTH (sig_id),
8726 IDENTIFIER_POINTER (sig_id));
8727 return build_method_invocation (build_wfl_node (classdollar_identifier_node),
8728 build_tree_list (NULL_TREE, s));
8731 /* This section of the code deals with constructor. */
8733 /* Craft a body for default constructor. Patch existing constructor
8734 bodies with call to super() and field initialization statements if
8735 necessary. */
8737 static void
8738 fix_constructors (mdecl)
8739 tree mdecl;
8741 tree iii; /* Instance Initializer Invocation */
8742 tree body = DECL_FUNCTION_BODY (mdecl);
8743 tree thisn_assign, compound = NULL_TREE;
8744 tree class_type = DECL_CONTEXT (mdecl);
8746 if (DECL_FIXED_CONSTRUCTOR_P (mdecl))
8747 return;
8748 DECL_FIXED_CONSTRUCTOR_P (mdecl) = 1;
8750 if (!body)
8752 /* It is an error for the compiler to generate a default
8753 constructor if the superclass doesn't have a constructor that
8754 takes no argument, or the same args for an anonymous class */
8755 if (verify_constructor_super (mdecl))
8757 tree sclass_decl = TYPE_NAME (CLASSTYPE_SUPER (class_type));
8758 tree save = DECL_NAME (mdecl);
8759 const char *n = IDENTIFIER_POINTER (DECL_NAME (sclass_decl));
8760 DECL_NAME (mdecl) = DECL_NAME (sclass_decl);
8761 parse_error_context
8762 (lookup_cl (TYPE_NAME (class_type)),
8763 "No constructor matching `%s' found in class `%s'",
8764 lang_printable_name (mdecl, 0), n);
8765 DECL_NAME (mdecl) = save;
8768 /* The constructor body must be crafted by hand. It's the
8769 constructor we defined when we realize we didn't have the
8770 CLASSNAME() constructor */
8771 start_artificial_method_body (mdecl);
8773 /* Insert an assignment to the this$<n> hidden field, if
8774 necessary */
8775 if ((thisn_assign = build_thisn_assign ()))
8776 java_method_add_stmt (mdecl, thisn_assign);
8778 /* We don't generate a super constructor invocation if we're
8779 compiling java.lang.Object. build_super_invocation takes care
8780 of that. */
8781 java_method_add_stmt (mdecl, build_super_invocation (mdecl));
8783 /* FIXME */
8784 if ((iii = build_instinit_invocation (class_type)))
8785 java_method_add_stmt (mdecl, iii);
8787 end_artificial_method_body (mdecl);
8789 /* Search for an explicit constructor invocation */
8790 else
8792 int found = 0;
8793 int invokes_this = 0;
8794 tree found_call = NULL_TREE;
8795 tree main_block = BLOCK_EXPR_BODY (body);
8797 while (body)
8798 switch (TREE_CODE (body))
8800 case CALL_EXPR:
8801 found = CALL_EXPLICIT_CONSTRUCTOR_P (body);
8802 if (CALL_THIS_CONSTRUCTOR_P (body))
8803 invokes_this = 1;
8804 body = NULL_TREE;
8805 break;
8806 case COMPOUND_EXPR:
8807 case EXPR_WITH_FILE_LOCATION:
8808 found_call = body;
8809 body = TREE_OPERAND (body, 0);
8810 break;
8811 case BLOCK:
8812 found_call = body;
8813 body = BLOCK_EXPR_BODY (body);
8814 break;
8815 default:
8816 found = 0;
8817 body = NULL_TREE;
8820 /* Generate the assignment to this$<n>, if necessary */
8821 if ((thisn_assign = build_thisn_assign ()))
8822 compound = add_stmt_to_compound (compound, NULL_TREE, thisn_assign);
8824 /* The constructor is missing an invocation of super() */
8825 if (!found)
8826 compound = add_stmt_to_compound (compound, NULL_TREE,
8827 build_super_invocation (mdecl));
8828 /* Explicit super() invokation should take place before the
8829 instance initializer blocks. */
8830 else
8832 compound = add_stmt_to_compound (compound, NULL_TREE,
8833 TREE_OPERAND (found_call, 0));
8834 TREE_OPERAND (found_call, 0) = empty_stmt_node;
8837 /* Insert the instance initializer block right after. */
8838 if (!invokes_this && (iii = build_instinit_invocation (class_type)))
8839 compound = add_stmt_to_compound (compound, NULL_TREE, iii);
8841 /* Fix the constructor main block if we're adding extra stmts */
8842 if (compound)
8844 compound = add_stmt_to_compound (compound, NULL_TREE,
8845 BLOCK_EXPR_BODY (main_block));
8846 BLOCK_EXPR_BODY (main_block) = compound;
8851 /* Browse constructors in the super class, searching for a constructor
8852 that doesn't take any argument. Return 0 if one is found, 1
8853 otherwise. If the current class is an anonymous inner class, look
8854 for something that has the same signature. */
8856 static int
8857 verify_constructor_super (mdecl)
8858 tree mdecl;
8860 tree class = CLASSTYPE_SUPER (current_class);
8861 int super_inner = PURE_INNER_CLASS_TYPE_P (class);
8862 tree sdecl;
8864 if (!class)
8865 return 0;
8867 if (ANONYMOUS_CLASS_P (current_class))
8869 tree mdecl_arg_type;
8870 SKIP_THIS_AND_ARTIFICIAL_PARMS (mdecl_arg_type, mdecl);
8871 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
8872 if (DECL_CONSTRUCTOR_P (sdecl))
8874 tree m_arg_type;
8875 tree arg_type = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
8876 if (super_inner)
8877 arg_type = TREE_CHAIN (arg_type);
8878 for (m_arg_type = mdecl_arg_type;
8879 (arg_type != end_params_node
8880 && m_arg_type != end_params_node);
8881 arg_type = TREE_CHAIN (arg_type),
8882 m_arg_type = TREE_CHAIN (m_arg_type))
8883 if (!valid_method_invocation_conversion_p
8884 (TREE_VALUE (arg_type),
8885 TREE_VALUE (m_arg_type)))
8886 break;
8888 if (arg_type == end_params_node && m_arg_type == end_params_node)
8889 return 0;
8892 else
8894 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
8896 tree arg = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
8897 if (super_inner)
8898 arg = TREE_CHAIN (arg);
8899 if (DECL_CONSTRUCTOR_P (sdecl) && arg == end_params_node)
8900 return 0;
8903 return 1;
8906 /* Generate code for all context remembered for code generation. */
8908 void
8909 java_expand_classes ()
8911 int save_error_count = 0;
8912 static struct parser_ctxt *cur_ctxp = NULL;
8914 java_parse_abort_on_error ();
8915 if (!(ctxp = ctxp_for_generation))
8916 return;
8917 java_layout_classes ();
8918 java_parse_abort_on_error ();
8920 cur_ctxp = ctxp_for_generation;
8921 for (; cur_ctxp; cur_ctxp = cur_ctxp->next)
8923 ctxp = cur_ctxp;
8924 input_filename = ctxp->filename;
8925 lang_init_source (2); /* Error msgs have method prototypes */
8926 java_complete_expand_classes (); /* Complete and expand classes */
8927 java_parse_abort_on_error ();
8929 input_filename = main_input_filename;
8931 /* Find anonymous classes and expand their constructor, now they
8932 have been fixed. */
8933 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
8935 tree current;
8936 ctxp = cur_ctxp;
8937 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
8939 current_class = TREE_TYPE (current);
8940 if (ANONYMOUS_CLASS_P (current_class))
8942 tree d;
8943 for (d = TYPE_METHODS (current_class); d; d = TREE_CHAIN (d))
8945 if (DECL_CONSTRUCTOR_P (d))
8947 restore_line_number_status (1);
8948 java_complete_expand_method (d);
8949 restore_line_number_status (0);
8950 break; /* We now there are no other ones */
8957 /* If we've found error at that stage, don't try to generate
8958 anything, unless we're emitting xrefs or checking the syntax only
8959 (but not using -fsyntax-only for the purpose of generating
8960 bytecode. */
8961 if (java_error_count && !flag_emit_xref
8962 && (!flag_syntax_only && !flag_emit_class_files))
8963 return;
8965 /* Now things are stable, go for generation of the class data. */
8966 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
8968 tree current;
8969 ctxp = cur_ctxp;
8970 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
8972 current_class = TREE_TYPE (current);
8973 outgoing_cpool = TYPE_CPOOL (current_class);
8974 if (flag_emit_class_files)
8975 write_classfile (current_class);
8976 if (flag_emit_xref)
8977 expand_xref (current_class);
8978 else if (! flag_syntax_only)
8980 java_expand_method_bodies (current_class);
8981 finish_class ();
8987 /* Wrap non WFL PRIMARY around a WFL and set EXPR_WFL_QUALIFICATION to
8988 a tree list node containing RIGHT. Fore coming RIGHTs will be
8989 chained to this hook. LOCATION contains the location of the
8990 separating `.' operator. */
8992 static tree
8993 make_qualified_primary (primary, right, location)
8994 tree primary, right;
8995 int location;
8997 tree wfl;
8999 if (TREE_CODE (primary) != EXPR_WITH_FILE_LOCATION)
9000 wfl = build_wfl_wrap (primary, location);
9001 else
9003 wfl = primary;
9004 /* If wfl wasn't qualified, we build a first anchor */
9005 if (!EXPR_WFL_QUALIFICATION (wfl))
9006 EXPR_WFL_QUALIFICATION (wfl) = build_tree_list (wfl, NULL_TREE);
9009 /* And chain them */
9010 EXPR_WFL_LINECOL (right) = location;
9011 chainon (EXPR_WFL_QUALIFICATION (wfl), build_tree_list (right, NULL_TREE));
9012 PRIMARY_P (wfl) = 1;
9013 return wfl;
9016 /* Simple merge of two name separated by a `.' */
9018 static tree
9019 merge_qualified_name (left, right)
9020 tree left, right;
9022 tree node;
9023 if (!left && !right)
9024 return NULL_TREE;
9026 if (!left)
9027 return right;
9029 if (!right)
9030 return left;
9032 obstack_grow (&temporary_obstack, IDENTIFIER_POINTER (left),
9033 IDENTIFIER_LENGTH (left));
9034 obstack_1grow (&temporary_obstack, '.');
9035 obstack_grow0 (&temporary_obstack, IDENTIFIER_POINTER (right),
9036 IDENTIFIER_LENGTH (right));
9037 node = get_identifier (obstack_base (&temporary_obstack));
9038 obstack_free (&temporary_obstack, obstack_base (&temporary_obstack));
9039 QUALIFIED_P (node) = 1;
9040 return node;
9043 /* Merge the two parts of a qualified name into LEFT. Set the
9044 location information of the resulting node to LOCATION, usually
9045 inherited from the location information of the `.' operator. */
9047 static tree
9048 make_qualified_name (left, right, location)
9049 tree left, right;
9050 int location;
9052 #ifdef USE_COMPONENT_REF
9053 tree node = build (COMPONENT_REF, NULL_TREE, left, right);
9054 EXPR_WFL_LINECOL (node) = location;
9055 return node;
9056 #else
9057 tree left_id = EXPR_WFL_NODE (left);
9058 tree right_id = EXPR_WFL_NODE (right);
9059 tree wfl, merge;
9061 merge = merge_qualified_name (left_id, right_id);
9063 /* Left wasn't qualified and is now qualified */
9064 if (!QUALIFIED_P (left_id))
9066 tree wfl = build_expr_wfl (left_id, ctxp->filename, 0, 0);
9067 EXPR_WFL_LINECOL (wfl) = EXPR_WFL_LINECOL (left);
9068 EXPR_WFL_QUALIFICATION (left) = build_tree_list (wfl, NULL_TREE);
9071 wfl = build_expr_wfl (right_id, ctxp->filename, 0, 0);
9072 EXPR_WFL_LINECOL (wfl) = location;
9073 chainon (EXPR_WFL_QUALIFICATION (left), build_tree_list (wfl, NULL_TREE));
9075 EXPR_WFL_NODE (left) = merge;
9076 return left;
9077 #endif
9080 /* Extract the last identifier component of the qualified in WFL. The
9081 last identifier is removed from the linked list */
9083 static tree
9084 cut_identifier_in_qualified (wfl)
9085 tree wfl;
9087 tree q;
9088 tree previous = NULL_TREE;
9089 for (q = EXPR_WFL_QUALIFICATION (wfl); ; previous = q, q = TREE_CHAIN (q))
9090 if (!TREE_CHAIN (q))
9092 if (!previous)
9093 /* Operating on a non qualified qualified WFL. */
9094 abort ();
9096 TREE_CHAIN (previous) = NULL_TREE;
9097 return TREE_PURPOSE (q);
9101 /* Resolve the expression name NAME. Return its decl. */
9103 static tree
9104 resolve_expression_name (id, orig)
9105 tree id;
9106 tree *orig;
9108 tree name = EXPR_WFL_NODE (id);
9109 tree decl;
9111 /* 6.5.5.1: Simple expression names */
9112 if (!PRIMARY_P (id) && !QUALIFIED_P (name))
9114 /* 15.13.1: NAME can appear within the scope of a local variable
9115 declaration */
9116 if ((decl = IDENTIFIER_LOCAL_VALUE (name)))
9117 return decl;
9119 /* 15.13.1: NAME can appear within a class declaration */
9120 else
9122 decl = lookup_field_wrapper (current_class, name);
9123 if (decl)
9125 tree access = NULL_TREE;
9126 int fs = FIELD_STATIC (decl);
9128 /* If we're accessing an outer scope local alias, make
9129 sure we change the name of the field we're going to
9130 build access to. */
9131 if (FIELD_LOCAL_ALIAS_USED (decl))
9132 name = DECL_NAME (decl);
9134 /* Instance variable (8.3.1.1) can't appear within
9135 static method, static initializer or initializer for
9136 a static variable. */
9137 if (!fs && METHOD_STATIC (current_function_decl))
9139 static_ref_err (id, name, current_class);
9140 return error_mark_node;
9142 /* Instance variables can't appear as an argument of
9143 an explicit constructor invocation */
9144 if (!fs && ctxp->explicit_constructor_p
9145 && !enclosing_context_p (DECL_CONTEXT (decl), current_class))
9147 parse_error_context
9148 (id, "Can't reference `%s' before the superclass constructor has been called", IDENTIFIER_POINTER (name));
9149 return error_mark_node;
9152 /* If we're processing an inner class and we're trying
9153 to access a field belonging to an outer class, build
9154 the access to the field */
9155 if (!fs && outer_field_access_p (current_class, decl))
9157 if (CLASS_STATIC (TYPE_NAME (current_class)))
9159 static_ref_err (id, DECL_NAME (decl), current_class);
9160 return error_mark_node;
9162 access = build_outer_field_access (id, decl);
9163 if (orig)
9164 *orig = access;
9165 return access;
9168 /* Otherwise build what it takes to access the field */
9169 access = build_field_ref ((fs ? NULL_TREE : current_this),
9170 DECL_CONTEXT (decl), name);
9171 if (fs)
9172 access = maybe_build_class_init_for_field (decl, access);
9173 /* We may be asked to save the real field access node */
9174 if (orig)
9175 *orig = access;
9176 /* And we return what we got */
9177 return access;
9179 /* Fall down to error report on undefined variable */
9182 /* 6.5.5.2 Qualified Expression Names */
9183 else
9185 if (orig)
9186 *orig = NULL_TREE;
9187 qualify_ambiguous_name (id);
9188 /* 15.10.1 Field Access Using a Primary and/or Expression Name */
9189 /* 15.10.2: Accessing Superclass Members using super */
9190 return resolve_field_access (id, orig, NULL);
9193 /* We've got an error here */
9194 if (INNER_CLASS_TYPE_P (current_class))
9195 parse_error_context (id,
9196 "Local variable `%s' can't be accessed from within the inner class `%s' unless it is declared final",
9197 IDENTIFIER_POINTER (name),
9198 IDENTIFIER_POINTER (DECL_NAME
9199 (TYPE_NAME (current_class))));
9200 else
9201 parse_error_context (id, "Undefined variable `%s'",
9202 IDENTIFIER_POINTER (name));
9204 return error_mark_node;
9207 static void
9208 static_ref_err (wfl, field_id, class_type)
9209 tree wfl, field_id, class_type;
9211 parse_error_context
9212 (wfl,
9213 "Can't make a static reference to nonstatic variable `%s' in class `%s'",
9214 IDENTIFIER_POINTER (field_id),
9215 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (class_type))));
9218 /* 15.10.1 Field Acess Using a Primary and/or Expression Name.
9219 We return something suitable to generate the field access. We also
9220 return the field decl in FIELD_DECL and its type in FIELD_TYPE. If
9221 recipient's address can be null. */
9223 static tree
9224 resolve_field_access (qual_wfl, field_decl, field_type)
9225 tree qual_wfl;
9226 tree *field_decl, *field_type;
9228 int is_static = 0;
9229 tree field_ref;
9230 tree decl, where_found, type_found;
9232 if (resolve_qualified_expression_name (qual_wfl, &decl,
9233 &where_found, &type_found))
9234 return error_mark_node;
9236 /* Resolve the LENGTH field of an array here */
9237 if (DECL_P (decl) && DECL_NAME (decl) == length_identifier_node
9238 && type_found && TYPE_ARRAY_P (type_found)
9239 && ! flag_emit_class_files && ! flag_emit_xref)
9241 tree length = build_java_array_length_access (where_found);
9242 field_ref = length;
9244 /* In case we're dealing with a static array, we need to
9245 initialize its class before the array length can be fetched.
9246 It's also a good time to create a DECL_RTL for the field if
9247 none already exists, otherwise if the field was declared in a
9248 class found in an external file and hasn't been (and won't
9249 be) accessed for its value, none will be created. */
9250 if (TREE_CODE (where_found) == VAR_DECL && FIELD_STATIC (where_found))
9252 build_static_field_ref (where_found);
9253 field_ref = build_class_init (DECL_CONTEXT (where_found), field_ref);
9256 /* We might have been trying to resolve field.method(). In which
9257 case, the resolution is over and decl is the answer */
9258 else if (JDECL_P (decl) && IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) == decl)
9259 field_ref = decl;
9260 else if (JDECL_P (decl))
9262 if (!type_found)
9263 type_found = DECL_CONTEXT (decl);
9264 is_static = FIELD_STATIC (decl);
9265 field_ref = build_field_ref ((is_static && !flag_emit_xref?
9266 NULL_TREE : where_found),
9267 type_found, DECL_NAME (decl));
9268 if (field_ref == error_mark_node)
9269 return error_mark_node;
9270 if (is_static)
9271 field_ref = maybe_build_class_init_for_field (decl, field_ref);
9273 else
9274 field_ref = decl;
9276 if (field_decl)
9277 *field_decl = decl;
9278 if (field_type)
9279 *field_type = (QUAL_DECL_TYPE (decl) ?
9280 QUAL_DECL_TYPE (decl) : TREE_TYPE (decl));
9281 return field_ref;
9284 /* If NODE is an access to f static field, strip out the class
9285 initialization part and return the field decl, otherwise, return
9286 NODE. */
9288 static tree
9289 strip_out_static_field_access_decl (node)
9290 tree node;
9292 if (TREE_CODE (node) == COMPOUND_EXPR)
9294 tree op1 = TREE_OPERAND (node, 1);
9295 if (TREE_CODE (op1) == COMPOUND_EXPR)
9297 tree call = TREE_OPERAND (op1, 0);
9298 if (TREE_CODE (call) == CALL_EXPR
9299 && TREE_CODE (TREE_OPERAND (call, 0)) == ADDR_EXPR
9300 && TREE_OPERAND (TREE_OPERAND (call, 0), 0)
9301 == soft_initclass_node)
9302 return TREE_OPERAND (op1, 1);
9304 else if (JDECL_P (op1))
9305 return op1;
9307 return node;
9310 /* 6.5.5.2: Qualified Expression Names */
9312 static int
9313 resolve_qualified_expression_name (wfl, found_decl, where_found, type_found)
9314 tree wfl;
9315 tree *found_decl, *type_found, *where_found;
9317 int from_type = 0; /* Field search initiated from a type */
9318 int from_super = 0, from_cast = 0, from_qualified_this = 0;
9319 int previous_call_static = 0;
9320 int is_static;
9321 tree decl = NULL_TREE, type = NULL_TREE, q;
9322 /* For certain for of inner class instantiation */
9323 tree saved_current, saved_this;
9324 #define RESTORE_THIS_AND_CURRENT_CLASS \
9325 { current_class = saved_current; current_this = saved_this;}
9327 *type_found = *where_found = NULL_TREE;
9329 for (q = EXPR_WFL_QUALIFICATION (wfl); q; q = TREE_CHAIN (q))
9331 tree qual_wfl = QUAL_WFL (q);
9332 tree ret_decl; /* for EH checking */
9333 int location; /* for EH checking */
9335 /* 15.10.1 Field Access Using a Primary */
9336 switch (TREE_CODE (qual_wfl))
9338 case CALL_EXPR:
9339 case NEW_CLASS_EXPR:
9340 /* If the access to the function call is a non static field,
9341 build the code to access it. */
9342 if (JDECL_P (decl) && !FIELD_STATIC (decl))
9344 decl = maybe_access_field (decl, *where_found,
9345 DECL_CONTEXT (decl));
9346 if (decl == error_mark_node)
9347 return 1;
9350 /* And code for the function call */
9351 if (complete_function_arguments (qual_wfl))
9352 return 1;
9354 /* We might have to setup a new current class and a new this
9355 for the search of an inner class, relative to the type of
9356 a expression resolved as `decl'. The current values are
9357 saved and restored shortly after */
9358 saved_current = current_class;
9359 saved_this = current_this;
9360 if (decl
9361 && (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR
9362 || from_qualified_this))
9364 /* If we still have `from_qualified_this', we have the form
9365 <T>.this.f() and we need to build <T>.this */
9366 if (from_qualified_this)
9368 decl = build_access_to_thisn (current_class, type, 0);
9369 decl = java_complete_tree (decl);
9370 type = TREE_TYPE (TREE_TYPE (decl));
9372 current_class = type;
9373 current_this = decl;
9374 from_qualified_this = 0;
9377 if (from_super && TREE_CODE (qual_wfl) == CALL_EXPR)
9378 CALL_USING_SUPER (qual_wfl) = 1;
9379 location = (TREE_CODE (qual_wfl) == CALL_EXPR ?
9380 EXPR_WFL_LINECOL (TREE_OPERAND (qual_wfl, 0)) : 0);
9381 *where_found = patch_method_invocation (qual_wfl, decl, type,
9382 from_super,
9383 &is_static, &ret_decl);
9384 if (*where_found == error_mark_node)
9386 RESTORE_THIS_AND_CURRENT_CLASS;
9387 return 1;
9389 *type_found = type = QUAL_DECL_TYPE (*where_found);
9391 /* If we're creating an inner class instance, check for that
9392 an enclosing instance is in scope */
9393 if (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR
9394 && INNER_ENCLOSING_SCOPE_CHECK (type))
9396 parse_error_context
9397 (qual_wfl, "No enclosing instance for inner class `%s' is in scope%s",
9398 lang_printable_name (type, 0),
9399 (!current_this ? "" :
9400 "; an explicit one must be provided when creating this inner class"));
9401 RESTORE_THIS_AND_CURRENT_CLASS;
9402 return 1;
9405 /* In case we had to change then to resolve a inner class
9406 instantiation using a primary qualified by a `new' */
9407 RESTORE_THIS_AND_CURRENT_CLASS;
9409 /* EH check. No check on access$<n> functions */
9410 if (location
9411 && !OUTER_FIELD_ACCESS_IDENTIFIER_P
9412 (DECL_NAME (current_function_decl)))
9413 check_thrown_exceptions (location, ret_decl);
9415 /* If the previous call was static and this one is too,
9416 build a compound expression to hold the two (because in
9417 that case, previous function calls aren't transported as
9418 forcoming function's argument. */
9419 if (previous_call_static && is_static)
9421 decl = build (COMPOUND_EXPR, type, decl, *where_found);
9422 TREE_SIDE_EFFECTS (decl) = 1;
9424 else
9426 previous_call_static = is_static;
9427 decl = *where_found;
9429 from_type = 0;
9430 continue;
9432 case NEW_ARRAY_EXPR:
9433 case NEW_ANONYMOUS_ARRAY_EXPR:
9434 *where_found = decl = java_complete_tree (qual_wfl);
9435 if (decl == error_mark_node)
9436 return 1;
9437 *type_found = type = QUAL_DECL_TYPE (decl);
9438 continue;
9440 case CONVERT_EXPR:
9441 *where_found = decl = java_complete_tree (qual_wfl);
9442 if (decl == error_mark_node)
9443 return 1;
9444 *type_found = type = QUAL_DECL_TYPE (decl);
9445 from_cast = 1;
9446 continue;
9448 case CONDITIONAL_EXPR:
9449 case STRING_CST:
9450 case MODIFY_EXPR:
9451 *where_found = decl = java_complete_tree (qual_wfl);
9452 if (decl == error_mark_node)
9453 return 1;
9454 *type_found = type = QUAL_DECL_TYPE (decl);
9455 continue;
9457 case ARRAY_REF:
9458 /* If the access to the function call is a non static field,
9459 build the code to access it. */
9460 if (JDECL_P (decl) && !FIELD_STATIC (decl))
9462 decl = maybe_access_field (decl, *where_found, type);
9463 if (decl == error_mark_node)
9464 return 1;
9466 /* And code for the array reference expression */
9467 decl = java_complete_tree (qual_wfl);
9468 if (decl == error_mark_node)
9469 return 1;
9470 type = QUAL_DECL_TYPE (decl);
9471 continue;
9473 case PLUS_EXPR:
9474 if ((decl = java_complete_tree (qual_wfl)) == error_mark_node)
9475 return 1;
9476 if ((type = patch_string (decl)))
9477 decl = type;
9478 *where_found = QUAL_RESOLUTION (q) = decl;
9479 *type_found = type = TREE_TYPE (decl);
9480 break;
9482 case CLASS_LITERAL:
9483 if ((decl = java_complete_tree (qual_wfl)) == error_mark_node)
9484 return 1;
9485 *where_found = QUAL_RESOLUTION (q) = decl;
9486 *type_found = type = TREE_TYPE (decl);
9487 break;
9489 default:
9490 /* Fix for -Wall Just go to the next statement. Don't
9491 continue */
9492 break;
9495 /* If we fall here, we weren't processing a (static) function call. */
9496 previous_call_static = 0;
9498 /* It can be the keyword THIS */
9499 if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION
9500 && EXPR_WFL_NODE (qual_wfl) == this_identifier_node)
9502 if (!current_this)
9504 parse_error_context
9505 (wfl, "Keyword `this' used outside allowed context");
9506 return 1;
9508 if (ctxp->explicit_constructor_p
9509 && type == current_class)
9511 parse_error_context (wfl, "Can't reference `this' before the superclass constructor has been called");
9512 return 1;
9514 /* We have to generate code for intermediate acess */
9515 if (!from_type || TREE_TYPE (TREE_TYPE (current_this)) == type)
9517 *where_found = decl = current_this;
9518 *type_found = type = QUAL_DECL_TYPE (decl);
9520 /* We're trying to access the this from somewhere else. Make sure
9521 it's allowed before doing so. */
9522 else
9524 if (!enclosing_context_p (type, current_class))
9526 char *p = xstrdup (lang_printable_name (type, 0));
9527 parse_error_context (qual_wfl, "Can't use variable `%s.this': type `%s' isn't an outer type of type `%s'",
9528 p, p,
9529 lang_printable_name (current_class, 0));
9530 free (p);
9531 return 1;
9533 from_qualified_this = 1;
9534 /* If there's nothing else after that, we need to
9535 produce something now, otherwise, the section of the
9536 code that needs to produce <T>.this will generate
9537 what is necessary. */
9538 if (!TREE_CHAIN (q))
9540 decl = build_access_to_thisn (current_class, type, 0);
9541 *where_found = decl = java_complete_tree (decl);
9542 *type_found = type = TREE_TYPE (decl);
9546 from_type = 0;
9547 continue;
9550 /* 15.10.2 Accessing Superclass Members using SUPER */
9551 if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION
9552 && EXPR_WFL_NODE (qual_wfl) == super_identifier_node)
9554 tree node;
9555 /* Check on the restricted use of SUPER */
9556 if (METHOD_STATIC (current_function_decl)
9557 || current_class == object_type_node)
9559 parse_error_context
9560 (wfl, "Keyword `super' used outside allowed context");
9561 return 1;
9563 /* Otherwise, treat SUPER as (SUPER_CLASS)THIS */
9564 node = build_cast (EXPR_WFL_LINECOL (qual_wfl),
9565 CLASSTYPE_SUPER (current_class),
9566 build_this (EXPR_WFL_LINECOL (qual_wfl)));
9567 *where_found = decl = java_complete_tree (node);
9568 if (decl == error_mark_node)
9569 return 1;
9570 *type_found = type = QUAL_DECL_TYPE (decl);
9571 from_super = from_type = 1;
9572 continue;
9575 /* 15.13.1: Can't search for field name in packages, so we
9576 assume a variable/class name was meant. */
9577 if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
9579 tree name = resolve_package (wfl, &q);
9580 if (name)
9582 tree list;
9583 *where_found = decl = resolve_no_layout (name, qual_wfl);
9584 /* We want to be absolutely sure that the class is laid
9585 out. We're going to search something inside it. */
9586 *type_found = type = TREE_TYPE (decl);
9587 layout_class (type);
9588 from_type = 1;
9590 /* Fix them all the way down, if any are left. */
9591 if (q)
9593 list = TREE_CHAIN (q);
9594 while (list)
9596 RESOLVE_EXPRESSION_NAME_P (QUAL_WFL (list)) = 1;
9597 RESOLVE_PACKAGE_NAME_P (QUAL_WFL (list)) = 0;
9598 list = TREE_CHAIN (list);
9602 else
9604 if (from_super || from_cast)
9605 parse_error_context
9606 ((from_cast ? qual_wfl : wfl),
9607 "No variable `%s' defined in class `%s'",
9608 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
9609 lang_printable_name (type, 0));
9610 else
9611 parse_error_context
9612 (qual_wfl, "Undefined variable or class name: `%s'",
9613 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)));
9614 return 1;
9618 /* We have a type name. It's been already resolved when the
9619 expression was qualified. */
9620 else if (RESOLVE_TYPE_NAME_P (qual_wfl))
9622 if (!(decl = QUAL_RESOLUTION (q)))
9623 return 1; /* Error reported already */
9625 /* Sneak preview. If next we see a `new', we're facing a
9626 qualification with resulted in a type being selected
9627 instead of a field. Report the error */
9628 if(TREE_CHAIN (q)
9629 && TREE_CODE (TREE_PURPOSE (TREE_CHAIN (q))) == NEW_CLASS_EXPR)
9631 parse_error_context (qual_wfl, "Undefined variable `%s'",
9632 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
9633 return 1;
9636 if (not_accessible_p (TREE_TYPE (decl), decl, type, 0))
9638 parse_error_context
9639 (qual_wfl, "Can't access %s field `%s.%s' from `%s'",
9640 java_accstring_lookup (get_access_flags_from_decl (decl)),
9641 GET_TYPE_NAME (type),
9642 IDENTIFIER_POINTER (DECL_NAME (decl)),
9643 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))));
9644 return 1;
9646 check_deprecation (qual_wfl, decl);
9648 type = TREE_TYPE (decl);
9649 from_type = 1;
9651 /* We resolve and expression name */
9652 else
9654 tree field_decl = NULL_TREE;
9656 /* If there exists an early resolution, use it. That occurs
9657 only once and we know that there are more things to
9658 come. Don't do that when processing something after SUPER
9659 (we need more thing to be put in place below */
9660 if (!from_super && QUAL_RESOLUTION (q))
9662 decl = QUAL_RESOLUTION (q);
9663 if (!type)
9665 if (TREE_CODE (decl) == FIELD_DECL && !FIELD_STATIC (decl))
9667 if (current_this)
9668 *where_found = current_this;
9669 else
9671 static_ref_err (qual_wfl, DECL_NAME (decl),
9672 current_class);
9673 return 1;
9675 if (outer_field_access_p (current_class, decl))
9676 decl = build_outer_field_access (qual_wfl, decl);
9678 else
9680 *where_found = TREE_TYPE (decl);
9681 if (TREE_CODE (*where_found) == POINTER_TYPE)
9682 *where_found = TREE_TYPE (*where_found);
9687 /* We have to search for a field, knowing the type of its
9688 container. The flag FROM_TYPE indicates that we resolved
9689 the last member of the expression as a type name, which
9690 means that for the resolution of this field, we'll look
9691 for other errors than if it was resolved as a member of
9692 an other field. */
9693 else
9695 int is_static;
9696 tree field_decl_type; /* For layout */
9698 if (!from_type && !JREFERENCE_TYPE_P (type))
9700 parse_error_context
9701 (qual_wfl, "Attempt to reference field `%s' in `%s %s'",
9702 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
9703 lang_printable_name (type, 0),
9704 IDENTIFIER_POINTER (DECL_NAME (field_decl)));
9705 return 1;
9708 field_decl = lookup_field_wrapper (type,
9709 EXPR_WFL_NODE (qual_wfl));
9711 /* Maybe what we're trying to access to is an inner
9712 class, only if decl is a TYPE_DECL. */
9713 if (!field_decl && TREE_CODE (decl) == TYPE_DECL)
9715 tree ptr, inner_decl;
9717 BUILD_PTR_FROM_NAME (ptr, EXPR_WFL_NODE (qual_wfl));
9718 inner_decl = resolve_class (decl, ptr, NULL_TREE, qual_wfl);
9719 if (inner_decl)
9721 check_inner_class_access (inner_decl, decl, qual_wfl);
9722 type = TREE_TYPE (inner_decl);
9723 decl = inner_decl;
9724 from_type = 1;
9725 continue;
9729 if (field_decl == NULL_TREE)
9731 parse_error_context
9732 (qual_wfl, "No variable `%s' defined in type `%s'",
9733 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
9734 GET_TYPE_NAME (type));
9735 return 1;
9737 if (field_decl == error_mark_node)
9738 return 1;
9740 /* Layout the type of field_decl, since we may need
9741 it. Don't do primitive types or loaded classes. The
9742 situation of non primitive arrays may not handled
9743 properly here. FIXME */
9744 if (TREE_CODE (TREE_TYPE (field_decl)) == POINTER_TYPE)
9745 field_decl_type = TREE_TYPE (TREE_TYPE (field_decl));
9746 else
9747 field_decl_type = TREE_TYPE (field_decl);
9748 if (!JPRIMITIVE_TYPE_P (field_decl_type)
9749 && !CLASS_LOADED_P (field_decl_type)
9750 && !TYPE_ARRAY_P (field_decl_type))
9751 resolve_and_layout (field_decl_type, NULL_TREE);
9753 /* Check on accessibility here */
9754 if (not_accessible_p (current_class, field_decl,
9755 DECL_CONTEXT (field_decl), from_super))
9757 parse_error_context
9758 (qual_wfl,
9759 "Can't access %s field `%s.%s' from `%s'",
9760 java_accstring_lookup
9761 (get_access_flags_from_decl (field_decl)),
9762 GET_TYPE_NAME (type),
9763 IDENTIFIER_POINTER (DECL_NAME (field_decl)),
9764 IDENTIFIER_POINTER
9765 (DECL_NAME (TYPE_NAME (current_class))));
9766 return 1;
9768 check_deprecation (qual_wfl, field_decl);
9770 /* There are things to check when fields are accessed
9771 from type. There are no restrictions on a static
9772 declaration of the field when it is accessed from an
9773 interface */
9774 is_static = FIELD_STATIC (field_decl);
9775 if (!from_super && from_type
9776 && !TYPE_INTERFACE_P (type)
9777 && !is_static
9778 && (current_function_decl
9779 && METHOD_STATIC (current_function_decl)))
9781 static_ref_err (qual_wfl, EXPR_WFL_NODE (qual_wfl), type);
9782 return 1;
9784 from_cast = from_super = 0;
9786 /* It's an access from a type but it isn't static, we
9787 make it relative to `this'. */
9788 if (!is_static && from_type)
9789 decl = current_this;
9791 /* If we need to generate something to get a proper
9792 handle on what this field is accessed from, do it
9793 now. */
9794 if (!is_static)
9796 decl = maybe_access_field (decl, *where_found, *type_found);
9797 if (decl == error_mark_node)
9798 return 1;
9801 /* We want to keep the location were found it, and the type
9802 we found. */
9803 *where_found = decl;
9804 *type_found = type;
9806 /* Generate the correct expression for field access from
9807 qualified this */
9808 if (from_qualified_this)
9810 field_decl = build_outer_field_access (qual_wfl, field_decl);
9811 from_qualified_this = 0;
9814 /* This is the decl found and eventually the next one to
9815 search from */
9816 decl = field_decl;
9818 from_type = 0;
9819 type = QUAL_DECL_TYPE (decl);
9821 /* Sneak preview. If decl is qualified by a `new', report
9822 the error here to be accurate on the peculiar construct */
9823 if (TREE_CHAIN (q)
9824 && TREE_CODE (TREE_PURPOSE (TREE_CHAIN (q))) == NEW_CLASS_EXPR
9825 && !JREFERENCE_TYPE_P (type))
9827 parse_error_context (qual_wfl, "Attempt to reference field `new' in a `%s'",
9828 lang_printable_name (type, 0));
9829 return 1;
9832 /* `q' might have changed due to a after package resolution
9833 re-qualification */
9834 if (!q)
9835 break;
9837 *found_decl = decl;
9838 return 0;
9841 /* 6.6 Qualified name and access control. Returns 1 if MEMBER (a decl)
9842 can't be accessed from REFERENCE (a record type). If MEMBER
9843 features a protected access, we then use WHERE which, if non null,
9844 holds the type of MEMBER's access that is checked against
9845 6.6.2.1. This function should be used when decl is a field or a
9846 method. */
9848 static int
9849 not_accessible_p (reference, member, where, from_super)
9850 tree reference, member;
9851 tree where;
9852 int from_super;
9854 int access_flag = get_access_flags_from_decl (member);
9856 /* Inner classes are processed by check_inner_class_access */
9857 if (INNER_CLASS_TYPE_P (reference))
9858 return 0;
9860 /* Access always granted for members declared public */
9861 if (access_flag & ACC_PUBLIC)
9862 return 0;
9864 /* Check access on protected members */
9865 if (access_flag & ACC_PROTECTED)
9867 /* Access granted if it occurs from within the package
9868 containing the class in which the protected member is
9869 declared */
9870 if (class_in_current_package (DECL_CONTEXT (member)))
9871 return 0;
9873 /* If accessed with the form `super.member', then access is granted */
9874 if (from_super)
9875 return 0;
9877 /* If where is active, access was made through a
9878 qualifier. Access is granted if the type of the qualifier is
9879 or is a sublass of the type the access made from (6.6.2.1.) */
9880 if (where && !inherits_from_p (reference, where))
9881 return 1;
9883 /* Otherwise, access is granted if occuring from the class where
9884 member is declared or a subclass of it. Find the right
9885 context to perform the check */
9886 if (PURE_INNER_CLASS_TYPE_P (reference))
9888 while (INNER_CLASS_TYPE_P (reference))
9890 if (inherits_from_p (reference, DECL_CONTEXT (member)))
9891 return 0;
9892 reference = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (reference)));
9895 if (inherits_from_p (reference, DECL_CONTEXT (member)))
9896 return 0;
9897 return 1;
9900 /* Check access on private members. Access is granted only if it
9901 occurs from within the class in which it is declared -- that does
9902 it for innerclasses too. */
9903 if (access_flag & ACC_PRIVATE)
9905 if (reference == DECL_CONTEXT (member))
9906 return 0;
9907 if (enclosing_context_p (reference, DECL_CONTEXT (member)))
9908 return 0;
9909 return 1;
9912 /* Default access are permitted only when occuring within the
9913 package in which the type (REFERENCE) is declared. In other words,
9914 REFERENCE is defined in the current package */
9915 if (ctxp->package)
9916 return !class_in_current_package (reference);
9918 /* Otherwise, access is granted */
9919 return 0;
9922 /* Test deprecated decl access. */
9923 static void
9924 check_deprecation (wfl, decl)
9925 tree wfl, decl;
9927 const char *file = DECL_SOURCE_FILE (decl);
9928 /* Complain if the field is deprecated and the file it was defined
9929 in isn't compiled at the same time the file which contains its
9930 use is */
9931 if (DECL_DEPRECATED (decl)
9932 && !IS_A_COMMAND_LINE_FILENAME_P (get_identifier (file)))
9934 char the [20];
9935 switch (TREE_CODE (decl))
9937 case FUNCTION_DECL:
9938 strcpy (the, "method");
9939 break;
9940 case FIELD_DECL:
9941 strcpy (the, "field");
9942 break;
9943 case TYPE_DECL:
9944 strcpy (the, "class");
9945 break;
9946 default:
9947 abort ();
9949 parse_warning_context
9950 (wfl, "The %s `%s' in class `%s' has been deprecated",
9951 the, lang_printable_name (decl, 0),
9952 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl)))));
9956 /* Returns 1 if class was declared in the current package, 0 otherwise */
9958 static int
9959 class_in_current_package (class)
9960 tree class;
9962 static tree cache = NULL_TREE;
9963 int qualified_flag;
9964 tree left;
9966 if (cache == class)
9967 return 1;
9969 qualified_flag = QUALIFIED_P (DECL_NAME (TYPE_NAME (class)));
9971 /* If the current package is empty and the name of CLASS is
9972 qualified, class isn't in the current package. If there is a
9973 current package and the name of the CLASS is not qualified, class
9974 isn't in the current package */
9975 if ((!ctxp->package && qualified_flag) || (ctxp->package && !qualified_flag))
9976 return 0;
9978 /* If there is not package and the name of CLASS isn't qualified,
9979 they belong to the same unnamed package */
9980 if (!ctxp->package && !qualified_flag)
9981 return 1;
9983 /* Compare the left part of the name of CLASS with the package name */
9984 breakdown_qualified (&left, NULL, DECL_NAME (TYPE_NAME (class)));
9985 if (ctxp->package == left)
9987 static int initialized_p;
9988 /* Register CACHE with the garbage collector. */
9989 if (!initialized_p)
9991 ggc_add_tree_root (&cache, 1);
9992 initialized_p = 1;
9995 cache = class;
9996 return 1;
9998 return 0;
10001 /* This function may generate code to access DECL from WHERE. This is
10002 done only if certain conditions meet. */
10004 static tree
10005 maybe_access_field (decl, where, type)
10006 tree decl, where, type;
10008 if (TREE_CODE (decl) == FIELD_DECL && decl != current_this
10009 && !FIELD_STATIC (decl))
10010 decl = build_field_ref (where ? where : current_this,
10011 (type ? type : DECL_CONTEXT (decl)),
10012 DECL_NAME (decl));
10013 return decl;
10016 /* Build a method invocation, by patching PATCH. If non NULL
10017 and according to the situation, PRIMARY and WHERE may be
10018 used. IS_STATIC is set to 1 if the invoked function is static. */
10020 static tree
10021 patch_method_invocation (patch, primary, where, from_super,
10022 is_static, ret_decl)
10023 tree patch, primary, where;
10024 int from_super;
10025 int *is_static;
10026 tree *ret_decl;
10028 tree wfl = TREE_OPERAND (patch, 0);
10029 tree args = TREE_OPERAND (patch, 1);
10030 tree name = EXPR_WFL_NODE (wfl);
10031 tree list;
10032 int is_static_flag = 0;
10033 int is_super_init = 0;
10034 tree this_arg = NULL_TREE;
10035 int is_array_clone_call = 0;
10037 /* Should be overriden if everything goes well. Otherwise, if
10038 something fails, it should keep this value. It stop the
10039 evaluation of a bogus assignment. See java_complete_tree,
10040 MODIFY_EXPR: for the reasons why we sometimes want to keep on
10041 evaluating an assignment */
10042 TREE_TYPE (patch) = error_mark_node;
10044 /* Since lookup functions are messing with line numbers, save the
10045 context now. */
10046 java_parser_context_save_global ();
10048 /* 15.11.1: Compile-Time Step 1: Determine Class or Interface to Search */
10050 /* Resolution of qualified name, excluding constructors */
10051 if (QUALIFIED_P (name) && !CALL_CONSTRUCTOR_P (patch))
10053 tree identifier, identifier_wfl, type, resolved;
10054 /* Extract the last IDENTIFIER of the qualified
10055 expression. This is a wfl and we will use it's location
10056 data during error report. */
10057 identifier_wfl = cut_identifier_in_qualified (wfl);
10058 identifier = EXPR_WFL_NODE (identifier_wfl);
10060 /* Given the context, IDENTIFIER is syntactically qualified
10061 as a MethodName. We need to qualify what's before */
10062 qualify_ambiguous_name (wfl);
10063 resolved = resolve_field_access (wfl, NULL, NULL);
10065 if (resolved == error_mark_node)
10066 PATCH_METHOD_RETURN_ERROR ();
10068 type = GET_SKIP_TYPE (resolved);
10069 resolve_and_layout (type, NULL_TREE);
10071 if (JPRIMITIVE_TYPE_P (type))
10073 parse_error_context
10074 (identifier_wfl,
10075 "Can't invoke a method on primitive type `%s'",
10076 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
10077 PATCH_METHOD_RETURN_ERROR ();
10080 list = lookup_method_invoke (0, identifier_wfl, type, identifier, args);
10081 args = nreverse (args);
10083 /* We're resolving a call from a type */
10084 if (TREE_CODE (resolved) == TYPE_DECL)
10086 if (CLASS_INTERFACE (resolved))
10088 parse_error_context
10089 (identifier_wfl,
10090 "Can't make static reference to method `%s' in interface `%s'",
10091 IDENTIFIER_POINTER (identifier),
10092 IDENTIFIER_POINTER (name));
10093 PATCH_METHOD_RETURN_ERROR ();
10095 if (list && !METHOD_STATIC (list))
10097 char *fct_name = xstrdup (lang_printable_name (list, 0));
10098 parse_error_context
10099 (identifier_wfl,
10100 "Can't make static reference to method `%s %s' in class `%s'",
10101 lang_printable_name (TREE_TYPE (TREE_TYPE (list)), 0),
10102 fct_name, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
10103 free (fct_name);
10104 PATCH_METHOD_RETURN_ERROR ();
10107 else
10108 this_arg = primary = resolved;
10110 if (TYPE_ARRAY_P (type) && identifier == get_identifier ("clone"))
10111 is_array_clone_call = 1;
10113 /* IDENTIFIER_WFL will be used to report any problem further */
10114 wfl = identifier_wfl;
10116 /* Resolution of simple names, names generated after a primary: or
10117 constructors */
10118 else
10120 tree class_to_search = NULL_TREE;
10121 int lc; /* Looking for Constructor */
10123 /* We search constructor in their target class */
10124 if (CALL_CONSTRUCTOR_P (patch))
10126 if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10127 class_to_search = EXPR_WFL_NODE (wfl);
10128 else if (EXPR_WFL_NODE (TREE_OPERAND (patch, 0)) ==
10129 this_identifier_node)
10130 class_to_search = NULL_TREE;
10131 else if (EXPR_WFL_NODE (TREE_OPERAND (patch, 0)) ==
10132 super_identifier_node)
10134 is_super_init = 1;
10135 if (CLASSTYPE_SUPER (current_class))
10136 class_to_search =
10137 DECL_NAME (TYPE_NAME (CLASSTYPE_SUPER (current_class)));
10138 else
10140 parse_error_context (wfl, "Can't invoke super constructor on java.lang.Object");
10141 PATCH_METHOD_RETURN_ERROR ();
10145 /* Class to search is NULL if we're searching the current one */
10146 if (class_to_search)
10148 class_to_search = resolve_and_layout (class_to_search, wfl);
10150 if (!class_to_search)
10152 parse_error_context
10153 (wfl, "Class `%s' not found in type declaration",
10154 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10155 PATCH_METHOD_RETURN_ERROR ();
10158 /* Can't instantiate an abstract class, but we can
10159 invoke it's constructor. It's use within the `new'
10160 context is denied here. */
10161 if (CLASS_ABSTRACT (class_to_search)
10162 && TREE_CODE (patch) == NEW_CLASS_EXPR)
10164 parse_error_context
10165 (wfl, "Class `%s' is an abstract class. It can't be instantiated",
10166 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10167 PATCH_METHOD_RETURN_ERROR ();
10170 class_to_search = TREE_TYPE (class_to_search);
10172 else
10173 class_to_search = current_class;
10174 lc = 1;
10176 /* This is a regular search in the local class, unless an
10177 alternate class is specified. */
10178 else
10180 if (where != NULL_TREE)
10181 class_to_search = where;
10182 else if (QUALIFIED_P (name))
10183 class_to_search = current_class;
10184 else
10186 class_to_search = current_class;
10188 for (;;)
10190 if (has_method (class_to_search, name))
10191 break;
10192 if (! INNER_CLASS_TYPE_P (class_to_search))
10194 parse_error_context (wfl,
10195 "No method named `%s' in scope",
10196 IDENTIFIER_POINTER (name));
10197 PATCH_METHOD_RETURN_ERROR ();
10199 class_to_search
10200 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class_to_search)));
10203 lc = 0;
10206 /* NAME is a simple identifier or comes from a primary. Search
10207 in the class whose declaration contain the method being
10208 invoked. */
10209 resolve_and_layout (class_to_search, NULL_TREE);
10211 list = lookup_method_invoke (lc, wfl, class_to_search, name, args);
10212 /* Don't continue if no method were found, as the next statement
10213 can't be executed then. */
10214 if (!list)
10215 PATCH_METHOD_RETURN_ERROR ();
10217 if (TYPE_ARRAY_P (class_to_search)
10218 && DECL_NAME (list) == get_identifier ("clone"))
10219 is_array_clone_call = 1;
10221 /* Check for static reference if non static methods */
10222 if (check_for_static_method_reference (wfl, patch, list,
10223 class_to_search, primary))
10224 PATCH_METHOD_RETURN_ERROR ();
10226 /* Check for inner classes creation from illegal contexts */
10227 if (lc && (INNER_CLASS_TYPE_P (class_to_search)
10228 && !CLASS_STATIC (TYPE_NAME (class_to_search)))
10229 && INNER_ENCLOSING_SCOPE_CHECK (class_to_search))
10231 parse_error_context
10232 (wfl, "No enclosing instance for inner class `%s' is in scope%s",
10233 lang_printable_name (class_to_search, 0),
10234 (!current_this ? "" :
10235 "; an explicit one must be provided when creating this inner class"));
10236 PATCH_METHOD_RETURN_ERROR ();
10239 /* Non static methods are called with the current object extra
10240 argument. If patch a `new TYPE()', the argument is the value
10241 returned by the object allocator. If method is resolved as a
10242 primary, use the primary otherwise use the current THIS. */
10243 args = nreverse (args);
10244 if (TREE_CODE (patch) != NEW_CLASS_EXPR)
10246 this_arg = primary ? primary : current_this;
10248 /* If we're using an access method, things are different.
10249 There are two familly of cases:
10251 1) We're not generating bytecodes:
10253 - LIST is non static. It's invocation is transformed from
10254 x(a1,...,an) into this$<n>.x(a1,....an).
10255 - LIST is static. It's invocation is transformed from
10256 x(a1,...,an) into TYPE_OF(this$<n>).x(a1,....an)
10258 2) We're generating bytecodes:
10260 - LIST is non static. It's invocation is transformed from
10261 x(a1,....,an) into access$<n>(this$<n>,a1,...,an).
10262 - LIST is static. It's invocation is transformed from
10263 x(a1,....,an) into TYPE_OF(this$<n>).x(a1,....an).
10265 Of course, this$<n> can be abitrary complex, ranging from
10266 this$0 (the immediate outer context) to
10267 access$0(access$0(...(this$0))).
10269 maybe_use_access_method returns a non zero value if the
10270 this_arg has to be moved into the (then generated) stub
10271 argument list. In the meantime, the selected function
10272 might have be replaced by a generated stub. */
10273 if (!primary &&
10274 maybe_use_access_method (is_super_init, &list, &this_arg))
10276 args = tree_cons (NULL_TREE, this_arg, args);
10277 this_arg = NULL_TREE; /* So it doesn't get chained twice */
10282 /* Merge point of all resolution schemes. If we have nothing, this
10283 is an error, already signaled */
10284 if (!list)
10285 PATCH_METHOD_RETURN_ERROR ();
10287 /* Check accessibility, position the is_static flag, build and
10288 return the call */
10289 if (not_accessible_p (DECL_CONTEXT (current_function_decl), list,
10290 (primary ? TREE_TYPE (TREE_TYPE (primary)) :
10291 NULL_TREE), from_super)
10292 /* Calls to clone() on array types are permitted as a special-case. */
10293 && !is_array_clone_call)
10295 const char *fct_name = IDENTIFIER_POINTER (DECL_NAME (list));
10296 const char *access =
10297 java_accstring_lookup (get_access_flags_from_decl (list));
10298 const char *klass =
10299 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (list))));
10300 const char *refklass =
10301 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class)));
10302 const char *what = (DECL_CONSTRUCTOR_P (list)
10303 ? "constructor" : "method");
10304 /* FIXME: WFL yields the wrong message here but I don't know
10305 what else to use. */
10306 parse_error_context (wfl,
10307 "Can't access %s %s `%s.%s' from `%s'",
10308 access, what, klass, fct_name, refklass);
10309 PATCH_METHOD_RETURN_ERROR ();
10311 check_deprecation (wfl, list);
10313 /* If invoking a innerclass constructor, there are hidden parameters
10314 to pass */
10315 if (TREE_CODE (patch) == NEW_CLASS_EXPR
10316 && PURE_INNER_CLASS_TYPE_P (DECL_CONTEXT (list)))
10318 /* And make sure we add the accessed local variables to be saved
10319 in field aliases. */
10320 args = build_alias_initializer_parameter_list
10321 (AIPL_FUNCTION_CTOR_INVOCATION, DECL_CONTEXT (list), args, NULL);
10323 /* Secretly pass the current_this/primary as a second argument */
10324 if (primary || current_this)
10326 tree extra_arg;
10327 tree this_type = (current_this ?
10328 TREE_TYPE (TREE_TYPE (current_this)) : NULL_TREE);
10329 /* Method's (list) enclosing context */
10330 tree mec = DECL_CONTEXT (TYPE_NAME (DECL_CONTEXT (list)));
10331 /* If we have a primary, use it. */
10332 if (primary)
10333 extra_arg = primary;
10334 /* The current `this' is an inner class but isn't a direct
10335 enclosing context for the inner class we're trying to
10336 create. Build an access to the proper enclosing context
10337 and use it. */
10338 else if (current_this && PURE_INNER_CLASS_TYPE_P (this_type)
10339 && this_type != TREE_TYPE (mec))
10342 extra_arg = build_access_to_thisn (current_class,
10343 TREE_TYPE (mec), 0);
10344 extra_arg = java_complete_tree (extra_arg);
10346 /* Otherwise, just use the current `this' as an enclosing
10347 context. */
10348 else
10349 extra_arg = current_this;
10350 args = tree_cons (NULL_TREE, extra_arg, args);
10352 else
10353 args = tree_cons (NULL_TREE, integer_zero_node, args);
10356 /* This handles the situation where a constructor invocation needs
10357 to have an enclosing context passed as a second parameter (the
10358 constructor is one of an inner class. We extract it from the
10359 current function. */
10360 if ((is_super_init ||
10361 (TREE_CODE (patch) == CALL_EXPR && name == this_identifier_node))
10362 && PURE_INNER_CLASS_TYPE_P (DECL_CONTEXT (list)))
10364 tree enclosing_decl = DECL_CONTEXT (TYPE_NAME (current_class));
10365 tree extra_arg;
10367 if (ANONYMOUS_CLASS_P (current_class) || !DECL_CONTEXT (enclosing_decl))
10369 extra_arg = DECL_FUNCTION_BODY (current_function_decl);
10370 extra_arg = TREE_CHAIN (BLOCK_EXPR_DECLS (extra_arg));
10372 else
10374 tree dest = TREE_TYPE (DECL_CONTEXT (enclosing_decl));
10375 extra_arg =
10376 build_access_to_thisn (TREE_TYPE (enclosing_decl), dest, 0);
10377 extra_arg = java_complete_tree (extra_arg);
10379 args = tree_cons (NULL_TREE, extra_arg, args);
10382 is_static_flag = METHOD_STATIC (list);
10383 if (! is_static_flag && this_arg != NULL_TREE)
10384 args = tree_cons (NULL_TREE, this_arg, args);
10386 /* In the context of an explicit constructor invocation, we can't
10387 invoke any method relying on `this'. Exceptions are: we're
10388 invoking a static function, primary exists and is not the current
10389 this, we're creating a new object. */
10390 if (ctxp->explicit_constructor_p
10391 && !is_static_flag
10392 && (!primary || primary == current_this)
10393 && (TREE_CODE (patch) != NEW_CLASS_EXPR))
10395 parse_error_context (wfl, "Can't reference `this' before the superclass constructor has been called");
10396 PATCH_METHOD_RETURN_ERROR ();
10398 java_parser_context_restore_global ();
10399 if (is_static)
10400 *is_static = is_static_flag;
10401 /* Sometimes, we want the decl of the selected method. Such as for
10402 EH checking */
10403 if (ret_decl)
10404 *ret_decl = list;
10405 patch = patch_invoke (patch, list, args);
10407 /* Now is a good time to insert the call to finit$ */
10408 if (is_super_init && CLASS_HAS_FINIT_P (current_class))
10410 tree finit_parms, finit_call;
10412 /* Prepare to pass hidden parameters to finit$, if any. */
10413 finit_parms = build_alias_initializer_parameter_list
10414 (AIPL_FUNCTION_FINIT_INVOCATION, current_class, NULL_TREE, NULL);
10416 finit_call =
10417 build_method_invocation (build_wfl_node (finit_identifier_node),
10418 finit_parms);
10420 /* Generate the code used to initialize fields declared with an
10421 initialization statement and build a compound statement along
10422 with the super constructor invocation. */
10423 patch = build (COMPOUND_EXPR, void_type_node, patch,
10424 java_complete_tree (finit_call));
10425 CAN_COMPLETE_NORMALLY (patch) = 1;
10427 return patch;
10430 /* Check that we're not trying to do a static reference to a method in
10431 non static method. Return 1 if it's the case, 0 otherwise. */
10433 static int
10434 check_for_static_method_reference (wfl, node, method, where, primary)
10435 tree wfl, node, method, where, primary;
10437 if (METHOD_STATIC (current_function_decl)
10438 && !METHOD_STATIC (method) && !primary && !CALL_CONSTRUCTOR_P (node))
10440 char *fct_name = xstrdup (lang_printable_name (method, 0));
10441 parse_error_context
10442 (wfl, "Can't make static reference to method `%s %s' in class `%s'",
10443 lang_printable_name (TREE_TYPE (TREE_TYPE (method)), 0), fct_name,
10444 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (where))));
10445 free (fct_name);
10446 return 1;
10448 return 0;
10451 /* Fix the invocation of *MDECL if necessary in the case of a
10452 invocation from an inner class. *THIS_ARG might be modified
10453 appropriately and an alternative access to *MDECL might be
10454 returned. */
10456 static int
10457 maybe_use_access_method (is_super_init, mdecl, this_arg)
10458 int is_super_init;
10459 tree *mdecl, *this_arg;
10461 tree ctx;
10462 tree md = *mdecl, ta = *this_arg;
10463 int to_return = 0;
10464 int non_static_context = !METHOD_STATIC (md);
10466 if (is_super_init
10467 || DECL_CONTEXT (md) == current_class
10468 || !PURE_INNER_CLASS_TYPE_P (current_class)
10469 || DECL_FINIT_P (md)
10470 || DECL_INSTINIT_P (md))
10471 return 0;
10473 /* If we're calling a method found in an enclosing class, generate
10474 what it takes to retrieve the right this. Don't do that if we're
10475 invoking a static method. Note that if MD's type is unrelated to
10476 CURRENT_CLASS, then the current this can be used. */
10478 if (non_static_context && DECL_CONTEXT (md) != object_type_node)
10480 ctx = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current_class)));
10481 if (inherits_from_p (ctx, DECL_CONTEXT (md)))
10483 ta = build_current_thisn (current_class);
10484 ta = build_wfl_node (ta);
10486 else
10488 tree type = ctx;
10489 while (type)
10491 maybe_build_thisn_access_method (type);
10492 if (inherits_from_p (type, DECL_CONTEXT (md)))
10494 ta = build_access_to_thisn (ctx, type, 0);
10495 break;
10497 type = (DECL_CONTEXT (TYPE_NAME (type)) ?
10498 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))) : NULL_TREE);
10501 ta = java_complete_tree (ta);
10504 /* We might have to use an access method to get to MD. We can
10505 break the method access rule as far as we're not generating
10506 bytecode */
10507 if (METHOD_PRIVATE (md) && flag_emit_class_files)
10509 md = build_outer_method_access_method (md);
10510 to_return = 1;
10513 *mdecl = md;
10514 *this_arg = ta;
10516 /* Returnin a non zero value indicates we were doing a non static
10517 method invokation that is now a static invocation. It will have
10518 callee displace `this' to insert it in the regular argument
10519 list. */
10520 return (non_static_context && to_return);
10523 /* Patch an invoke expression METHOD and ARGS, based on its invocation
10524 mode. */
10526 static tree
10527 patch_invoke (patch, method, args)
10528 tree patch, method, args;
10530 tree dtable, func;
10531 tree original_call, t, ta;
10532 tree check = NULL_TREE;
10534 /* Last step for args: convert build-in types. If we're dealing with
10535 a new TYPE() type call, the first argument to the constructor
10536 isn't found in the incoming argument list, but delivered by
10537 `new' */
10538 t = TYPE_ARG_TYPES (TREE_TYPE (method));
10539 if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10540 t = TREE_CHAIN (t);
10541 for (ta = args; t != end_params_node && ta;
10542 t = TREE_CHAIN (t), ta = TREE_CHAIN (ta))
10543 if (JPRIMITIVE_TYPE_P (TREE_TYPE (TREE_VALUE (ta))) &&
10544 TREE_TYPE (TREE_VALUE (ta)) != TREE_VALUE (t))
10545 TREE_VALUE (ta) = convert (TREE_VALUE (t), TREE_VALUE (ta));
10547 /* Resolve unresolved returned type isses */
10548 t = TREE_TYPE (TREE_TYPE (method));
10549 if (TREE_CODE (t) == POINTER_TYPE && !CLASS_LOADED_P (TREE_TYPE (t)))
10550 resolve_and_layout (TREE_TYPE (t), NULL);
10552 if (flag_emit_class_files || flag_emit_xref)
10553 func = method;
10554 else
10556 tree signature = build_java_signature (TREE_TYPE (method));
10557 switch (invocation_mode (method, CALL_USING_SUPER (patch)))
10559 case INVOKE_VIRTUAL:
10560 dtable = invoke_build_dtable (0, args);
10561 func = build_invokevirtual (dtable, method);
10562 break;
10564 case INVOKE_NONVIRTUAL:
10565 /* If the object for the method call is null, we throw an
10566 exception. We don't do this if the object is the current
10567 method's `this'. In other cases we just rely on an
10568 optimization pass to eliminate redundant checks. */
10569 if (TREE_VALUE (args) != current_this)
10571 /* We use a save_expr here to make sure we only evaluate
10572 the new `self' expression once. */
10573 tree save_arg = save_expr (TREE_VALUE (args));
10574 TREE_VALUE (args) = save_arg;
10575 check = java_check_reference (save_arg, 1);
10577 /* Fall through. */
10579 case INVOKE_SUPER:
10580 case INVOKE_STATIC:
10581 func = build_known_method_ref (method, TREE_TYPE (method),
10582 DECL_CONTEXT (method),
10583 signature, args);
10584 break;
10586 case INVOKE_INTERFACE:
10587 dtable = invoke_build_dtable (1, args);
10588 func = build_invokeinterface (dtable, method);
10589 break;
10591 default:
10592 abort ();
10595 /* Ensure self_type is initialized, (invokestatic). FIXME */
10596 func = build1 (NOP_EXPR, build_pointer_type (TREE_TYPE (method)), func);
10599 TREE_TYPE (patch) = TREE_TYPE (TREE_TYPE (method));
10600 TREE_OPERAND (patch, 0) = func;
10601 TREE_OPERAND (patch, 1) = args;
10602 original_call = patch;
10604 /* We're processing a `new TYPE ()' form. New is called and its
10605 returned value is the first argument to the constructor. We build
10606 a COMPOUND_EXPR and use saved expression so that the overall NEW
10607 expression value is a pointer to a newly created and initialized
10608 class. */
10609 if (TREE_CODE (original_call) == NEW_CLASS_EXPR)
10611 tree class = DECL_CONTEXT (method);
10612 tree c1, saved_new, size, new;
10613 if (flag_emit_class_files || flag_emit_xref)
10615 TREE_TYPE (patch) = build_pointer_type (class);
10616 return patch;
10618 if (!TYPE_SIZE (class))
10619 safe_layout_class (class);
10620 size = size_in_bytes (class);
10621 new = build (CALL_EXPR, promote_type (class),
10622 build_address_of (alloc_object_node),
10623 tree_cons (NULL_TREE, build_class_ref (class),
10624 build_tree_list (NULL_TREE,
10625 size_in_bytes (class))),
10626 NULL_TREE);
10627 saved_new = save_expr (new);
10628 c1 = build_tree_list (NULL_TREE, saved_new);
10629 TREE_CHAIN (c1) = TREE_OPERAND (original_call, 1);
10630 TREE_OPERAND (original_call, 1) = c1;
10631 TREE_SET_CODE (original_call, CALL_EXPR);
10632 patch = build (COMPOUND_EXPR, TREE_TYPE (new), patch, saved_new);
10635 /* If CHECK is set, then we are building a check to see if the object
10636 is NULL. */
10637 if (check != NULL_TREE)
10639 patch = build (COMPOUND_EXPR, TREE_TYPE (patch), check, patch);
10640 TREE_SIDE_EFFECTS (patch) = 1;
10643 /* In order to be able to modify PATCH later, we SAVE_EXPR it and
10644 put it as the first expression of a COMPOUND_EXPR. The second
10645 expression being an empty statement to be later patched if
10646 necessary. We remember a TREE_LIST (the PURPOSE is the method,
10647 the VALUE is the compound) in a hashtable and return a
10648 COMPOUND_EXPR built so that the result of the evaluation of the
10649 original PATCH node is returned. */
10650 if (STATIC_CLASS_INIT_OPT_P ()
10651 && current_function_decl && METHOD_STATIC (method))
10653 tree list;
10654 tree fndecl = current_function_decl;
10655 tree save = save_expr (patch);
10656 tree type = TREE_TYPE (patch);
10658 patch = build (COMPOUND_EXPR, type, save, empty_stmt_node);
10659 list = build_tree_list (method, patch);
10661 hash_lookup (&DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (fndecl),
10662 (const hash_table_key) list, TRUE, NULL);
10664 patch = build (COMPOUND_EXPR, type, patch, save);
10667 return patch;
10670 static int
10671 invocation_mode (method, super)
10672 tree method;
10673 int super;
10675 int access = get_access_flags_from_decl (method);
10677 if (super)
10678 return INVOKE_SUPER;
10680 if (access & ACC_STATIC)
10681 return INVOKE_STATIC;
10683 /* We have to look for a constructor before we handle nonvirtual
10684 calls; otherwise the constructor will look nonvirtual. */
10685 if (DECL_CONSTRUCTOR_P (method))
10686 return INVOKE_STATIC;
10688 if (access & ACC_FINAL || access & ACC_PRIVATE)
10689 return INVOKE_NONVIRTUAL;
10691 if (CLASS_FINAL (TYPE_NAME (DECL_CONTEXT (method))))
10692 return INVOKE_NONVIRTUAL;
10694 if (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))))
10695 return INVOKE_INTERFACE;
10697 return INVOKE_VIRTUAL;
10700 /* Retrieve a refined list of matching methods. It covers the step
10701 15.11.2 (Compile-Time Step 2) */
10703 static tree
10704 lookup_method_invoke (lc, cl, class, name, arg_list)
10705 int lc;
10706 tree cl;
10707 tree class, name, arg_list;
10709 tree atl = end_params_node; /* Arg Type List */
10710 tree method, signature, list, node;
10711 const char *candidates; /* Used for error report */
10712 char *dup;
10714 /* Fix the arguments */
10715 for (node = arg_list; node; node = TREE_CHAIN (node))
10717 tree current_arg = TREE_TYPE (TREE_VALUE (node));
10718 /* Non primitive type may have to be resolved */
10719 if (!JPRIMITIVE_TYPE_P (current_arg))
10720 resolve_and_layout (current_arg, NULL_TREE);
10721 /* And promoted */
10722 if (TREE_CODE (current_arg) == RECORD_TYPE)
10723 current_arg = promote_type (current_arg);
10724 atl = tree_cons (NULL_TREE, current_arg, atl);
10727 /* Presto. If we're dealing with an anonymous class and a
10728 constructor call, generate the right constructor now, since we
10729 know the arguments' types. */
10731 if (lc && ANONYMOUS_CLASS_P (class))
10732 craft_constructor (TYPE_NAME (class), atl);
10734 /* Find all candidates and then refine the list, searching for the
10735 most specific method. */
10736 list = find_applicable_accessible_methods_list (lc, class, name, atl);
10737 list = find_most_specific_methods_list (list);
10738 if (list && !TREE_CHAIN (list))
10739 return TREE_VALUE (list);
10741 /* Issue an error. List candidates if any. Candidates are listed
10742 only if accessible (non accessible methods may end-up here for
10743 the sake of a better error report). */
10744 candidates = NULL;
10745 if (list)
10747 tree current;
10748 obstack_grow (&temporary_obstack, ". Candidates are:\n", 18);
10749 for (current = list; current; current = TREE_CHAIN (current))
10751 tree cm = TREE_VALUE (current);
10752 char string [4096];
10753 if (!cm || not_accessible_p (class, cm, NULL_TREE, 0))
10754 continue;
10755 sprintf
10756 (string, " `%s' in `%s'%s",
10757 get_printable_method_name (cm),
10758 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (cm)))),
10759 (TREE_CHAIN (current) ? "\n" : ""));
10760 obstack_grow (&temporary_obstack, string, strlen (string));
10762 obstack_1grow (&temporary_obstack, '\0');
10763 candidates = obstack_finish (&temporary_obstack);
10765 /* Issue the error message */
10766 method = make_node (FUNCTION_TYPE);
10767 TYPE_ARG_TYPES (method) = atl;
10768 signature = build_java_argument_signature (method);
10769 dup = xstrdup (lang_printable_name (class, 0));
10770 parse_error_context (cl, "Can't find %s `%s(%s)' in type `%s'%s",
10771 (lc ? "constructor" : "method"),
10772 (lc ? dup : IDENTIFIER_POINTER (name)),
10773 IDENTIFIER_POINTER (signature), dup,
10774 (candidates ? candidates : ""));
10775 free (dup);
10776 return NULL_TREE;
10779 /* 15.11.2.1: Find Methods that are Applicable and Accessible. LC is 1
10780 when we're looking for a constructor. */
10782 static tree
10783 find_applicable_accessible_methods_list (lc, class, name, arglist)
10784 int lc;
10785 tree class, name, arglist;
10787 static struct hash_table t, *searched_classes = NULL;
10788 static int search_not_done = 0;
10789 tree list = NULL_TREE, all_list = NULL_TREE;
10791 /* Check the hash table to determine if this class has been searched
10792 already. */
10793 if (searched_classes)
10795 if (hash_lookup (searched_classes,
10796 (const hash_table_key) class, FALSE, NULL))
10797 return NULL;
10799 else
10801 hash_table_init (&t, hash_newfunc, java_hash_hash_tree_node,
10802 java_hash_compare_tree_node);
10803 searched_classes = &t;
10806 search_not_done++;
10807 hash_lookup (searched_classes,
10808 (const hash_table_key) class, TRUE, NULL);
10810 if (!CLASS_LOADED_P (class) && !CLASS_FROM_SOURCE_P (class))
10812 load_class (class, 1);
10813 safe_layout_class (class);
10816 /* Search interfaces */
10817 if (TREE_CODE (TYPE_NAME (class)) == TYPE_DECL
10818 && CLASS_INTERFACE (TYPE_NAME (class)))
10820 int i, n;
10821 tree basetype_vec = TYPE_BINFO_BASETYPES (class);
10822 search_applicable_methods_list (lc, TYPE_METHODS (class),
10823 name, arglist, &list, &all_list);
10824 n = TREE_VEC_LENGTH (basetype_vec);
10825 for (i = 1; i < n; i++)
10827 tree t = BINFO_TYPE (TREE_VEC_ELT (basetype_vec, i));
10828 tree rlist;
10830 rlist = find_applicable_accessible_methods_list (lc, t, name,
10831 arglist);
10832 list = chainon (rlist, list);
10835 /* Search classes */
10836 else
10838 search_applicable_methods_list (lc, TYPE_METHODS (class),
10839 name, arglist, &list, &all_list);
10841 /* When looking finit$, class$ or instinit$, we turn LC to 1 so
10842 that we only search in class. Note that we should have found
10843 something at this point. */
10844 if (ID_FINIT_P (name) || ID_CLASSDOLLAR_P (name) || ID_INSTINIT_P (name))
10846 lc = 1;
10847 if (!list)
10848 abort ();
10851 /* We must search all interfaces of this class */
10852 if (!lc)
10854 tree basetype_vec = TYPE_BINFO_BASETYPES (class);
10855 int n = TREE_VEC_LENGTH (basetype_vec), i;
10856 for (i = 1; i < n; i++)
10858 tree t = BINFO_TYPE (TREE_VEC_ELT (basetype_vec, i));
10859 if (t != object_type_node)
10861 tree rlist
10862 = find_applicable_accessible_methods_list (lc, t,
10863 name, arglist);
10864 list = chainon (rlist, list);
10869 /* Search superclass */
10870 if (!lc && CLASSTYPE_SUPER (class) != NULL_TREE)
10872 tree rlist;
10873 class = CLASSTYPE_SUPER (class);
10874 rlist = find_applicable_accessible_methods_list (lc, class,
10875 name, arglist);
10876 list = chainon (rlist, list);
10880 search_not_done--;
10882 /* We're done. Reset the searched classes list and finally search
10883 java.lang.Object if it wasn't searched already. */
10884 if (!search_not_done)
10886 if (!lc
10887 && TYPE_METHODS (object_type_node)
10888 && !hash_lookup (searched_classes,
10889 (const hash_table_key) object_type_node,
10890 FALSE, NULL))
10892 search_applicable_methods_list (lc,
10893 TYPE_METHODS (object_type_node),
10894 name, arglist, &list, &all_list);
10896 hash_table_free (searched_classes);
10897 searched_classes = NULL;
10900 /* Either return the list obtained or all selected (but
10901 inaccessible) methods for better error report. */
10902 return (!list ? all_list : list);
10905 /* Effectively search for the appropriate method in method */
10907 static void
10908 search_applicable_methods_list (lc, method, name, arglist, list, all_list)
10909 int lc;
10910 tree method, name, arglist;
10911 tree *list, *all_list;
10913 for (; method; method = TREE_CHAIN (method))
10915 /* When dealing with constructor, stop here, otherwise search
10916 other classes */
10917 if (lc && !DECL_CONSTRUCTOR_P (method))
10918 continue;
10919 else if (!lc && (DECL_CONSTRUCTOR_P (method)
10920 || (DECL_NAME (method) != name)))
10921 continue;
10923 if (argument_types_convertible (method, arglist))
10925 /* Retain accessible methods only */
10926 if (!not_accessible_p (DECL_CONTEXT (current_function_decl),
10927 method, NULL_TREE, 0))
10928 *list = tree_cons (NULL_TREE, method, *list);
10929 else
10930 /* Also retain all selected method here */
10931 *all_list = tree_cons (NULL_TREE, method, *list);
10936 /* 15.11.2.2 Choose the Most Specific Method */
10938 static tree
10939 find_most_specific_methods_list (list)
10940 tree list;
10942 int max = 0;
10943 int abstract, candidates;
10944 tree current, new_list = NULL_TREE;
10945 for (current = list; current; current = TREE_CHAIN (current))
10947 tree method;
10948 DECL_SPECIFIC_COUNT (TREE_VALUE (current)) = 0;
10950 for (method = list; method; method = TREE_CHAIN (method))
10952 tree method_v, current_v;
10953 /* Don't test a method against itself */
10954 if (method == current)
10955 continue;
10957 method_v = TREE_VALUE (method);
10958 current_v = TREE_VALUE (current);
10960 /* Compare arguments and location where methods where declared */
10961 if (argument_types_convertible (method_v, current_v))
10963 if (valid_method_invocation_conversion_p
10964 (DECL_CONTEXT (method_v), DECL_CONTEXT (current_v))
10965 || (INNER_CLASS_TYPE_P (DECL_CONTEXT (current_v))
10966 && enclosing_context_p (DECL_CONTEXT (method_v),
10967 DECL_CONTEXT (current_v))))
10969 int v = (DECL_SPECIFIC_COUNT (current_v) +=
10970 (INNER_CLASS_TYPE_P (DECL_CONTEXT (current_v)) ? 2 : 1));
10971 max = (v > max ? v : max);
10977 /* Review the list and select the maximally specific methods */
10978 for (current = list, abstract = -1, candidates = -1;
10979 current; current = TREE_CHAIN (current))
10980 if (DECL_SPECIFIC_COUNT (TREE_VALUE (current)) == max)
10982 new_list = tree_cons (NULL_TREE, TREE_VALUE (current), new_list);
10983 abstract += (METHOD_ABSTRACT (TREE_VALUE (current)) ? 1 : 0);
10984 candidates++;
10987 /* If we have several and they're all abstract, just pick the
10988 closest one. */
10989 if (candidates > 0 && (candidates == abstract))
10991 new_list = nreverse (new_list);
10992 TREE_CHAIN (new_list) = NULL_TREE;
10995 /* We have several (we couldn't find a most specific), all but one
10996 are abstract, we pick the only non abstract one. */
10997 if (candidates > 0 && (candidates == abstract+1))
10999 for (current = new_list; current; current = TREE_CHAIN (current))
11000 if (!METHOD_ABSTRACT (TREE_VALUE (current)))
11002 TREE_CHAIN (current) = NULL_TREE;
11003 new_list = current;
11007 /* If we can't find one, lower expectations and try to gather multiple
11008 maximally specific methods */
11009 while (!new_list && max)
11011 while (--max > 0)
11013 if (DECL_SPECIFIC_COUNT (TREE_VALUE (current)) == max)
11014 new_list = tree_cons (NULL_TREE, TREE_VALUE (current), new_list);
11018 return new_list;
11021 /* Make sure that the type of each M2_OR_ARGLIST arguments can be
11022 converted by method invocation conversion (5.3) to the type of the
11023 corresponding parameter of M1. Implementation expects M2_OR_ARGLIST
11024 to change less often than M1. */
11026 static int
11027 argument_types_convertible (m1, m2_or_arglist)
11028 tree m1, m2_or_arglist;
11030 static tree m2_arg_value = NULL_TREE;
11031 static tree m2_arg_cache = NULL_TREE;
11032 static int initialized_p;
11034 register tree m1_arg, m2_arg;
11036 /* Register M2_ARG_VALUE and M2_ARG_CACHE with the garbage
11037 collector. */
11038 if (!initialized_p)
11040 ggc_add_tree_root (&m2_arg_value, 1);
11041 ggc_add_tree_root (&m2_arg_cache, 1);
11042 initialized_p = 1;
11045 SKIP_THIS_AND_ARTIFICIAL_PARMS (m1_arg, m1)
11047 if (m2_arg_value == m2_or_arglist)
11048 m2_arg = m2_arg_cache;
11049 else
11051 /* M2_OR_ARGLIST can be a function DECL or a raw list of
11052 argument types */
11053 if (m2_or_arglist && TREE_CODE (m2_or_arglist) == FUNCTION_DECL)
11055 m2_arg = TYPE_ARG_TYPES (TREE_TYPE (m2_or_arglist));
11056 if (!METHOD_STATIC (m2_or_arglist))
11057 m2_arg = TREE_CHAIN (m2_arg);
11059 else
11060 m2_arg = m2_or_arglist;
11062 m2_arg_value = m2_or_arglist;
11063 m2_arg_cache = m2_arg;
11066 while (m1_arg != end_params_node && m2_arg != end_params_node)
11068 resolve_and_layout (TREE_VALUE (m1_arg), NULL_TREE);
11069 if (!valid_method_invocation_conversion_p (TREE_VALUE (m1_arg),
11070 TREE_VALUE (m2_arg)))
11071 break;
11072 m1_arg = TREE_CHAIN (m1_arg);
11073 m2_arg = TREE_CHAIN (m2_arg);
11075 return m1_arg == end_params_node && m2_arg == end_params_node;
11078 /* Qualification routines */
11080 static void
11081 qualify_ambiguous_name (id)
11082 tree id;
11084 tree qual, qual_wfl, name = NULL_TREE, decl, ptr_type = NULL_TREE,
11085 saved_current_class;
11086 int again, super_found = 0, this_found = 0, new_array_found = 0;
11087 int code;
11089 /* We first qualify the first element, then derive qualification of
11090 others based on the first one. If the first element is qualified
11091 by a resolution (field or type), this resolution is stored in the
11092 QUAL_RESOLUTION of the qual element being examined. We need to
11093 save the current_class since the use of SUPER might change the
11094 its value. */
11095 saved_current_class = current_class;
11096 qual = EXPR_WFL_QUALIFICATION (id);
11097 do {
11099 /* Simple qualified expression feature a qual_wfl that is a
11100 WFL. Expression derived from a primary feature more complicated
11101 things like a CALL_EXPR. Expression from primary need to be
11102 worked out to extract the part on which the qualification will
11103 take place. */
11104 qual_wfl = QUAL_WFL (qual);
11105 switch (TREE_CODE (qual_wfl))
11107 case CALL_EXPR:
11108 qual_wfl = TREE_OPERAND (qual_wfl, 0);
11109 if (TREE_CODE (qual_wfl) != EXPR_WITH_FILE_LOCATION)
11111 qual = EXPR_WFL_QUALIFICATION (qual_wfl);
11112 qual_wfl = QUAL_WFL (qual);
11114 break;
11115 case NEW_ARRAY_EXPR:
11116 case NEW_ANONYMOUS_ARRAY_EXPR:
11117 qual = TREE_CHAIN (qual);
11118 again = new_array_found = 1;
11119 continue;
11120 case CONVERT_EXPR:
11121 break;
11122 case NEW_CLASS_EXPR:
11123 qual_wfl = TREE_OPERAND (qual_wfl, 0);
11124 break;
11125 case ARRAY_REF:
11126 while (TREE_CODE (qual_wfl) == ARRAY_REF)
11127 qual_wfl = TREE_OPERAND (qual_wfl, 0);
11128 break;
11129 case STRING_CST:
11130 qual = TREE_CHAIN (qual);
11131 qual_wfl = QUAL_WFL (qual);
11132 break;
11133 case CLASS_LITERAL:
11134 qual = TREE_CHAIN (qual);
11135 qual_wfl = QUAL_WFL (qual);
11136 break;
11137 default:
11138 /* Fix for -Wall. Just break doing nothing */
11139 break;
11142 ptr_type = current_class;
11143 again = 0;
11144 code = TREE_CODE (qual_wfl);
11146 /* Pos evaluation: non WFL leading expression nodes */
11147 if (code == CONVERT_EXPR
11148 && TREE_CODE (TREE_TYPE (qual_wfl)) == EXPR_WITH_FILE_LOCATION)
11149 name = EXPR_WFL_NODE (TREE_TYPE (qual_wfl));
11151 else if (code == INTEGER_CST)
11152 name = qual_wfl;
11154 else if (code == CONVERT_EXPR &&
11155 TREE_CODE (TREE_OPERAND (qual_wfl, 0)) == EXPR_WITH_FILE_LOCATION)
11156 name = TREE_OPERAND (qual_wfl, 0);
11158 else if ((code == ARRAY_REF || code == CALL_EXPR || code == MODIFY_EXPR) &&
11159 TREE_CODE (TREE_OPERAND (qual_wfl, 0)) == EXPR_WITH_FILE_LOCATION)
11160 name = EXPR_WFL_NODE (TREE_OPERAND (qual_wfl, 0));
11162 else if (code == TREE_LIST)
11163 name = EXPR_WFL_NODE (TREE_PURPOSE (qual_wfl));
11165 else if (code == STRING_CST || code == CONDITIONAL_EXPR
11166 || code == PLUS_EXPR)
11168 qual = TREE_CHAIN (qual);
11169 qual_wfl = QUAL_WFL (qual);
11170 again = 1;
11172 else
11174 name = EXPR_WFL_NODE (qual_wfl);
11175 if (!name)
11177 qual = EXPR_WFL_QUALIFICATION (qual_wfl);
11178 again = 1;
11182 /* If we have a THIS (from a primary), we set the context accordingly */
11183 if (name == this_identifier_node)
11185 /* This isn't really elegant. One more added irregularity
11186 before I start using COMPONENT_REF (hopefully very soon.) */
11187 if (TREE_CODE (TREE_PURPOSE (qual)) == ARRAY_REF
11188 && TREE_CODE (TREE_OPERAND (TREE_PURPOSE (qual), 0)) ==
11189 EXPR_WITH_FILE_LOCATION
11190 && EXPR_WFL_NODE (TREE_OPERAND (TREE_PURPOSE (qual), 0)) ==
11191 this_identifier_node)
11193 qual = TREE_OPERAND (TREE_PURPOSE (qual), 0);
11194 qual = EXPR_WFL_QUALIFICATION (qual);
11196 qual = TREE_CHAIN (qual);
11197 qual_wfl = QUAL_WFL (qual);
11198 if (TREE_CODE (qual_wfl) == CALL_EXPR)
11199 again = 1;
11200 else if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION)
11201 name = EXPR_WFL_NODE (qual_wfl);
11202 else if (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR)
11203 name = TREE_OPERAND (qual_wfl, 0);
11204 this_found = 1;
11206 /* If we have a SUPER, we set the context accordingly */
11207 if (name == super_identifier_node)
11209 current_class = CLASSTYPE_SUPER (ptr_type);
11210 /* Check that there is such a thing as a super class. If not,
11211 return. The error will be caught later on, during the
11212 resolution */
11213 if (!current_class)
11215 current_class = saved_current_class;
11216 return;
11218 qual = TREE_CHAIN (qual);
11219 /* Do one more interation to set things up */
11220 super_found = again = 1;
11222 } while (again);
11224 /* If name appears within the scope of a local variable declaration
11225 or parameter declaration, then it is an expression name. We don't
11226 carry this test out if we're in the context of the use of SUPER
11227 or THIS */
11228 if (!this_found && !super_found
11229 && TREE_CODE (name) != STRING_CST && TREE_CODE (name) != INTEGER_CST
11230 && (decl = IDENTIFIER_LOCAL_VALUE (name)))
11232 RESOLVE_EXPRESSION_NAME_P (qual_wfl) = 1;
11233 QUAL_RESOLUTION (qual) = decl;
11236 /* If within the class/interface NAME was found to be used there
11237 exists a (possibly inherited) field named NAME, then this is an
11238 expression name. If we saw a NEW_ARRAY_EXPR before and want to
11239 address length, it is OK. */
11240 else if ((decl = lookup_field_wrapper (ptr_type, name))
11241 || name == length_identifier_node)
11243 RESOLVE_EXPRESSION_NAME_P (qual_wfl) = 1;
11244 QUAL_RESOLUTION (qual) = (new_array_found ? NULL_TREE : decl);
11247 /* We reclassify NAME as yielding to a type name resolution if:
11248 - NAME is a class/interface declared within the compilation
11249 unit containing NAME,
11250 - NAME is imported via a single-type-import declaration,
11251 - NAME is declared in an another compilation unit of the package
11252 of the compilation unit containing NAME,
11253 - NAME is declared by exactly on type-import-on-demand declaration
11254 of the compilation unit containing NAME.
11255 - NAME is actually a STRING_CST.
11256 This can't happen if the expression was qualified by `this.' */
11257 else if (! this_found &&
11258 (TREE_CODE (name) == STRING_CST ||
11259 TREE_CODE (name) == INTEGER_CST ||
11260 (decl = resolve_and_layout (name, NULL_TREE))))
11262 RESOLVE_TYPE_NAME_P (qual_wfl) = 1;
11263 QUAL_RESOLUTION (qual) = decl;
11266 /* Method call, array references and cast are expression name */
11267 else if (TREE_CODE (QUAL_WFL (qual)) == CALL_EXPR
11268 || TREE_CODE (QUAL_WFL (qual)) == ARRAY_REF
11269 || TREE_CODE (QUAL_WFL (qual)) == CONVERT_EXPR
11270 || TREE_CODE (QUAL_WFL (qual)) == MODIFY_EXPR)
11271 RESOLVE_EXPRESSION_NAME_P (qual_wfl) = 1;
11273 /* Check here that NAME isn't declared by more than one
11274 type-import-on-demand declaration of the compilation unit
11275 containing NAME. FIXME */
11277 /* Otherwise, NAME is reclassified as a package name */
11278 else
11279 RESOLVE_PACKAGE_NAME_P (qual_wfl) = 1;
11281 /* Propagate the qualification accross other components of the
11282 qualified name */
11283 for (qual = TREE_CHAIN (qual); qual;
11284 qual_wfl = QUAL_WFL (qual), qual = TREE_CHAIN (qual))
11286 if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
11287 RESOLVE_PACKAGE_NAME_P (QUAL_WFL (qual)) = 1;
11288 else
11289 RESOLVE_EXPRESSION_NAME_P (QUAL_WFL (qual)) = 1;
11292 /* Store the global qualification for the ambiguous part of ID back
11293 into ID fields */
11294 if (RESOLVE_EXPRESSION_NAME_P (qual_wfl))
11295 RESOLVE_EXPRESSION_NAME_P (id) = 1;
11296 else if (RESOLVE_TYPE_NAME_P (qual_wfl))
11297 RESOLVE_TYPE_NAME_P (id) = 1;
11298 else if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
11299 RESOLVE_PACKAGE_NAME_P (id) = 1;
11301 /* Restore the current class */
11302 current_class = saved_current_class;
11305 static int
11306 breakdown_qualified (left, right, source)
11307 tree *left, *right, source;
11309 char *p, *base;
11310 int l = IDENTIFIER_LENGTH (source);
11312 base = alloca (l + 1);
11313 memcpy (base, IDENTIFIER_POINTER (source), l + 1);
11315 /* Breakdown NAME into REMAINDER . IDENTIFIER */
11316 p = base + l - 1;
11317 while (*p != '.' && p != base)
11318 p--;
11320 /* We didn't find a '.'. Return an error */
11321 if (p == base)
11322 return 1;
11324 *p = '\0';
11325 if (right)
11326 *right = get_identifier (p+1);
11327 *left = get_identifier (base);
11329 return 0;
11332 /* Return TRUE if two classes are from the same package. */
11334 static int
11335 in_same_package (name1, name2)
11336 tree name1, name2;
11338 tree tmp;
11339 tree pkg1;
11340 tree pkg2;
11342 if (TREE_CODE (name1) == TYPE_DECL)
11343 name1 = DECL_NAME (name1);
11344 if (TREE_CODE (name2) == TYPE_DECL)
11345 name2 = DECL_NAME (name2);
11347 if (QUALIFIED_P (name1) != QUALIFIED_P (name2))
11348 /* One in empty package. */
11349 return 0;
11351 if (QUALIFIED_P (name1) == 0 && QUALIFIED_P (name2) == 0)
11352 /* Both in empty package. */
11353 return 1;
11355 breakdown_qualified (&pkg1, &tmp, name1);
11356 breakdown_qualified (&pkg2, &tmp, name2);
11358 return (pkg1 == pkg2);
11361 /* Patch tree nodes in a function body. When a BLOCK is found, push
11362 local variable decls if present.
11363 Same as java_complete_lhs, but does resolve static finals to values. */
11365 static tree
11366 java_complete_tree (node)
11367 tree node;
11369 node = java_complete_lhs (node);
11370 if (JDECL_P (node) && CLASS_FINAL_VARIABLE_P (node)
11371 && DECL_INITIAL (node) != NULL_TREE
11372 && !flag_emit_xref)
11374 tree value = DECL_INITIAL (node);
11375 DECL_INITIAL (node) = NULL_TREE;
11376 value = fold_constant_for_init (value, node);
11377 DECL_INITIAL (node) = value;
11378 if (value != NULL_TREE)
11380 /* fold_constant_for_init sometimes widen the original type
11381 of the constant (i.e. byte to int.) It's not desirable,
11382 especially if NODE is a function argument. */
11383 if (TREE_CODE (value) == INTEGER_CST
11384 && TREE_TYPE (node) != TREE_TYPE (value))
11385 return convert (TREE_TYPE (node), value);
11386 else
11387 return value;
11389 else
11390 DECL_FIELD_FINAL_IUD (node) = 0;
11392 return node;
11395 static tree
11396 java_stabilize_reference (node)
11397 tree node;
11399 if (TREE_CODE (node) == COMPOUND_EXPR)
11401 tree op0 = TREE_OPERAND (node, 0);
11402 tree op1 = TREE_OPERAND (node, 1);
11403 TREE_OPERAND (node, 0) = save_expr (op0);
11404 TREE_OPERAND (node, 1) = java_stabilize_reference (op1);
11405 return node;
11407 return stabilize_reference (node);
11410 /* Patch tree nodes in a function body. When a BLOCK is found, push
11411 local variable decls if present.
11412 Same as java_complete_tree, but does not resolve static finals to values. */
11414 static tree
11415 java_complete_lhs (node)
11416 tree node;
11418 tree nn, cn, wfl_op1, wfl_op2, wfl_op3;
11419 int flag;
11421 /* CONVERT_EXPR always has its type set, even though it needs to be
11422 worked out. */
11423 if (TREE_TYPE (node) && TREE_CODE (node) != CONVERT_EXPR)
11424 return node;
11426 /* The switch block implements cases processing container nodes
11427 first. Contained nodes are always written back. Leaves come
11428 next and return a value. */
11429 switch (TREE_CODE (node))
11431 case BLOCK:
11433 /* 1- Block section.
11434 Set the local values on decl names so we can identify them
11435 faster when they're referenced. At that stage, identifiers
11436 are legal so we don't check for declaration errors. */
11437 for (cn = BLOCK_EXPR_DECLS (node); cn; cn = TREE_CHAIN (cn))
11439 DECL_CONTEXT (cn) = current_function_decl;
11440 IDENTIFIER_LOCAL_VALUE (DECL_NAME (cn)) = cn;
11442 if (BLOCK_EXPR_BODY (node) == NULL_TREE)
11443 CAN_COMPLETE_NORMALLY (node) = 1;
11444 else
11446 tree stmt = BLOCK_EXPR_BODY (node);
11447 tree *ptr;
11448 int error_seen = 0;
11449 if (TREE_CODE (stmt) == COMPOUND_EXPR)
11451 /* Re-order from (((A; B); C); ...; Z) to
11452 (A; (B; (C ; (...; Z)))).
11453 This makes it easier to scan the statements left-to-right
11454 without using recursion (which might overflow the stack
11455 if the block has many statements. */
11456 for (;;)
11458 tree left = TREE_OPERAND (stmt, 0);
11459 if (TREE_CODE (left) != COMPOUND_EXPR)
11460 break;
11461 TREE_OPERAND (stmt, 0) = TREE_OPERAND (left, 1);
11462 TREE_OPERAND (left, 1) = stmt;
11463 stmt = left;
11465 BLOCK_EXPR_BODY (node) = stmt;
11468 /* Now do the actual complete, without deep recursion for
11469 long blocks. */
11470 ptr = &BLOCK_EXPR_BODY (node);
11471 while (TREE_CODE (*ptr) == COMPOUND_EXPR
11472 && TREE_OPERAND (*ptr, 1) != empty_stmt_node)
11474 tree cur = java_complete_tree (TREE_OPERAND (*ptr, 0));
11475 tree *next = &TREE_OPERAND (*ptr, 1);
11476 TREE_OPERAND (*ptr, 0) = cur;
11477 if (cur == empty_stmt_node)
11479 /* Optimization; makes it easier to detect empty bodies.
11480 Most useful for <clinit> with all-constant initializer. */
11481 *ptr = *next;
11482 continue;
11484 if (TREE_CODE (cur) == ERROR_MARK)
11485 error_seen++;
11486 else if (! CAN_COMPLETE_NORMALLY (cur))
11488 wfl_op2 = *next;
11489 for (;;)
11491 if (TREE_CODE (wfl_op2) == BLOCK)
11492 wfl_op2 = BLOCK_EXPR_BODY (wfl_op2);
11493 else if (TREE_CODE (wfl_op2) == COMPOUND_EXPR)
11494 wfl_op2 = TREE_OPERAND (wfl_op2, 0);
11495 else
11496 break;
11498 if (TREE_CODE (wfl_op2) != CASE_EXPR
11499 && TREE_CODE (wfl_op2) != DEFAULT_EXPR)
11500 unreachable_stmt_error (*ptr);
11502 ptr = next;
11504 *ptr = java_complete_tree (*ptr);
11506 if (TREE_CODE (*ptr) == ERROR_MARK || error_seen > 0)
11507 return error_mark_node;
11508 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (*ptr);
11510 /* Turn local bindings to null */
11511 for (cn = BLOCK_EXPR_DECLS (node); cn; cn = TREE_CHAIN (cn))
11512 IDENTIFIER_LOCAL_VALUE (DECL_NAME (cn)) = NULL_TREE;
11514 TREE_TYPE (node) = void_type_node;
11515 break;
11517 /* 2- They are expressions but ultimately deal with statements */
11519 case THROW_EXPR:
11520 wfl_op1 = TREE_OPERAND (node, 0);
11521 COMPLETE_CHECK_OP_0 (node);
11522 /* 14.19 A throw statement cannot complete normally. */
11523 CAN_COMPLETE_NORMALLY (node) = 0;
11524 return patch_throw_statement (node, wfl_op1);
11526 case SYNCHRONIZED_EXPR:
11527 wfl_op1 = TREE_OPERAND (node, 0);
11528 return patch_synchronized_statement (node, wfl_op1);
11530 case TRY_EXPR:
11531 return patch_try_statement (node);
11533 case TRY_FINALLY_EXPR:
11534 COMPLETE_CHECK_OP_0 (node);
11535 COMPLETE_CHECK_OP_1 (node);
11536 if (TREE_OPERAND (node, 0) == empty_stmt_node)
11537 return TREE_OPERAND (node, 1);
11538 if (TREE_OPERAND (node, 1) == empty_stmt_node)
11539 return TREE_OPERAND (node, 0);
11540 CAN_COMPLETE_NORMALLY (node)
11541 = (CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0))
11542 && CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1)));
11543 TREE_TYPE (node) = TREE_TYPE (TREE_OPERAND (node, 0));
11544 return node;
11546 case CLEANUP_POINT_EXPR:
11547 COMPLETE_CHECK_OP_0 (node);
11548 TREE_TYPE (node) = void_type_node;
11549 CAN_COMPLETE_NORMALLY (node) =
11550 CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0));
11551 return node;
11553 case WITH_CLEANUP_EXPR:
11554 COMPLETE_CHECK_OP_0 (node);
11555 COMPLETE_CHECK_OP_1 (node);
11556 CAN_COMPLETE_NORMALLY (node) =
11557 CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0));
11558 TREE_TYPE (node) = void_type_node;
11559 return node;
11561 case LABELED_BLOCK_EXPR:
11562 PUSH_LABELED_BLOCK (node);
11563 if (LABELED_BLOCK_BODY (node))
11564 COMPLETE_CHECK_OP_1 (node);
11565 TREE_TYPE (node) = void_type_node;
11566 POP_LABELED_BLOCK ();
11568 if (LABELED_BLOCK_BODY (node) == empty_stmt_node)
11570 LABELED_BLOCK_BODY (node) = NULL_TREE;
11571 CAN_COMPLETE_NORMALLY (node) = 1;
11573 else if (CAN_COMPLETE_NORMALLY (LABELED_BLOCK_BODY (node)))
11574 CAN_COMPLETE_NORMALLY (node) = 1;
11575 return node;
11577 case EXIT_BLOCK_EXPR:
11578 /* We don't complete operand 1, because it's the return value of
11579 the EXIT_BLOCK_EXPR which doesn't exist it Java */
11580 return patch_bc_statement (node);
11582 case CASE_EXPR:
11583 cn = java_complete_tree (TREE_OPERAND (node, 0));
11584 if (cn == error_mark_node)
11585 return cn;
11587 /* First, the case expression must be constant. Values of final
11588 fields are accepted. */
11589 cn = fold (cn);
11590 if ((TREE_CODE (cn) == COMPOUND_EXPR || TREE_CODE (cn) == COMPONENT_REF)
11591 && JDECL_P (TREE_OPERAND (cn, 1))
11592 && FIELD_FINAL (TREE_OPERAND (cn, 1))
11593 && DECL_INITIAL (TREE_OPERAND (cn, 1)))
11595 cn = fold_constant_for_init (DECL_INITIAL (TREE_OPERAND (cn, 1)),
11596 TREE_OPERAND (cn, 1));
11599 if (!TREE_CONSTANT (cn) && !flag_emit_xref)
11601 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11602 parse_error_context (node, "Constant expression required");
11603 return error_mark_node;
11606 nn = ctxp->current_loop;
11608 /* It must be assignable to the type of the switch expression. */
11609 if (!try_builtin_assignconv (NULL_TREE,
11610 TREE_TYPE (TREE_OPERAND (nn, 0)), cn))
11612 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11613 parse_error_context
11614 (wfl_operator,
11615 "Incompatible type for case. Can't convert `%s' to `int'",
11616 lang_printable_name (TREE_TYPE (cn), 0));
11617 return error_mark_node;
11620 cn = fold (convert (int_type_node, cn));
11621 TREE_CONSTANT_OVERFLOW (cn) = 0;
11622 CAN_COMPLETE_NORMALLY (cn) = 1;
11624 /* Multiple instance of a case label bearing the same
11625 value is checked during code generation. The case
11626 expression is allright so far. */
11627 if (TREE_CODE (cn) == VAR_DECL)
11628 cn = DECL_INITIAL (cn);
11629 TREE_OPERAND (node, 0) = cn;
11630 TREE_TYPE (node) = void_type_node;
11631 CAN_COMPLETE_NORMALLY (node) = 1;
11632 TREE_SIDE_EFFECTS (node) = 1;
11633 break;
11635 case DEFAULT_EXPR:
11636 nn = ctxp->current_loop;
11637 /* Only one default label is allowed per switch statement */
11638 if (SWITCH_HAS_DEFAULT (nn))
11640 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11641 parse_error_context (wfl_operator,
11642 "Duplicate case label: `default'");
11643 return error_mark_node;
11645 else
11646 SWITCH_HAS_DEFAULT (nn) = 1;
11647 TREE_TYPE (node) = void_type_node;
11648 TREE_SIDE_EFFECTS (node) = 1;
11649 CAN_COMPLETE_NORMALLY (node) = 1;
11650 break;
11652 case SWITCH_EXPR:
11653 case LOOP_EXPR:
11654 PUSH_LOOP (node);
11655 /* Check whether the loop was enclosed in a labeled
11656 statement. If not, create one, insert the loop in it and
11657 return the node */
11658 nn = patch_loop_statement (node);
11660 /* Anyways, walk the body of the loop */
11661 if (TREE_CODE (node) == LOOP_EXPR)
11662 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11663 /* Switch statement: walk the switch expression and the cases */
11664 else
11665 node = patch_switch_statement (node);
11667 if (node == error_mark_node || TREE_OPERAND (node, 0) == error_mark_node)
11668 nn = error_mark_node;
11669 else
11671 TREE_TYPE (nn) = TREE_TYPE (node) = void_type_node;
11672 /* If we returned something different, that's because we
11673 inserted a label. Pop the label too. */
11674 if (nn != node)
11676 if (CAN_COMPLETE_NORMALLY (node))
11677 CAN_COMPLETE_NORMALLY (nn) = 1;
11678 POP_LABELED_BLOCK ();
11681 POP_LOOP ();
11682 return nn;
11684 case EXIT_EXPR:
11685 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11686 return patch_exit_expr (node);
11688 case COND_EXPR:
11689 /* Condition */
11690 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11691 if (TREE_OPERAND (node, 0) == error_mark_node)
11692 return error_mark_node;
11693 /* then-else branches */
11694 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
11695 if (TREE_OPERAND (node, 1) == error_mark_node)
11696 return error_mark_node;
11697 TREE_OPERAND (node, 2) = java_complete_tree (TREE_OPERAND (node, 2));
11698 if (TREE_OPERAND (node, 2) == error_mark_node)
11699 return error_mark_node;
11700 return patch_if_else_statement (node);
11701 break;
11703 case CONDITIONAL_EXPR:
11704 /* Condition */
11705 wfl_op1 = TREE_OPERAND (node, 0);
11706 COMPLETE_CHECK_OP_0 (node);
11707 wfl_op2 = TREE_OPERAND (node, 1);
11708 COMPLETE_CHECK_OP_1 (node);
11709 wfl_op3 = TREE_OPERAND (node, 2);
11710 COMPLETE_CHECK_OP_2 (node);
11711 return patch_conditional_expr (node, wfl_op1, wfl_op2);
11713 /* 3- Expression section */
11714 case COMPOUND_EXPR:
11715 wfl_op2 = TREE_OPERAND (node, 1);
11716 TREE_OPERAND (node, 0) = nn =
11717 java_complete_tree (TREE_OPERAND (node, 0));
11718 if (wfl_op2 == empty_stmt_node)
11719 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (nn);
11720 else
11722 if (! CAN_COMPLETE_NORMALLY (nn) && TREE_CODE (nn) != ERROR_MARK)
11724 /* An unreachable condition in a do-while statement
11725 is *not* (technically) an unreachable statement. */
11726 nn = wfl_op2;
11727 if (TREE_CODE (nn) == EXPR_WITH_FILE_LOCATION)
11728 nn = EXPR_WFL_NODE (nn);
11729 if (TREE_CODE (nn) != EXIT_EXPR)
11731 SET_WFL_OPERATOR (wfl_operator, node, wfl_op2);
11732 parse_error_context (wfl_operator, "Unreachable statement");
11735 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
11736 if (TREE_OPERAND (node, 1) == error_mark_node)
11737 return error_mark_node;
11738 CAN_COMPLETE_NORMALLY (node)
11739 = CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1));
11741 TREE_TYPE (node) = TREE_TYPE (TREE_OPERAND (node, 1));
11742 break;
11744 case RETURN_EXPR:
11745 /* CAN_COMPLETE_NORMALLY (node) = 0; */
11746 return patch_return (node);
11748 case EXPR_WITH_FILE_LOCATION:
11749 if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
11750 || TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
11752 tree wfl = node;
11753 node = resolve_expression_name (node, NULL);
11754 if (node == error_mark_node)
11755 return node;
11756 /* Keep line number information somewhere were it doesn't
11757 disrupt the completion process. */
11758 if (flag_emit_xref && TREE_CODE (node) != CALL_EXPR)
11760 EXPR_WFL_NODE (wfl) = TREE_OPERAND (node, 1);
11761 TREE_OPERAND (node, 1) = wfl;
11763 CAN_COMPLETE_NORMALLY (node) = 1;
11765 else
11767 tree body;
11768 int save_lineno = lineno;
11769 lineno = EXPR_WFL_LINENO (node);
11770 body = java_complete_tree (EXPR_WFL_NODE (node));
11771 lineno = save_lineno;
11772 EXPR_WFL_NODE (node) = body;
11773 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (body);
11774 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (body);
11775 if (body == empty_stmt_node || TREE_CONSTANT (body))
11777 /* Makes it easier to constant fold, detect empty bodies. */
11778 return body;
11780 if (body == error_mark_node)
11782 /* Its important for the evaluation of assignment that
11783 this mark on the TREE_TYPE is propagated. */
11784 TREE_TYPE (node) = error_mark_node;
11785 return error_mark_node;
11787 else
11788 TREE_TYPE (node) = TREE_TYPE (EXPR_WFL_NODE (node));
11791 break;
11793 case NEW_ARRAY_EXPR:
11794 /* Patch all the dimensions */
11795 flag = 0;
11796 for (cn = TREE_OPERAND (node, 1); cn; cn = TREE_CHAIN (cn))
11798 int location = EXPR_WFL_LINECOL (TREE_VALUE (cn));
11799 tree dim = convert (int_type_node,
11800 java_complete_tree (TREE_VALUE (cn)));
11801 if (dim == error_mark_node)
11803 flag = 1;
11804 continue;
11806 else
11808 TREE_VALUE (cn) = dim;
11809 /* Setup the location of the current dimension, for
11810 later error report. */
11811 TREE_PURPOSE (cn) =
11812 build_expr_wfl (NULL_TREE, input_filename, 0, 0);
11813 EXPR_WFL_LINECOL (TREE_PURPOSE (cn)) = location;
11816 /* They complete the array creation expression, if no errors
11817 were found. */
11818 CAN_COMPLETE_NORMALLY (node) = 1;
11819 return (flag ? error_mark_node
11820 : force_evaluation_order (patch_newarray (node)));
11822 case NEW_ANONYMOUS_ARRAY_EXPR:
11823 /* Create the array type if necessary. */
11824 if (ANONYMOUS_ARRAY_DIMS_SIG (node))
11826 tree type = ANONYMOUS_ARRAY_BASE_TYPE (node);
11827 if (!(type = resolve_type_during_patch (type)))
11828 return error_mark_node;
11829 type = build_array_from_name (type, NULL_TREE,
11830 ANONYMOUS_ARRAY_DIMS_SIG (node), NULL);
11831 ANONYMOUS_ARRAY_BASE_TYPE (node) = build_pointer_type (type);
11833 node = patch_new_array_init (ANONYMOUS_ARRAY_BASE_TYPE (node),
11834 ANONYMOUS_ARRAY_INITIALIZER (node));
11835 if (node == error_mark_node)
11836 return error_mark_node;
11837 CAN_COMPLETE_NORMALLY (node) = 1;
11838 return node;
11840 case NEW_CLASS_EXPR:
11841 case CALL_EXPR:
11842 /* Complete function's argument(s) first */
11843 if (complete_function_arguments (node))
11844 return error_mark_node;
11845 else
11847 tree decl, wfl = TREE_OPERAND (node, 0);
11848 int in_this = CALL_THIS_CONSTRUCTOR_P (node);
11849 int from_super = (EXPR_WFL_NODE (TREE_OPERAND (node, 0)) ==
11850 super_identifier_node);
11852 node = patch_method_invocation (node, NULL_TREE, NULL_TREE,
11853 from_super, 0, &decl);
11854 if (node == error_mark_node)
11855 return error_mark_node;
11857 check_thrown_exceptions (EXPR_WFL_LINECOL (node), decl);
11858 /* If we call this(...), register signature and positions */
11859 if (in_this)
11860 DECL_CONSTRUCTOR_CALLS (current_function_decl) =
11861 tree_cons (wfl, decl,
11862 DECL_CONSTRUCTOR_CALLS (current_function_decl));
11863 CAN_COMPLETE_NORMALLY (node) = 1;
11864 return force_evaluation_order (node);
11867 case MODIFY_EXPR:
11868 /* Save potential wfls */
11869 wfl_op1 = TREE_OPERAND (node, 0);
11870 TREE_OPERAND (node, 0) = nn = java_complete_lhs (wfl_op1);
11872 if (MODIFY_EXPR_FROM_INITIALIZATION_P (node)
11873 && TREE_CODE (nn) == VAR_DECL && TREE_STATIC (nn)
11874 && DECL_INITIAL (nn) != NULL_TREE)
11876 tree value;
11878 value = fold_constant_for_init (nn, nn);
11880 if (value != NULL_TREE)
11882 tree type = TREE_TYPE (value);
11883 if (JPRIMITIVE_TYPE_P (type) ||
11884 (type == string_ptr_type_node && ! flag_emit_class_files))
11885 return empty_stmt_node;
11887 if (! flag_emit_class_files)
11888 DECL_INITIAL (nn) = NULL_TREE;
11889 if (CLASS_FINAL_VARIABLE_P (nn))
11890 DECL_FIELD_FINAL_IUD (nn) = 0;
11892 wfl_op2 = TREE_OPERAND (node, 1);
11894 if (TREE_OPERAND (node, 0) == error_mark_node)
11895 return error_mark_node;
11897 flag = COMPOUND_ASSIGN_P (wfl_op2);
11898 if (flag)
11900 /* This might break when accessing outer field from inner
11901 class. TESTME, FIXME */
11902 tree lvalue = java_stabilize_reference (TREE_OPERAND (node, 0));
11904 /* Hand stabilize the lhs on both places */
11905 TREE_OPERAND (node, 0) = lvalue;
11906 TREE_OPERAND (TREE_OPERAND (node, 1), 0) =
11907 (flag_emit_class_files ? lvalue : save_expr (lvalue));
11909 /* 15.25.2.a: Left hand is not an array access. FIXME */
11910 /* Now complete the RHS. We write it back later on. */
11911 nn = java_complete_tree (TREE_OPERAND (node, 1));
11913 if ((cn = patch_string (nn)))
11914 nn = cn;
11916 /* The last part of the rewrite for E1 op= E2 is to have
11917 E1 = (T)(E1 op E2), with T being the type of E1. */
11918 nn = java_complete_tree (build_cast (EXPR_WFL_LINECOL (wfl_op2),
11919 TREE_TYPE (lvalue), nn));
11921 /* If the assignment is compound and has reference type,
11922 then ensure the LHS has type String and nothing else. */
11923 if (JREFERENCE_TYPE_P (TREE_TYPE (lvalue))
11924 && ! JSTRING_TYPE_P (TREE_TYPE (lvalue)))
11925 parse_error_context (wfl_op2,
11926 "Incompatible type for `+='. Can't convert `%s' to `java.lang.String'",
11927 lang_printable_name (TREE_TYPE (lvalue), 0));
11929 /* 15.25.2.b: Left hand is an array access. FIXME */
11932 /* If we're about to patch a NEW_ARRAY_INIT, we call a special
11933 function to complete this RHS. Note that a NEW_ARRAY_INIT
11934 might have been already fully expanded if created as a result
11935 of processing an anonymous array initializer. We avoid doing
11936 the operation twice by testing whether the node already bears
11937 a type. */
11938 else if (TREE_CODE (wfl_op2) == NEW_ARRAY_INIT && !TREE_TYPE (wfl_op2))
11939 nn = patch_new_array_init (TREE_TYPE (TREE_OPERAND (node, 0)),
11940 TREE_OPERAND (node, 1));
11941 /* Otherwise we simply complete the RHS */
11942 else
11943 nn = java_complete_tree (TREE_OPERAND (node, 1));
11945 if (nn == error_mark_node)
11946 return error_mark_node;
11948 /* Write back the RHS as we evaluated it. */
11949 TREE_OPERAND (node, 1) = nn;
11951 /* In case we're handling = with a String as a RHS, we need to
11952 produce a String out of the RHS (it might still be a
11953 STRING_CST or a StringBuffer at this stage */
11954 if ((nn = patch_string (TREE_OPERAND (node, 1))))
11955 TREE_OPERAND (node, 1) = nn;
11957 if ((nn = outer_field_access_fix (wfl_op1, TREE_OPERAND (node, 0),
11958 TREE_OPERAND (node, 1))))
11960 /* We return error_mark_node if outer_field_access_fix
11961 detects we write into a final. */
11962 if (nn == error_mark_node)
11963 return error_mark_node;
11964 node = nn;
11966 else
11968 node = patch_assignment (node, wfl_op1, wfl_op2);
11969 /* Reorganize the tree if necessary. */
11970 if (flag && (!JREFERENCE_TYPE_P (TREE_TYPE (node))
11971 || JSTRING_P (TREE_TYPE (node))))
11972 node = java_refold (node);
11975 CAN_COMPLETE_NORMALLY (node) = 1;
11976 return node;
11978 case MULT_EXPR:
11979 case PLUS_EXPR:
11980 case MINUS_EXPR:
11981 case LSHIFT_EXPR:
11982 case RSHIFT_EXPR:
11983 case URSHIFT_EXPR:
11984 case BIT_AND_EXPR:
11985 case BIT_XOR_EXPR:
11986 case BIT_IOR_EXPR:
11987 case TRUNC_MOD_EXPR:
11988 case TRUNC_DIV_EXPR:
11989 case RDIV_EXPR:
11990 case TRUTH_ANDIF_EXPR:
11991 case TRUTH_ORIF_EXPR:
11992 case EQ_EXPR:
11993 case NE_EXPR:
11994 case GT_EXPR:
11995 case GE_EXPR:
11996 case LT_EXPR:
11997 case LE_EXPR:
11998 /* Operands 0 and 1 are WFL in certain cases only. patch_binop
11999 knows how to handle those cases. */
12000 wfl_op1 = TREE_OPERAND (node, 0);
12001 wfl_op2 = TREE_OPERAND (node, 1);
12003 CAN_COMPLETE_NORMALLY (node) = 1;
12004 /* Don't complete string nodes if dealing with the PLUS operand. */
12005 if (TREE_CODE (node) != PLUS_EXPR || !JSTRING_P (wfl_op1))
12007 nn = java_complete_tree (wfl_op1);
12008 if (nn == error_mark_node)
12009 return error_mark_node;
12011 TREE_OPERAND (node, 0) = nn;
12013 if (TREE_CODE (node) != PLUS_EXPR || !JSTRING_P (wfl_op2))
12015 nn = java_complete_tree (wfl_op2);
12016 if (nn == error_mark_node)
12017 return error_mark_node;
12019 TREE_OPERAND (node, 1) = nn;
12021 return force_evaluation_order (patch_binop (node, wfl_op1, wfl_op2));
12023 case INSTANCEOF_EXPR:
12024 wfl_op1 = TREE_OPERAND (node, 0);
12025 COMPLETE_CHECK_OP_0 (node);
12026 if (flag_emit_xref)
12028 TREE_TYPE (node) = boolean_type_node;
12029 return node;
12031 return patch_binop (node, wfl_op1, TREE_OPERAND (node, 1));
12033 case UNARY_PLUS_EXPR:
12034 case NEGATE_EXPR:
12035 case TRUTH_NOT_EXPR:
12036 case BIT_NOT_EXPR:
12037 case PREDECREMENT_EXPR:
12038 case PREINCREMENT_EXPR:
12039 case POSTDECREMENT_EXPR:
12040 case POSTINCREMENT_EXPR:
12041 case CONVERT_EXPR:
12042 /* There are cases were wfl_op1 is a WFL. patch_unaryop knows
12043 how to handle those cases. */
12044 wfl_op1 = TREE_OPERAND (node, 0);
12045 CAN_COMPLETE_NORMALLY (node) = 1;
12046 TREE_OPERAND (node, 0) = java_complete_tree (wfl_op1);
12047 if (TREE_OPERAND (node, 0) == error_mark_node)
12048 return error_mark_node;
12049 node = patch_unaryop (node, wfl_op1);
12050 CAN_COMPLETE_NORMALLY (node) = 1;
12051 break;
12053 case ARRAY_REF:
12054 /* There are cases were wfl_op1 is a WFL. patch_array_ref knows
12055 how to handle those cases. */
12056 wfl_op1 = TREE_OPERAND (node, 0);
12057 TREE_OPERAND (node, 0) = java_complete_tree (wfl_op1);
12058 if (TREE_OPERAND (node, 0) == error_mark_node)
12059 return error_mark_node;
12060 if (!flag_emit_class_files && !flag_emit_xref)
12061 TREE_OPERAND (node, 0) = save_expr (TREE_OPERAND (node, 0));
12062 /* The same applies to wfl_op2 */
12063 wfl_op2 = TREE_OPERAND (node, 1);
12064 TREE_OPERAND (node, 1) = java_complete_tree (wfl_op2);
12065 if (TREE_OPERAND (node, 1) == error_mark_node)
12066 return error_mark_node;
12067 if (!flag_emit_class_files && !flag_emit_xref)
12068 TREE_OPERAND (node, 1) = save_expr (TREE_OPERAND (node, 1));
12069 return patch_array_ref (node);
12071 case RECORD_TYPE:
12072 return node;;
12074 case COMPONENT_REF:
12075 /* The first step in the re-write of qualified name handling. FIXME.
12076 So far, this is only to support PRIMTYPE.class -> PRIMCLASS.TYPE. */
12077 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
12078 if (TREE_CODE (TREE_OPERAND (node, 0)) == RECORD_TYPE)
12080 tree name = TREE_OPERAND (node, 1);
12081 tree field = lookup_field_wrapper (TREE_OPERAND (node, 0), name);
12082 if (field == NULL_TREE)
12084 error ("missing static field `%s'", IDENTIFIER_POINTER (name));
12085 return error_mark_node;
12087 if (! FIELD_STATIC (field))
12089 error ("not a static field `%s'", IDENTIFIER_POINTER (name));
12090 return error_mark_node;
12092 return field;
12094 else
12095 abort ();
12096 break;
12098 case THIS_EXPR:
12099 /* Can't use THIS in a static environment */
12100 if (!current_this)
12102 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12103 parse_error_context (wfl_operator,
12104 "Keyword `this' used outside allowed context");
12105 TREE_TYPE (node) = error_mark_node;
12106 return error_mark_node;
12108 if (ctxp->explicit_constructor_p)
12110 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12111 parse_error_context
12112 (wfl_operator, "Can't reference `this' or `super' before the superclass constructor has been called");
12113 TREE_TYPE (node) = error_mark_node;
12114 return error_mark_node;
12116 return current_this;
12118 case CLASS_LITERAL:
12119 CAN_COMPLETE_NORMALLY (node) = 1;
12120 node = patch_incomplete_class_ref (node);
12121 if (node == error_mark_node)
12122 return error_mark_node;
12123 break;
12125 default:
12126 CAN_COMPLETE_NORMALLY (node) = 1;
12127 /* Ok: may be we have a STRING_CST or a crafted `StringBuffer'
12128 and it's time to turn it into the appropriate String object */
12129 if ((nn = patch_string (node)))
12130 node = nn;
12131 else
12132 internal_error ("No case for %s", tree_code_name [TREE_CODE (node)]);
12134 return node;
12137 /* Complete function call's argument. Return a non zero value is an
12138 error was found. */
12140 static int
12141 complete_function_arguments (node)
12142 tree node;
12144 int flag = 0;
12145 tree cn;
12147 ctxp->explicit_constructor_p += (CALL_EXPLICIT_CONSTRUCTOR_P (node) ? 1 : 0);
12148 for (cn = TREE_OPERAND (node, 1); cn; cn = TREE_CHAIN (cn))
12150 tree wfl = TREE_VALUE (cn), parm, temp;
12151 parm = java_complete_tree (wfl);
12153 if (parm == error_mark_node)
12155 flag = 1;
12156 continue;
12158 /* If have a string literal that we haven't transformed yet or a
12159 crafted string buffer, as a result of use of the the String
12160 `+' operator. Build `parm.toString()' and expand it. */
12161 if ((temp = patch_string (parm)))
12162 parm = temp;
12163 /* Inline PRIMTYPE.TYPE read access */
12164 parm = maybe_build_primttype_type_ref (parm, wfl);
12166 TREE_VALUE (cn) = parm;
12168 ctxp->explicit_constructor_p -= (CALL_EXPLICIT_CONSTRUCTOR_P (node) ? 1 : 0);
12169 return flag;
12172 /* Sometimes (for loops and variable initialized during their
12173 declaration), we want to wrap a statement around a WFL and turn it
12174 debugable. */
12176 static tree
12177 build_debugable_stmt (location, stmt)
12178 int location;
12179 tree stmt;
12181 if (TREE_CODE (stmt) != EXPR_WITH_FILE_LOCATION)
12183 stmt = build_expr_wfl (stmt, input_filename, 0, 0);
12184 EXPR_WFL_LINECOL (stmt) = location;
12186 JAVA_MAYBE_GENERATE_DEBUG_INFO (stmt);
12187 return stmt;
12190 static tree
12191 build_expr_block (body, decls)
12192 tree body, decls;
12194 tree node = make_node (BLOCK);
12195 BLOCK_EXPR_DECLS (node) = decls;
12196 BLOCK_EXPR_BODY (node) = body;
12197 if (body)
12198 TREE_TYPE (node) = TREE_TYPE (body);
12199 TREE_SIDE_EFFECTS (node) = 1;
12200 return node;
12203 /* Create a new function block and link it approriately to current
12204 function block chain */
12206 static tree
12207 enter_block ()
12209 tree b = build_expr_block (NULL_TREE, NULL_TREE);
12211 /* Link block B supercontext to the previous block. The current
12212 function DECL is used as supercontext when enter_a_block is called
12213 for the first time for a given function. The current function body
12214 (DECL_FUNCTION_BODY) is set to be block B. */
12216 tree fndecl = current_function_decl;
12218 if (!fndecl) {
12219 BLOCK_SUPERCONTEXT (b) = current_static_block;
12220 current_static_block = b;
12223 else if (!DECL_FUNCTION_BODY (fndecl))
12225 BLOCK_SUPERCONTEXT (b) = fndecl;
12226 DECL_FUNCTION_BODY (fndecl) = b;
12228 else
12230 BLOCK_SUPERCONTEXT (b) = DECL_FUNCTION_BODY (fndecl);
12231 DECL_FUNCTION_BODY (fndecl) = b;
12233 return b;
12236 /* Exit a block by changing the current function body
12237 (DECL_FUNCTION_BODY) to the current block super context, only if
12238 the block being exited isn't the method's top level one. */
12240 static tree
12241 exit_block ()
12243 tree b;
12244 if (current_function_decl)
12246 b = DECL_FUNCTION_BODY (current_function_decl);
12247 if (BLOCK_SUPERCONTEXT (b) != current_function_decl)
12248 DECL_FUNCTION_BODY (current_function_decl) = BLOCK_SUPERCONTEXT (b);
12250 else
12252 b = current_static_block;
12254 if (BLOCK_SUPERCONTEXT (b))
12255 current_static_block = BLOCK_SUPERCONTEXT (b);
12257 return b;
12260 /* Lookup for NAME in the nested function's blocks, all the way up to
12261 the current toplevel one. It complies with Java's local variable
12262 scoping rules. */
12264 static tree
12265 lookup_name_in_blocks (name)
12266 tree name;
12268 tree b = GET_CURRENT_BLOCK (current_function_decl);
12270 while (b != current_function_decl)
12272 tree current;
12274 /* Paranoid sanity check. To be removed */
12275 if (TREE_CODE (b) != BLOCK)
12276 abort ();
12278 for (current = BLOCK_EXPR_DECLS (b); current;
12279 current = TREE_CHAIN (current))
12280 if (DECL_NAME (current) == name)
12281 return current;
12282 b = BLOCK_SUPERCONTEXT (b);
12284 return NULL_TREE;
12287 static void
12288 maybe_absorb_scoping_blocks ()
12290 while (BLOCK_IS_IMPLICIT (GET_CURRENT_BLOCK (current_function_decl)))
12292 tree b = exit_block ();
12293 java_method_add_stmt (current_function_decl, b);
12294 SOURCE_FRONTEND_DEBUG (("Absorbing scoping block at line %d", lineno));
12299 /* This section of the source is reserved to build_* functions that
12300 are building incomplete tree nodes and the patch_* functions that
12301 are completing them. */
12303 /* Wrap a non WFL node around a WFL. */
12305 static tree
12306 build_wfl_wrap (node, location)
12307 tree node;
12308 int location;
12310 tree wfl, node_to_insert = node;
12312 /* We want to process THIS . xxx symbolicaly, to keep it consistent
12313 with the way we're processing SUPER. A THIS from a primary as a
12314 different form than a SUPER. Turn THIS into something symbolic */
12315 if (TREE_CODE (node) == THIS_EXPR)
12316 node_to_insert = wfl = build_wfl_node (this_identifier_node);
12317 else
12318 wfl = build_expr_wfl (NULL_TREE, ctxp->filename, 0, 0);
12320 EXPR_WFL_LINECOL (wfl) = location;
12321 EXPR_WFL_QUALIFICATION (wfl) = build_tree_list (node_to_insert, NULL_TREE);
12322 return wfl;
12325 /* Build a super() constructor invocation. Returns empty_stmt_node if
12326 we're currently dealing with the class java.lang.Object. */
12328 static tree
12329 build_super_invocation (mdecl)
12330 tree mdecl;
12332 if (DECL_CONTEXT (mdecl) == object_type_node)
12333 return empty_stmt_node;
12334 else
12336 tree super_wfl = build_wfl_node (super_identifier_node);
12337 tree a = NULL_TREE, t;
12338 /* If we're dealing with an anonymous class, pass the arguments
12339 of the crafted constructor along. */
12340 if (ANONYMOUS_CLASS_P (DECL_CONTEXT (mdecl)))
12342 SKIP_THIS_AND_ARTIFICIAL_PARMS (t, mdecl);
12343 for (; t != end_params_node; t = TREE_CHAIN (t))
12344 a = tree_cons (NULL_TREE, build_wfl_node (TREE_PURPOSE (t)), a);
12346 return build_method_invocation (super_wfl, a);
12350 /* Build a SUPER/THIS qualified method invocation. */
12352 static tree
12353 build_this_super_qualified_invocation (use_this, name, args, lloc, rloc)
12354 int use_this;
12355 tree name, args;
12356 int lloc, rloc;
12358 tree invok;
12359 tree wfl =
12360 build_wfl_node (use_this ? this_identifier_node : super_identifier_node);
12361 EXPR_WFL_LINECOL (wfl) = lloc;
12362 invok = build_method_invocation (name, args);
12363 return make_qualified_primary (wfl, invok, rloc);
12366 /* Build an incomplete CALL_EXPR node. */
12368 static tree
12369 build_method_invocation (name, args)
12370 tree name;
12371 tree args;
12373 tree call = build (CALL_EXPR, NULL_TREE, name, args, NULL_TREE);
12374 TREE_SIDE_EFFECTS (call) = 1;
12375 EXPR_WFL_LINECOL (call) = EXPR_WFL_LINECOL (name);
12376 return call;
12379 /* Build an incomplete new xxx(...) node. */
12381 static tree
12382 build_new_invocation (name, args)
12383 tree name, args;
12385 tree call = build (NEW_CLASS_EXPR, NULL_TREE, name, args, NULL_TREE);
12386 TREE_SIDE_EFFECTS (call) = 1;
12387 EXPR_WFL_LINECOL (call) = EXPR_WFL_LINECOL (name);
12388 return call;
12391 /* Build an incomplete assignment expression. */
12393 static tree
12394 build_assignment (op, op_location, lhs, rhs)
12395 int op, op_location;
12396 tree lhs, rhs;
12398 tree assignment;
12399 /* Build the corresponding binop if we deal with a Compound
12400 Assignment operator. Mark the binop sub-tree as part of a
12401 Compound Assignment expression */
12402 if (op != ASSIGN_TK)
12404 rhs = build_binop (BINOP_LOOKUP (op), op_location, lhs, rhs);
12405 COMPOUND_ASSIGN_P (rhs) = 1;
12407 assignment = build (MODIFY_EXPR, NULL_TREE, lhs, rhs);
12408 TREE_SIDE_EFFECTS (assignment) = 1;
12409 EXPR_WFL_LINECOL (assignment) = op_location;
12410 return assignment;
12413 /* Print an INTEGER_CST node in a static buffer, and return the buffer. */
12415 char *
12416 print_int_node (node)
12417 tree node;
12419 static char buffer [80];
12420 if (TREE_CONSTANT_OVERFLOW (node))
12421 sprintf (buffer, "<overflow>");
12423 if (TREE_INT_CST_HIGH (node) == 0)
12424 sprintf (buffer, HOST_WIDE_INT_PRINT_UNSIGNED,
12425 TREE_INT_CST_LOW (node));
12426 else if (TREE_INT_CST_HIGH (node) == -1
12427 && TREE_INT_CST_LOW (node) != 0)
12429 buffer [0] = '-';
12430 sprintf (&buffer [1], HOST_WIDE_INT_PRINT_UNSIGNED,
12431 -TREE_INT_CST_LOW (node));
12433 else
12434 sprintf (buffer, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
12435 TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
12437 return buffer;
12442 /* This section of the code handle assignment check with FINAL
12443 variables. */
12445 static void
12446 reset_static_final_variable_assignment_flag (class)
12447 tree class;
12449 tree field;
12450 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12451 if (CLASS_FINAL_VARIABLE_P (field))
12452 DECL_FIELD_FINAL_LIIC (field) = 0;
12455 /* Figure whether all final static variable have been initialized. */
12457 static void
12458 check_static_final_variable_assignment_flag (class)
12459 tree class;
12461 tree field;
12463 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12464 if (CLASS_FINAL_VARIABLE_P (field)
12465 && !DECL_FIELD_FINAL_IUD (field) && !DECL_FIELD_FINAL_LIIC (field))
12466 parse_error_context
12467 (DECL_FIELD_FINAL_WFL (field),
12468 "Blank static final variable `%s' may not have been initialized",
12469 IDENTIFIER_POINTER (DECL_NAME (field)));
12472 /* This function marks all final variable locally unassigned. */
12474 static void
12475 reset_final_variable_local_assignment_flag (class)
12476 tree class;
12478 tree field;
12479 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12480 if (FINAL_VARIABLE_P (field))
12481 DECL_FIELD_FINAL_LIIC (field) = 0;
12484 /* Figure whether all final variables have beem initialized in MDECL
12485 and mark MDECL accordingly. */
12487 static void
12488 check_final_variable_local_assignment_flag (class, mdecl)
12489 tree class;
12490 tree mdecl;
12492 tree field;
12493 int initialized = 0;
12494 int non_initialized = 0;
12496 if (DECL_FUNCTION_SYNTHETIC_CTOR (mdecl))
12497 return;
12499 /* First find out whether all final variables or no final variable
12500 are initialized in this ctor. We don't take into account final
12501 variable that have been initialized upon declaration. */
12502 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12503 if (FINAL_VARIABLE_P (field) && !DECL_FIELD_FINAL_IUD (field))
12505 if (DECL_FIELD_FINAL_LIIC (field))
12506 initialized++;
12507 else
12508 non_initialized++;
12511 /* There were no non initialized variable and no initialized variable.
12512 This ctor is fine. */
12513 if (!non_initialized && !initialized)
12514 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 1;
12515 /* If no variables have been initialized, that fine. We'll check
12516 later whether this ctor calls a constructor which initializes
12517 them. We mark the ctor as not initializing all its finals. */
12518 else if (initialized == 0)
12519 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 0;
12520 /* If we have a mixed bag, then we have a problem. We need to report
12521 all the variables we're not initializing. */
12522 else if (initialized && non_initialized)
12524 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 0;
12525 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12526 if (FIELD_FINAL (field)
12527 && !DECL_FIELD_FINAL_IUD (field) && !DECL_FIELD_FINAL_LIIC (field))
12529 parse_error_context
12530 (lookup_cl (mdecl),
12531 "Blank final variable `%s' may not have been initialized in this constructor",
12532 IDENTIFIER_POINTER (DECL_NAME (field)));
12533 DECL_FIELD_FINAL_IERR (field) = 1;
12536 /* Otherwise we know this ctor is initializing all its final
12537 variable. We mark it so. */
12538 else
12539 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 1;
12542 /* This function recurses in a simple what through STMT and stops when
12543 it finds a constructor call. It then verifies that the called
12544 constructor initialized its final properly. Return 1 upon success,
12545 0 or -1 otherwise. */
12547 static int
12548 check_final_variable_indirect_assignment (stmt)
12549 tree stmt;
12551 int res;
12552 switch (TREE_CODE (stmt))
12554 case EXPR_WITH_FILE_LOCATION:
12555 return check_final_variable_indirect_assignment (EXPR_WFL_NODE (stmt));
12556 case COMPOUND_EXPR:
12557 res = check_final_variable_indirect_assignment (TREE_OPERAND (stmt, 0));
12558 if (res)
12559 return res;
12560 return check_final_variable_indirect_assignment (TREE_OPERAND (stmt, 1));
12561 case SAVE_EXPR:
12562 return check_final_variable_indirect_assignment (TREE_OPERAND (stmt, 0));
12563 case CALL_EXPR:
12565 tree decl = TREE_OPERAND (stmt, 0);
12566 tree fbody;
12568 if (TREE_CODE (decl) != FUNCTION_DECL)
12569 decl = TREE_OPERAND (TREE_OPERAND (decl, 0), 0);
12570 if (TREE_CODE (decl) != FUNCTION_DECL)
12571 abort ();
12572 if (DECL_FUNCTION_ALL_FINAL_INITIALIZED (decl))
12573 return 1;
12574 if (DECL_FINIT_P (decl) || DECL_CONTEXT (decl) != current_class)
12575 return -1;
12576 fbody = BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (decl));
12577 if (fbody == error_mark_node)
12578 return -1;
12579 fbody = BLOCK_EXPR_BODY (fbody);
12580 return check_final_variable_indirect_assignment (fbody);
12582 default:
12583 break;
12585 return 0;
12588 /* This is the last chance to catch a final variable initialization
12589 problem. This routine will report an error if a final variable was
12590 never (globally) initialized and never reported as not having been
12591 initialized properly. */
12593 static void
12594 check_final_variable_global_assignment_flag (class)
12595 tree class;
12597 tree field, mdecl;
12598 int nnctor = 0;
12600 /* We go through all natural ctors and see whether they're
12601 initializing all their final variables or not. */
12602 current_function_decl = NULL_TREE; /* For the error report. */
12603 for (mdecl = TYPE_METHODS (class); mdecl; mdecl = TREE_CHAIN (mdecl))
12604 if (DECL_CONSTRUCTOR_P (mdecl) && ! DECL_FUNCTION_SYNTHETIC_CTOR (mdecl))
12606 if (!DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl))
12608 /* It doesn't. Maybe it calls a constructor that initializes
12609 them. find out. */
12610 tree fbody = BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (mdecl));
12611 if (fbody == error_mark_node)
12612 continue;
12613 fbody = BLOCK_EXPR_BODY (fbody);
12614 if (check_final_variable_indirect_assignment (fbody) == 1)
12616 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 1;
12617 nnctor++;
12619 else
12620 parse_error_context
12621 (lookup_cl (mdecl),
12622 "Final variable initialization error in this constructor");
12624 else
12625 nnctor++;
12628 /* Finally we catch final variables that never were initialized */
12629 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12630 if (FINAL_VARIABLE_P (field)
12631 /* If the field wasn't initialized upon declaration */
12632 && !DECL_FIELD_FINAL_IUD (field)
12633 /* There wasn't natural ctor in which the field could have been
12634 initialized */
12635 && !nnctor
12636 /* If we never reported a problem with this field */
12637 && !DECL_FIELD_FINAL_IERR (field))
12639 current_function_decl = NULL;
12640 parse_error_context
12641 (DECL_FIELD_FINAL_WFL (field),
12642 "Final variable `%s' hasn't been initialized upon its declaration",
12643 IDENTIFIER_POINTER (DECL_NAME (field)));
12648 /* Return 1 if an assignment to a FINAL is attempted in a non suitable
12649 context. */
12651 static int
12652 check_final_assignment (lvalue, wfl)
12653 tree lvalue, wfl;
12655 if (TREE_CODE (lvalue) != COMPONENT_REF && !JDECL_P (lvalue))
12656 return 0;
12658 if (TREE_CODE (lvalue) == COMPONENT_REF
12659 && JDECL_P (TREE_OPERAND (lvalue, 1)))
12660 lvalue = TREE_OPERAND (lvalue, 1);
12662 if (!FIELD_FINAL (lvalue))
12663 return 0;
12665 /* Now the logic. We can modify a final VARIABLE:
12666 1) in finit$, (its declaration was followed by an initialization,)
12667 2) consistently in each natural ctor, if it wasn't initialized in
12668 finit$ or once in <clinit>. In any other cases, an error should be
12669 reported. */
12670 if (DECL_FINIT_P (current_function_decl))
12672 DECL_FIELD_FINAL_IUD (lvalue) = 1;
12673 return 0;
12676 if (!DECL_FUNCTION_SYNTHETIC_CTOR (current_function_decl)
12677 /* Only if it wasn't given a value upon initialization */
12678 && DECL_LANG_SPECIFIC (lvalue) && !DECL_FIELD_FINAL_IUD (lvalue)
12679 /* If it was never assigned a value in this constructor */
12680 && !DECL_FIELD_FINAL_LIIC (lvalue))
12682 /* Turn the locally assigned flag on, it will be checked later
12683 on to point out at discrepancies. */
12684 DECL_FIELD_FINAL_LIIC (lvalue) = 1;
12685 if (DECL_CLINIT_P (current_function_decl))
12686 DECL_FIELD_FINAL_IUD (lvalue) = 1;
12687 return 0;
12690 /* Other problems should be reported right away. */
12691 parse_error_context
12692 (wfl, "Can't %sassign a value to the final variable `%s'",
12693 (FIELD_STATIC (lvalue) ? "re" : ""),
12694 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
12696 /* Note that static field can be initialized once and only once. */
12697 if (FIELD_STATIC (lvalue))
12698 DECL_FIELD_FINAL_IERR (lvalue) = 1;
12700 return 1;
12703 /* Inline references to java.lang.PRIMTYPE.TYPE when accessed in
12704 read. This is needed to avoid circularities in the implementation
12705 of these fields in libjava. */
12707 static tree
12708 maybe_build_primttype_type_ref (rhs, wfl)
12709 tree rhs, wfl;
12711 tree to_return = NULL_TREE;
12712 tree rhs_type = TREE_TYPE (rhs);
12713 if (TREE_CODE (rhs) == COMPOUND_EXPR)
12715 tree n = TREE_OPERAND (rhs, 1);
12716 if (TREE_CODE (n) == VAR_DECL
12717 && DECL_NAME (n) == TYPE_identifier_node
12718 && rhs_type == class_ptr_type
12719 && TREE_CODE (wfl) == EXPR_WITH_FILE_LOCATION
12720 && TREE_CODE (EXPR_WFL_NODE (wfl)) == IDENTIFIER_NODE)
12722 const char *self_name = IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl));
12723 if (!strncmp (self_name, "java.lang.", 10))
12724 to_return = build_primtype_type_ref (self_name);
12727 return (to_return ? to_return : rhs );
12730 /* 15.25 Assignment operators. */
12732 static tree
12733 patch_assignment (node, wfl_op1, wfl_op2)
12734 tree node;
12735 tree wfl_op1;
12736 tree wfl_op2;
12738 tree rhs = TREE_OPERAND (node, 1);
12739 tree lvalue = TREE_OPERAND (node, 0), llvalue;
12740 tree lhs_type = NULL_TREE, rhs_type, new_rhs = NULL_TREE;
12741 int error_found = 0;
12742 int lvalue_from_array = 0;
12744 /* Can't assign to a (blank) final. */
12745 if (check_final_assignment (lvalue, wfl_op1))
12746 error_found = 1;
12748 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12750 /* Lhs can be a named variable */
12751 if (JDECL_P (lvalue))
12753 lhs_type = TREE_TYPE (lvalue);
12755 /* Or Lhs can be a array acccess. Should that be lvalue ? FIXME +
12756 comment on reason why */
12757 else if (TREE_CODE (wfl_op1) == ARRAY_REF)
12759 lhs_type = TREE_TYPE (lvalue);
12760 lvalue_from_array = 1;
12762 /* Or a field access */
12763 else if (TREE_CODE (lvalue) == COMPONENT_REF)
12764 lhs_type = TREE_TYPE (lvalue);
12765 /* Or a function return slot */
12766 else if (TREE_CODE (lvalue) == RESULT_DECL)
12767 lhs_type = TREE_TYPE (lvalue);
12768 /* Otherwise, we might want to try to write into an optimized static
12769 final, this is an of a different nature, reported further on. */
12770 else if (TREE_CODE (wfl_op1) == EXPR_WITH_FILE_LOCATION
12771 && resolve_expression_name (wfl_op1, &llvalue))
12773 if (!error_found && check_final_assignment (llvalue, wfl_op1))
12775 /* What we should do instead is resetting the all the flags
12776 previously set, exchange lvalue for llvalue and continue. */
12777 error_found = 1;
12778 return error_mark_node;
12780 else
12781 lhs_type = TREE_TYPE (lvalue);
12783 else
12785 parse_error_context (wfl_op1, "Invalid left hand side of assignment");
12786 error_found = 1;
12789 rhs_type = TREE_TYPE (rhs);
12790 /* 5.1 Try the assignment conversion for builtin type. */
12791 new_rhs = try_builtin_assignconv (wfl_op1, lhs_type, rhs);
12793 /* 5.2 If it failed, try a reference conversion */
12794 if (!new_rhs && (new_rhs = try_reference_assignconv (lhs_type, rhs)))
12795 lhs_type = promote_type (rhs_type);
12797 /* 15.25.2 If we have a compound assignment, convert RHS into the
12798 type of the LHS */
12799 else if (COMPOUND_ASSIGN_P (TREE_OPERAND (node, 1)))
12800 new_rhs = convert (lhs_type, rhs);
12802 /* Explicit cast required. This is an error */
12803 if (!new_rhs)
12805 char *t1 = xstrdup (lang_printable_name (TREE_TYPE (rhs), 0));
12806 char *t2 = xstrdup (lang_printable_name (lhs_type, 0));
12807 tree wfl;
12808 char operation [32]; /* Max size known */
12810 /* If the assignment is part of a declaration, we use the WFL of
12811 the declared variable to point out the error and call it a
12812 declaration problem. If the assignment is a genuine =
12813 operator, we call is a operator `=' problem, otherwise we
12814 call it an assignment problem. In both of these last cases,
12815 we use the WFL of the operator to indicate the error. */
12817 if (MODIFY_EXPR_FROM_INITIALIZATION_P (node))
12819 wfl = wfl_op1;
12820 strcpy (operation, "declaration");
12822 else
12824 wfl = wfl_operator;
12825 if (COMPOUND_ASSIGN_P (TREE_OPERAND (node, 1)))
12826 strcpy (operation, "assignment");
12827 else if (TREE_CODE (TREE_OPERAND (node, 0)) == RESULT_DECL)
12828 strcpy (operation, "`return'");
12829 else
12830 strcpy (operation, "`='");
12833 if (!valid_cast_to_p (rhs_type, lhs_type))
12834 parse_error_context
12835 (wfl, "Incompatible type for %s. Can't convert `%s' to `%s'",
12836 operation, t1, t2);
12837 else
12838 parse_error_context (wfl, "Incompatible type for %s. Explicit cast needed to convert `%s' to `%s'",
12839 operation, t1, t2);
12840 free (t1); free (t2);
12841 error_found = 1;
12844 /* Inline read access to java.lang.PRIMTYPE.TYPE */
12845 if (new_rhs)
12846 new_rhs = maybe_build_primttype_type_ref (new_rhs, wfl_op2);
12848 if (error_found)
12849 return error_mark_node;
12851 /* 10.10: Array Store Exception runtime check */
12852 if (!flag_emit_class_files
12853 && !flag_emit_xref
12854 && lvalue_from_array
12855 && JREFERENCE_TYPE_P (TYPE_ARRAY_ELEMENT (lhs_type)))
12857 tree check;
12858 tree base = lvalue;
12860 /* We need to retrieve the right argument for
12861 _Jv_CheckArrayStore. This is somewhat complicated by bounds
12862 and null pointer checks, both of which wrap the operand in
12863 one layer of COMPOUND_EXPR. */
12864 if (TREE_CODE (lvalue) == COMPOUND_EXPR)
12865 base = TREE_OPERAND (lvalue, 0);
12866 else
12868 tree op = TREE_OPERAND (base, 0);
12870 /* We can have a SAVE_EXPR here when doing String +=. */
12871 if (TREE_CODE (op) == SAVE_EXPR)
12872 op = TREE_OPERAND (op, 0);
12873 if (flag_bounds_check)
12874 base = TREE_OPERAND (TREE_OPERAND (op, 1), 0);
12875 else
12876 base = TREE_OPERAND (op, 0);
12879 /* Build the invocation of _Jv_CheckArrayStore */
12880 new_rhs = save_expr (new_rhs);
12881 check = build (CALL_EXPR, void_type_node,
12882 build_address_of (soft_checkarraystore_node),
12883 tree_cons (NULL_TREE, base,
12884 build_tree_list (NULL_TREE, new_rhs)),
12885 NULL_TREE);
12886 TREE_SIDE_EFFECTS (check) = 1;
12888 /* We have to decide on an insertion point */
12889 if (TREE_CODE (lvalue) == COMPOUND_EXPR)
12891 tree t;
12892 if (flag_bounds_check)
12894 t = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (lvalue, 1), 0), 0);
12895 TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (lvalue, 1), 0), 0) =
12896 build (COMPOUND_EXPR, void_type_node, t, check);
12898 else
12899 TREE_OPERAND (lvalue, 1) = build (COMPOUND_EXPR, lhs_type,
12900 check, TREE_OPERAND (lvalue, 1));
12902 else if (flag_bounds_check)
12904 tree hook = lvalue;
12905 tree compound = TREE_OPERAND (lvalue, 0);
12906 tree bound_check, new_compound;
12908 if (TREE_CODE (compound) == SAVE_EXPR)
12910 compound = TREE_OPERAND (compound, 0);
12911 hook = TREE_OPERAND (hook, 0);
12914 /* Find the array bound check, hook the original array access. */
12915 bound_check = TREE_OPERAND (compound, 0);
12916 TREE_OPERAND (hook, 0) = TREE_OPERAND (compound, 1);
12918 /* Make sure the bound check will happen before the store check */
12919 new_compound =
12920 build (COMPOUND_EXPR, void_type_node, bound_check, check);
12922 /* Re-assemble the augmented array access. */
12923 lvalue = build (COMPOUND_EXPR, lhs_type, new_compound, lvalue);
12925 else
12926 lvalue = build (COMPOUND_EXPR, lhs_type, check, lvalue);
12929 /* Final locals can be used as case values in switch
12930 statement. Prepare them for this eventuality. */
12931 if (TREE_CODE (lvalue) == VAR_DECL
12932 && LOCAL_FINAL_P (lvalue)
12933 && TREE_CONSTANT (new_rhs)
12934 && IDENTIFIER_LOCAL_VALUE (DECL_NAME (lvalue))
12935 && JINTEGRAL_TYPE_P (TREE_TYPE (lvalue))
12938 TREE_CONSTANT (lvalue) = 1;
12939 DECL_INITIAL (lvalue) = new_rhs;
12942 TREE_OPERAND (node, 0) = lvalue;
12943 TREE_OPERAND (node, 1) = new_rhs;
12944 TREE_TYPE (node) = lhs_type;
12945 return node;
12948 /* Check that type SOURCE can be cast into type DEST. If the cast
12949 can't occur at all, return 0 otherwise 1. This function is used to
12950 produce accurate error messages on the reasons why an assignment
12951 failed. */
12953 static tree
12954 try_reference_assignconv (lhs_type, rhs)
12955 tree lhs_type, rhs;
12957 tree new_rhs = NULL_TREE;
12958 tree rhs_type = TREE_TYPE (rhs);
12960 if (!JPRIMITIVE_TYPE_P (rhs_type) && JREFERENCE_TYPE_P (lhs_type))
12962 /* `null' may be assigned to any reference type */
12963 if (rhs == null_pointer_node)
12964 new_rhs = null_pointer_node;
12965 /* Try the reference assignment conversion */
12966 else if (valid_ref_assignconv_cast_p (rhs_type, lhs_type, 0))
12967 new_rhs = rhs;
12968 /* This is a magic assignment that we process differently */
12969 else if (TREE_CODE (rhs) == JAVA_EXC_OBJ_EXPR)
12970 new_rhs = rhs;
12972 return new_rhs;
12975 /* Check that RHS can be converted into LHS_TYPE by the assignment
12976 conversion (5.2), for the cases of RHS being a builtin type. Return
12977 NULL_TREE if the conversion fails or if because RHS isn't of a
12978 builtin type. Return a converted RHS if the conversion is possible. */
12980 static tree
12981 try_builtin_assignconv (wfl_op1, lhs_type, rhs)
12982 tree wfl_op1, lhs_type, rhs;
12984 tree new_rhs = NULL_TREE;
12985 tree rhs_type = TREE_TYPE (rhs);
12987 /* Handle boolean specially. */
12988 if (TREE_CODE (rhs_type) == BOOLEAN_TYPE
12989 || TREE_CODE (lhs_type) == BOOLEAN_TYPE)
12991 if (TREE_CODE (rhs_type) == BOOLEAN_TYPE
12992 && TREE_CODE (lhs_type) == BOOLEAN_TYPE)
12993 new_rhs = rhs;
12996 /* Zero accepted everywhere */
12997 else if (TREE_CODE (rhs) == INTEGER_CST
12998 && TREE_INT_CST_HIGH (rhs) == 0 && TREE_INT_CST_LOW (rhs) == 0
12999 && JPRIMITIVE_TYPE_P (rhs_type))
13000 new_rhs = convert (lhs_type, rhs);
13002 /* 5.1.1 Try Identity Conversion,
13003 5.1.2 Try Widening Primitive Conversion */
13004 else if (valid_builtin_assignconv_identity_widening_p (lhs_type, rhs_type))
13005 new_rhs = convert (lhs_type, rhs);
13007 /* Try a narrowing primitive conversion (5.1.3):
13008 - expression is a constant expression of type int AND
13009 - variable is byte, short or char AND
13010 - The value of the expression is representable in the type of the
13011 variable */
13012 else if (rhs_type == int_type_node && TREE_CONSTANT (rhs)
13013 && (lhs_type == byte_type_node || lhs_type == char_type_node
13014 || lhs_type == short_type_node))
13016 if (int_fits_type_p (rhs, lhs_type))
13017 new_rhs = convert (lhs_type, rhs);
13018 else if (wfl_op1) /* Might be called with a NULL */
13019 parse_warning_context
13020 (wfl_op1, "Constant expression `%s' too wide for narrowing primitive conversion to `%s'",
13021 print_int_node (rhs), lang_printable_name (lhs_type, 0));
13022 /* Reported a warning that will turn into an error further
13023 down, so we don't return */
13026 return new_rhs;
13029 /* Return 1 if RHS_TYPE can be converted to LHS_TYPE by identity
13030 conversion (5.1.1) or widening primitive conversion (5.1.2). Return
13031 0 is the conversion test fails. This implements parts the method
13032 invocation convertion (5.3). */
13034 static int
13035 valid_builtin_assignconv_identity_widening_p (lhs_type, rhs_type)
13036 tree lhs_type, rhs_type;
13038 /* 5.1.1: This is the identity conversion part. */
13039 if (lhs_type == rhs_type)
13040 return 1;
13042 /* Reject non primitive types and boolean conversions. */
13043 if (!JNUMERIC_TYPE_P (lhs_type) || !JNUMERIC_TYPE_P (rhs_type))
13044 return 0;
13046 /* 5.1.2: widening primitive conversion. byte, even if it's smaller
13047 than a char can't be converted into a char. Short can't too, but
13048 the < test below takes care of that */
13049 if (lhs_type == char_type_node && rhs_type == byte_type_node)
13050 return 0;
13052 /* Accept all promoted type here. Note, we can't use <= in the test
13053 below, because we still need to bounce out assignments of short
13054 to char and the likes */
13055 if (lhs_type == int_type_node
13056 && (rhs_type == promoted_byte_type_node
13057 || rhs_type == promoted_short_type_node
13058 || rhs_type == promoted_char_type_node
13059 || rhs_type == promoted_boolean_type_node))
13060 return 1;
13062 /* From here, an integral is widened if its precision is smaller
13063 than the precision of the LHS or if the LHS is a floating point
13064 type, or the RHS is a float and the RHS a double. */
13065 if ((JINTEGRAL_TYPE_P (rhs_type) && JINTEGRAL_TYPE_P (lhs_type)
13066 && (TYPE_PRECISION (rhs_type) < TYPE_PRECISION (lhs_type)))
13067 || (JINTEGRAL_TYPE_P (rhs_type) && JFLOAT_TYPE_P (lhs_type))
13068 || (rhs_type == float_type_node && lhs_type == double_type_node))
13069 return 1;
13071 return 0;
13074 /* Check that something of SOURCE type can be assigned or cast to
13075 something of DEST type at runtime. Return 1 if the operation is
13076 valid, 0 otherwise. If CAST is set to 1, we're treating the case
13077 were SOURCE is cast into DEST, which borrows a lot of the
13078 assignment check. */
13080 static int
13081 valid_ref_assignconv_cast_p (source, dest, cast)
13082 tree source;
13083 tree dest;
13084 int cast;
13086 /* SOURCE or DEST might be null if not from a declared entity. */
13087 if (!source || !dest)
13088 return 0;
13089 if (JNULLP_TYPE_P (source))
13090 return 1;
13091 if (TREE_CODE (source) == POINTER_TYPE)
13092 source = TREE_TYPE (source);
13093 if (TREE_CODE (dest) == POINTER_TYPE)
13094 dest = TREE_TYPE (dest);
13096 /* If source and dest are being compiled from bytecode, they may need to
13097 be loaded. */
13098 if (CLASS_P (source) && !CLASS_LOADED_P (source))
13100 load_class (source, 1);
13101 safe_layout_class (source);
13103 if (CLASS_P (dest) && !CLASS_LOADED_P (dest))
13105 load_class (dest, 1);
13106 safe_layout_class (dest);
13109 /* Case where SOURCE is a class type */
13110 if (TYPE_CLASS_P (source))
13112 if (TYPE_CLASS_P (dest))
13113 return (source == dest
13114 || inherits_from_p (source, dest)
13115 || (cast && inherits_from_p (dest, source)));
13116 if (TYPE_INTERFACE_P (dest))
13118 /* If doing a cast and SOURCE is final, the operation is
13119 always correct a compile time (because even if SOURCE
13120 does not implement DEST, a subclass of SOURCE might). */
13121 if (cast && !CLASS_FINAL (TYPE_NAME (source)))
13122 return 1;
13123 /* Otherwise, SOURCE must implement DEST */
13124 return interface_of_p (dest, source);
13126 /* DEST is an array, cast permited if SOURCE is of Object type */
13127 return (cast && source == object_type_node ? 1 : 0);
13129 if (TYPE_INTERFACE_P (source))
13131 if (TYPE_CLASS_P (dest))
13133 /* If not casting, DEST must be the Object type */
13134 if (!cast)
13135 return dest == object_type_node;
13136 /* We're doing a cast. The cast is always valid is class
13137 DEST is not final, otherwise, DEST must implement SOURCE */
13138 else if (!CLASS_FINAL (TYPE_NAME (dest)))
13139 return 1;
13140 else
13141 return interface_of_p (source, dest);
13143 if (TYPE_INTERFACE_P (dest))
13145 /* If doing a cast, then if SOURCE and DEST contain method
13146 with the same signature but different return type, then
13147 this is a (compile time) error */
13148 if (cast)
13150 tree method_source, method_dest;
13151 tree source_type;
13152 tree source_sig;
13153 tree source_name;
13154 for (method_source = TYPE_METHODS (source); method_source;
13155 method_source = TREE_CHAIN (method_source))
13157 source_sig =
13158 build_java_argument_signature (TREE_TYPE (method_source));
13159 source_type = TREE_TYPE (TREE_TYPE (method_source));
13160 source_name = DECL_NAME (method_source);
13161 for (method_dest = TYPE_METHODS (dest);
13162 method_dest; method_dest = TREE_CHAIN (method_dest))
13163 if (source_sig ==
13164 build_java_argument_signature (TREE_TYPE (method_dest))
13165 && source_name == DECL_NAME (method_dest)
13166 && source_type != TREE_TYPE (TREE_TYPE (method_dest)))
13167 return 0;
13169 return 1;
13171 else
13172 return source == dest || interface_of_p (dest, source);
13174 else
13176 /* Array */
13177 return (cast
13178 && (DECL_NAME (TYPE_NAME (source)) == java_lang_cloneable
13179 || (DECL_NAME (TYPE_NAME (source))
13180 == java_io_serializable)));
13183 if (TYPE_ARRAY_P (source))
13185 if (TYPE_CLASS_P (dest))
13186 return dest == object_type_node;
13187 /* Can't cast an array to an interface unless the interface is
13188 java.lang.Cloneable or java.io.Serializable. */
13189 if (TYPE_INTERFACE_P (dest))
13190 return (DECL_NAME (TYPE_NAME (dest)) == java_lang_cloneable
13191 || DECL_NAME (TYPE_NAME (dest)) == java_io_serializable);
13192 else /* Arrays */
13194 tree source_element_type = TYPE_ARRAY_ELEMENT (source);
13195 tree dest_element_type = TYPE_ARRAY_ELEMENT (dest);
13197 /* In case of severe errors, they turn out null */
13198 if (!dest_element_type || !source_element_type)
13199 return 0;
13200 if (source_element_type == dest_element_type)
13201 return 1;
13202 return valid_ref_assignconv_cast_p (source_element_type,
13203 dest_element_type, cast);
13205 return 0;
13207 return 0;
13210 static int
13211 valid_cast_to_p (source, dest)
13212 tree source;
13213 tree dest;
13215 if (TREE_CODE (source) == POINTER_TYPE)
13216 source = TREE_TYPE (source);
13217 if (TREE_CODE (dest) == POINTER_TYPE)
13218 dest = TREE_TYPE (dest);
13220 if (TREE_CODE (source) == RECORD_TYPE && TREE_CODE (dest) == RECORD_TYPE)
13221 return valid_ref_assignconv_cast_p (source, dest, 1);
13223 else if (JNUMERIC_TYPE_P (source) && JNUMERIC_TYPE_P (dest))
13224 return 1;
13226 else if (TREE_CODE (source) == BOOLEAN_TYPE
13227 && TREE_CODE (dest) == BOOLEAN_TYPE)
13228 return 1;
13230 return 0;
13233 static tree
13234 do_unary_numeric_promotion (arg)
13235 tree arg;
13237 tree type = TREE_TYPE (arg);
13238 if ((TREE_CODE (type) == INTEGER_TYPE && TYPE_PRECISION (type) < 32)
13239 || TREE_CODE (type) == CHAR_TYPE)
13240 arg = convert (int_type_node, arg);
13241 return arg;
13244 /* Return a non zero value if SOURCE can be converted into DEST using
13245 the method invocation conversion rule (5.3). */
13246 static int
13247 valid_method_invocation_conversion_p (dest, source)
13248 tree dest, source;
13250 return ((JPRIMITIVE_TYPE_P (source) && JPRIMITIVE_TYPE_P (dest)
13251 && valid_builtin_assignconv_identity_widening_p (dest, source))
13252 || ((JREFERENCE_TYPE_P (source) || JNULLP_TYPE_P (source))
13253 && (JREFERENCE_TYPE_P (dest) || JNULLP_TYPE_P (dest))
13254 && valid_ref_assignconv_cast_p (source, dest, 0)));
13257 /* Build an incomplete binop expression. */
13259 static tree
13260 build_binop (op, op_location, op1, op2)
13261 enum tree_code op;
13262 int op_location;
13263 tree op1, op2;
13265 tree binop = build (op, NULL_TREE, op1, op2);
13266 TREE_SIDE_EFFECTS (binop) = 1;
13267 /* Store the location of the operator, for better error report. The
13268 string of the operator will be rebuild based on the OP value. */
13269 EXPR_WFL_LINECOL (binop) = op_location;
13270 return binop;
13273 /* Build the string of the operator retained by NODE. If NODE is part
13274 of a compound expression, add an '=' at the end of the string. This
13275 function is called when an error needs to be reported on an
13276 operator. The string is returned as a pointer to a static character
13277 buffer. */
13279 static char *
13280 operator_string (node)
13281 tree node;
13283 #define BUILD_OPERATOR_STRING(S) \
13285 sprintf (buffer, "%s%s", S, (COMPOUND_ASSIGN_P (node) ? "=" : "")); \
13286 return buffer; \
13289 static char buffer [10];
13290 switch (TREE_CODE (node))
13292 case MULT_EXPR: BUILD_OPERATOR_STRING ("*");
13293 case RDIV_EXPR: BUILD_OPERATOR_STRING ("/");
13294 case TRUNC_MOD_EXPR: BUILD_OPERATOR_STRING ("%");
13295 case PLUS_EXPR: BUILD_OPERATOR_STRING ("+");
13296 case MINUS_EXPR: BUILD_OPERATOR_STRING ("-");
13297 case LSHIFT_EXPR: BUILD_OPERATOR_STRING ("<<");
13298 case RSHIFT_EXPR: BUILD_OPERATOR_STRING (">>");
13299 case URSHIFT_EXPR: BUILD_OPERATOR_STRING (">>>");
13300 case BIT_AND_EXPR: BUILD_OPERATOR_STRING ("&");
13301 case BIT_XOR_EXPR: BUILD_OPERATOR_STRING ("^");
13302 case BIT_IOR_EXPR: BUILD_OPERATOR_STRING ("|");
13303 case TRUTH_ANDIF_EXPR: BUILD_OPERATOR_STRING ("&&");
13304 case TRUTH_ORIF_EXPR: BUILD_OPERATOR_STRING ("||");
13305 case EQ_EXPR: BUILD_OPERATOR_STRING ("==");
13306 case NE_EXPR: BUILD_OPERATOR_STRING ("!=");
13307 case GT_EXPR: BUILD_OPERATOR_STRING (">");
13308 case GE_EXPR: BUILD_OPERATOR_STRING (">=");
13309 case LT_EXPR: BUILD_OPERATOR_STRING ("<");
13310 case LE_EXPR: BUILD_OPERATOR_STRING ("<=");
13311 case UNARY_PLUS_EXPR: BUILD_OPERATOR_STRING ("+");
13312 case NEGATE_EXPR: BUILD_OPERATOR_STRING ("-");
13313 case TRUTH_NOT_EXPR: BUILD_OPERATOR_STRING ("!");
13314 case BIT_NOT_EXPR: BUILD_OPERATOR_STRING ("~");
13315 case PREINCREMENT_EXPR: /* Fall through */
13316 case POSTINCREMENT_EXPR: BUILD_OPERATOR_STRING ("++");
13317 case PREDECREMENT_EXPR: /* Fall through */
13318 case POSTDECREMENT_EXPR: BUILD_OPERATOR_STRING ("--");
13319 default:
13320 internal_error ("unregistered operator %s",
13321 tree_code_name [TREE_CODE (node)]);
13323 return NULL;
13324 #undef BUILD_OPERATOR_STRING
13327 /* Return 1 if VAR_ACCESS1 is equivalent to VAR_ACCESS2. */
13329 static int
13330 java_decl_equiv (var_acc1, var_acc2)
13331 tree var_acc1, var_acc2;
13333 if (JDECL_P (var_acc1))
13334 return (var_acc1 == var_acc2);
13336 return (TREE_CODE (var_acc1) == COMPONENT_REF
13337 && TREE_CODE (var_acc2) == COMPONENT_REF
13338 && TREE_OPERAND (TREE_OPERAND (var_acc1, 0), 0)
13339 == TREE_OPERAND (TREE_OPERAND (var_acc2, 0), 0)
13340 && TREE_OPERAND (var_acc1, 1) == TREE_OPERAND (var_acc2, 1));
13343 /* Return a non zero value if CODE is one of the operators that can be
13344 used in conjunction with the `=' operator in a compound assignment. */
13346 static int
13347 binop_compound_p (code)
13348 enum tree_code code;
13350 int i;
13351 for (i = 0; i < BINOP_COMPOUND_CANDIDATES; i++)
13352 if (binop_lookup [i] == code)
13353 break;
13355 return i < BINOP_COMPOUND_CANDIDATES;
13358 /* Reorganize after a fold to get SAVE_EXPR to generate what we want. */
13360 static tree
13361 java_refold (t)
13362 tree t;
13364 tree c, b, ns, decl;
13366 if (TREE_CODE (t) != MODIFY_EXPR)
13367 return t;
13369 c = TREE_OPERAND (t, 1);
13370 if (! (c && TREE_CODE (c) == COMPOUND_EXPR
13371 && TREE_CODE (TREE_OPERAND (c, 0)) == MODIFY_EXPR
13372 && binop_compound_p (TREE_CODE (TREE_OPERAND (c, 1)))))
13373 return t;
13375 /* Now the left branch of the binary operator. */
13376 b = TREE_OPERAND (TREE_OPERAND (c, 1), 0);
13377 if (! (b && TREE_CODE (b) == NOP_EXPR
13378 && TREE_CODE (TREE_OPERAND (b, 0)) == SAVE_EXPR))
13379 return t;
13381 ns = TREE_OPERAND (TREE_OPERAND (b, 0), 0);
13382 if (! (ns && TREE_CODE (ns) == NOP_EXPR
13383 && TREE_CODE (TREE_OPERAND (ns, 0)) == SAVE_EXPR))
13384 return t;
13386 decl = TREE_OPERAND (TREE_OPERAND (ns, 0), 0);
13387 if ((JDECL_P (decl) || TREE_CODE (decl) == COMPONENT_REF)
13388 /* It's got to be the an equivalent decl */
13389 && java_decl_equiv (decl, TREE_OPERAND (TREE_OPERAND (c, 0), 0)))
13391 /* Shorten the NOP_EXPR/SAVE_EXPR path. */
13392 TREE_OPERAND (TREE_OPERAND (c, 1), 0) = TREE_OPERAND (ns, 0);
13393 /* Substitute the COMPOUND_EXPR by the BINOP_EXPR */
13394 TREE_OPERAND (t, 1) = TREE_OPERAND (c, 1);
13395 /* Change the right part of the BINOP_EXPR */
13396 TREE_OPERAND (TREE_OPERAND (t, 1), 1) = TREE_OPERAND (c, 0);
13399 return t;
13402 /* Binary operators (15.16 up to 15.18). We return error_mark_node on
13403 errors but we modify NODE so that it contains the type computed
13404 according to the expression, when it's fixed. Otherwise, we write
13405 error_mark_node as the type. It allows us to further the analysis
13406 of remaining nodes and detects more errors in certain cases. */
13408 static tree
13409 patch_binop (node, wfl_op1, wfl_op2)
13410 tree node;
13411 tree wfl_op1;
13412 tree wfl_op2;
13414 tree op1 = TREE_OPERAND (node, 0);
13415 tree op2 = TREE_OPERAND (node, 1);
13416 tree op1_type = TREE_TYPE (op1);
13417 tree op2_type = TREE_TYPE (op2);
13418 tree prom_type = NULL_TREE, cn;
13419 int code = TREE_CODE (node);
13421 /* If 1, tell the routine that we have to return error_mark_node
13422 after checking for the initialization of the RHS */
13423 int error_found = 0;
13425 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
13427 /* If either op<n>_type are NULL, this might be early signs of an
13428 error situation, unless it's too early to tell (in case we're
13429 handling a `+', `==', `!=' or `instanceof'.) We want to set op<n>_type
13430 correctly so the error can be later on reported accurately. */
13431 if (! (code == PLUS_EXPR || code == NE_EXPR
13432 || code == EQ_EXPR || code == INSTANCEOF_EXPR))
13434 tree n;
13435 if (! op1_type)
13437 n = java_complete_tree (op1);
13438 op1_type = TREE_TYPE (n);
13440 if (! op2_type)
13442 n = java_complete_tree (op2);
13443 op2_type = TREE_TYPE (n);
13447 switch (code)
13449 /* 15.16 Multiplicative operators */
13450 case MULT_EXPR: /* 15.16.1 Multiplication Operator * */
13451 case RDIV_EXPR: /* 15.16.2 Division Operator / */
13452 case TRUNC_DIV_EXPR: /* 15.16.2 Integral type Division Operator / */
13453 case TRUNC_MOD_EXPR: /* 15.16.3 Remainder operator % */
13454 if (!JNUMERIC_TYPE_P (op1_type) || !JNUMERIC_TYPE_P (op2_type))
13456 if (!JNUMERIC_TYPE_P (op1_type))
13457 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13458 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13459 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13460 TREE_TYPE (node) = error_mark_node;
13461 error_found = 1;
13462 break;
13464 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13465 /* Change the division operator if necessary */
13466 if (code == RDIV_EXPR && TREE_CODE (prom_type) == INTEGER_TYPE)
13467 TREE_SET_CODE (node, TRUNC_DIV_EXPR);
13469 if (TREE_CODE (prom_type) == INTEGER_TYPE
13470 && flag_use_divide_subroutine
13471 && ! flag_emit_class_files
13472 && (code == RDIV_EXPR || code == TRUNC_MOD_EXPR))
13473 return build_java_soft_divmod (TREE_CODE (node), prom_type, op1, op2);
13475 /* This one is more complicated. FLOATs are processed by a
13476 function call to soft_fmod. Duplicate the value of the
13477 COMPOUND_ASSIGN_P flag. */
13478 if (code == TRUNC_MOD_EXPR)
13480 tree mod = build_java_binop (TRUNC_MOD_EXPR, prom_type, op1, op2);
13481 COMPOUND_ASSIGN_P (mod) = COMPOUND_ASSIGN_P (node);
13482 TREE_SIDE_EFFECTS (mod)
13483 = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13484 return mod;
13486 break;
13488 /* 15.17 Additive Operators */
13489 case PLUS_EXPR: /* 15.17.1 String Concatenation Operator + */
13491 /* Operation is valid if either one argument is a string
13492 constant, a String object or a StringBuffer crafted for the
13493 purpose of the a previous usage of the String concatenation
13494 operator */
13496 if (TREE_CODE (op1) == STRING_CST
13497 || TREE_CODE (op2) == STRING_CST
13498 || JSTRING_TYPE_P (op1_type)
13499 || JSTRING_TYPE_P (op2_type)
13500 || IS_CRAFTED_STRING_BUFFER_P (op1)
13501 || IS_CRAFTED_STRING_BUFFER_P (op2))
13502 return build_string_concatenation (op1, op2);
13504 case MINUS_EXPR: /* 15.17.2 Additive Operators (+ and -) for
13505 Numeric Types */
13506 if (!JNUMERIC_TYPE_P (op1_type) || !JNUMERIC_TYPE_P (op2_type))
13508 if (!JNUMERIC_TYPE_P (op1_type))
13509 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13510 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13511 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13512 TREE_TYPE (node) = error_mark_node;
13513 error_found = 1;
13514 break;
13516 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13517 break;
13519 /* 15.18 Shift Operators */
13520 case LSHIFT_EXPR:
13521 case RSHIFT_EXPR:
13522 case URSHIFT_EXPR:
13523 if (!JINTEGRAL_TYPE_P (op1_type) || !JINTEGRAL_TYPE_P (op2_type))
13525 if (!JINTEGRAL_TYPE_P (op1_type))
13526 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op1_type);
13527 else
13529 if (JNUMERIC_TYPE_P (op2_type))
13530 parse_error_context (wfl_operator,
13531 "Incompatible type for `%s'. Explicit cast needed to convert shift distance from `%s' to integral",
13532 operator_string (node),
13533 lang_printable_name (op2_type, 0));
13534 else
13535 parse_error_context (wfl_operator,
13536 "Incompatible type for `%s'. Can't convert shift distance from `%s' to integral",
13537 operator_string (node),
13538 lang_printable_name (op2_type, 0));
13540 TREE_TYPE (node) = error_mark_node;
13541 error_found = 1;
13542 break;
13545 /* Unary numeric promotion (5.6.1) is performed on each operand
13546 separatly */
13547 op1 = do_unary_numeric_promotion (op1);
13548 op2 = do_unary_numeric_promotion (op2);
13550 /* The type of the shift expression is the type of the promoted
13551 type of the left-hand operand */
13552 prom_type = TREE_TYPE (op1);
13554 /* Shift int only up to 0x1f and long up to 0x3f */
13555 if (prom_type == int_type_node)
13556 op2 = fold (build (BIT_AND_EXPR, int_type_node, op2,
13557 build_int_2 (0x1f, 0)));
13558 else
13559 op2 = fold (build (BIT_AND_EXPR, int_type_node, op2,
13560 build_int_2 (0x3f, 0)));
13562 /* The >>> operator is a >> operating on unsigned quantities */
13563 if (code == URSHIFT_EXPR && ! flag_emit_class_files)
13565 tree to_return;
13566 tree utype = unsigned_type (prom_type);
13567 op1 = convert (utype, op1);
13568 TREE_SET_CODE (node, RSHIFT_EXPR);
13569 TREE_OPERAND (node, 0) = op1;
13570 TREE_OPERAND (node, 1) = op2;
13571 TREE_TYPE (node) = utype;
13572 to_return = convert (prom_type, node);
13573 /* Copy the original value of the COMPOUND_ASSIGN_P flag */
13574 COMPOUND_ASSIGN_P (to_return) = COMPOUND_ASSIGN_P (node);
13575 TREE_SIDE_EFFECTS (to_return)
13576 = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13577 return to_return;
13579 break;
13581 /* 15.19.1 Type Comparison Operator instaceof */
13582 case INSTANCEOF_EXPR:
13584 TREE_TYPE (node) = boolean_type_node;
13586 if (!(op2_type = resolve_type_during_patch (op2)))
13587 return error_mark_node;
13589 /* The first operand must be a reference type or the null type */
13590 if (!JREFERENCE_TYPE_P (op1_type) && op1 != null_pointer_node)
13591 error_found = 1; /* Error reported further below */
13593 /* The second operand must be a reference type */
13594 if (!JREFERENCE_TYPE_P (op2_type))
13596 SET_WFL_OPERATOR (wfl_operator, node, wfl_op2);
13597 parse_error_context
13598 (wfl_operator, "Invalid argument `%s' for `instanceof'",
13599 lang_printable_name (op2_type, 0));
13600 error_found = 1;
13603 if (!error_found && valid_ref_assignconv_cast_p (op1_type, op2_type, 1))
13605 /* If the first operand is null, the result is always false */
13606 if (op1 == null_pointer_node)
13607 return boolean_false_node;
13608 else if (flag_emit_class_files)
13610 TREE_OPERAND (node, 1) = op2_type;
13611 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op1);
13612 return node;
13614 /* Otherwise we have to invoke instance of to figure it out */
13615 else
13616 return build_instanceof (op1, op2_type);
13618 /* There is no way the expression operand can be an instance of
13619 the type operand. This is a compile time error. */
13620 else
13622 char *t1 = xstrdup (lang_printable_name (op1_type, 0));
13623 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
13624 parse_error_context
13625 (wfl_operator, "Impossible for `%s' to be instance of `%s'",
13626 t1, lang_printable_name (op2_type, 0));
13627 free (t1);
13628 error_found = 1;
13631 break;
13633 /* 15.21 Bitwise and Logical Operators */
13634 case BIT_AND_EXPR:
13635 case BIT_XOR_EXPR:
13636 case BIT_IOR_EXPR:
13637 if (JINTEGRAL_TYPE_P (op1_type) && JINTEGRAL_TYPE_P (op2_type))
13638 /* Binary numeric promotion is performed on both operand and the
13639 expression retain that type */
13640 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13642 else if (TREE_CODE (op1_type) == BOOLEAN_TYPE
13643 && TREE_CODE (op1_type) == BOOLEAN_TYPE)
13644 /* The type of the bitwise operator expression is BOOLEAN */
13645 prom_type = boolean_type_node;
13646 else
13648 if (!JINTEGRAL_TYPE_P (op1_type))
13649 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op1_type);
13650 if (!JINTEGRAL_TYPE_P (op2_type) && (op1_type != op2_type))
13651 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op2_type);
13652 TREE_TYPE (node) = error_mark_node;
13653 error_found = 1;
13654 /* Insert a break here if adding thing before the switch's
13655 break for this case */
13657 break;
13659 /* 15.22 Conditional-And Operator */
13660 case TRUTH_ANDIF_EXPR:
13661 /* 15.23 Conditional-Or Operator */
13662 case TRUTH_ORIF_EXPR:
13663 /* Operands must be of BOOLEAN type */
13664 if (TREE_CODE (op1_type) != BOOLEAN_TYPE ||
13665 TREE_CODE (op2_type) != BOOLEAN_TYPE)
13667 if (TREE_CODE (op1_type) != BOOLEAN_TYPE)
13668 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op1_type);
13669 if (TREE_CODE (op2_type) != BOOLEAN_TYPE && (op1_type != op2_type))
13670 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op2_type);
13671 TREE_TYPE (node) = boolean_type_node;
13672 error_found = 1;
13673 break;
13675 /* The type of the conditional operators is BOOLEAN */
13676 prom_type = boolean_type_node;
13677 break;
13679 /* 15.19.1 Numerical Comparison Operators <, <=, >, >= */
13680 case LT_EXPR:
13681 case GT_EXPR:
13682 case LE_EXPR:
13683 case GE_EXPR:
13684 /* The type of each of the operands must be a primitive numeric
13685 type */
13686 if (!JNUMERIC_TYPE_P (op1_type) || ! JNUMERIC_TYPE_P (op2_type))
13688 if (!JNUMERIC_TYPE_P (op1_type))
13689 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13690 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13691 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13692 TREE_TYPE (node) = boolean_type_node;
13693 error_found = 1;
13694 break;
13696 /* Binary numeric promotion is performed on the operands */
13697 binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13698 /* The type of the relation expression is always BOOLEAN */
13699 prom_type = boolean_type_node;
13700 break;
13702 /* 15.20 Equality Operator */
13703 case EQ_EXPR:
13704 case NE_EXPR:
13705 /* It's time for us to patch the strings. */
13706 if ((cn = patch_string (op1)))
13708 op1 = cn;
13709 op1_type = TREE_TYPE (op1);
13711 if ((cn = patch_string (op2)))
13713 op2 = cn;
13714 op2_type = TREE_TYPE (op2);
13717 /* 15.20.1 Numerical Equality Operators == and != */
13718 /* Binary numeric promotion is performed on the operands */
13719 if (JNUMERIC_TYPE_P (op1_type) && JNUMERIC_TYPE_P (op2_type))
13720 binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13722 /* 15.20.2 Boolean Equality Operators == and != */
13723 else if (TREE_CODE (op1_type) == BOOLEAN_TYPE &&
13724 TREE_CODE (op2_type) == BOOLEAN_TYPE)
13725 ; /* Nothing to do here */
13727 /* 15.20.3 Reference Equality Operators == and != */
13728 /* Types have to be either references or the null type. If
13729 they're references, it must be possible to convert either
13730 type to the other by casting conversion. */
13731 else if (op1 == null_pointer_node || op2 == null_pointer_node
13732 || (JREFERENCE_TYPE_P (op1_type) && JREFERENCE_TYPE_P (op2_type)
13733 && (valid_ref_assignconv_cast_p (op1_type, op2_type, 1)
13734 || valid_ref_assignconv_cast_p (op2_type,
13735 op1_type, 1))))
13736 ; /* Nothing to do here */
13738 /* Else we have an error figure what can't be converted into
13739 what and report the error */
13740 else
13742 char *t1;
13743 t1 = xstrdup (lang_printable_name (op1_type, 0));
13744 parse_error_context
13745 (wfl_operator,
13746 "Incompatible type for `%s'. Can't convert `%s' to `%s'",
13747 operator_string (node), t1,
13748 lang_printable_name (op2_type, 0));
13749 free (t1);
13750 TREE_TYPE (node) = boolean_type_node;
13751 error_found = 1;
13752 break;
13754 prom_type = boolean_type_node;
13755 break;
13758 if (error_found)
13759 return error_mark_node;
13761 TREE_OPERAND (node, 0) = op1;
13762 TREE_OPERAND (node, 1) = op2;
13763 TREE_TYPE (node) = prom_type;
13764 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13766 if (flag_emit_xref)
13767 return node;
13769 /* fold does not respect side-effect order as required for Java but not C.
13770 * Also, it sometimes create SAVE_EXPRs which are bad when emitting
13771 * bytecode.
13773 if (flag_emit_class_files ? (TREE_CONSTANT (op1) && TREE_CONSTANT (op2))
13774 : ! TREE_SIDE_EFFECTS (node))
13775 node = fold (node);
13776 return node;
13779 /* Concatenate the STRING_CST CSTE and STRING. When AFTER is a non
13780 zero value, the value of CSTE comes after the valude of STRING */
13782 static tree
13783 do_merge_string_cste (cste, string, string_len, after)
13784 tree cste;
13785 const char *string;
13786 int string_len, after;
13788 const char *old = TREE_STRING_POINTER (cste);
13789 int old_len = TREE_STRING_LENGTH (cste);
13790 int len = old_len + string_len;
13791 char *new = alloca (len+1);
13793 if (after)
13795 memcpy (new, string, string_len);
13796 memcpy (&new [string_len], old, old_len);
13798 else
13800 memcpy (new, old, old_len);
13801 memcpy (&new [old_len], string, string_len);
13803 new [len] = '\0';
13804 return build_string (len, new);
13807 /* Tries to merge OP1 (a STRING_CST) and OP2 (if suitable). Return a
13808 new STRING_CST on success, NULL_TREE on failure */
13810 static tree
13811 merge_string_cste (op1, op2, after)
13812 tree op1, op2;
13813 int after;
13815 /* Handle two string constants right away */
13816 if (TREE_CODE (op2) == STRING_CST)
13817 return do_merge_string_cste (op1, TREE_STRING_POINTER (op2),
13818 TREE_STRING_LENGTH (op2), after);
13820 /* Reasonable integer constant can be treated right away */
13821 if (TREE_CODE (op2) == INTEGER_CST && !TREE_CONSTANT_OVERFLOW (op2))
13823 static const char *boolean_true = "true";
13824 static const char *boolean_false = "false";
13825 static const char *null_pointer = "null";
13826 char ch[3];
13827 const char *string;
13829 if (op2 == boolean_true_node)
13830 string = boolean_true;
13831 else if (op2 == boolean_false_node)
13832 string = boolean_false;
13833 else if (op2 == null_pointer_node)
13834 string = null_pointer;
13835 else if (TREE_TYPE (op2) == char_type_node)
13837 ch[0] = (char )TREE_INT_CST_LOW (op2);
13838 ch[1] = '\0';
13839 string = ch;
13841 else
13842 string = print_int_node (op2);
13844 return do_merge_string_cste (op1, string, strlen (string), after);
13846 return NULL_TREE;
13849 /* Tries to statically concatenate OP1 and OP2 if possible. Either one
13850 has to be a STRING_CST and the other part must be a STRING_CST or a
13851 INTEGRAL constant. Return a new STRING_CST if the operation
13852 succeed, NULL_TREE otherwise.
13854 If the case we want to optimize for space, we might want to return
13855 NULL_TREE for each invocation of this routine. FIXME */
13857 static tree
13858 string_constant_concatenation (op1, op2)
13859 tree op1, op2;
13861 if (TREE_CODE (op1) == STRING_CST || (TREE_CODE (op2) == STRING_CST))
13863 tree string, rest;
13864 int invert;
13866 string = (TREE_CODE (op1) == STRING_CST ? op1 : op2);
13867 rest = (string == op1 ? op2 : op1);
13868 invert = (string == op1 ? 0 : 1 );
13870 /* Walk REST, only if it looks reasonable */
13871 if (TREE_CODE (rest) != STRING_CST
13872 && !IS_CRAFTED_STRING_BUFFER_P (rest)
13873 && !JSTRING_TYPE_P (TREE_TYPE (rest))
13874 && TREE_CODE (rest) == EXPR_WITH_FILE_LOCATION)
13876 rest = java_complete_tree (rest);
13877 if (rest == error_mark_node)
13878 return error_mark_node;
13879 rest = fold (rest);
13881 return merge_string_cste (string, rest, invert);
13883 return NULL_TREE;
13886 /* Implement the `+' operator. Does static optimization if possible,
13887 otherwise create (if necessary) and append elements to a
13888 StringBuffer. The StringBuffer will be carried around until it is
13889 used for a function call or an assignment. Then toString() will be
13890 called on it to turn it into a String object. */
13892 static tree
13893 build_string_concatenation (op1, op2)
13894 tree op1, op2;
13896 tree result;
13897 int side_effects = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13899 if (flag_emit_xref)
13900 return build (PLUS_EXPR, string_type_node, op1, op2);
13902 /* Try to do some static optimization */
13903 if ((result = string_constant_concatenation (op1, op2)))
13904 return result;
13906 /* Discard empty strings on either side of the expression */
13907 if (TREE_CODE (op1) == STRING_CST && TREE_STRING_LENGTH (op1) == 0)
13909 op1 = op2;
13910 op2 = NULL_TREE;
13912 else if (TREE_CODE (op2) == STRING_CST && TREE_STRING_LENGTH (op2) == 0)
13913 op2 = NULL_TREE;
13915 /* If operands are string constant, turn then into object references */
13916 if (TREE_CODE (op1) == STRING_CST)
13917 op1 = patch_string_cst (op1);
13918 if (op2 && TREE_CODE (op2) == STRING_CST)
13919 op2 = patch_string_cst (op2);
13921 /* If either one of the constant is null and the other non null
13922 operand is a String object, return it. */
13923 if (JSTRING_TYPE_P (TREE_TYPE (op1)) && !op2)
13924 return op1;
13926 /* If OP1 isn't already a StringBuffer, create and
13927 initialize a new one */
13928 if (!IS_CRAFTED_STRING_BUFFER_P (op1))
13930 /* Two solutions here:
13931 1) OP1 is a constant string reference, we call new StringBuffer(OP1)
13932 2) OP1 is something else, we call new StringBuffer().append(OP1). */
13933 if (TREE_CONSTANT (op1) && JSTRING_TYPE_P (TREE_TYPE (op1)))
13934 op1 = BUILD_STRING_BUFFER (op1);
13935 else
13937 tree aNew = BUILD_STRING_BUFFER (NULL_TREE);
13938 op1 = make_qualified_primary (aNew, BUILD_APPEND (op1), 0);
13942 if (op2)
13944 /* OP1 is no longer the last node holding a crafted StringBuffer */
13945 IS_CRAFTED_STRING_BUFFER_P (op1) = 0;
13946 /* Create a node for `{new...,xxx}.append (op2)' */
13947 if (op2)
13948 op1 = make_qualified_primary (op1, BUILD_APPEND (op2), 0);
13951 /* Mark the last node holding a crafted StringBuffer */
13952 IS_CRAFTED_STRING_BUFFER_P (op1) = 1;
13954 TREE_SIDE_EFFECTS (op1) = side_effects;
13955 return op1;
13958 /* Patch the string node NODE. NODE can be a STRING_CST of a crafted
13959 StringBuffer. If no string were found to be patched, return
13960 NULL. */
13962 static tree
13963 patch_string (node)
13964 tree node;
13966 if (node == error_mark_node)
13967 return error_mark_node;
13968 if (TREE_CODE (node) == STRING_CST)
13969 return patch_string_cst (node);
13970 else if (IS_CRAFTED_STRING_BUFFER_P (node))
13972 int saved = ctxp->explicit_constructor_p;
13973 tree invoke = build_method_invocation (wfl_to_string, NULL_TREE);
13974 tree ret;
13975 /* Temporary disable forbid the use of `this'. */
13976 ctxp->explicit_constructor_p = 0;
13977 ret = java_complete_tree (make_qualified_primary (node, invoke, 0));
13978 /* String concatenation arguments must be evaluated in order too. */
13979 ret = force_evaluation_order (ret);
13980 /* Restore it at its previous value */
13981 ctxp->explicit_constructor_p = saved;
13982 return ret;
13984 return NULL_TREE;
13987 /* Build the internal representation of a string constant. */
13989 static tree
13990 patch_string_cst (node)
13991 tree node;
13993 int location;
13994 if (! flag_emit_class_files)
13996 node = get_identifier (TREE_STRING_POINTER (node));
13997 location = alloc_name_constant (CONSTANT_String, node);
13998 node = build_ref_from_constant_pool (location);
14000 TREE_TYPE (node) = string_ptr_type_node;
14001 TREE_CONSTANT (node) = 1;
14002 return node;
14005 /* Build an incomplete unary operator expression. */
14007 static tree
14008 build_unaryop (op_token, op_location, op1)
14009 int op_token, op_location;
14010 tree op1;
14012 enum tree_code op;
14013 tree unaryop;
14014 switch (op_token)
14016 case PLUS_TK: op = UNARY_PLUS_EXPR; break;
14017 case MINUS_TK: op = NEGATE_EXPR; break;
14018 case NEG_TK: op = TRUTH_NOT_EXPR; break;
14019 case NOT_TK: op = BIT_NOT_EXPR; break;
14020 default: abort ();
14023 unaryop = build1 (op, NULL_TREE, op1);
14024 TREE_SIDE_EFFECTS (unaryop) = 1;
14025 /* Store the location of the operator, for better error report. The
14026 string of the operator will be rebuild based on the OP value. */
14027 EXPR_WFL_LINECOL (unaryop) = op_location;
14028 return unaryop;
14031 /* Special case for the ++/-- operators, since they require an extra
14032 argument to build, which is set to NULL and patched
14033 later. IS_POST_P is 1 if the operator, 0 otherwise. */
14035 static tree
14036 build_incdec (op_token, op_location, op1, is_post_p)
14037 int op_token, op_location;
14038 tree op1;
14039 int is_post_p;
14041 static enum tree_code lookup [2][2] =
14043 { PREDECREMENT_EXPR, PREINCREMENT_EXPR, },
14044 { POSTDECREMENT_EXPR, POSTINCREMENT_EXPR, },
14046 tree node = build (lookup [is_post_p][(op_token - DECR_TK)],
14047 NULL_TREE, op1, NULL_TREE);
14048 TREE_SIDE_EFFECTS (node) = 1;
14049 /* Store the location of the operator, for better error report. The
14050 string of the operator will be rebuild based on the OP value. */
14051 EXPR_WFL_LINECOL (node) = op_location;
14052 return node;
14055 /* Build an incomplete cast operator, based on the use of the
14056 CONVERT_EXPR. Note that TREE_TYPE of the constructed node is
14057 set. java_complete_tree is trained to walk a CONVERT_EXPR even
14058 though its type is already set. */
14060 static tree
14061 build_cast (location, type, exp)
14062 int location;
14063 tree type, exp;
14065 tree node = build1 (CONVERT_EXPR, type, exp);
14066 EXPR_WFL_LINECOL (node) = location;
14067 return node;
14070 /* Build an incomplete class reference operator. */
14071 static tree
14072 build_incomplete_class_ref (location, class_name)
14073 int location;
14074 tree class_name;
14076 tree node = build1 (CLASS_LITERAL, NULL_TREE, class_name);
14077 EXPR_WFL_LINECOL (node) = location;
14078 return node;
14081 /* Complete an incomplete class reference operator. */
14082 static tree
14083 patch_incomplete_class_ref (node)
14084 tree node;
14086 tree type = TREE_OPERAND (node, 0);
14087 tree ref_type;
14089 if (!(ref_type = resolve_type_during_patch (type)))
14090 return error_mark_node;
14092 if (!flag_emit_class_files || JPRIMITIVE_TYPE_P (ref_type))
14094 tree dot = build_class_ref (ref_type);
14095 /* A class referenced by `foo.class' is initialized. */
14096 if (!flag_emit_class_files)
14097 dot = build_class_init (ref_type, dot);
14098 return java_complete_tree (dot);
14101 /* If we're emitting class files and we have to deal with non
14102 primitive types, we invoke (and consider generating) the
14103 synthetic static method `class$'. */
14104 if (!TYPE_DOT_CLASS (current_class))
14105 build_dot_class_method (current_class);
14106 ref_type = build_dot_class_method_invocation (ref_type);
14107 return java_complete_tree (ref_type);
14110 /* 15.14 Unary operators. We return error_mark_node in case of error,
14111 but preserve the type of NODE if the type is fixed. */
14113 static tree
14114 patch_unaryop (node, wfl_op)
14115 tree node;
14116 tree wfl_op;
14118 tree op = TREE_OPERAND (node, 0);
14119 tree op_type = TREE_TYPE (op);
14120 tree prom_type = NULL_TREE, value, decl;
14121 int outer_field_flag = 0;
14122 int code = TREE_CODE (node);
14123 int error_found = 0;
14125 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14127 switch (code)
14129 /* 15.13.2 Postfix Increment Operator ++ */
14130 case POSTINCREMENT_EXPR:
14131 /* 15.13.3 Postfix Increment Operator -- */
14132 case POSTDECREMENT_EXPR:
14133 /* 15.14.1 Prefix Increment Operator ++ */
14134 case PREINCREMENT_EXPR:
14135 /* 15.14.2 Prefix Decrement Operator -- */
14136 case PREDECREMENT_EXPR:
14137 op = decl = strip_out_static_field_access_decl (op);
14138 outer_field_flag = outer_field_expanded_access_p (op, NULL, NULL, NULL);
14139 /* We might be trying to change an outer field accessed using
14140 access method. */
14141 if (outer_field_flag)
14143 /* Retrieve the decl of the field we're trying to access. We
14144 do that by first retrieving the function we would call to
14145 access the field. It has been already verified that this
14146 field isn't final */
14147 if (flag_emit_class_files)
14148 decl = TREE_OPERAND (op, 0);
14149 else
14150 decl = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (op, 0), 0), 0);
14151 decl = DECL_FUNCTION_ACCESS_DECL (decl);
14153 /* We really should have a JAVA_ARRAY_EXPR to avoid this */
14154 else if (!JDECL_P (decl)
14155 && TREE_CODE (decl) != COMPONENT_REF
14156 && !(flag_emit_class_files && TREE_CODE (decl) == ARRAY_REF)
14157 && TREE_CODE (decl) != INDIRECT_REF
14158 && !(TREE_CODE (decl) == COMPOUND_EXPR
14159 && TREE_OPERAND (decl, 1)
14160 && (TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)))
14162 tree lvalue;
14163 /* Before screaming, check that we're not in fact trying to
14164 increment a optimized static final access, in which case
14165 we issue an different error message. */
14166 if (!(TREE_CODE (wfl_op) == EXPR_WITH_FILE_LOCATION
14167 && resolve_expression_name (wfl_op, &lvalue)
14168 && check_final_assignment (lvalue, wfl_op)))
14169 parse_error_context (wfl_operator, "Invalid argument to `%s'",
14170 operator_string (node));
14171 TREE_TYPE (node) = error_mark_node;
14172 error_found = 1;
14175 if (check_final_assignment (op, wfl_op))
14176 error_found = 1;
14178 /* From now on, we know that op if a variable and that it has a
14179 valid wfl. We use wfl_op to locate errors related to the
14180 ++/-- operand. */
14181 else if (!JNUMERIC_TYPE_P (op_type))
14183 parse_error_context
14184 (wfl_op, "Invalid argument type `%s' to `%s'",
14185 lang_printable_name (op_type, 0), operator_string (node));
14186 TREE_TYPE (node) = error_mark_node;
14187 error_found = 1;
14189 else
14191 /* Before the addition, binary numeric promotion is performed on
14192 both operands, if really necessary */
14193 if (JINTEGRAL_TYPE_P (op_type))
14195 value = build_int_2 (1, 0);
14196 TREE_TYPE (value) = TREE_TYPE (node) = op_type;
14198 else
14200 value = build_int_2 (1, 0);
14201 TREE_TYPE (node) =
14202 binary_numeric_promotion (op_type,
14203 TREE_TYPE (value), &op, &value);
14206 /* We remember we might be accessing an outer field */
14207 if (outer_field_flag)
14209 /* We re-generate an access to the field */
14210 value = build (PLUS_EXPR, TREE_TYPE (op),
14211 build_outer_field_access (wfl_op, decl), value);
14213 /* And we patch the original access$() into a write
14214 with plus_op as a rhs */
14215 return outer_field_access_fix (node, op, value);
14218 /* And write back into the node. */
14219 TREE_OPERAND (node, 0) = op;
14220 TREE_OPERAND (node, 1) = value;
14221 /* Convert the overall back into its original type, if
14222 necessary, and return */
14223 if (JINTEGRAL_TYPE_P (op_type))
14224 return fold (node);
14225 else
14226 return fold (convert (op_type, node));
14228 break;
14230 /* 15.14.3 Unary Plus Operator + */
14231 case UNARY_PLUS_EXPR:
14232 /* 15.14.4 Unary Minus Operator - */
14233 case NEGATE_EXPR:
14234 if (!JNUMERIC_TYPE_P (op_type))
14236 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op_type);
14237 TREE_TYPE (node) = error_mark_node;
14238 error_found = 1;
14240 /* Unary numeric promotion is performed on operand */
14241 else
14243 op = do_unary_numeric_promotion (op);
14244 prom_type = TREE_TYPE (op);
14245 if (code == UNARY_PLUS_EXPR)
14246 return fold (op);
14248 break;
14250 /* 15.14.5 Bitwise Complement Operator ~ */
14251 case BIT_NOT_EXPR:
14252 if (!JINTEGRAL_TYPE_P (op_type))
14254 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op_type);
14255 TREE_TYPE (node) = error_mark_node;
14256 error_found = 1;
14258 else
14260 op = do_unary_numeric_promotion (op);
14261 prom_type = TREE_TYPE (op);
14263 break;
14265 /* 15.14.6 Logical Complement Operator ! */
14266 case TRUTH_NOT_EXPR:
14267 if (TREE_CODE (op_type) != BOOLEAN_TYPE)
14269 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op_type);
14270 /* But the type is known. We will report an error if further
14271 attempt of a assignment is made with this rhs */
14272 TREE_TYPE (node) = boolean_type_node;
14273 error_found = 1;
14275 else
14276 prom_type = boolean_type_node;
14277 break;
14279 /* 15.15 Cast Expression */
14280 case CONVERT_EXPR:
14281 value = patch_cast (node, wfl_operator);
14282 if (value == error_mark_node)
14284 /* If this cast is part of an assignment, we tell the code
14285 that deals with it not to complain about a mismatch,
14286 because things have been cast, anyways */
14287 TREE_TYPE (node) = error_mark_node;
14288 error_found = 1;
14290 else
14292 value = fold (value);
14293 TREE_SIDE_EFFECTS (value) = TREE_SIDE_EFFECTS (op);
14294 return value;
14296 break;
14299 if (error_found)
14300 return error_mark_node;
14302 /* There are cases where node has been replaced by something else
14303 and we don't end up returning here: UNARY_PLUS_EXPR,
14304 CONVERT_EXPR, {POST,PRE}{INCR,DECR}EMENT_EXPR. */
14305 TREE_OPERAND (node, 0) = fold (op);
14306 TREE_TYPE (node) = prom_type;
14307 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op);
14308 return fold (node);
14311 /* Generic type resolution that sometimes takes place during node
14312 patching. Returned the resolved type or generate an error
14313 message. Return the resolved type or NULL_TREE. */
14315 static tree
14316 resolve_type_during_patch (type)
14317 tree type;
14319 if (unresolved_type_p (type, NULL))
14321 tree type_decl = resolve_and_layout (EXPR_WFL_NODE (type), type);
14322 if (!type_decl)
14324 parse_error_context (type,
14325 "Class `%s' not found in type declaration",
14326 IDENTIFIER_POINTER (EXPR_WFL_NODE (type)));
14327 return NULL_TREE;
14329 return TREE_TYPE (type_decl);
14331 return type;
14333 /* 5.5 Casting Conversion. error_mark_node is returned if an error is
14334 found. Otherwise NODE or something meant to replace it is returned. */
14336 static tree
14337 patch_cast (node, wfl_op)
14338 tree node;
14339 tree wfl_op;
14341 tree op = TREE_OPERAND (node, 0);
14342 tree op_type = TREE_TYPE (op);
14343 tree cast_type = TREE_TYPE (node);
14344 char *t1;
14346 /* First resolve OP_TYPE if unresolved */
14347 if (!(cast_type = resolve_type_during_patch (cast_type)))
14348 return error_mark_node;
14350 /* Check on cast that are proven correct at compile time */
14351 if (JNUMERIC_TYPE_P (cast_type) && JNUMERIC_TYPE_P (op_type))
14353 /* Same type */
14354 if (cast_type == op_type)
14355 return node;
14357 /* float and double type are converted to the original type main
14358 variant and then to the target type. */
14359 if (JFLOAT_TYPE_P (op_type) && TREE_CODE (cast_type) == CHAR_TYPE)
14360 op = convert (integer_type_node, op);
14362 /* Try widening/narowwing convertion. Potentially, things need
14363 to be worked out in gcc so we implement the extreme cases
14364 correctly. fold_convert() needs to be fixed. */
14365 return convert (cast_type, op);
14368 /* It's also valid to cast a boolean into a boolean */
14369 if (op_type == boolean_type_node && cast_type == boolean_type_node)
14370 return node;
14372 /* null can be casted to references */
14373 if (op == null_pointer_node && JREFERENCE_TYPE_P (cast_type))
14374 return build_null_of_type (cast_type);
14376 /* The remaining legal casts involve conversion between reference
14377 types. Check for their compile time correctness. */
14378 if (JREFERENCE_TYPE_P (op_type) && JREFERENCE_TYPE_P (cast_type)
14379 && valid_ref_assignconv_cast_p (op_type, cast_type, 1))
14381 TREE_TYPE (node) = promote_type (cast_type);
14382 /* Now, the case can be determined correct at compile time if
14383 OP_TYPE can be converted into CAST_TYPE by assignment
14384 conversion (5.2) */
14386 if (valid_ref_assignconv_cast_p (op_type, cast_type, 0))
14388 TREE_SET_CODE (node, NOP_EXPR);
14389 return node;
14392 if (flag_emit_class_files)
14394 TREE_SET_CODE (node, CONVERT_EXPR);
14395 return node;
14398 /* The cast requires a run-time check */
14399 return build (CALL_EXPR, promote_type (cast_type),
14400 build_address_of (soft_checkcast_node),
14401 tree_cons (NULL_TREE, build_class_ref (cast_type),
14402 build_tree_list (NULL_TREE, op)),
14403 NULL_TREE);
14406 /* Any other casts are proven incorrect at compile time */
14407 t1 = xstrdup (lang_printable_name (op_type, 0));
14408 parse_error_context (wfl_op, "Invalid cast from `%s' to `%s'",
14409 t1, lang_printable_name (cast_type, 0));
14410 free (t1);
14411 return error_mark_node;
14414 /* Build a null constant and give it the type TYPE. */
14416 static tree
14417 build_null_of_type (type)
14418 tree type;
14420 tree node = build_int_2 (0, 0);
14421 TREE_TYPE (node) = promote_type (type);
14422 return node;
14425 /* Build an ARRAY_REF incomplete tree node. Note that operand 1 isn't
14426 a list of indices. */
14427 static tree
14428 build_array_ref (location, array, index)
14429 int location;
14430 tree array, index;
14432 tree node = build (ARRAY_REF, NULL_TREE, array, index);
14433 EXPR_WFL_LINECOL (node) = location;
14434 return node;
14437 /* 15.12 Array Access Expression */
14439 static tree
14440 patch_array_ref (node)
14441 tree node;
14443 tree array = TREE_OPERAND (node, 0);
14444 tree array_type = TREE_TYPE (array);
14445 tree index = TREE_OPERAND (node, 1);
14446 tree index_type = TREE_TYPE (index);
14447 int error_found = 0;
14449 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14451 if (TREE_CODE (array_type) == POINTER_TYPE)
14452 array_type = TREE_TYPE (array_type);
14454 /* The array reference must be an array */
14455 if (!TYPE_ARRAY_P (array_type))
14457 parse_error_context
14458 (wfl_operator,
14459 "`[]' can only be applied to arrays. It can't be applied to `%s'",
14460 lang_printable_name (array_type, 0));
14461 TREE_TYPE (node) = error_mark_node;
14462 error_found = 1;
14465 /* The array index undergoes unary numeric promotion. The promoted
14466 type must be int */
14467 index = do_unary_numeric_promotion (index);
14468 if (TREE_TYPE (index) != int_type_node)
14470 if (valid_cast_to_p (index_type, int_type_node))
14471 parse_error_context (wfl_operator,
14472 "Incompatible type for `[]'. Explicit cast needed to convert `%s' to `int'",
14473 lang_printable_name (index_type, 0));
14474 else
14475 parse_error_context (wfl_operator,
14476 "Incompatible type for `[]'. Can't convert `%s' to `int'",
14477 lang_printable_name (index_type, 0));
14478 TREE_TYPE (node) = error_mark_node;
14479 error_found = 1;
14482 if (error_found)
14483 return error_mark_node;
14485 array_type = TYPE_ARRAY_ELEMENT (array_type);
14487 if (flag_emit_class_files || flag_emit_xref)
14489 TREE_OPERAND (node, 0) = array;
14490 TREE_OPERAND (node, 1) = index;
14492 else
14494 /* The save_expr is for correct evaluation order. It would be cleaner
14495 to use force_evaluation_order (see comment there), but that is
14496 difficult when we also have to deal with bounds checking. */
14497 if (TREE_SIDE_EFFECTS (index))
14498 array = save_expr (array);
14499 node = build_java_arrayaccess (array, array_type, index);
14500 if (TREE_SIDE_EFFECTS (index))
14501 node = build (COMPOUND_EXPR, array_type, array, node);
14503 TREE_TYPE (node) = array_type;
14504 return node;
14507 /* 15.9 Array Creation Expressions */
14509 static tree
14510 build_newarray_node (type, dims, extra_dims)
14511 tree type;
14512 tree dims;
14513 int extra_dims;
14515 tree node =
14516 build (NEW_ARRAY_EXPR, NULL_TREE, type, nreverse (dims),
14517 build_int_2 (extra_dims, 0));
14518 return node;
14521 static tree
14522 patch_newarray (node)
14523 tree node;
14525 tree type = TREE_OPERAND (node, 0);
14526 tree dims = TREE_OPERAND (node, 1);
14527 tree cdim, array_type;
14528 int error_found = 0;
14529 int ndims = 0;
14530 int xdims = TREE_INT_CST_LOW (TREE_OPERAND (node, 2));
14532 /* Dimension types are verified. It's better for the types to be
14533 verified in order. */
14534 for (cdim = dims, ndims = 0; cdim; cdim = TREE_CHAIN (cdim), ndims++ )
14536 int dim_error = 0;
14537 tree dim = TREE_VALUE (cdim);
14539 /* Dim might have been saved during its evaluation */
14540 dim = (TREE_CODE (dim) == SAVE_EXPR ? TREE_OPERAND (dim, 0) : dim);
14542 /* The type of each specified dimension must be an integral type. */
14543 if (!JINTEGRAL_TYPE_P (TREE_TYPE (dim)))
14544 dim_error = 1;
14546 /* Each expression undergoes an unary numeric promotion (5.6.1) and the
14547 promoted type must be int. */
14548 else
14550 dim = do_unary_numeric_promotion (dim);
14551 if (TREE_TYPE (dim) != int_type_node)
14552 dim_error = 1;
14555 /* Report errors on types here */
14556 if (dim_error)
14558 parse_error_context
14559 (TREE_PURPOSE (cdim),
14560 "Incompatible type for dimension in array creation expression. %s convert `%s' to `int'",
14561 (valid_cast_to_p (TREE_TYPE (dim), int_type_node) ?
14562 "Explicit cast needed to" : "Can't"),
14563 lang_printable_name (TREE_TYPE (dim), 0));
14564 error_found = 1;
14567 TREE_PURPOSE (cdim) = NULL_TREE;
14570 /* Resolve array base type if unresolved */
14571 if (!(type = resolve_type_during_patch (type)))
14572 error_found = 1;
14574 if (error_found)
14576 /* We don't want further evaluation of this bogus array creation
14577 operation */
14578 TREE_TYPE (node) = error_mark_node;
14579 return error_mark_node;
14582 /* Set array_type to the actual (promoted) array type of the result. */
14583 if (TREE_CODE (type) == RECORD_TYPE)
14584 type = build_pointer_type (type);
14585 while (--xdims >= 0)
14587 type = promote_type (build_java_array_type (type, -1));
14589 dims = nreverse (dims);
14590 array_type = type;
14591 for (cdim = dims; cdim; cdim = TREE_CHAIN (cdim))
14593 type = array_type;
14594 array_type
14595 = build_java_array_type (type,
14596 TREE_CODE (cdim) == INTEGER_CST
14597 ? (HOST_WIDE_INT) TREE_INT_CST_LOW (cdim)
14598 : -1);
14599 array_type = promote_type (array_type);
14601 dims = nreverse (dims);
14603 /* The node is transformed into a function call. Things are done
14604 differently according to the number of dimensions. If the number
14605 of dimension is equal to 1, then the nature of the base type
14606 (primitive or not) matters. */
14607 if (ndims == 1)
14608 return build_new_array (type, TREE_VALUE (dims));
14610 /* Can't reuse what's already written in expr.c because it uses the
14611 JVM stack representation. Provide a build_multianewarray. FIXME */
14612 return build (CALL_EXPR, array_type,
14613 build_address_of (soft_multianewarray_node),
14614 tree_cons (NULL_TREE, build_class_ref (TREE_TYPE (array_type)),
14615 tree_cons (NULL_TREE,
14616 build_int_2 (ndims, 0), dims )),
14617 NULL_TREE);
14620 /* 10.6 Array initializer. */
14622 /* Build a wfl for array element that don't have one, so we can
14623 pin-point errors. */
14625 static tree
14626 maybe_build_array_element_wfl (node)
14627 tree node;
14629 if (TREE_CODE (node) != EXPR_WITH_FILE_LOCATION)
14630 return build_expr_wfl (NULL_TREE, ctxp->filename,
14631 ctxp->elc.line, ctxp->elc.prev_col);
14632 else
14633 return NULL_TREE;
14636 /* Build a NEW_ARRAY_INIT that features a CONSTRUCTOR node. This makes
14637 identification of initialized arrays easier to detect during walk
14638 and expansion. */
14640 static tree
14641 build_new_array_init (location, values)
14642 int location;
14643 tree values;
14645 tree constructor = build (CONSTRUCTOR, NULL_TREE, NULL_TREE, values);
14646 tree to_return = build1 (NEW_ARRAY_INIT, NULL_TREE, constructor);
14647 EXPR_WFL_LINECOL (to_return) = location;
14648 return to_return;
14651 /* Expand a NEW_ARRAY_INIT node. Return error_mark_node if an error
14652 occurred. Otherwise return NODE after having set its type
14653 appropriately. */
14655 static tree
14656 patch_new_array_init (type, node)
14657 tree type, node;
14659 int error_seen = 0;
14660 tree current, element_type;
14661 HOST_WIDE_INT length;
14662 int all_constant = 1;
14663 tree init = TREE_OPERAND (node, 0);
14665 if (TREE_CODE (type) != POINTER_TYPE || ! TYPE_ARRAY_P (TREE_TYPE (type)))
14667 parse_error_context (node,
14668 "Invalid array initializer for non-array type `%s'",
14669 lang_printable_name (type, 1));
14670 return error_mark_node;
14672 type = TREE_TYPE (type);
14673 element_type = TYPE_ARRAY_ELEMENT (type);
14675 CONSTRUCTOR_ELTS (init) = nreverse (CONSTRUCTOR_ELTS (init));
14677 for (length = 0, current = CONSTRUCTOR_ELTS (init);
14678 current; length++, current = TREE_CHAIN (current))
14680 tree elt = TREE_VALUE (current);
14681 if (elt == NULL_TREE || TREE_CODE (elt) != NEW_ARRAY_INIT)
14683 error_seen |= array_constructor_check_entry (element_type, current);
14684 elt = TREE_VALUE (current);
14685 /* When compiling to native code, STRING_CST is converted to
14686 INDIRECT_REF, but still with a TREE_CONSTANT flag. */
14687 if (! TREE_CONSTANT (elt) || TREE_CODE (elt) == INDIRECT_REF)
14688 all_constant = 0;
14690 else
14692 TREE_VALUE (current) = patch_new_array_init (element_type, elt);
14693 TREE_PURPOSE (current) = NULL_TREE;
14694 all_constant = 0;
14696 if (elt && TREE_CODE (elt) == TREE_LIST
14697 && TREE_VALUE (elt) == error_mark_node)
14698 error_seen = 1;
14701 if (error_seen)
14702 return error_mark_node;
14704 /* Create a new type. We can't reuse the one we have here by
14705 patching its dimension because it originally is of dimension -1
14706 hence reused by gcc. This would prevent triangular arrays. */
14707 type = build_java_array_type (element_type, length);
14708 TREE_TYPE (init) = TREE_TYPE (TREE_CHAIN (TREE_CHAIN (TYPE_FIELDS (type))));
14709 TREE_TYPE (node) = promote_type (type);
14710 TREE_CONSTANT (init) = all_constant;
14711 TREE_CONSTANT (node) = all_constant;
14712 return node;
14715 /* Verify that one entry of the initializer element list can be
14716 assigned to the array base type. Report 1 if an error occurred, 0
14717 otherwise. */
14719 static int
14720 array_constructor_check_entry (type, entry)
14721 tree type, entry;
14723 char *array_type_string = NULL; /* For error reports */
14724 tree value, type_value, new_value, wfl_value, patched;
14725 int error_seen = 0;
14727 new_value = NULL_TREE;
14728 wfl_value = TREE_VALUE (entry);
14730 value = java_complete_tree (TREE_VALUE (entry));
14731 /* patch_string return error_mark_node if arg is error_mark_node */
14732 if ((patched = patch_string (value)))
14733 value = patched;
14734 if (value == error_mark_node)
14735 return 1;
14737 type_value = TREE_TYPE (value);
14739 /* At anytime, try_builtin_assignconv can report a warning on
14740 constant overflow during narrowing. */
14741 SET_WFL_OPERATOR (wfl_operator, TREE_PURPOSE (entry), wfl_value);
14742 new_value = try_builtin_assignconv (wfl_operator, type, value);
14743 if (!new_value && (new_value = try_reference_assignconv (type, value)))
14744 type_value = promote_type (type);
14746 /* Check and report errors */
14747 if (!new_value)
14749 const char *msg = (!valid_cast_to_p (type_value, type) ?
14750 "Can't" : "Explicit cast needed to");
14751 if (!array_type_string)
14752 array_type_string = xstrdup (lang_printable_name (type, 1));
14753 parse_error_context
14754 (wfl_operator, "Incompatible type for array. %s convert `%s' to `%s'",
14755 msg, lang_printable_name (type_value, 1), array_type_string);
14756 error_seen = 1;
14759 if (new_value)
14761 new_value = maybe_build_primttype_type_ref (new_value, wfl_value);
14762 TREE_VALUE (entry) = new_value;
14765 if (array_type_string)
14766 free (array_type_string);
14768 TREE_PURPOSE (entry) = NULL_TREE;
14769 return error_seen;
14772 static tree
14773 build_this (location)
14774 int location;
14776 tree node = build_wfl_node (this_identifier_node);
14777 TREE_SET_CODE (node, THIS_EXPR);
14778 EXPR_WFL_LINECOL (node) = location;
14779 return node;
14782 /* 14.15 The return statement. It builds a modify expression that
14783 assigns the returned value to the RESULT_DECL that hold the value
14784 to be returned. */
14786 static tree
14787 build_return (location, op)
14788 int location;
14789 tree op;
14791 tree node = build1 (RETURN_EXPR, NULL_TREE, op);
14792 EXPR_WFL_LINECOL (node) = location;
14793 node = build_debugable_stmt (location, node);
14794 return node;
14797 static tree
14798 patch_return (node)
14799 tree node;
14801 tree return_exp = TREE_OPERAND (node, 0);
14802 tree meth = current_function_decl;
14803 tree mtype = TREE_TYPE (TREE_TYPE (current_function_decl));
14804 int error_found = 0;
14806 TREE_TYPE (node) = error_mark_node;
14807 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14809 /* It's invalid to have a return value within a function that is
14810 declared with the keyword void or that is a constructor */
14811 if (return_exp && (mtype == void_type_node || DECL_CONSTRUCTOR_P (meth)))
14812 error_found = 1;
14814 /* It's invalid to use a return statement in a static block */
14815 if (DECL_CLINIT_P (current_function_decl))
14816 error_found = 1;
14818 /* It's invalid to have a no return value within a function that
14819 isn't declared with the keyword `void' */
14820 if (!return_exp && (mtype != void_type_node && !DECL_CONSTRUCTOR_P (meth)))
14821 error_found = 2;
14823 if (DECL_INSTINIT_P (current_function_decl))
14824 error_found = 1;
14826 if (error_found)
14828 if (DECL_INSTINIT_P (current_function_decl))
14829 parse_error_context (wfl_operator,
14830 "`return' inside instance initializer");
14832 else if (DECL_CLINIT_P (current_function_decl))
14833 parse_error_context (wfl_operator,
14834 "`return' inside static initializer");
14836 else if (!DECL_CONSTRUCTOR_P (meth))
14838 char *t = xstrdup (lang_printable_name (mtype, 0));
14839 parse_error_context (wfl_operator,
14840 "`return' with%s value from `%s %s'",
14841 (error_found == 1 ? "" : "out"),
14842 t, lang_printable_name (meth, 0));
14843 free (t);
14845 else
14846 parse_error_context (wfl_operator,
14847 "`return' with value from constructor `%s'",
14848 lang_printable_name (meth, 0));
14849 return error_mark_node;
14852 /* If we have a return_exp, build a modify expression and expand
14853 it. Note: at that point, the assignment is declared valid, but we
14854 may want to carry some more hacks */
14855 if (return_exp)
14857 tree exp = java_complete_tree (return_exp);
14858 tree modify, patched;
14860 /* If the function returned value and EXP are booleans, EXP has
14861 to be converted into the type of DECL_RESULT, which is integer
14862 (see complete_start_java_method) */
14863 if (TREE_TYPE (exp) == boolean_type_node &&
14864 TREE_TYPE (TREE_TYPE (meth)) == boolean_type_node)
14865 exp = convert_to_integer (TREE_TYPE (DECL_RESULT (meth)), exp);
14867 /* `null' can be assigned to a function returning a reference */
14868 if (JREFERENCE_TYPE_P (TREE_TYPE (TREE_TYPE (meth))) &&
14869 exp == null_pointer_node)
14870 exp = build_null_of_type (TREE_TYPE (TREE_TYPE (meth)));
14872 if ((patched = patch_string (exp)))
14873 exp = patched;
14875 modify = build (MODIFY_EXPR, NULL_TREE, DECL_RESULT (meth), exp);
14876 EXPR_WFL_LINECOL (modify) = EXPR_WFL_LINECOL (node);
14877 modify = java_complete_tree (modify);
14879 if (modify != error_mark_node)
14881 TREE_SIDE_EFFECTS (modify) = 1;
14882 TREE_OPERAND (node, 0) = modify;
14884 else
14885 return error_mark_node;
14887 TREE_TYPE (node) = void_type_node;
14888 TREE_SIDE_EFFECTS (node) = 1;
14889 return node;
14892 /* 14.8 The if Statement */
14894 static tree
14895 build_if_else_statement (location, expression, if_body, else_body)
14896 int location;
14897 tree expression, if_body, else_body;
14899 tree node;
14900 if (!else_body)
14901 else_body = empty_stmt_node;
14902 node = build (COND_EXPR, NULL_TREE, expression, if_body, else_body);
14903 EXPR_WFL_LINECOL (node) = location;
14904 node = build_debugable_stmt (location, node);
14905 return node;
14908 static tree
14909 patch_if_else_statement (node)
14910 tree node;
14912 tree expression = TREE_OPERAND (node, 0);
14914 TREE_TYPE (node) = error_mark_node;
14915 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14917 /* The type of expression must be boolean */
14918 if (TREE_TYPE (expression) != boolean_type_node
14919 && TREE_TYPE (expression) != promoted_boolean_type_node)
14921 parse_error_context
14922 (wfl_operator,
14923 "Incompatible type for `if'. Can't convert `%s' to `boolean'",
14924 lang_printable_name (TREE_TYPE (expression), 0));
14925 return error_mark_node;
14928 TREE_TYPE (node) = void_type_node;
14929 TREE_SIDE_EFFECTS (node) = 1;
14930 CAN_COMPLETE_NORMALLY (node)
14931 = CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1))
14932 | CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 2));
14933 return node;
14936 /* 14.6 Labeled Statements */
14938 /* Action taken when a lableled statement is parsed. a new
14939 LABELED_BLOCK_EXPR is created. No statement is attached to the
14940 label, yet. LABEL can be NULL_TREE for artificially-generated blocks. */
14942 static tree
14943 build_labeled_block (location, label)
14944 int location;
14945 tree label;
14947 tree label_name ;
14948 tree label_decl, node;
14949 if (label == NULL_TREE || label == continue_identifier_node)
14950 label_name = label;
14951 else
14953 label_name = merge_qualified_name (label_id, label);
14954 /* Issue an error if we try to reuse a label that was previously
14955 declared */
14956 if (IDENTIFIER_LOCAL_VALUE (label_name))
14958 EXPR_WFL_LINECOL (wfl_operator) = location;
14959 parse_error_context (wfl_operator,
14960 "Declaration of `%s' shadows a previous label declaration",
14961 IDENTIFIER_POINTER (label));
14962 EXPR_WFL_LINECOL (wfl_operator) =
14963 EXPR_WFL_LINECOL (IDENTIFIER_LOCAL_VALUE (label_name));
14964 parse_error_context (wfl_operator,
14965 "This is the location of the previous declaration of label `%s'",
14966 IDENTIFIER_POINTER (label));
14967 java_error_count--;
14971 label_decl = create_label_decl (label_name);
14972 node = build (LABELED_BLOCK_EXPR, NULL_TREE, label_decl, NULL_TREE);
14973 EXPR_WFL_LINECOL (node) = location;
14974 TREE_SIDE_EFFECTS (node) = 1;
14975 return node;
14978 /* A labeled statement LBE is attached a statement. */
14980 static tree
14981 finish_labeled_statement (lbe, statement)
14982 tree lbe; /* Labeled block expr */
14983 tree statement;
14985 /* In anyways, tie the loop to its statement */
14986 LABELED_BLOCK_BODY (lbe) = statement;
14987 pop_labeled_block ();
14988 POP_LABELED_BLOCK ();
14989 return lbe;
14992 /* 14.10, 14.11, 14.12 Loop Statements */
14994 /* Create an empty LOOP_EXPR and make it the last in the nested loop
14995 list. */
14997 static tree
14998 build_new_loop (loop_body)
14999 tree loop_body;
15001 tree loop = build (LOOP_EXPR, NULL_TREE, loop_body);
15002 TREE_SIDE_EFFECTS (loop) = 1;
15003 PUSH_LOOP (loop);
15004 return loop;
15007 /* Create a loop body according to the following structure:
15008 COMPOUND_EXPR
15009 COMPOUND_EXPR (loop main body)
15010 EXIT_EXPR (this order is for while/for loops.
15011 LABELED_BLOCK_EXPR the order is reversed for do loops)
15012 LABEL_DECL (a continue occuring here branches at the
15013 BODY end of this labeled block)
15014 INCREMENT (if any)
15016 REVERSED, if non zero, tells that the loop condition expr comes
15017 after the body, like in the do-while loop.
15019 To obtain a loop, the loop body structure described above is
15020 encapsulated within a LOOP_EXPR surrounded by a LABELED_BLOCK_EXPR:
15022 LABELED_BLOCK_EXPR
15023 LABEL_DECL (use this label to exit the loop)
15024 LOOP_EXPR
15025 <structure described above> */
15027 static tree
15028 build_loop_body (location, condition, reversed)
15029 int location;
15030 tree condition;
15031 int reversed;
15033 tree first, second, body;
15035 condition = build (EXIT_EXPR, NULL_TREE, condition); /* Force walk */
15036 EXPR_WFL_LINECOL (condition) = location; /* For accurate error report */
15037 condition = build_debugable_stmt (location, condition);
15038 TREE_SIDE_EFFECTS (condition) = 1;
15040 body = build_labeled_block (0, continue_identifier_node);
15041 first = (reversed ? body : condition);
15042 second = (reversed ? condition : body);
15043 return
15044 build (COMPOUND_EXPR, NULL_TREE,
15045 build (COMPOUND_EXPR, NULL_TREE, first, second), empty_stmt_node);
15048 /* Install CONDITION (if any) and loop BODY (using REVERSED to tell
15049 their order) on the current loop. Unlink the current loop from the
15050 loop list. */
15052 static tree
15053 finish_loop_body (location, condition, body, reversed)
15054 int location;
15055 tree condition, body;
15056 int reversed;
15058 tree to_return = ctxp->current_loop;
15059 tree loop_body = LOOP_EXPR_BODY (to_return);
15060 if (condition)
15062 tree cnode = LOOP_EXPR_BODY_CONDITION_EXPR (loop_body, reversed);
15063 /* We wrapped the EXIT_EXPR around a WFL so we can debug it.
15064 The real EXIT_EXPR is one operand further. */
15065 EXPR_WFL_LINECOL (cnode) = location;
15066 /* This one is for accurate error reports */
15067 EXPR_WFL_LINECOL (TREE_OPERAND (cnode, 0)) = location;
15068 TREE_OPERAND (TREE_OPERAND (cnode, 0), 0) = condition;
15070 LOOP_EXPR_BODY_BODY_EXPR (loop_body, reversed) = body;
15071 POP_LOOP ();
15072 return to_return;
15075 /* Tailored version of finish_loop_body for FOR loops, when FOR
15076 loops feature the condition part */
15078 static tree
15079 finish_for_loop (location, condition, update, body)
15080 int location;
15081 tree condition, update, body;
15083 /* Put the condition and the loop body in place */
15084 tree loop = finish_loop_body (location, condition, body, 0);
15085 /* LOOP is the current loop which has been now popped of the loop
15086 stack. Install the update block */
15087 LOOP_EXPR_BODY_UPDATE_BLOCK (LOOP_EXPR_BODY (loop)) = update;
15088 return loop;
15091 /* Try to find the loop a block might be related to. This comprises
15092 the case where the LOOP_EXPR is found as the second operand of a
15093 COMPOUND_EXPR, because the loop happens to have an initialization
15094 part, then expressed as the first operand of the COMPOUND_EXPR. If
15095 the search finds something, 1 is returned. Otherwise, 0 is
15096 returned. The search is assumed to start from a
15097 LABELED_BLOCK_EXPR's block. */
15099 static tree
15100 search_loop (statement)
15101 tree statement;
15103 if (TREE_CODE (statement) == LOOP_EXPR)
15104 return statement;
15106 if (TREE_CODE (statement) == BLOCK)
15107 statement = BLOCK_SUBBLOCKS (statement);
15108 else
15109 return NULL_TREE;
15111 if (statement && TREE_CODE (statement) == COMPOUND_EXPR)
15112 while (statement && TREE_CODE (statement) == COMPOUND_EXPR)
15113 statement = TREE_OPERAND (statement, 1);
15115 return (TREE_CODE (statement) == LOOP_EXPR
15116 && FOR_LOOP_P (statement) ? statement : NULL_TREE);
15119 /* Return 1 if LOOP can be found in the labeled block BLOCK. 0 is
15120 returned otherwise. */
15122 static int
15123 labeled_block_contains_loop_p (block, loop)
15124 tree block, loop;
15126 if (!block)
15127 return 0;
15129 if (LABELED_BLOCK_BODY (block) == loop)
15130 return 1;
15132 if (FOR_LOOP_P (loop) && search_loop (LABELED_BLOCK_BODY (block)) == loop)
15133 return 1;
15135 return 0;
15138 /* If the loop isn't surrounded by a labeled statement, create one and
15139 insert LOOP as its body. */
15141 static tree
15142 patch_loop_statement (loop)
15143 tree loop;
15145 tree loop_label;
15147 TREE_TYPE (loop) = void_type_node;
15148 if (labeled_block_contains_loop_p (ctxp->current_labeled_block, loop))
15149 return loop;
15151 loop_label = build_labeled_block (0, NULL_TREE);
15152 /* LOOP is an EXPR node, so it should have a valid EXPR_WFL_LINECOL
15153 that LOOP_LABEL could enquire about, for a better accuracy. FIXME */
15154 LABELED_BLOCK_BODY (loop_label) = loop;
15155 PUSH_LABELED_BLOCK (loop_label);
15156 return loop_label;
15159 /* 14.13, 14.14: break and continue Statements */
15161 /* Build a break or a continue statement. a null NAME indicates an
15162 unlabeled break/continue statement. */
15164 static tree
15165 build_bc_statement (location, is_break, name)
15166 int location, is_break;
15167 tree name;
15169 tree break_continue, label_block_expr = NULL_TREE;
15171 if (name)
15173 if (!(label_block_expr = IDENTIFIER_LOCAL_VALUE
15174 (merge_qualified_name (label_id, EXPR_WFL_NODE (name)))))
15175 /* Null means that we don't have a target for this named
15176 break/continue. In this case, we make the target to be the
15177 label name, so that the error can be reported accuratly in
15178 patch_bc_statement. */
15179 label_block_expr = EXPR_WFL_NODE (name);
15181 /* Unlabeled break/continue will be handled during the
15182 break/continue patch operation */
15183 break_continue
15184 = build (EXIT_BLOCK_EXPR, NULL_TREE, label_block_expr, NULL_TREE);
15186 IS_BREAK_STMT_P (break_continue) = is_break;
15187 TREE_SIDE_EFFECTS (break_continue) = 1;
15188 EXPR_WFL_LINECOL (break_continue) = location;
15189 break_continue = build_debugable_stmt (location, break_continue);
15190 return break_continue;
15193 /* Verification of a break/continue statement. */
15195 static tree
15196 patch_bc_statement (node)
15197 tree node;
15199 tree bc_label = EXIT_BLOCK_LABELED_BLOCK (node), target_stmt;
15200 tree labeled_block = ctxp->current_labeled_block;
15201 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15203 /* Having an identifier here means that the target is unknown. */
15204 if (bc_label != NULL_TREE && TREE_CODE (bc_label) == IDENTIFIER_NODE)
15206 parse_error_context (wfl_operator, "No label definition found for `%s'",
15207 IDENTIFIER_POINTER (bc_label));
15208 return error_mark_node;
15210 if (! IS_BREAK_STMT_P (node))
15212 /* It's a continue statement. */
15213 for (;; labeled_block = TREE_CHAIN (labeled_block))
15215 if (labeled_block == NULL_TREE)
15217 if (bc_label == NULL_TREE)
15218 parse_error_context (wfl_operator,
15219 "`continue' must be in loop");
15220 else
15221 parse_error_context
15222 (wfl_operator, "continue label `%s' does not name a loop",
15223 IDENTIFIER_POINTER (bc_label));
15224 return error_mark_node;
15226 if ((DECL_NAME (LABELED_BLOCK_LABEL (labeled_block))
15227 == continue_identifier_node)
15228 && (bc_label == NULL_TREE
15229 || TREE_CHAIN (labeled_block) == bc_label))
15231 bc_label = labeled_block;
15232 break;
15236 else if (!bc_label)
15238 for (;; labeled_block = TREE_CHAIN (labeled_block))
15240 if (labeled_block == NULL_TREE)
15242 parse_error_context (wfl_operator,
15243 "`break' must be in loop or switch");
15244 return error_mark_node;
15246 target_stmt = LABELED_BLOCK_BODY (labeled_block);
15247 if (TREE_CODE (target_stmt) == SWITCH_EXPR
15248 || search_loop (target_stmt))
15250 bc_label = labeled_block;
15251 break;
15256 EXIT_BLOCK_LABELED_BLOCK (node) = bc_label;
15257 CAN_COMPLETE_NORMALLY (bc_label) = 1;
15259 /* Our break/continue don't return values. */
15260 TREE_TYPE (node) = void_type_node;
15261 /* Encapsulate the break within a compound statement so that it's
15262 expanded all the times by expand_expr (and not clobbered
15263 sometimes, like after a if statement) */
15264 node = add_stmt_to_compound (NULL_TREE, void_type_node, node);
15265 TREE_SIDE_EFFECTS (node) = 1;
15266 return node;
15269 /* Process the exit expression belonging to a loop. Its type must be
15270 boolean. */
15272 static tree
15273 patch_exit_expr (node)
15274 tree node;
15276 tree expression = TREE_OPERAND (node, 0);
15277 TREE_TYPE (node) = error_mark_node;
15278 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15280 /* The type of expression must be boolean */
15281 if (TREE_TYPE (expression) != boolean_type_node)
15283 parse_error_context
15284 (wfl_operator,
15285 "Incompatible type for loop conditional. Can't convert `%s' to `boolean'",
15286 lang_printable_name (TREE_TYPE (expression), 0));
15287 return error_mark_node;
15289 /* Now we know things are allright, invert the condition, fold and
15290 return */
15291 TREE_OPERAND (node, 0) =
15292 fold (build1 (TRUTH_NOT_EXPR, boolean_type_node, expression));
15294 if (! integer_zerop (TREE_OPERAND (node, 0))
15295 && ctxp->current_loop != NULL_TREE
15296 && TREE_CODE (ctxp->current_loop) == LOOP_EXPR)
15297 CAN_COMPLETE_NORMALLY (ctxp->current_loop) = 1;
15298 if (! integer_onep (TREE_OPERAND (node, 0)))
15299 CAN_COMPLETE_NORMALLY (node) = 1;
15302 TREE_TYPE (node) = void_type_node;
15303 return node;
15306 /* 14.9 Switch statement */
15308 static tree
15309 patch_switch_statement (node)
15310 tree node;
15312 tree se = TREE_OPERAND (node, 0), se_type;
15314 /* Complete the switch expression */
15315 se = TREE_OPERAND (node, 0) = java_complete_tree (se);
15316 se_type = TREE_TYPE (se);
15317 /* The type of the switch expression must be char, byte, short or
15318 int */
15319 if (! JINTEGRAL_TYPE_P (se_type) || se_type == long_type_node)
15321 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15322 parse_error_context (wfl_operator,
15323 "Incompatible type for `switch'. Can't convert `%s' to `int'",
15324 lang_printable_name (se_type, 0));
15325 /* This is what java_complete_tree will check */
15326 TREE_OPERAND (node, 0) = error_mark_node;
15327 return error_mark_node;
15330 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
15332 /* Ready to return */
15333 if (TREE_CODE (TREE_OPERAND (node, 1)) == ERROR_MARK)
15335 TREE_TYPE (node) = error_mark_node;
15336 return error_mark_node;
15338 TREE_TYPE (node) = void_type_node;
15339 TREE_SIDE_EFFECTS (node) = 1;
15340 CAN_COMPLETE_NORMALLY (node)
15341 = CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1))
15342 || ! SWITCH_HAS_DEFAULT (node);
15343 return node;
15346 /* 14.18 The try/catch statements */
15348 /* Encapsulate TRY_STMTS' in a try catch sequence. The catch clause
15349 catches TYPE and executes CATCH_STMTS. */
15351 static tree
15352 encapsulate_with_try_catch (location, type, try_stmts, catch_stmts)
15353 int location;
15354 tree type, try_stmts, catch_stmts;
15356 tree try_block, catch_clause_param, catch_block, catch;
15358 /* First build a try block */
15359 try_block = build_expr_block (try_stmts, NULL_TREE);
15361 /* Build a catch block: we need a catch clause parameter */
15362 catch_clause_param = build_decl (VAR_DECL,
15363 wpv_id, build_pointer_type (type));
15364 /* And a block */
15365 catch_block = build_expr_block (NULL_TREE, catch_clause_param);
15367 /* Initialize the variable and store in the block */
15368 catch = build (MODIFY_EXPR, NULL_TREE, catch_clause_param,
15369 build (JAVA_EXC_OBJ_EXPR, ptr_type_node));
15370 add_stmt_to_block (catch_block, NULL_TREE, catch);
15372 /* Add the catch statements */
15373 add_stmt_to_block (catch_block, NULL_TREE, catch_stmts);
15375 /* Now we can build a CATCH_EXPR */
15376 catch_block = build1 (CATCH_EXPR, NULL_TREE, catch_block);
15378 return build_try_statement (location, try_block, catch_block);
15381 static tree
15382 build_try_statement (location, try_block, catches)
15383 int location;
15384 tree try_block, catches;
15386 tree node = build (TRY_EXPR, NULL_TREE, try_block, catches);
15387 EXPR_WFL_LINECOL (node) = location;
15388 return node;
15391 static tree
15392 build_try_finally_statement (location, try_block, finally)
15393 int location;
15394 tree try_block, finally;
15396 tree node = build (TRY_FINALLY_EXPR, NULL_TREE, try_block, finally);
15397 EXPR_WFL_LINECOL (node) = location;
15398 return node;
15401 static tree
15402 patch_try_statement (node)
15403 tree node;
15405 int error_found = 0;
15406 tree try = TREE_OPERAND (node, 0);
15407 /* Exception handlers are considered in left to right order */
15408 tree catch = nreverse (TREE_OPERAND (node, 1));
15409 tree current, caught_type_list = NULL_TREE;
15411 /* Check catch clauses, if any. Every time we find an error, we try
15412 to process the next catch clause. We process the catch clause before
15413 the try block so that when processing the try block we can check thrown
15414 exceptions againts the caught type list. */
15415 for (current = catch; current; current = TREE_CHAIN (current))
15417 tree carg_decl, carg_type;
15418 tree sub_current, catch_block, catch_clause;
15419 int unreachable;
15421 /* At this point, the structure of the catch clause is
15422 CATCH_EXPR (catch node)
15423 BLOCK (with the decl of the parameter)
15424 COMPOUND_EXPR
15425 MODIFY_EXPR (assignment of the catch parameter)
15426 BLOCK (catch clause block)
15428 catch_clause = TREE_OPERAND (current, 0);
15429 carg_decl = BLOCK_EXPR_DECLS (catch_clause);
15430 carg_type = TREE_TYPE (TREE_TYPE (carg_decl));
15432 /* Catch clauses can't have more than one parameter declared,
15433 but it's already enforced by the grammar. Make sure that the
15434 only parameter of the clause statement in of class Throwable
15435 or a subclass of Throwable, but that was done earlier. The
15436 catch clause parameter type has also been resolved. */
15438 /* Just make sure that the catch clause parameter type inherits
15439 from java.lang.Throwable */
15440 if (!inherits_from_p (carg_type, throwable_type_node))
15442 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (current);
15443 parse_error_context (wfl_operator,
15444 "Can't catch class `%s'. Catch clause parameter type must be a subclass of class `java.lang.Throwable'",
15445 lang_printable_name (carg_type, 0));
15446 error_found = 1;
15447 continue;
15450 /* Partial check for unreachable catch statement: The catch
15451 clause is reachable iff is no earlier catch block A in
15452 the try statement such that the type of the catch
15453 clause's parameter is the same as or a subclass of the
15454 type of A's parameter */
15455 unreachable = 0;
15456 for (sub_current = catch;
15457 sub_current != current; sub_current = TREE_CHAIN (sub_current))
15459 tree sub_catch_clause, decl;
15460 sub_catch_clause = TREE_OPERAND (sub_current, 0);
15461 decl = BLOCK_EXPR_DECLS (sub_catch_clause);
15463 if (inherits_from_p (carg_type, TREE_TYPE (TREE_TYPE (decl))))
15465 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (current);
15466 parse_error_context
15467 (wfl_operator,
15468 "`catch' not reached because of the catch clause at line %d",
15469 EXPR_WFL_LINENO (sub_current));
15470 unreachable = error_found = 1;
15471 break;
15474 /* Complete the catch clause block */
15475 catch_block = java_complete_tree (TREE_OPERAND (current, 0));
15476 if (catch_block == error_mark_node)
15478 error_found = 1;
15479 continue;
15481 if (CAN_COMPLETE_NORMALLY (catch_block))
15482 CAN_COMPLETE_NORMALLY (node) = 1;
15483 TREE_OPERAND (current, 0) = catch_block;
15485 if (unreachable)
15486 continue;
15488 /* Things to do here: the exception must be thrown */
15490 /* Link this type to the caught type list */
15491 caught_type_list = tree_cons (NULL_TREE, carg_type, caught_type_list);
15494 PUSH_EXCEPTIONS (caught_type_list);
15495 if ((try = java_complete_tree (try)) == error_mark_node)
15496 error_found = 1;
15497 if (CAN_COMPLETE_NORMALLY (try))
15498 CAN_COMPLETE_NORMALLY (node) = 1;
15499 POP_EXCEPTIONS ();
15501 /* Verification ends here */
15502 if (error_found)
15503 return error_mark_node;
15505 TREE_OPERAND (node, 0) = try;
15506 TREE_OPERAND (node, 1) = catch;
15507 TREE_TYPE (node) = void_type_node;
15508 return node;
15511 /* 14.17 The synchronized Statement */
15513 static tree
15514 patch_synchronized_statement (node, wfl_op1)
15515 tree node, wfl_op1;
15517 tree expr = java_complete_tree (TREE_OPERAND (node, 0));
15518 tree block = TREE_OPERAND (node, 1);
15520 tree tmp, enter, exit, expr_decl, assignment;
15522 if (expr == error_mark_node)
15524 block = java_complete_tree (block);
15525 return expr;
15528 /* We might be trying to synchronize on a STRING_CST */
15529 if ((tmp = patch_string (expr)))
15530 expr = tmp;
15532 /* The TYPE of expr must be a reference type */
15533 if (!JREFERENCE_TYPE_P (TREE_TYPE (expr)))
15535 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15536 parse_error_context (wfl_operator, "Incompatible type for `synchronized'. Can't convert `%s' to `java.lang.Object'",
15537 lang_printable_name (TREE_TYPE (expr), 0));
15538 return error_mark_node;
15541 if (flag_emit_xref)
15543 TREE_OPERAND (node, 0) = expr;
15544 TREE_OPERAND (node, 1) = java_complete_tree (block);
15545 CAN_COMPLETE_NORMALLY (node) = 1;
15546 return node;
15549 /* Generate a try-finally for the synchronized statement, except
15550 that the handler that catches all throw exception calls
15551 _Jv_MonitorExit and then rethrow the exception.
15552 The synchronized statement is then implemented as:
15553 TRY
15555 _Jv_MonitorEnter (expression)
15556 synchronized_block
15557 _Jv_MonitorExit (expression)
15559 CATCH_ALL
15561 e = _Jv_exception_info ();
15562 _Jv_MonitorExit (expression)
15563 Throw (e);
15564 } */
15566 expr_decl = build_decl (VAR_DECL, generate_name (), TREE_TYPE (expr));
15567 BUILD_MONITOR_ENTER (enter, expr_decl);
15568 BUILD_MONITOR_EXIT (exit, expr_decl);
15569 CAN_COMPLETE_NORMALLY (enter) = 1;
15570 CAN_COMPLETE_NORMALLY (exit) = 1;
15571 assignment = build (MODIFY_EXPR, NULL_TREE, expr_decl, expr);
15572 TREE_SIDE_EFFECTS (assignment) = 1;
15573 node = build1 (CLEANUP_POINT_EXPR, NULL_TREE,
15574 build (COMPOUND_EXPR, NULL_TREE,
15575 build (WITH_CLEANUP_EXPR, NULL_TREE,
15576 build (COMPOUND_EXPR, NULL_TREE,
15577 assignment, enter),
15578 exit, NULL_TREE),
15579 block));
15580 node = build_expr_block (node, expr_decl);
15582 return java_complete_tree (node);
15585 /* 14.16 The throw Statement */
15587 static tree
15588 patch_throw_statement (node, wfl_op1)
15589 tree node, wfl_op1;
15591 tree expr = TREE_OPERAND (node, 0);
15592 tree type = TREE_TYPE (expr);
15593 int unchecked_ok = 0, tryblock_throws_ok = 0;
15595 /* Thrown expression must be assignable to java.lang.Throwable */
15596 if (!try_reference_assignconv (throwable_type_node, expr))
15598 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15599 parse_error_context (wfl_operator,
15600 "Can't throw `%s'; it must be a subclass of class `java.lang.Throwable'",
15601 lang_printable_name (type, 0));
15602 /* If the thrown expression was a reference, we further the
15603 compile-time check. */
15604 if (!JREFERENCE_TYPE_P (type))
15605 return error_mark_node;
15608 /* At least one of the following must be true */
15610 /* The type of the throw expression is a not checked exception,
15611 i.e. is a unchecked expression. */
15612 unchecked_ok = IS_UNCHECKED_EXCEPTION_P (TREE_TYPE (type));
15614 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15615 /* An instance can't throw a checked exception unless that exception
15616 is explicitely declared in the `throws' clause of each
15617 constructor. This doesn't apply to anonymous classes, since they
15618 don't have declared constructors. */
15619 if (!unchecked_ok
15620 && DECL_INSTINIT_P (current_function_decl)
15621 && !ANONYMOUS_CLASS_P (current_class))
15623 tree current;
15624 for (current = TYPE_METHODS (current_class); current;
15625 current = TREE_CHAIN (current))
15626 if (DECL_CONSTRUCTOR_P (current)
15627 && !check_thrown_exceptions_do (TREE_TYPE (expr)))
15629 parse_error_context (wfl_operator, "Checked exception `%s' can't be thrown in instance initializer (not all declared constructor are declaring it in their `throws' clause)",
15630 lang_printable_name (TREE_TYPE (expr), 0));
15631 return error_mark_node;
15635 /* Throw is contained in a try statement and at least one catch
15636 clause can receive the thrown expression or the current method is
15637 declared to throw such an exception. Or, the throw statement is
15638 contained in a method or constructor declaration and the type of
15639 the Expression is assignable to at least one type listed in the
15640 throws clause the declaration. */
15641 if (!unchecked_ok)
15642 tryblock_throws_ok = check_thrown_exceptions_do (TREE_TYPE (expr));
15643 if (!(unchecked_ok || tryblock_throws_ok))
15645 /* If there is a surrounding try block that has no matching
15646 clatch clause, report it first. A surrounding try block exits
15647 only if there is something after the list of checked
15648 exception thrown by the current function (if any). */
15649 if (IN_TRY_BLOCK_P ())
15650 parse_error_context (wfl_operator, "Checked exception `%s' can't be caught by any of the catch clause(s) of the surrounding `try' block",
15651 lang_printable_name (type, 0));
15652 /* If we have no surrounding try statement and the method doesn't have
15653 any throws, report it now. FIXME */
15655 /* We report that the exception can't be throw from a try block
15656 in all circumstances but when the `throw' is inside a static
15657 block. */
15658 else if (!EXCEPTIONS_P (currently_caught_type_list)
15659 && !tryblock_throws_ok)
15661 if (DECL_CLINIT_P (current_function_decl))
15662 parse_error_context (wfl_operator,
15663 "Checked exception `%s' can't be thrown in initializer",
15664 lang_printable_name (type, 0));
15665 else
15666 parse_error_context (wfl_operator,
15667 "Checked exception `%s' isn't thrown from a `try' block",
15668 lang_printable_name (type, 0));
15670 /* Otherwise, the current method doesn't have the appropriate
15671 throws declaration */
15672 else
15673 parse_error_context (wfl_operator, "Checked exception `%s' doesn't match any of current method's `throws' declaration(s)",
15674 lang_printable_name (type, 0));
15675 return error_mark_node;
15678 if (! flag_emit_class_files && ! flag_emit_xref)
15679 BUILD_THROW (node, expr);
15681 /* If doing xrefs, keep the location where the `throw' was seen. */
15682 if (flag_emit_xref)
15683 EXPR_WFL_LINECOL (node) = EXPR_WFL_LINECOL (wfl_op1);
15684 return node;
15687 /* Check that exception said to be thrown by method DECL can be
15688 effectively caught from where DECL is invoked. */
15690 static void
15691 check_thrown_exceptions (location, decl)
15692 int location;
15693 tree decl;
15695 tree throws;
15696 /* For all the unchecked exceptions thrown by DECL */
15697 for (throws = DECL_FUNCTION_THROWS (decl); throws;
15698 throws = TREE_CHAIN (throws))
15699 if (!check_thrown_exceptions_do (TREE_VALUE (throws)))
15701 #if 1
15702 /* Temporary hack to suppresses errors about cloning arrays. FIXME */
15703 if (DECL_NAME (decl) == get_identifier ("clone"))
15704 continue;
15705 #endif
15706 EXPR_WFL_LINECOL (wfl_operator) = location;
15707 if (DECL_FINIT_P (current_function_decl))
15708 parse_error_context
15709 (wfl_operator, "Exception `%s' can't be thrown in initializer",
15710 lang_printable_name (TREE_VALUE (throws), 0));
15711 else
15713 parse_error_context
15714 (wfl_operator, "Exception `%s' must be caught, or it must be declared in the `throws' clause of `%s'",
15715 lang_printable_name (TREE_VALUE (throws), 0),
15716 (DECL_INIT_P (current_function_decl) ?
15717 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))) :
15718 IDENTIFIER_POINTER (DECL_NAME (current_function_decl))));
15723 /* Return 1 if checked EXCEPTION is caught at the current nesting level of
15724 try-catch blocks, OR is listed in the `throws' clause of the
15725 current method. */
15727 static int
15728 check_thrown_exceptions_do (exception)
15729 tree exception;
15731 tree list = currently_caught_type_list;
15732 resolve_and_layout (exception, NULL_TREE);
15733 /* First, all the nested try-catch-finally at that stage. The
15734 last element contains `throws' clause exceptions, if any. */
15735 if (IS_UNCHECKED_EXCEPTION_P (exception))
15736 return 1;
15737 while (list)
15739 tree caught;
15740 for (caught = TREE_VALUE (list); caught; caught = TREE_CHAIN (caught))
15741 if (valid_ref_assignconv_cast_p (exception, TREE_VALUE (caught), 0))
15742 return 1;
15743 list = TREE_CHAIN (list);
15745 return 0;
15748 static void
15749 purge_unchecked_exceptions (mdecl)
15750 tree mdecl;
15752 tree throws = DECL_FUNCTION_THROWS (mdecl);
15753 tree new = NULL_TREE;
15755 while (throws)
15757 tree next = TREE_CHAIN (throws);
15758 if (!IS_UNCHECKED_EXCEPTION_P (TREE_VALUE (throws)))
15760 TREE_CHAIN (throws) = new;
15761 new = throws;
15763 throws = next;
15765 /* List is inverted here, but it doesn't matter */
15766 DECL_FUNCTION_THROWS (mdecl) = new;
15769 /* This function goes over all of CLASS_TYPE ctors and checks whether
15770 each of them features at least one unchecked exception in its
15771 `throws' clause. If it's the case, it returns `true', `false'
15772 otherwise. */
15774 static bool
15775 ctors_unchecked_throws_clause_p (class_type)
15776 tree class_type;
15778 tree current;
15780 for (current = TYPE_METHODS (class_type); current;
15781 current = TREE_CHAIN (current))
15783 bool ctu = false; /* Ctor Throws Unchecked */
15784 if (DECL_CONSTRUCTOR_P (current))
15786 tree throws;
15787 for (throws = DECL_FUNCTION_THROWS (current); throws && !ctu;
15788 throws = TREE_CHAIN (throws))
15789 if (inherits_from_p (TREE_VALUE (throws), exception_type_node))
15790 ctu = true;
15792 /* We return false as we found one ctor that is unfit. */
15793 if (!ctu && DECL_CONSTRUCTOR_P (current))
15794 return false;
15796 /* All ctors feature at least one unchecked exception in their
15797 `throws' clause. */
15798 return true;
15801 /* 15.24 Conditional Operator ?: */
15803 static tree
15804 patch_conditional_expr (node, wfl_cond, wfl_op1)
15805 tree node, wfl_cond, wfl_op1;
15807 tree cond = TREE_OPERAND (node, 0);
15808 tree op1 = TREE_OPERAND (node, 1);
15809 tree op2 = TREE_OPERAND (node, 2);
15810 tree resulting_type = NULL_TREE;
15811 tree t1, t2, patched;
15812 int error_found = 0;
15814 /* Operands of ?: might be StringBuffers crafted as a result of a
15815 string concatenation. Obtain a descent operand here. */
15816 if ((patched = patch_string (op1)))
15817 TREE_OPERAND (node, 1) = op1 = patched;
15818 if ((patched = patch_string (op2)))
15819 TREE_OPERAND (node, 2) = op2 = patched;
15821 t1 = TREE_TYPE (op1);
15822 t2 = TREE_TYPE (op2);
15824 /* The first expression must be a boolean */
15825 if (TREE_TYPE (cond) != boolean_type_node)
15827 SET_WFL_OPERATOR (wfl_operator, node, wfl_cond);
15828 parse_error_context (wfl_operator,
15829 "Incompatible type for `?:'. Can't convert `%s' to `boolean'",
15830 lang_printable_name (TREE_TYPE (cond), 0));
15831 error_found = 1;
15834 /* Second and third can be numeric, boolean (i.e. primitive),
15835 references or null. Anything else results in an error */
15836 if (!((JNUMERIC_TYPE_P (t1) && JNUMERIC_TYPE_P (t2))
15837 || ((JREFERENCE_TYPE_P (t1) || op1 == null_pointer_node)
15838 && (JREFERENCE_TYPE_P (t2) || op2 == null_pointer_node))
15839 || (t1 == boolean_type_node && t2 == boolean_type_node)))
15840 error_found = 1;
15842 /* Determine the type of the conditional expression. Same types are
15843 easy to deal with */
15844 else if (t1 == t2)
15845 resulting_type = t1;
15847 /* There are different rules for numeric types */
15848 else if (JNUMERIC_TYPE_P (t1))
15850 /* if byte/short found, the resulting type is short */
15851 if ((t1 == byte_type_node && t2 == short_type_node)
15852 || (t1 == short_type_node && t2 == byte_type_node))
15853 resulting_type = short_type_node;
15855 /* If t1 is a constant int and t2 is of type byte, short or char
15856 and t1's value fits in t2, then the resulting type is t2 */
15857 else if ((t1 == int_type_node && TREE_CONSTANT (TREE_OPERAND (node, 1)))
15858 && JBSC_TYPE_P (t2) && int_fits_type_p (TREE_OPERAND (node, 1), t2))
15859 resulting_type = t2;
15861 /* If t2 is a constant int and t1 is of type byte, short or char
15862 and t2's value fits in t1, then the resulting type is t1 */
15863 else if ((t2 == int_type_node && TREE_CONSTANT (TREE_OPERAND (node, 2)))
15864 && JBSC_TYPE_P (t1) && int_fits_type_p (TREE_OPERAND (node, 2), t1))
15865 resulting_type = t1;
15867 /* Otherwise, binary numeric promotion is applied and the
15868 resulting type is the promoted type of operand 1 and 2 */
15869 else
15870 resulting_type = binary_numeric_promotion (t1, t2,
15871 &TREE_OPERAND (node, 1),
15872 &TREE_OPERAND (node, 2));
15875 /* Cases of a reference and a null type */
15876 else if (JREFERENCE_TYPE_P (t1) && op2 == null_pointer_node)
15877 resulting_type = t1;
15879 else if (JREFERENCE_TYPE_P (t2) && op1 == null_pointer_node)
15880 resulting_type = t2;
15882 /* Last case: different reference types. If a type can be converted
15883 into the other one by assignment conversion, the latter
15884 determines the type of the expression */
15885 else if ((resulting_type = try_reference_assignconv (t1, op2)))
15886 resulting_type = promote_type (t1);
15888 else if ((resulting_type = try_reference_assignconv (t2, op1)))
15889 resulting_type = promote_type (t2);
15891 /* If we don't have any resulting type, we're in trouble */
15892 if (!resulting_type)
15894 char *t = xstrdup (lang_printable_name (t1, 0));
15895 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15896 parse_error_context (wfl_operator,
15897 "Incompatible type for `?:'. Can't convert `%s' to `%s'",
15898 t, lang_printable_name (t2, 0));
15899 free (t);
15900 error_found = 1;
15903 if (error_found)
15905 TREE_TYPE (node) = error_mark_node;
15906 return error_mark_node;
15909 TREE_TYPE (node) = resulting_type;
15910 TREE_SET_CODE (node, COND_EXPR);
15911 CAN_COMPLETE_NORMALLY (node) = 1;
15912 return node;
15915 /* Wrap EXPR with code to initialize DECL's class, if appropriate. */
15917 static tree
15918 maybe_build_class_init_for_field (decl, expr)
15919 tree decl, expr;
15921 tree clas = DECL_CONTEXT (decl);
15922 if (flag_emit_class_files || flag_emit_xref)
15923 return expr;
15925 if (TREE_CODE (decl) == VAR_DECL && FIELD_STATIC (decl)
15926 && FIELD_FINAL (decl))
15928 tree init = DECL_INITIAL (decl);
15929 if (init != NULL_TREE)
15930 init = fold_constant_for_init (init, decl);
15931 if (init != NULL_TREE && CONSTANT_VALUE_P (init))
15932 return expr;
15935 return build_class_init (clas, expr);
15938 /* Try to constant fold NODE.
15939 If NODE is not a constant expression, return NULL_EXPR.
15940 CONTEXT is a static final VAR_DECL whose initializer we are folding. */
15942 static tree
15943 fold_constant_for_init (node, context)
15944 tree node;
15945 tree context;
15947 tree op0, op1, val;
15948 enum tree_code code = TREE_CODE (node);
15950 switch (code)
15952 case STRING_CST:
15953 case INTEGER_CST:
15954 case REAL_CST:
15955 return node;
15957 case PLUS_EXPR:
15958 case MINUS_EXPR:
15959 case MULT_EXPR:
15960 case TRUNC_MOD_EXPR:
15961 case RDIV_EXPR:
15962 case LSHIFT_EXPR:
15963 case RSHIFT_EXPR:
15964 case URSHIFT_EXPR:
15965 case BIT_AND_EXPR:
15966 case BIT_XOR_EXPR:
15967 case BIT_IOR_EXPR:
15968 case TRUTH_ANDIF_EXPR:
15969 case TRUTH_ORIF_EXPR:
15970 case EQ_EXPR:
15971 case NE_EXPR:
15972 case GT_EXPR:
15973 case GE_EXPR:
15974 case LT_EXPR:
15975 case LE_EXPR:
15976 op0 = TREE_OPERAND (node, 0);
15977 op1 = TREE_OPERAND (node, 1);
15978 val = fold_constant_for_init (op0, context);
15979 if (val == NULL_TREE || ! TREE_CONSTANT (val))
15980 return NULL_TREE;
15981 TREE_OPERAND (node, 0) = val;
15982 val = fold_constant_for_init (op1, context);
15983 if (val == NULL_TREE || ! TREE_CONSTANT (val))
15984 return NULL_TREE;
15985 TREE_OPERAND (node, 1) = val;
15986 return patch_binop (node, op0, op1);
15988 case UNARY_PLUS_EXPR:
15989 case NEGATE_EXPR:
15990 case TRUTH_NOT_EXPR:
15991 case BIT_NOT_EXPR:
15992 case CONVERT_EXPR:
15993 op0 = TREE_OPERAND (node, 0);
15994 val = fold_constant_for_init (op0, context);
15995 if (val == NULL_TREE || ! TREE_CONSTANT (val))
15996 return NULL_TREE;
15997 TREE_OPERAND (node, 0) = val;
15998 return patch_unaryop (node, op0);
15999 break;
16001 case COND_EXPR:
16002 val = fold_constant_for_init (TREE_OPERAND (node, 0), context);
16003 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16004 return NULL_TREE;
16005 TREE_OPERAND (node, 0) = val;
16006 val = fold_constant_for_init (TREE_OPERAND (node, 1), context);
16007 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16008 return NULL_TREE;
16009 TREE_OPERAND (node, 1) = val;
16010 val = fold_constant_for_init (TREE_OPERAND (node, 2), context);
16011 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16012 return NULL_TREE;
16013 TREE_OPERAND (node, 2) = val;
16014 return integer_zerop (TREE_OPERAND (node, 0)) ? TREE_OPERAND (node, 1)
16015 : TREE_OPERAND (node, 2);
16017 case VAR_DECL:
16018 case FIELD_DECL:
16019 if (! FIELD_FINAL (node)
16020 || DECL_INITIAL (node) == NULL_TREE)
16021 return NULL_TREE;
16022 val = DECL_INITIAL (node);
16023 /* Guard against infinite recursion. */
16024 DECL_INITIAL (node) = NULL_TREE;
16025 val = fold_constant_for_init (val, node);
16026 DECL_INITIAL (node) = val;
16027 if (!val && CLASS_FINAL_VARIABLE_P (node))
16028 DECL_FIELD_FINAL_IUD (node) = 0;
16029 return val;
16031 case EXPR_WITH_FILE_LOCATION:
16032 /* Compare java_complete_tree and resolve_expression_name. */
16033 if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
16034 || TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
16036 tree name = EXPR_WFL_NODE (node);
16037 tree decl;
16038 if (PRIMARY_P (node))
16039 return NULL_TREE;
16040 else if (! QUALIFIED_P (name))
16042 decl = lookup_field_wrapper (DECL_CONTEXT (context), name);
16043 if (decl == NULL_TREE
16044 || (! FIELD_STATIC (decl) && ! FIELD_FINAL (decl)))
16045 return NULL_TREE;
16046 return fold_constant_for_init (decl, decl);
16048 else
16050 /* Wait until the USE_COMPONENT_REF re-write. FIXME. */
16051 qualify_ambiguous_name (node);
16052 if (resolve_field_access (node, &decl, NULL)
16053 && decl != NULL_TREE)
16054 return fold_constant_for_init (decl, decl);
16055 return NULL_TREE;
16058 else
16060 op0 = TREE_OPERAND (node, 0);
16061 val = fold_constant_for_init (op0, context);
16062 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16063 return NULL_TREE;
16064 TREE_OPERAND (node, 0) = val;
16065 return val;
16068 #ifdef USE_COMPONENT_REF
16069 case IDENTIFIER:
16070 case COMPONENT_REF:
16072 #endif
16074 default:
16075 return NULL_TREE;
16079 #ifdef USE_COMPONENT_REF
16080 /* Context is 'T' for TypeName, 'P' for PackageName,
16081 'M' for MethodName, 'E' for ExpressionName, and 'A' for AmbiguousName. */
16083 tree
16084 resolve_simple_name (name, context)
16085 tree name;
16086 int context;
16090 tree
16091 resolve_qualified_name (name, context)
16092 tree name;
16093 int context;
16096 #endif
16098 /* Mark P, which is really a `struct parser_ctxt **' for GC. */
16100 static void
16101 mark_parser_ctxt (p)
16102 void *p;
16104 struct parser_ctxt *pc = *((struct parser_ctxt **) p);
16105 int i;
16107 if (!pc)
16108 return;
16110 #ifndef JC1_LITE
16111 for (i = 0; i < 11; ++i)
16112 ggc_mark_tree (pc->modifier_ctx[i]);
16113 ggc_mark_tree (pc->class_type);
16114 ggc_mark_tree (pc->function_decl);
16115 ggc_mark_tree (pc->package);
16116 ggc_mark_tree (pc->class_list);
16117 ggc_mark_tree (pc->current_parsed_class);
16118 ggc_mark_tree (pc->current_parsed_class_un);
16119 ggc_mark_tree (pc->non_static_initialized);
16120 ggc_mark_tree (pc->static_initialized);
16121 ggc_mark_tree (pc->instance_initializers);
16122 ggc_mark_tree (pc->import_list);
16123 ggc_mark_tree (pc->import_demand_list);
16124 ggc_mark_tree (pc->current_loop);
16125 ggc_mark_tree (pc->current_labeled_block);
16126 #endif /* JC1_LITE */
16128 if (pc->next)
16129 mark_parser_ctxt (&pc->next);
16132 void
16133 init_src_parse ()
16135 /* Register roots with the garbage collector. */
16136 ggc_add_tree_root (src_parse_roots, sizeof (src_parse_roots) / sizeof(tree));
16141 /* This section deals with the functions that are called when tables
16142 recording class initialization information are traversed. */
16144 /* Attach to PTR (a block) the declaration found in ENTRY. */
16146 static bool
16147 attach_init_test_initialization_flags (entry, ptr)
16148 struct hash_entry *entry;
16149 PTR ptr;
16151 tree block = (tree)ptr;
16152 struct init_test_hash_entry *ite = (struct init_test_hash_entry *) entry;
16154 TREE_CHAIN (ite->init_test_decl) = BLOCK_EXPR_DECLS (block);
16155 BLOCK_EXPR_DECLS (block) = ite->init_test_decl;
16156 return true;
16159 /* This function is called for each statement calling a static
16160 function. ENTRY is a TREE_LIST whose PURPOSE is the called
16161 function and VALUE is a compound whose second operand can be
16162 patched with static class initialization flag assignments. */
16164 static bool
16165 adjust_init_test_initialization (entry, info)
16166 struct hash_entry *entry;
16167 PTR info ATTRIBUTE_UNUSED;
16169 tree list = (tree)(entry->key);
16170 tree called_method = TREE_PURPOSE (list);
16171 tree compound = TREE_VALUE (list);
16172 tree assignment_compound_list = build_tree_list (called_method, NULL);
16174 /* For each class definitely initialized in CALLED_METHOD, fill
16175 ASSIGNMENT_COMPOUND with assignment to the class initialization flag. */
16176 hash_traverse (&DECL_FUNCTION_INITIALIZED_CLASS_TABLE (called_method),
16177 emit_test_initialization, assignment_compound_list);
16179 if (TREE_VALUE (assignment_compound_list))
16180 TREE_OPERAND (compound, 1) = TREE_VALUE (assignment_compound_list);
16182 return true;
16185 /* This function is called for each classes that is known definitely
16186 assigned when a given static method was called. This function
16187 augments a compound expression (INFO) storing all assignment to
16188 initialized static class flags if a flag already existed, otherwise
16189 a new one is created. */
16191 static bool
16192 emit_test_initialization (entry, info)
16193 struct hash_entry *entry;
16194 PTR info;
16196 tree l = (tree) info;
16197 tree decl, init;
16199 struct init_test_hash_entry *ite = (struct init_test_hash_entry *)
16200 hash_lookup (&DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl),
16201 entry->key, FALSE, NULL);
16203 /* If we haven't found a flag and we're dealing with self registered
16204 with current_function_decl, then don't do anything. Self is
16205 always added as definitely initialized but this information is
16206 valid only if used outside the current function. */
16207 if (! ite)
16209 if (current_function_decl != TREE_PURPOSE (l))
16210 ite = (struct init_test_hash_entry *)
16211 hash_lookup (&DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl),
16212 entry->key, TRUE, NULL);
16213 else
16214 return true;
16217 /* If we don't have a variable, create one and install it. */
16218 if (! ite->init_test_decl)
16220 tree block;
16222 decl = build_decl (VAR_DECL, NULL_TREE, boolean_type_node);
16223 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
16224 LOCAL_CLASS_INITIALIZATION_FLAG (decl) = 1;
16225 DECL_CONTEXT (decl) = current_function_decl;
16226 DECL_INITIAL (decl) = boolean_true_node;
16228 /* The trick is to find the right context for it. */
16229 block = BLOCK_SUBBLOCKS (GET_CURRENT_BLOCK (current_function_decl));
16230 TREE_CHAIN (decl) = BLOCK_EXPR_DECLS (block);
16231 BLOCK_EXPR_DECLS (block) = decl;
16232 ite->init_test_decl = decl;
16234 else
16235 decl = ite->init_test_decl;
16237 /* Now simply augment the compound that holds all the assignments
16238 pertaining to this method invocation. */
16239 init = build (MODIFY_EXPR, boolean_type_node, decl, boolean_true_node);
16240 TREE_SIDE_EFFECTS (init) = 1;
16241 TREE_VALUE (l) = add_stmt_to_compound (TREE_VALUE (l), void_type_node, init);
16242 TREE_SIDE_EFFECTS (TREE_VALUE (l)) = 1;
16244 return true;