2001-09-05 Alexandre Petit-Bianco <apbianco@redhat.com>
[official-gcc.git] / gcc / java / parse.y
blob0c544fb0b203a224a19a0bf55559ef6c86521847
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 /* If we're generating to class file and we're dealing with an
7817 array initialization, we return 1 to keep <clinit> */
7818 if (TREE_CODE (TREE_OPERAND (bbody, 1)) == NEW_ARRAY_INIT
7819 && flag_emit_class_files)
7820 return 1;
7821 /* Return 0 if the operand is constant, 1 otherwise. */
7822 return ! TREE_CONSTANT (TREE_OPERAND (bbody, 1));
7824 default:
7825 return 1;
7827 return 0;
7831 /* See whether we could get rid of <clinit>. Criteria are: all static
7832 final fields have constant initial values and the body of <clinit>
7833 is empty. Return 1 if <clinit> was discarded, 0 otherwise. */
7835 static int
7836 maybe_yank_clinit (mdecl)
7837 tree mdecl;
7839 tree type, current;
7840 tree fbody, bbody;
7841 int found = 0;
7843 if (!DECL_CLINIT_P (mdecl))
7844 return 0;
7846 /* If the body isn't empty, then we keep <clinit>. Note that if
7847 we're emitting classfiles, this isn't enough not to rule it
7848 out. */
7849 fbody = DECL_FUNCTION_BODY (mdecl);
7850 bbody = BLOCK_EXPR_BODY (fbody);
7851 if (bbody && bbody != error_mark_node)
7852 bbody = BLOCK_EXPR_BODY (bbody);
7853 else
7854 return 0;
7855 if (bbody && ! flag_emit_class_files && bbody != empty_stmt_node)
7856 return 0;
7858 type = DECL_CONTEXT (mdecl);
7859 current = TYPE_FIELDS (type);
7861 for (current = (current ? TREE_CHAIN (current) : current);
7862 current; current = TREE_CHAIN (current))
7864 tree f_init;
7866 /* We're not interested in non static field */
7867 if (!FIELD_STATIC (current))
7868 continue;
7870 /* nor in fields with initializers. */
7871 f_init = DECL_INITIAL (current);
7873 if (f_init == NULL_TREE)
7874 continue;
7876 /* Anything that isn't String or a basic type is ruled out -- or
7877 if we know how to deal with it (when doing things natively) we
7878 should generated an empty <clinit> so that SUID are computed
7879 correctly. */
7880 if (! JSTRING_TYPE_P (TREE_TYPE (current))
7881 && ! JNUMERIC_TYPE_P (TREE_TYPE (current)))
7882 break;
7884 if (! FIELD_FINAL (current) || ! TREE_CONSTANT (f_init))
7885 break;
7888 /* Now we analyze the method body and look for something that
7889 isn't a MODIFY_EXPR */
7890 if (bbody == empty_stmt_node)
7891 found = 0;
7892 else
7893 found = analyze_clinit_body (bbody);
7895 if (current || found)
7896 return 0;
7898 /* Get rid of <clinit> in the class' list of methods */
7899 if (TYPE_METHODS (type) == mdecl)
7900 TYPE_METHODS (type) = TREE_CHAIN (mdecl);
7901 else
7902 for (current = TYPE_METHODS (type); current;
7903 current = TREE_CHAIN (current))
7904 if (TREE_CHAIN (current) == mdecl)
7906 TREE_CHAIN (current) = TREE_CHAIN (mdecl);
7907 break;
7910 return 1;
7913 /* Install the argument from MDECL. Suitable to completion and
7914 expansion of mdecl's body. */
7916 static void
7917 start_complete_expand_method (mdecl)
7918 tree mdecl;
7920 tree tem, *ptr;
7922 pushlevel (1); /* Prepare for a parameter push */
7923 ptr = &DECL_ARGUMENTS (mdecl);
7924 tem = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl));
7926 while (tem)
7928 tree next = TREE_CHAIN (tem);
7929 tree type = TREE_TYPE (tem);
7930 if (PROMOTE_PROTOTYPES
7931 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
7932 && INTEGRAL_TYPE_P (type))
7933 type = integer_type_node;
7934 DECL_ARG_TYPE (tem) = type;
7935 layout_decl (tem, 0);
7936 pushdecl (tem);
7937 *ptr = tem;
7938 ptr = &TREE_CHAIN (tem);
7939 tem = next;
7941 *ptr = NULL_TREE;
7942 pushdecl_force_head (DECL_ARGUMENTS (mdecl));
7943 lineno = DECL_SOURCE_LINE_FIRST (mdecl);
7944 build_result_decl (mdecl);
7948 /* Complete and expand a method. */
7950 static void
7951 java_complete_expand_method (mdecl)
7952 tree mdecl;
7954 tree fbody, block_body, exception_copy;
7956 current_function_decl = mdecl;
7957 /* Fix constructors before expanding them */
7958 if (DECL_CONSTRUCTOR_P (mdecl))
7959 fix_constructors (mdecl);
7961 /* Expand functions that have a body */
7962 if (!DECL_FUNCTION_BODY (mdecl))
7963 return;
7965 fbody = DECL_FUNCTION_BODY (mdecl);
7966 block_body = BLOCK_EXPR_BODY (fbody);
7967 exception_copy = NULL_TREE;
7969 current_function_decl = mdecl;
7971 if (! quiet_flag)
7972 fprintf (stderr, " [%s.",
7973 lang_printable_name (DECL_CONTEXT (mdecl), 0));
7974 announce_function (mdecl);
7975 if (! quiet_flag)
7976 fprintf (stderr, "]");
7978 /* Prepare the function for tree completion */
7979 start_complete_expand_method (mdecl);
7981 /* Install the current this */
7982 current_this = (!METHOD_STATIC (mdecl) ?
7983 BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (mdecl)) : NULL_TREE);
7985 /* Purge the `throws' list of unchecked exceptions (we save a copy
7986 of the list and re-install it later.) */
7987 exception_copy = copy_list (DECL_FUNCTION_THROWS (mdecl));
7988 purge_unchecked_exceptions (mdecl);
7990 /* Install exceptions thrown with `throws' */
7991 PUSH_EXCEPTIONS (DECL_FUNCTION_THROWS (mdecl));
7993 if (block_body != NULL_TREE)
7995 block_body = java_complete_tree (block_body);
7997 /* Before we check initialization, attached all class initialization
7998 variable to the block_body */
7999 hash_traverse (&DECL_FUNCTION_INIT_TEST_TABLE (mdecl),
8000 attach_init_test_initialization_flags, block_body);
8002 if (! flag_emit_xref && ! METHOD_NATIVE (mdecl))
8004 unsigned int state = check_for_initialization (block_body);
8006 /* Go through all the flags marking the initialization of
8007 static variables and see whether they're definitively
8008 assigned, in which case the type is remembered as
8009 definitively initialized in MDECL. */
8010 if (STATIC_CLASS_INIT_OPT_P ())
8012 hash_traverse (&DECL_FUNCTION_INIT_TEST_TABLE (mdecl),
8013 attach_initialized_static_class, (PTR)&state);
8015 /* Always register the context as properly initialized in
8016 MDECL. This used with caution helps removing extra
8017 initialization of self. */
8018 if (METHOD_STATIC (mdecl))
8019 hash_lookup (&DECL_FUNCTION_INITIALIZED_CLASS_TABLE (mdecl),
8020 (hash_table_key) DECL_CONTEXT (mdecl),
8021 TRUE, NULL);
8024 ctxp->explicit_constructor_p = 0;
8027 BLOCK_EXPR_BODY (fbody) = block_body;
8029 /* If we saw a return but couldn't evaluate it properly, we'll have
8030 an error_mark_node here. */
8031 if (block_body != error_mark_node
8032 && (block_body == NULL_TREE || CAN_COMPLETE_NORMALLY (block_body))
8033 && TREE_CODE (TREE_TYPE (TREE_TYPE (mdecl))) != VOID_TYPE
8034 && !flag_emit_xref)
8035 missing_return_error (current_function_decl);
8037 /* See if we can get rid of <clinit> if MDECL happens to be <clinit> */
8038 maybe_yank_clinit (mdecl);
8040 /* Pop the current level, with special measures if we found errors. */
8041 if (java_error_count)
8042 pushdecl_force_head (DECL_ARGUMENTS (mdecl));
8043 poplevel (1, 0, 1);
8045 /* Pop the exceptions and sanity check */
8046 POP_EXCEPTIONS();
8047 if (currently_caught_type_list)
8048 abort ();
8050 /* Restore the copy of the list of exceptions if emitting xrefs. */
8051 DECL_FUNCTION_THROWS (mdecl) = exception_copy;
8054 /* For with each class for which there's code to generate. */
8056 static void
8057 java_expand_method_bodies (class)
8058 tree class;
8060 tree decl;
8061 for (decl = TYPE_METHODS (class); decl; decl = TREE_CHAIN (decl))
8063 if (!DECL_FUNCTION_BODY (decl))
8064 continue;
8066 current_function_decl = decl;
8068 /* It's time to assign the variable flagging static class
8069 initialization based on which classes invoked static methods
8070 are definitely initializing. This should be flagged. */
8071 if (STATIC_CLASS_INIT_OPT_P ())
8072 hash_traverse (&DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (decl),
8073 adjust_init_test_initialization, NULL);
8075 /* Prepare the function for RTL expansion */
8076 start_complete_expand_method (decl);
8078 /* Expand function start, generate initialization flag
8079 assignment, and handle synchronized methods. */
8080 complete_start_java_method (decl);
8082 /* Expand the rest of the function body and terminate
8083 expansion. */
8084 source_end_java_method ();
8090 /* This section of the code deals with accessing enclosing context
8091 fields either directly by using the relevant access to this$<n> or
8092 by invoking an access method crafted for that purpose. */
8094 /* Build the necessary access from an inner class to an outer
8095 class. This routine could be optimized to cache previous result
8096 (decl, current_class and returned access). When an access method
8097 needs to be generated, it always takes the form of a read. It might
8098 be later turned into a write by calling outer_field_access_fix. */
8100 static tree
8101 build_outer_field_access (id, decl)
8102 tree id, decl;
8104 tree access = NULL_TREE;
8105 tree ctx = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current_class)));
8106 tree decl_ctx = DECL_CONTEXT (decl);
8108 /* If the immediate enclosing context of the current class is the
8109 field decl's class or inherits from it; build the access as
8110 `this$<n>.<field>'. Note that we will break the `private' barrier
8111 if we're not emitting bytecodes. */
8112 if ((ctx == decl_ctx || inherits_from_p (ctx, decl_ctx))
8113 && (!FIELD_PRIVATE (decl) || !flag_emit_class_files ))
8115 tree thisn = build_current_thisn (current_class);
8116 access = make_qualified_primary (build_wfl_node (thisn),
8117 id, EXPR_WFL_LINECOL (id));
8119 /* Otherwise, generate access methods to outer this and access the
8120 field (either using an access method or by direct access.) */
8121 else
8123 int lc = EXPR_WFL_LINECOL (id);
8125 /* Now we chain the required number of calls to the access$0 to
8126 get a hold to the enclosing instance we need, and then we
8127 build the field access. */
8128 access = build_access_to_thisn (current_class, decl_ctx, lc);
8130 /* If the field is private and we're generating bytecode, then
8131 we generate an access method */
8132 if (FIELD_PRIVATE (decl) && flag_emit_class_files )
8134 tree name = build_outer_field_access_methods (decl);
8135 access = build_outer_field_access_expr (lc, decl_ctx,
8136 name, access, NULL_TREE);
8138 /* Otherwise we use `access$(this$<j>). ... access$(this$<i>).<field>'.
8139 Once again we break the `private' access rule from a foreign
8140 class. */
8141 else
8142 access = make_qualified_primary (access, id, lc);
8144 return resolve_expression_name (access, NULL);
8147 /* Return a non zero value if NODE describes an outer field inner
8148 access. */
8150 static int
8151 outer_field_access_p (type, decl)
8152 tree type, decl;
8154 if (!INNER_CLASS_TYPE_P (type)
8155 || TREE_CODE (decl) != FIELD_DECL
8156 || DECL_CONTEXT (decl) == type)
8157 return 0;
8159 /* If the inner class extends the declaration context of the field
8160 we're try to acces, then this isn't an outer field access */
8161 if (inherits_from_p (type, DECL_CONTEXT (decl)))
8162 return 0;
8164 for (type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))); ;
8165 type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))))
8167 if (type == DECL_CONTEXT (decl))
8168 return 1;
8170 if (!DECL_CONTEXT (TYPE_NAME (type)))
8172 /* Before we give up, see whether the field is inherited from
8173 the enclosing context we're considering. */
8174 if (inherits_from_p (type, DECL_CONTEXT (decl)))
8175 return 1;
8176 break;
8180 return 0;
8183 /* Return a non zero value if NODE represents an outer field inner
8184 access that was been already expanded. As a side effect, it returns
8185 the name of the field being accessed and the argument passed to the
8186 access function, suitable for a regeneration of the access method
8187 call if necessary. */
8189 static int
8190 outer_field_expanded_access_p (node, name, arg_type, arg)
8191 tree node, *name, *arg_type, *arg;
8193 int identified = 0;
8195 if (TREE_CODE (node) != CALL_EXPR)
8196 return 0;
8198 /* Well, gcj generates slightly different tree nodes when compiling
8199 to native or bytecodes. It's the case for function calls. */
8201 if (flag_emit_class_files
8202 && TREE_CODE (node) == CALL_EXPR
8203 && OUTER_FIELD_ACCESS_IDENTIFIER_P (DECL_NAME (TREE_OPERAND (node, 0))))
8204 identified = 1;
8205 else if (!flag_emit_class_files)
8207 node = TREE_OPERAND (node, 0);
8209 if (node && TREE_OPERAND (node, 0)
8210 && TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR)
8212 node = TREE_OPERAND (node, 0);
8213 if (TREE_OPERAND (node, 0)
8214 && TREE_CODE (TREE_OPERAND (node, 0)) == FUNCTION_DECL
8215 && (OUTER_FIELD_ACCESS_IDENTIFIER_P
8216 (DECL_NAME (TREE_OPERAND (node, 0)))))
8217 identified = 1;
8221 if (identified && name && arg_type && arg)
8223 tree argument = TREE_OPERAND (node, 1);
8224 *name = DECL_NAME (TREE_OPERAND (node, 0));
8225 *arg_type = TREE_TYPE (TREE_TYPE (TREE_VALUE (argument)));
8226 *arg = TREE_VALUE (argument);
8228 return identified;
8231 /* Detect in NODE an outer field read access from an inner class and
8232 transform it into a write with RHS as an argument. This function is
8233 called from the java_complete_lhs when an assignment to a LHS can
8234 be identified. */
8236 static tree
8237 outer_field_access_fix (wfl, node, rhs)
8238 tree wfl, node, rhs;
8240 tree name, arg_type, arg;
8242 if (outer_field_expanded_access_p (node, &name, &arg_type, &arg))
8244 /* At any rate, check whether we're trying to assign a value to
8245 a final. */
8246 tree accessed = (JDECL_P (node) ? node :
8247 (TREE_CODE (node) == COMPONENT_REF ?
8248 TREE_OPERAND (node, 1) : node));
8249 if (check_final_assignment (accessed, wfl))
8250 return error_mark_node;
8252 node = build_outer_field_access_expr (EXPR_WFL_LINECOL (wfl),
8253 arg_type, name, arg, rhs);
8254 return java_complete_tree (node);
8256 return NULL_TREE;
8259 /* Construct the expression that calls an access method:
8260 <type>.access$<n>(<arg1> [, <arg2>]);
8262 ARG2 can be NULL and will be omitted in that case. It will denote a
8263 read access. */
8265 static tree
8266 build_outer_field_access_expr (lc, type, access_method_name, arg1, arg2)
8267 int lc;
8268 tree type, access_method_name, arg1, arg2;
8270 tree args, cn, access;
8272 args = arg1 ? arg1 :
8273 build_wfl_node (build_current_thisn (current_class));
8274 args = build_tree_list (NULL_TREE, args);
8276 if (arg2)
8277 args = tree_cons (NULL_TREE, arg2, args);
8279 access = build_method_invocation (build_wfl_node (access_method_name), args);
8280 cn = build_wfl_node (DECL_NAME (TYPE_NAME (type)));
8281 return make_qualified_primary (cn, access, lc);
8284 static tree
8285 build_new_access_id ()
8287 static int access_n_counter = 1;
8288 char buffer [128];
8290 sprintf (buffer, "access$%d", access_n_counter++);
8291 return get_identifier (buffer);
8294 /* Create the static access functions for the outer field DECL. We define a
8295 read:
8296 TREE_TYPE (<field>) access$<n> (DECL_CONTEXT (<field>) inst$) {
8297 return inst$.field;
8299 and a write access:
8300 TREE_TYPE (<field>) access$<n> (DECL_CONTEXT (<field>) inst$,
8301 TREE_TYPE (<field>) value$) {
8302 return inst$.field = value$;
8304 We should have a usage flags on the DECL so we can lazily turn the ones
8305 we're using for code generation. FIXME.
8308 static tree
8309 build_outer_field_access_methods (decl)
8310 tree decl;
8312 tree id, args, stmt, mdecl;
8314 if (FIELD_INNER_ACCESS_P (decl))
8315 return FIELD_INNER_ACCESS (decl);
8317 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
8319 /* Create the identifier and a function named after it. */
8320 id = build_new_access_id ();
8322 /* The identifier is marked as bearing the name of a generated write
8323 access function for outer field accessed from inner classes. */
8324 OUTER_FIELD_ACCESS_IDENTIFIER_P (id) = 1;
8326 /* Create the read access */
8327 args = build_tree_list (inst_id, build_pointer_type (DECL_CONTEXT (decl)));
8328 TREE_CHAIN (args) = end_params_node;
8329 stmt = make_qualified_primary (build_wfl_node (inst_id),
8330 build_wfl_node (DECL_NAME (decl)), 0);
8331 stmt = build_return (0, stmt);
8332 mdecl = build_outer_field_access_method (DECL_CONTEXT (decl),
8333 TREE_TYPE (decl), id, args, stmt);
8334 DECL_FUNCTION_ACCESS_DECL (mdecl) = decl;
8336 /* Create the write access method. No write access for final variable */
8337 if (!FIELD_FINAL (decl))
8339 args = build_tree_list (inst_id,
8340 build_pointer_type (DECL_CONTEXT (decl)));
8341 TREE_CHAIN (args) = build_tree_list (wpv_id, TREE_TYPE (decl));
8342 TREE_CHAIN (TREE_CHAIN (args)) = end_params_node;
8343 stmt = make_qualified_primary (build_wfl_node (inst_id),
8344 build_wfl_node (DECL_NAME (decl)), 0);
8345 stmt = build_return (0, build_assignment (ASSIGN_TK, 0, stmt,
8346 build_wfl_node (wpv_id)));
8347 mdecl = build_outer_field_access_method (DECL_CONTEXT (decl),
8348 TREE_TYPE (decl), id,
8349 args, stmt);
8351 DECL_FUNCTION_ACCESS_DECL (mdecl) = decl;
8353 /* Return the access name */
8354 return FIELD_INNER_ACCESS (decl) = id;
8357 /* Build an field access method NAME. */
8359 static tree
8360 build_outer_field_access_method (class, type, name, args, body)
8361 tree class, type, name, args, body;
8363 tree saved_current_function_decl, mdecl;
8365 /* Create the method */
8366 mdecl = create_artificial_method (class, ACC_STATIC, type, name, args);
8367 fix_method_argument_names (args, mdecl);
8368 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8370 /* Attach the method body. */
8371 saved_current_function_decl = current_function_decl;
8372 start_artificial_method_body (mdecl);
8373 java_method_add_stmt (mdecl, body);
8374 end_artificial_method_body (mdecl);
8375 current_function_decl = saved_current_function_decl;
8377 return mdecl;
8381 /* This section deals with building access function necessary for
8382 certain kinds of method invocation from inner classes. */
8384 static tree
8385 build_outer_method_access_method (decl)
8386 tree decl;
8388 tree saved_current_function_decl, mdecl;
8389 tree args = NULL_TREE, call_args = NULL_TREE;
8390 tree carg, id, body, class;
8391 char buffer [80];
8392 int parm_id_count = 0;
8394 /* Test this abort with an access to a private field */
8395 if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "access$"))
8396 abort ();
8398 /* Check the cache first */
8399 if (DECL_FUNCTION_INNER_ACCESS (decl))
8400 return DECL_FUNCTION_INNER_ACCESS (decl);
8402 class = DECL_CONTEXT (decl);
8404 /* Obtain an access identifier and mark it */
8405 id = build_new_access_id ();
8406 OUTER_FIELD_ACCESS_IDENTIFIER_P (id) = 1;
8408 carg = TYPE_ARG_TYPES (TREE_TYPE (decl));
8409 /* Create the arguments, as much as the original */
8410 for (; carg && carg != end_params_node;
8411 carg = TREE_CHAIN (carg))
8413 sprintf (buffer, "write_parm_value$%d", parm_id_count++);
8414 args = chainon (args, build_tree_list (get_identifier (buffer),
8415 TREE_VALUE (carg)));
8417 args = chainon (args, end_params_node);
8419 /* Create the method */
8420 mdecl = create_artificial_method (class, ACC_STATIC,
8421 TREE_TYPE (TREE_TYPE (decl)), id, args);
8422 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8423 /* There is a potential bug here. We should be able to use
8424 fix_method_argument_names, but then arg names get mixed up and
8425 eventually a constructor will have its this$0 altered and the
8426 outer context won't be assignment properly. The test case is
8427 stub.java FIXME */
8428 TYPE_ARG_TYPES (TREE_TYPE (mdecl)) = args;
8430 /* Attach the method body. */
8431 saved_current_function_decl = current_function_decl;
8432 start_artificial_method_body (mdecl);
8434 /* The actual method invocation uses the same args. When invoking a
8435 static methods that way, we don't want to skip the first
8436 argument. */
8437 carg = args;
8438 if (!METHOD_STATIC (decl))
8439 carg = TREE_CHAIN (carg);
8440 for (; carg && carg != end_params_node; carg = TREE_CHAIN (carg))
8441 call_args = tree_cons (NULL_TREE, build_wfl_node (TREE_PURPOSE (carg)),
8442 call_args);
8444 body = build_method_invocation (build_wfl_node (DECL_NAME (decl)),
8445 call_args);
8446 if (!METHOD_STATIC (decl))
8447 body = make_qualified_primary (build_wfl_node (TREE_PURPOSE (args)),
8448 body, 0);
8449 if (TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
8450 body = build_return (0, body);
8451 java_method_add_stmt (mdecl,body);
8452 end_artificial_method_body (mdecl);
8453 current_function_decl = saved_current_function_decl;
8455 /* Back tag the access function so it know what it accesses */
8456 DECL_FUNCTION_ACCESS_DECL (decl) = mdecl;
8458 /* Tag the current method so it knows it has an access generated */
8459 return DECL_FUNCTION_INNER_ACCESS (decl) = mdecl;
8463 /* This section of the code deals with building expressions to access
8464 the enclosing instance of an inner class. The enclosing instance is
8465 kept in a generated field called this$<n>, with <n> being the
8466 inner class nesting level (starting from 0.) */
8468 /* Build an access to a given this$<n>, always chaining access call to
8469 others. Access methods to this$<n> are build on the fly if
8470 necessary. This CAN'T be used to solely access this$<n-1> from
8471 this$<n> (which alway yield to special cases and optimization, see
8472 for example build_outer_field_access). */
8474 static tree
8475 build_access_to_thisn (from, to, lc)
8476 tree from, to;
8477 int lc;
8479 tree access = NULL_TREE;
8481 while (from != to)
8483 if (!access)
8485 access = build_current_thisn (from);
8486 access = build_wfl_node (access);
8488 else
8490 tree access0_wfl, cn;
8492 maybe_build_thisn_access_method (from);
8493 access0_wfl = build_wfl_node (access0_identifier_node);
8494 cn = build_wfl_node (DECL_NAME (TYPE_NAME (from)));
8495 EXPR_WFL_LINECOL (access0_wfl) = lc;
8496 access = build_tree_list (NULL_TREE, access);
8497 access = build_method_invocation (access0_wfl, access);
8498 access = make_qualified_primary (cn, access, lc);
8501 /* if FROM isn't an inter class, that's fine, we've done
8502 enough. What we're looking for can be accessed from there. */
8503 from = DECL_CONTEXT (TYPE_NAME (from));
8504 if (!from)
8505 break;
8506 from = TREE_TYPE (from);
8508 return access;
8511 /* Build an access function to the this$<n> local to TYPE. NULL_TREE
8512 is returned if nothing needs to be generated. Otherwise, the method
8513 generated and a method decl is returned.
8515 NOTE: These generated methods should be declared in a class file
8516 attribute so that they can't be referred to directly. */
8518 static tree
8519 maybe_build_thisn_access_method (type)
8520 tree type;
8522 tree mdecl, args, stmt, rtype;
8523 tree saved_current_function_decl;
8525 /* If TYPE is a top-level class, no access method is required.
8526 If there already is such an access method, bail out. */
8527 if (CLASS_ACCESS0_GENERATED_P (type) || !PURE_INNER_CLASS_TYPE_P (type))
8528 return NULL_TREE;
8530 /* We generate the method. The method looks like:
8531 static <outer_of_type> access$0 (<type> inst$) { return inst$.this$<n>; }
8533 args = build_tree_list (inst_id, build_pointer_type (type));
8534 TREE_CHAIN (args) = end_params_node;
8535 rtype = build_pointer_type (TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))));
8536 mdecl = create_artificial_method (type, ACC_STATIC, rtype,
8537 access0_identifier_node, args);
8538 fix_method_argument_names (args, mdecl);
8539 layout_class_method (type, NULL_TREE, mdecl, NULL_TREE);
8540 stmt = build_current_thisn (type);
8541 stmt = make_qualified_primary (build_wfl_node (inst_id),
8542 build_wfl_node (stmt), 0);
8543 stmt = build_return (0, stmt);
8545 saved_current_function_decl = current_function_decl;
8546 start_artificial_method_body (mdecl);
8547 java_method_add_stmt (mdecl, stmt);
8548 end_artificial_method_body (mdecl);
8549 current_function_decl = saved_current_function_decl;
8551 CLASS_ACCESS0_GENERATED_P (type) = 1;
8553 return mdecl;
8556 /* Craft an correctly numbered `this$<n>'string. this$0 is used for
8557 the first level of innerclassing. this$1 for the next one, etc...
8558 This function can be invoked with TYPE to NULL, available and then
8559 has to count the parser context. */
8561 static tree
8562 build_current_thisn (type)
8563 tree type;
8565 static int saved_i = -1;
8566 static tree saved_thisn = NULL_TREE;
8567 static tree saved_type = NULL_TREE;
8568 static int saved_type_i = 0;
8569 static int initialized_p;
8570 tree decl;
8571 char buffer [80];
8572 int i = 0;
8574 /* Register SAVED_THISN and SAVED_TYPE with the garbage collector. */
8575 if (!initialized_p)
8577 ggc_add_tree_root (&saved_thisn, 1);
8578 ggc_add_tree_root (&saved_type, 1);
8579 initialized_p = 1;
8582 if (type)
8584 if (type == saved_type)
8585 i = saved_type_i;
8586 else
8588 for (i = -1, decl = DECL_CONTEXT (TYPE_NAME (type));
8589 decl; decl = DECL_CONTEXT (decl), i++)
8592 saved_type = type;
8593 saved_type_i = i;
8596 else
8597 i = list_length (GET_CPC_LIST ())-2;
8599 if (i == saved_i)
8600 return saved_thisn;
8602 sprintf (buffer, "this$%d", i);
8603 saved_i = i;
8604 saved_thisn = get_identifier (buffer);
8605 return saved_thisn;
8608 /* Return the assignement to the hidden enclosing context `this$<n>'
8609 by the second incoming parameter to the innerclass constructor. The
8610 form used is `this.this$<n> = this$<n>;'. */
8612 static tree
8613 build_thisn_assign ()
8615 if (current_class && PURE_INNER_CLASS_TYPE_P (current_class))
8617 tree thisn = build_current_thisn (current_class);
8618 tree lhs = make_qualified_primary (build_wfl_node (this_identifier_node),
8619 build_wfl_node (thisn), 0);
8620 tree rhs = build_wfl_node (thisn);
8621 EXPR_WFL_SET_LINECOL (lhs, lineno, 0);
8622 return build_assignment (ASSIGN_TK, EXPR_WFL_LINECOL (lhs), lhs, rhs);
8624 return NULL_TREE;
8628 /* Building the synthetic `class$' used to implement the `.class' 1.1
8629 extension for non primitive types. This method looks like:
8631 static Class class$(String type) throws NoClassDefFoundError
8633 try {return (java.lang.Class.forName (String));}
8634 catch (ClassNotFoundException e) {
8635 throw new NoClassDefFoundError(e.getMessage());}
8636 } */
8638 static tree
8639 build_dot_class_method (class)
8640 tree class;
8642 #define BWF(S) build_wfl_node (get_identifier ((S)))
8643 #define MQN(X,Y) make_qualified_name ((X), (Y), 0)
8644 tree args, tmp, saved_current_function_decl, mdecl;
8645 tree stmt, throw_stmt;
8647 static tree get_message_wfl, type_parm_wfl;
8649 if (!get_message_wfl)
8651 get_message_wfl = build_wfl_node (get_identifier ("getMessage"));
8652 type_parm_wfl = build_wfl_node (get_identifier ("type$"));
8653 ggc_add_tree_root (&get_message_wfl, 1);
8654 ggc_add_tree_root (&type_parm_wfl, 1);
8657 /* Build the arguments */
8658 args = build_tree_list (get_identifier ("type$"),
8659 build_pointer_type (string_type_node));
8660 TREE_CHAIN (args) = end_params_node;
8662 /* Build the qualified name java.lang.Class.forName */
8663 tmp = MQN (MQN (MQN (BWF ("java"),
8664 BWF ("lang")), BWF ("Class")), BWF ("forName"));
8665 load_class (class_not_found_type_node, 1);
8666 load_class (no_class_def_found_type_node, 1);
8668 /* Create the "class$" function */
8669 mdecl = create_artificial_method (class, ACC_STATIC,
8670 build_pointer_type (class_type_node),
8671 classdollar_identifier_node, args);
8672 DECL_FUNCTION_THROWS (mdecl) =
8673 build_tree_list (NULL_TREE, no_class_def_found_type_node);
8675 /* We start by building the try block. We need to build:
8676 return (java.lang.Class.forName (type)); */
8677 stmt = build_method_invocation (tmp,
8678 build_tree_list (NULL_TREE, type_parm_wfl));
8679 stmt = build_return (0, stmt);
8681 /* Now onto the catch block. We start by building the expression
8682 throwing a new exception: throw new NoClassDefFoundError (_.getMessage) */
8683 throw_stmt = make_qualified_name (build_wfl_node (wpv_id),
8684 get_message_wfl, 0);
8685 throw_stmt = build_method_invocation (throw_stmt, NULL_TREE);
8687 /* Build new NoClassDefFoundError (_.getMessage) */
8688 throw_stmt = build_new_invocation
8689 (build_wfl_node (get_identifier ("NoClassDefFoundError")),
8690 build_tree_list (build_pointer_type (string_type_node), throw_stmt));
8692 /* Build the throw, (it's too early to use BUILD_THROW) */
8693 throw_stmt = build1 (THROW_EXPR, NULL_TREE, throw_stmt);
8695 /* Encapsulate STMT in a try block. The catch clause executes THROW_STMT */
8696 stmt = encapsulate_with_try_catch (0, class_not_found_type_node,
8697 stmt, throw_stmt);
8699 fix_method_argument_names (args, mdecl);
8700 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8701 saved_current_function_decl = current_function_decl;
8702 start_artificial_method_body (mdecl);
8703 java_method_add_stmt (mdecl, stmt);
8704 end_artificial_method_body (mdecl);
8705 current_function_decl = saved_current_function_decl;
8706 TYPE_DOT_CLASS (class) = mdecl;
8708 return mdecl;
8711 static tree
8712 build_dot_class_method_invocation (type)
8713 tree type;
8715 tree sig_id, s;
8717 if (TYPE_ARRAY_P (type))
8718 sig_id = build_java_signature (type);
8719 else
8720 sig_id = DECL_NAME (TYPE_NAME (type));
8722 /* Ensure that the proper name separator is used */
8723 sig_id = unmangle_classname (IDENTIFIER_POINTER (sig_id),
8724 IDENTIFIER_LENGTH (sig_id));
8726 s = build_string (IDENTIFIER_LENGTH (sig_id),
8727 IDENTIFIER_POINTER (sig_id));
8728 return build_method_invocation (build_wfl_node (classdollar_identifier_node),
8729 build_tree_list (NULL_TREE, s));
8732 /* This section of the code deals with constructor. */
8734 /* Craft a body for default constructor. Patch existing constructor
8735 bodies with call to super() and field initialization statements if
8736 necessary. */
8738 static void
8739 fix_constructors (mdecl)
8740 tree mdecl;
8742 tree iii; /* Instance Initializer Invocation */
8743 tree body = DECL_FUNCTION_BODY (mdecl);
8744 tree thisn_assign, compound = NULL_TREE;
8745 tree class_type = DECL_CONTEXT (mdecl);
8747 if (DECL_FIXED_CONSTRUCTOR_P (mdecl))
8748 return;
8749 DECL_FIXED_CONSTRUCTOR_P (mdecl) = 1;
8751 if (!body)
8753 /* It is an error for the compiler to generate a default
8754 constructor if the superclass doesn't have a constructor that
8755 takes no argument, or the same args for an anonymous class */
8756 if (verify_constructor_super (mdecl))
8758 tree sclass_decl = TYPE_NAME (CLASSTYPE_SUPER (class_type));
8759 tree save = DECL_NAME (mdecl);
8760 const char *n = IDENTIFIER_POINTER (DECL_NAME (sclass_decl));
8761 DECL_NAME (mdecl) = DECL_NAME (sclass_decl);
8762 parse_error_context
8763 (lookup_cl (TYPE_NAME (class_type)),
8764 "No constructor matching `%s' found in class `%s'",
8765 lang_printable_name (mdecl, 0), n);
8766 DECL_NAME (mdecl) = save;
8769 /* The constructor body must be crafted by hand. It's the
8770 constructor we defined when we realize we didn't have the
8771 CLASSNAME() constructor */
8772 start_artificial_method_body (mdecl);
8774 /* Insert an assignment to the this$<n> hidden field, if
8775 necessary */
8776 if ((thisn_assign = build_thisn_assign ()))
8777 java_method_add_stmt (mdecl, thisn_assign);
8779 /* We don't generate a super constructor invocation if we're
8780 compiling java.lang.Object. build_super_invocation takes care
8781 of that. */
8782 java_method_add_stmt (mdecl, build_super_invocation (mdecl));
8784 /* FIXME */
8785 if ((iii = build_instinit_invocation (class_type)))
8786 java_method_add_stmt (mdecl, iii);
8788 end_artificial_method_body (mdecl);
8790 /* Search for an explicit constructor invocation */
8791 else
8793 int found = 0;
8794 int invokes_this = 0;
8795 tree found_call = NULL_TREE;
8796 tree main_block = BLOCK_EXPR_BODY (body);
8798 while (body)
8799 switch (TREE_CODE (body))
8801 case CALL_EXPR:
8802 found = CALL_EXPLICIT_CONSTRUCTOR_P (body);
8803 if (CALL_THIS_CONSTRUCTOR_P (body))
8804 invokes_this = 1;
8805 body = NULL_TREE;
8806 break;
8807 case COMPOUND_EXPR:
8808 case EXPR_WITH_FILE_LOCATION:
8809 found_call = body;
8810 body = TREE_OPERAND (body, 0);
8811 break;
8812 case BLOCK:
8813 found_call = body;
8814 body = BLOCK_EXPR_BODY (body);
8815 break;
8816 default:
8817 found = 0;
8818 body = NULL_TREE;
8821 /* Generate the assignment to this$<n>, if necessary */
8822 if ((thisn_assign = build_thisn_assign ()))
8823 compound = add_stmt_to_compound (compound, NULL_TREE, thisn_assign);
8825 /* The constructor is missing an invocation of super() */
8826 if (!found)
8827 compound = add_stmt_to_compound (compound, NULL_TREE,
8828 build_super_invocation (mdecl));
8829 /* Explicit super() invokation should take place before the
8830 instance initializer blocks. */
8831 else
8833 compound = add_stmt_to_compound (compound, NULL_TREE,
8834 TREE_OPERAND (found_call, 0));
8835 TREE_OPERAND (found_call, 0) = empty_stmt_node;
8838 /* Insert the instance initializer block right after. */
8839 if (!invokes_this && (iii = build_instinit_invocation (class_type)))
8840 compound = add_stmt_to_compound (compound, NULL_TREE, iii);
8842 /* Fix the constructor main block if we're adding extra stmts */
8843 if (compound)
8845 compound = add_stmt_to_compound (compound, NULL_TREE,
8846 BLOCK_EXPR_BODY (main_block));
8847 BLOCK_EXPR_BODY (main_block) = compound;
8852 /* Browse constructors in the super class, searching for a constructor
8853 that doesn't take any argument. Return 0 if one is found, 1
8854 otherwise. If the current class is an anonymous inner class, look
8855 for something that has the same signature. */
8857 static int
8858 verify_constructor_super (mdecl)
8859 tree mdecl;
8861 tree class = CLASSTYPE_SUPER (current_class);
8862 int super_inner = PURE_INNER_CLASS_TYPE_P (class);
8863 tree sdecl;
8865 if (!class)
8866 return 0;
8868 if (ANONYMOUS_CLASS_P (current_class))
8870 tree mdecl_arg_type;
8871 SKIP_THIS_AND_ARTIFICIAL_PARMS (mdecl_arg_type, mdecl);
8872 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
8873 if (DECL_CONSTRUCTOR_P (sdecl))
8875 tree m_arg_type;
8876 tree arg_type = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
8877 if (super_inner)
8878 arg_type = TREE_CHAIN (arg_type);
8879 for (m_arg_type = mdecl_arg_type;
8880 (arg_type != end_params_node
8881 && m_arg_type != end_params_node);
8882 arg_type = TREE_CHAIN (arg_type),
8883 m_arg_type = TREE_CHAIN (m_arg_type))
8884 if (!valid_method_invocation_conversion_p
8885 (TREE_VALUE (arg_type),
8886 TREE_VALUE (m_arg_type)))
8887 break;
8889 if (arg_type == end_params_node && m_arg_type == end_params_node)
8890 return 0;
8893 else
8895 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
8897 tree arg = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
8898 if (super_inner)
8899 arg = TREE_CHAIN (arg);
8900 if (DECL_CONSTRUCTOR_P (sdecl) && arg == end_params_node)
8901 return 0;
8904 return 1;
8907 /* Generate code for all context remembered for code generation. */
8909 void
8910 java_expand_classes ()
8912 int save_error_count = 0;
8913 static struct parser_ctxt *cur_ctxp = NULL;
8915 java_parse_abort_on_error ();
8916 if (!(ctxp = ctxp_for_generation))
8917 return;
8918 java_layout_classes ();
8919 java_parse_abort_on_error ();
8921 cur_ctxp = ctxp_for_generation;
8922 for (; cur_ctxp; cur_ctxp = cur_ctxp->next)
8924 ctxp = cur_ctxp;
8925 input_filename = ctxp->filename;
8926 lang_init_source (2); /* Error msgs have method prototypes */
8927 java_complete_expand_classes (); /* Complete and expand classes */
8928 java_parse_abort_on_error ();
8930 input_filename = main_input_filename;
8932 /* Find anonymous classes and expand their constructor, now they
8933 have been fixed. */
8934 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
8936 tree current;
8937 ctxp = cur_ctxp;
8938 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
8940 current_class = TREE_TYPE (current);
8941 if (ANONYMOUS_CLASS_P (current_class))
8943 tree d;
8944 for (d = TYPE_METHODS (current_class); d; d = TREE_CHAIN (d))
8946 if (DECL_CONSTRUCTOR_P (d))
8948 restore_line_number_status (1);
8949 java_complete_expand_method (d);
8950 restore_line_number_status (0);
8951 break; /* We now there are no other ones */
8958 /* If we've found error at that stage, don't try to generate
8959 anything, unless we're emitting xrefs or checking the syntax only
8960 (but not using -fsyntax-only for the purpose of generating
8961 bytecode. */
8962 if (java_error_count && !flag_emit_xref
8963 && (!flag_syntax_only && !flag_emit_class_files))
8964 return;
8966 /* Now things are stable, go for generation of the class data. */
8967 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
8969 tree current;
8970 ctxp = cur_ctxp;
8971 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
8973 current_class = TREE_TYPE (current);
8974 outgoing_cpool = TYPE_CPOOL (current_class);
8975 if (flag_emit_class_files)
8976 write_classfile (current_class);
8977 if (flag_emit_xref)
8978 expand_xref (current_class);
8979 else if (! flag_syntax_only)
8981 java_expand_method_bodies (current_class);
8982 finish_class ();
8988 /* Wrap non WFL PRIMARY around a WFL and set EXPR_WFL_QUALIFICATION to
8989 a tree list node containing RIGHT. Fore coming RIGHTs will be
8990 chained to this hook. LOCATION contains the location of the
8991 separating `.' operator. */
8993 static tree
8994 make_qualified_primary (primary, right, location)
8995 tree primary, right;
8996 int location;
8998 tree wfl;
9000 if (TREE_CODE (primary) != EXPR_WITH_FILE_LOCATION)
9001 wfl = build_wfl_wrap (primary, location);
9002 else
9004 wfl = primary;
9005 /* If wfl wasn't qualified, we build a first anchor */
9006 if (!EXPR_WFL_QUALIFICATION (wfl))
9007 EXPR_WFL_QUALIFICATION (wfl) = build_tree_list (wfl, NULL_TREE);
9010 /* And chain them */
9011 EXPR_WFL_LINECOL (right) = location;
9012 chainon (EXPR_WFL_QUALIFICATION (wfl), build_tree_list (right, NULL_TREE));
9013 PRIMARY_P (wfl) = 1;
9014 return wfl;
9017 /* Simple merge of two name separated by a `.' */
9019 static tree
9020 merge_qualified_name (left, right)
9021 tree left, right;
9023 tree node;
9024 if (!left && !right)
9025 return NULL_TREE;
9027 if (!left)
9028 return right;
9030 if (!right)
9031 return left;
9033 obstack_grow (&temporary_obstack, IDENTIFIER_POINTER (left),
9034 IDENTIFIER_LENGTH (left));
9035 obstack_1grow (&temporary_obstack, '.');
9036 obstack_grow0 (&temporary_obstack, IDENTIFIER_POINTER (right),
9037 IDENTIFIER_LENGTH (right));
9038 node = get_identifier (obstack_base (&temporary_obstack));
9039 obstack_free (&temporary_obstack, obstack_base (&temporary_obstack));
9040 QUALIFIED_P (node) = 1;
9041 return node;
9044 /* Merge the two parts of a qualified name into LEFT. Set the
9045 location information of the resulting node to LOCATION, usually
9046 inherited from the location information of the `.' operator. */
9048 static tree
9049 make_qualified_name (left, right, location)
9050 tree left, right;
9051 int location;
9053 #ifdef USE_COMPONENT_REF
9054 tree node = build (COMPONENT_REF, NULL_TREE, left, right);
9055 EXPR_WFL_LINECOL (node) = location;
9056 return node;
9057 #else
9058 tree left_id = EXPR_WFL_NODE (left);
9059 tree right_id = EXPR_WFL_NODE (right);
9060 tree wfl, merge;
9062 merge = merge_qualified_name (left_id, right_id);
9064 /* Left wasn't qualified and is now qualified */
9065 if (!QUALIFIED_P (left_id))
9067 tree wfl = build_expr_wfl (left_id, ctxp->filename, 0, 0);
9068 EXPR_WFL_LINECOL (wfl) = EXPR_WFL_LINECOL (left);
9069 EXPR_WFL_QUALIFICATION (left) = build_tree_list (wfl, NULL_TREE);
9072 wfl = build_expr_wfl (right_id, ctxp->filename, 0, 0);
9073 EXPR_WFL_LINECOL (wfl) = location;
9074 chainon (EXPR_WFL_QUALIFICATION (left), build_tree_list (wfl, NULL_TREE));
9076 EXPR_WFL_NODE (left) = merge;
9077 return left;
9078 #endif
9081 /* Extract the last identifier component of the qualified in WFL. The
9082 last identifier is removed from the linked list */
9084 static tree
9085 cut_identifier_in_qualified (wfl)
9086 tree wfl;
9088 tree q;
9089 tree previous = NULL_TREE;
9090 for (q = EXPR_WFL_QUALIFICATION (wfl); ; previous = q, q = TREE_CHAIN (q))
9091 if (!TREE_CHAIN (q))
9093 if (!previous)
9094 /* Operating on a non qualified qualified WFL. */
9095 abort ();
9097 TREE_CHAIN (previous) = NULL_TREE;
9098 return TREE_PURPOSE (q);
9102 /* Resolve the expression name NAME. Return its decl. */
9104 static tree
9105 resolve_expression_name (id, orig)
9106 tree id;
9107 tree *orig;
9109 tree name = EXPR_WFL_NODE (id);
9110 tree decl;
9112 /* 6.5.5.1: Simple expression names */
9113 if (!PRIMARY_P (id) && !QUALIFIED_P (name))
9115 /* 15.13.1: NAME can appear within the scope of a local variable
9116 declaration */
9117 if ((decl = IDENTIFIER_LOCAL_VALUE (name)))
9118 return decl;
9120 /* 15.13.1: NAME can appear within a class declaration */
9121 else
9123 decl = lookup_field_wrapper (current_class, name);
9124 if (decl)
9126 tree access = NULL_TREE;
9127 int fs = FIELD_STATIC (decl);
9129 /* If we're accessing an outer scope local alias, make
9130 sure we change the name of the field we're going to
9131 build access to. */
9132 if (FIELD_LOCAL_ALIAS_USED (decl))
9133 name = DECL_NAME (decl);
9135 /* Instance variable (8.3.1.1) can't appear within
9136 static method, static initializer or initializer for
9137 a static variable. */
9138 if (!fs && METHOD_STATIC (current_function_decl))
9140 static_ref_err (id, name, current_class);
9141 return error_mark_node;
9143 /* Instance variables can't appear as an argument of
9144 an explicit constructor invocation */
9145 if (!fs && ctxp->explicit_constructor_p
9146 && !enclosing_context_p (DECL_CONTEXT (decl), current_class))
9148 parse_error_context
9149 (id, "Can't reference `%s' before the superclass constructor has been called", IDENTIFIER_POINTER (name));
9150 return error_mark_node;
9153 /* If we're processing an inner class and we're trying
9154 to access a field belonging to an outer class, build
9155 the access to the field */
9156 if (!fs && outer_field_access_p (current_class, decl))
9158 if (CLASS_STATIC (TYPE_NAME (current_class)))
9160 static_ref_err (id, DECL_NAME (decl), current_class);
9161 return error_mark_node;
9163 access = build_outer_field_access (id, decl);
9164 if (orig)
9165 *orig = access;
9166 return access;
9169 /* Otherwise build what it takes to access the field */
9170 access = build_field_ref ((fs ? NULL_TREE : current_this),
9171 DECL_CONTEXT (decl), name);
9172 if (fs)
9173 access = maybe_build_class_init_for_field (decl, access);
9174 /* We may be asked to save the real field access node */
9175 if (orig)
9176 *orig = access;
9177 /* And we return what we got */
9178 return access;
9180 /* Fall down to error report on undefined variable */
9183 /* 6.5.5.2 Qualified Expression Names */
9184 else
9186 if (orig)
9187 *orig = NULL_TREE;
9188 qualify_ambiguous_name (id);
9189 /* 15.10.1 Field Access Using a Primary and/or Expression Name */
9190 /* 15.10.2: Accessing Superclass Members using super */
9191 return resolve_field_access (id, orig, NULL);
9194 /* We've got an error here */
9195 if (INNER_CLASS_TYPE_P (current_class))
9196 parse_error_context (id,
9197 "Local variable `%s' can't be accessed from within the inner class `%s' unless it is declared final",
9198 IDENTIFIER_POINTER (name),
9199 IDENTIFIER_POINTER (DECL_NAME
9200 (TYPE_NAME (current_class))));
9201 else
9202 parse_error_context (id, "Undefined variable `%s'",
9203 IDENTIFIER_POINTER (name));
9205 return error_mark_node;
9208 static void
9209 static_ref_err (wfl, field_id, class_type)
9210 tree wfl, field_id, class_type;
9212 parse_error_context
9213 (wfl,
9214 "Can't make a static reference to nonstatic variable `%s' in class `%s'",
9215 IDENTIFIER_POINTER (field_id),
9216 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (class_type))));
9219 /* 15.10.1 Field Acess Using a Primary and/or Expression Name.
9220 We return something suitable to generate the field access. We also
9221 return the field decl in FIELD_DECL and its type in FIELD_TYPE. If
9222 recipient's address can be null. */
9224 static tree
9225 resolve_field_access (qual_wfl, field_decl, field_type)
9226 tree qual_wfl;
9227 tree *field_decl, *field_type;
9229 int is_static = 0;
9230 tree field_ref;
9231 tree decl, where_found, type_found;
9233 if (resolve_qualified_expression_name (qual_wfl, &decl,
9234 &where_found, &type_found))
9235 return error_mark_node;
9237 /* Resolve the LENGTH field of an array here */
9238 if (DECL_P (decl) && DECL_NAME (decl) == length_identifier_node
9239 && type_found && TYPE_ARRAY_P (type_found)
9240 && ! flag_emit_class_files && ! flag_emit_xref)
9242 tree length = build_java_array_length_access (where_found);
9243 field_ref = length;
9245 /* In case we're dealing with a static array, we need to
9246 initialize its class before the array length can be fetched.
9247 It's also a good time to create a DECL_RTL for the field if
9248 none already exists, otherwise if the field was declared in a
9249 class found in an external file and hasn't been (and won't
9250 be) accessed for its value, none will be created. */
9251 if (TREE_CODE (where_found) == VAR_DECL && FIELD_STATIC (where_found))
9253 build_static_field_ref (where_found);
9254 field_ref = build_class_init (DECL_CONTEXT (where_found), field_ref);
9257 /* We might have been trying to resolve field.method(). In which
9258 case, the resolution is over and decl is the answer */
9259 else if (JDECL_P (decl) && IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) == decl)
9260 field_ref = decl;
9261 else if (JDECL_P (decl))
9263 if (!type_found)
9264 type_found = DECL_CONTEXT (decl);
9265 is_static = FIELD_STATIC (decl);
9266 field_ref = build_field_ref ((is_static && !flag_emit_xref?
9267 NULL_TREE : where_found),
9268 type_found, DECL_NAME (decl));
9269 if (field_ref == error_mark_node)
9270 return error_mark_node;
9271 if (is_static)
9272 field_ref = maybe_build_class_init_for_field (decl, field_ref);
9274 else
9275 field_ref = decl;
9277 if (field_decl)
9278 *field_decl = decl;
9279 if (field_type)
9280 *field_type = (QUAL_DECL_TYPE (decl) ?
9281 QUAL_DECL_TYPE (decl) : TREE_TYPE (decl));
9282 return field_ref;
9285 /* If NODE is an access to f static field, strip out the class
9286 initialization part and return the field decl, otherwise, return
9287 NODE. */
9289 static tree
9290 strip_out_static_field_access_decl (node)
9291 tree node;
9293 if (TREE_CODE (node) == COMPOUND_EXPR)
9295 tree op1 = TREE_OPERAND (node, 1);
9296 if (TREE_CODE (op1) == COMPOUND_EXPR)
9298 tree call = TREE_OPERAND (op1, 0);
9299 if (TREE_CODE (call) == CALL_EXPR
9300 && TREE_CODE (TREE_OPERAND (call, 0)) == ADDR_EXPR
9301 && TREE_OPERAND (TREE_OPERAND (call, 0), 0)
9302 == soft_initclass_node)
9303 return TREE_OPERAND (op1, 1);
9305 else if (JDECL_P (op1))
9306 return op1;
9308 return node;
9311 /* 6.5.5.2: Qualified Expression Names */
9313 static int
9314 resolve_qualified_expression_name (wfl, found_decl, where_found, type_found)
9315 tree wfl;
9316 tree *found_decl, *type_found, *where_found;
9318 int from_type = 0; /* Field search initiated from a type */
9319 int from_super = 0, from_cast = 0, from_qualified_this = 0;
9320 int previous_call_static = 0;
9321 int is_static;
9322 tree decl = NULL_TREE, type = NULL_TREE, q;
9323 /* For certain for of inner class instantiation */
9324 tree saved_current, saved_this;
9325 #define RESTORE_THIS_AND_CURRENT_CLASS \
9326 { current_class = saved_current; current_this = saved_this;}
9328 *type_found = *where_found = NULL_TREE;
9330 for (q = EXPR_WFL_QUALIFICATION (wfl); q; q = TREE_CHAIN (q))
9332 tree qual_wfl = QUAL_WFL (q);
9333 tree ret_decl; /* for EH checking */
9334 int location; /* for EH checking */
9336 /* 15.10.1 Field Access Using a Primary */
9337 switch (TREE_CODE (qual_wfl))
9339 case CALL_EXPR:
9340 case NEW_CLASS_EXPR:
9341 /* If the access to the function call is a non static field,
9342 build the code to access it. */
9343 if (JDECL_P (decl) && !FIELD_STATIC (decl))
9345 decl = maybe_access_field (decl, *where_found,
9346 DECL_CONTEXT (decl));
9347 if (decl == error_mark_node)
9348 return 1;
9351 /* And code for the function call */
9352 if (complete_function_arguments (qual_wfl))
9353 return 1;
9355 /* We might have to setup a new current class and a new this
9356 for the search of an inner class, relative to the type of
9357 a expression resolved as `decl'. The current values are
9358 saved and restored shortly after */
9359 saved_current = current_class;
9360 saved_this = current_this;
9361 if (decl
9362 && (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR
9363 || from_qualified_this))
9365 /* If we still have `from_qualified_this', we have the form
9366 <T>.this.f() and we need to build <T>.this */
9367 if (from_qualified_this)
9369 decl = build_access_to_thisn (current_class, type, 0);
9370 decl = java_complete_tree (decl);
9371 type = TREE_TYPE (TREE_TYPE (decl));
9373 current_class = type;
9374 current_this = decl;
9375 from_qualified_this = 0;
9378 if (from_super && TREE_CODE (qual_wfl) == CALL_EXPR)
9379 CALL_USING_SUPER (qual_wfl) = 1;
9380 location = (TREE_CODE (qual_wfl) == CALL_EXPR ?
9381 EXPR_WFL_LINECOL (TREE_OPERAND (qual_wfl, 0)) : 0);
9382 *where_found = patch_method_invocation (qual_wfl, decl, type,
9383 from_super,
9384 &is_static, &ret_decl);
9385 if (*where_found == error_mark_node)
9387 RESTORE_THIS_AND_CURRENT_CLASS;
9388 return 1;
9390 *type_found = type = QUAL_DECL_TYPE (*where_found);
9392 /* If we're creating an inner class instance, check for that
9393 an enclosing instance is in scope */
9394 if (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR
9395 && INNER_ENCLOSING_SCOPE_CHECK (type))
9397 parse_error_context
9398 (qual_wfl, "No enclosing instance for inner class `%s' is in scope%s",
9399 lang_printable_name (type, 0),
9400 (!current_this ? "" :
9401 "; an explicit one must be provided when creating this inner class"));
9402 RESTORE_THIS_AND_CURRENT_CLASS;
9403 return 1;
9406 /* In case we had to change then to resolve a inner class
9407 instantiation using a primary qualified by a `new' */
9408 RESTORE_THIS_AND_CURRENT_CLASS;
9410 /* EH check. No check on access$<n> functions */
9411 if (location
9412 && !OUTER_FIELD_ACCESS_IDENTIFIER_P
9413 (DECL_NAME (current_function_decl)))
9414 check_thrown_exceptions (location, ret_decl);
9416 /* If the previous call was static and this one is too,
9417 build a compound expression to hold the two (because in
9418 that case, previous function calls aren't transported as
9419 forcoming function's argument. */
9420 if (previous_call_static && is_static)
9422 decl = build (COMPOUND_EXPR, TREE_TYPE (*where_found),
9423 decl, *where_found);
9424 TREE_SIDE_EFFECTS (decl) = 1;
9426 else
9428 previous_call_static = is_static;
9429 decl = *where_found;
9431 from_type = 0;
9432 continue;
9434 case NEW_ARRAY_EXPR:
9435 case NEW_ANONYMOUS_ARRAY_EXPR:
9436 *where_found = decl = java_complete_tree (qual_wfl);
9437 if (decl == error_mark_node)
9438 return 1;
9439 *type_found = type = QUAL_DECL_TYPE (decl);
9440 continue;
9442 case CONVERT_EXPR:
9443 *where_found = decl = java_complete_tree (qual_wfl);
9444 if (decl == error_mark_node)
9445 return 1;
9446 *type_found = type = QUAL_DECL_TYPE (decl);
9447 from_cast = 1;
9448 continue;
9450 case CONDITIONAL_EXPR:
9451 case STRING_CST:
9452 case MODIFY_EXPR:
9453 *where_found = decl = java_complete_tree (qual_wfl);
9454 if (decl == error_mark_node)
9455 return 1;
9456 *type_found = type = QUAL_DECL_TYPE (decl);
9457 continue;
9459 case ARRAY_REF:
9460 /* If the access to the function call is a non static field,
9461 build the code to access it. */
9462 if (JDECL_P (decl) && !FIELD_STATIC (decl))
9464 decl = maybe_access_field (decl, *where_found, type);
9465 if (decl == error_mark_node)
9466 return 1;
9468 /* And code for the array reference expression */
9469 decl = java_complete_tree (qual_wfl);
9470 if (decl == error_mark_node)
9471 return 1;
9472 type = QUAL_DECL_TYPE (decl);
9473 continue;
9475 case PLUS_EXPR:
9476 if ((decl = java_complete_tree (qual_wfl)) == error_mark_node)
9477 return 1;
9478 if ((type = patch_string (decl)))
9479 decl = type;
9480 *where_found = QUAL_RESOLUTION (q) = decl;
9481 *type_found = type = TREE_TYPE (decl);
9482 break;
9484 case CLASS_LITERAL:
9485 if ((decl = java_complete_tree (qual_wfl)) == error_mark_node)
9486 return 1;
9487 *where_found = QUAL_RESOLUTION (q) = decl;
9488 *type_found = type = TREE_TYPE (decl);
9489 break;
9491 default:
9492 /* Fix for -Wall Just go to the next statement. Don't
9493 continue */
9494 break;
9497 /* If we fall here, we weren't processing a (static) function call. */
9498 previous_call_static = 0;
9500 /* It can be the keyword THIS */
9501 if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION
9502 && EXPR_WFL_NODE (qual_wfl) == this_identifier_node)
9504 if (!current_this)
9506 parse_error_context
9507 (wfl, "Keyword `this' used outside allowed context");
9508 return 1;
9510 if (ctxp->explicit_constructor_p
9511 && type == current_class)
9513 parse_error_context (wfl, "Can't reference `this' before the superclass constructor has been called");
9514 return 1;
9516 /* We have to generate code for intermediate acess */
9517 if (!from_type || TREE_TYPE (TREE_TYPE (current_this)) == type)
9519 *where_found = decl = current_this;
9520 *type_found = type = QUAL_DECL_TYPE (decl);
9522 /* We're trying to access the this from somewhere else. Make sure
9523 it's allowed before doing so. */
9524 else
9526 if (!enclosing_context_p (type, current_class))
9528 char *p = xstrdup (lang_printable_name (type, 0));
9529 parse_error_context (qual_wfl, "Can't use variable `%s.this': type `%s' isn't an outer type of type `%s'",
9530 p, p,
9531 lang_printable_name (current_class, 0));
9532 free (p);
9533 return 1;
9535 from_qualified_this = 1;
9536 /* If there's nothing else after that, we need to
9537 produce something now, otherwise, the section of the
9538 code that needs to produce <T>.this will generate
9539 what is necessary. */
9540 if (!TREE_CHAIN (q))
9542 decl = build_access_to_thisn (current_class, type, 0);
9543 *where_found = decl = java_complete_tree (decl);
9544 *type_found = type = TREE_TYPE (decl);
9548 from_type = 0;
9549 continue;
9552 /* 15.10.2 Accessing Superclass Members using SUPER */
9553 if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION
9554 && EXPR_WFL_NODE (qual_wfl) == super_identifier_node)
9556 tree node;
9557 /* Check on the restricted use of SUPER */
9558 if (METHOD_STATIC (current_function_decl)
9559 || current_class == object_type_node)
9561 parse_error_context
9562 (wfl, "Keyword `super' used outside allowed context");
9563 return 1;
9565 /* Otherwise, treat SUPER as (SUPER_CLASS)THIS */
9566 node = build_cast (EXPR_WFL_LINECOL (qual_wfl),
9567 CLASSTYPE_SUPER (current_class),
9568 build_this (EXPR_WFL_LINECOL (qual_wfl)));
9569 *where_found = decl = java_complete_tree (node);
9570 if (decl == error_mark_node)
9571 return 1;
9572 *type_found = type = QUAL_DECL_TYPE (decl);
9573 from_super = from_type = 1;
9574 continue;
9577 /* 15.13.1: Can't search for field name in packages, so we
9578 assume a variable/class name was meant. */
9579 if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
9581 tree name = resolve_package (wfl, &q);
9582 if (name)
9584 tree list;
9585 *where_found = decl = resolve_no_layout (name, qual_wfl);
9586 /* We want to be absolutely sure that the class is laid
9587 out. We're going to search something inside it. */
9588 *type_found = type = TREE_TYPE (decl);
9589 layout_class (type);
9590 from_type = 1;
9592 /* Fix them all the way down, if any are left. */
9593 if (q)
9595 list = TREE_CHAIN (q);
9596 while (list)
9598 RESOLVE_EXPRESSION_NAME_P (QUAL_WFL (list)) = 1;
9599 RESOLVE_PACKAGE_NAME_P (QUAL_WFL (list)) = 0;
9600 list = TREE_CHAIN (list);
9604 else
9606 if (from_super || from_cast)
9607 parse_error_context
9608 ((from_cast ? qual_wfl : wfl),
9609 "No variable `%s' defined in class `%s'",
9610 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
9611 lang_printable_name (type, 0));
9612 else
9613 parse_error_context
9614 (qual_wfl, "Undefined variable or class name: `%s'",
9615 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)));
9616 return 1;
9620 /* We have a type name. It's been already resolved when the
9621 expression was qualified. */
9622 else if (RESOLVE_TYPE_NAME_P (qual_wfl) && QUAL_RESOLUTION (q))
9624 decl = QUAL_RESOLUTION (q);
9626 /* Sneak preview. If next we see a `new', we're facing a
9627 qualification with resulted in a type being selected
9628 instead of a field. Report the error */
9629 if(TREE_CHAIN (q)
9630 && TREE_CODE (TREE_PURPOSE (TREE_CHAIN (q))) == NEW_CLASS_EXPR)
9632 parse_error_context (qual_wfl, "Undefined variable `%s'",
9633 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
9634 return 1;
9637 if (not_accessible_p (TREE_TYPE (decl), decl, type, 0))
9639 parse_error_context
9640 (qual_wfl, "Can't access %s field `%s.%s' from `%s'",
9641 java_accstring_lookup (get_access_flags_from_decl (decl)),
9642 GET_TYPE_NAME (type),
9643 IDENTIFIER_POINTER (DECL_NAME (decl)),
9644 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))));
9645 return 1;
9647 check_deprecation (qual_wfl, decl);
9649 type = TREE_TYPE (decl);
9650 from_type = 1;
9652 /* We resolve an expression name */
9653 else
9655 tree field_decl = NULL_TREE;
9657 /* If there exists an early resolution, use it. That occurs
9658 only once and we know that there are more things to
9659 come. Don't do that when processing something after SUPER
9660 (we need more thing to be put in place below */
9661 if (!from_super && QUAL_RESOLUTION (q))
9663 decl = QUAL_RESOLUTION (q);
9664 if (!type)
9666 if (TREE_CODE (decl) == FIELD_DECL && !FIELD_STATIC (decl))
9668 if (current_this)
9669 *where_found = current_this;
9670 else
9672 static_ref_err (qual_wfl, DECL_NAME (decl),
9673 current_class);
9674 return 1;
9676 if (outer_field_access_p (current_class, decl))
9677 decl = build_outer_field_access (qual_wfl, decl);
9679 else
9681 *where_found = TREE_TYPE (decl);
9682 if (TREE_CODE (*where_found) == POINTER_TYPE)
9683 *where_found = TREE_TYPE (*where_found);
9688 /* Report and error if we're using a numerical litteral as a
9689 qualifier. It can only be an INTEGER_CST. */
9690 else if (TREE_CODE (qual_wfl) == INTEGER_CST)
9692 parse_error_context
9693 (wfl, "Can't use type `%s' as a qualifier",
9694 lang_printable_name (TREE_TYPE (qual_wfl), 0));
9695 return 1;
9698 /* We have to search for a field, knowing the type of its
9699 container. The flag FROM_TYPE indicates that we resolved
9700 the last member of the expression as a type name, which
9701 means that for the resolution of this field, we'll look
9702 for other errors than if it was resolved as a member of
9703 an other field. */
9704 else
9706 int is_static;
9707 tree field_decl_type; /* For layout */
9709 if (!from_type && !JREFERENCE_TYPE_P (type))
9711 parse_error_context
9712 (qual_wfl, "Attempt to reference field `%s' in `%s %s'",
9713 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
9714 lang_printable_name (type, 0),
9715 IDENTIFIER_POINTER (DECL_NAME (field_decl)));
9716 return 1;
9719 field_decl = lookup_field_wrapper (type,
9720 EXPR_WFL_NODE (qual_wfl));
9722 /* Maybe what we're trying to access to is an inner
9723 class, only if decl is a TYPE_DECL. */
9724 if (!field_decl && TREE_CODE (decl) == TYPE_DECL)
9726 tree ptr, inner_decl;
9728 BUILD_PTR_FROM_NAME (ptr, EXPR_WFL_NODE (qual_wfl));
9729 inner_decl = resolve_class (decl, ptr, NULL_TREE, qual_wfl);
9730 if (inner_decl)
9732 check_inner_class_access (inner_decl, decl, qual_wfl);
9733 type = TREE_TYPE (inner_decl);
9734 decl = inner_decl;
9735 from_type = 1;
9736 continue;
9740 if (field_decl == NULL_TREE)
9742 parse_error_context
9743 (qual_wfl, "No variable `%s' defined in type `%s'",
9744 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
9745 GET_TYPE_NAME (type));
9746 return 1;
9748 if (field_decl == error_mark_node)
9749 return 1;
9751 /* Layout the type of field_decl, since we may need
9752 it. Don't do primitive types or loaded classes. The
9753 situation of non primitive arrays may not handled
9754 properly here. FIXME */
9755 if (TREE_CODE (TREE_TYPE (field_decl)) == POINTER_TYPE)
9756 field_decl_type = TREE_TYPE (TREE_TYPE (field_decl));
9757 else
9758 field_decl_type = TREE_TYPE (field_decl);
9759 if (!JPRIMITIVE_TYPE_P (field_decl_type)
9760 && !CLASS_LOADED_P (field_decl_type)
9761 && !TYPE_ARRAY_P (field_decl_type))
9762 resolve_and_layout (field_decl_type, NULL_TREE);
9764 /* Check on accessibility here */
9765 if (not_accessible_p (current_class, field_decl,
9766 DECL_CONTEXT (field_decl), from_super))
9768 parse_error_context
9769 (qual_wfl,
9770 "Can't access %s field `%s.%s' from `%s'",
9771 java_accstring_lookup
9772 (get_access_flags_from_decl (field_decl)),
9773 GET_TYPE_NAME (type),
9774 IDENTIFIER_POINTER (DECL_NAME (field_decl)),
9775 IDENTIFIER_POINTER
9776 (DECL_NAME (TYPE_NAME (current_class))));
9777 return 1;
9779 check_deprecation (qual_wfl, field_decl);
9781 /* There are things to check when fields are accessed
9782 from type. There are no restrictions on a static
9783 declaration of the field when it is accessed from an
9784 interface */
9785 is_static = FIELD_STATIC (field_decl);
9786 if (!from_super && from_type
9787 && !TYPE_INTERFACE_P (type)
9788 && !is_static
9789 && (current_function_decl
9790 && METHOD_STATIC (current_function_decl)))
9792 static_ref_err (qual_wfl, EXPR_WFL_NODE (qual_wfl), type);
9793 return 1;
9795 from_cast = from_super = 0;
9797 /* It's an access from a type but it isn't static, we
9798 make it relative to `this'. */
9799 if (!is_static && from_type)
9800 decl = current_this;
9802 /* If we need to generate something to get a proper
9803 handle on what this field is accessed from, do it
9804 now. */
9805 if (!is_static)
9807 decl = maybe_access_field (decl, *where_found, *type_found);
9808 if (decl == error_mark_node)
9809 return 1;
9812 /* We want to keep the location were found it, and the type
9813 we found. */
9814 *where_found = decl;
9815 *type_found = type;
9817 /* Generate the correct expression for field access from
9818 qualified this */
9819 if (from_qualified_this)
9821 field_decl = build_outer_field_access (qual_wfl, field_decl);
9822 from_qualified_this = 0;
9825 /* This is the decl found and eventually the next one to
9826 search from */
9827 decl = field_decl;
9829 from_type = 0;
9830 type = QUAL_DECL_TYPE (decl);
9832 /* Sneak preview. If decl is qualified by a `new', report
9833 the error here to be accurate on the peculiar construct */
9834 if (TREE_CHAIN (q)
9835 && TREE_CODE (TREE_PURPOSE (TREE_CHAIN (q))) == NEW_CLASS_EXPR
9836 && !JREFERENCE_TYPE_P (type))
9838 parse_error_context (qual_wfl, "Attempt to reference field `new' in a `%s'",
9839 lang_printable_name (type, 0));
9840 return 1;
9843 /* `q' might have changed due to a after package resolution
9844 re-qualification */
9845 if (!q)
9846 break;
9848 *found_decl = decl;
9849 return 0;
9852 /* 6.6 Qualified name and access control. Returns 1 if MEMBER (a decl)
9853 can't be accessed from REFERENCE (a record type). If MEMBER
9854 features a protected access, we then use WHERE which, if non null,
9855 holds the type of MEMBER's access that is checked against
9856 6.6.2.1. This function should be used when decl is a field or a
9857 method. */
9859 static int
9860 not_accessible_p (reference, member, where, from_super)
9861 tree reference, member;
9862 tree where;
9863 int from_super;
9865 int access_flag = get_access_flags_from_decl (member);
9867 /* Inner classes are processed by check_inner_class_access */
9868 if (INNER_CLASS_TYPE_P (reference))
9869 return 0;
9871 /* Access always granted for members declared public */
9872 if (access_flag & ACC_PUBLIC)
9873 return 0;
9875 /* Check access on protected members */
9876 if (access_flag & ACC_PROTECTED)
9878 /* Access granted if it occurs from within the package
9879 containing the class in which the protected member is
9880 declared */
9881 if (class_in_current_package (DECL_CONTEXT (member)))
9882 return 0;
9884 /* If accessed with the form `super.member', then access is granted */
9885 if (from_super)
9886 return 0;
9888 /* If where is active, access was made through a
9889 qualifier. Access is granted if the type of the qualifier is
9890 or is a sublass of the type the access made from (6.6.2.1.) */
9891 if (where && !inherits_from_p (reference, where))
9892 return 1;
9894 /* Otherwise, access is granted if occuring from the class where
9895 member is declared or a subclass of it. Find the right
9896 context to perform the check */
9897 if (PURE_INNER_CLASS_TYPE_P (reference))
9899 while (INNER_CLASS_TYPE_P (reference))
9901 if (inherits_from_p (reference, DECL_CONTEXT (member)))
9902 return 0;
9903 reference = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (reference)));
9906 if (inherits_from_p (reference, DECL_CONTEXT (member)))
9907 return 0;
9908 return 1;
9911 /* Check access on private members. Access is granted only if it
9912 occurs from within the class in which it is declared -- that does
9913 it for innerclasses too. */
9914 if (access_flag & ACC_PRIVATE)
9916 if (reference == DECL_CONTEXT (member))
9917 return 0;
9918 if (enclosing_context_p (reference, DECL_CONTEXT (member)))
9919 return 0;
9920 return 1;
9923 /* Default access are permitted only when occuring within the
9924 package in which the type (REFERENCE) is declared. In other words,
9925 REFERENCE is defined in the current package */
9926 if (ctxp->package)
9927 return !class_in_current_package (reference);
9929 /* Otherwise, access is granted */
9930 return 0;
9933 /* Test deprecated decl access. */
9934 static void
9935 check_deprecation (wfl, decl)
9936 tree wfl, decl;
9938 const char *file = DECL_SOURCE_FILE (decl);
9939 /* Complain if the field is deprecated and the file it was defined
9940 in isn't compiled at the same time the file which contains its
9941 use is */
9942 if (DECL_DEPRECATED (decl)
9943 && !IS_A_COMMAND_LINE_FILENAME_P (get_identifier (file)))
9945 char the [20];
9946 switch (TREE_CODE (decl))
9948 case FUNCTION_DECL:
9949 strcpy (the, "method");
9950 break;
9951 case FIELD_DECL:
9952 case VAR_DECL:
9953 strcpy (the, "field");
9954 break;
9955 case TYPE_DECL:
9956 parse_warning_context (wfl, "The class `%s' has been deprecated",
9957 IDENTIFIER_POINTER (DECL_NAME (decl)));
9958 return;
9959 default:
9960 abort ();
9962 /* Don't issue a message if the context as been deprecated as a
9963 whole. */
9964 if (! CLASS_DEPRECATED (TYPE_NAME (DECL_CONTEXT (decl))))
9965 parse_warning_context
9966 (wfl, "The %s `%s' in class `%s' has been deprecated",
9967 the, lang_printable_name (decl, 0),
9968 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl)))));
9972 /* Returns 1 if class was declared in the current package, 0 otherwise */
9974 static int
9975 class_in_current_package (class)
9976 tree class;
9978 static tree cache = NULL_TREE;
9979 int qualified_flag;
9980 tree left;
9982 if (cache == class)
9983 return 1;
9985 qualified_flag = QUALIFIED_P (DECL_NAME (TYPE_NAME (class)));
9987 /* If the current package is empty and the name of CLASS is
9988 qualified, class isn't in the current package. If there is a
9989 current package and the name of the CLASS is not qualified, class
9990 isn't in the current package */
9991 if ((!ctxp->package && qualified_flag) || (ctxp->package && !qualified_flag))
9992 return 0;
9994 /* If there is not package and the name of CLASS isn't qualified,
9995 they belong to the same unnamed package */
9996 if (!ctxp->package && !qualified_flag)
9997 return 1;
9999 /* Compare the left part of the name of CLASS with the package name */
10000 breakdown_qualified (&left, NULL, DECL_NAME (TYPE_NAME (class)));
10001 if (ctxp->package == left)
10003 static int initialized_p;
10004 /* Register CACHE with the garbage collector. */
10005 if (!initialized_p)
10007 ggc_add_tree_root (&cache, 1);
10008 initialized_p = 1;
10011 cache = class;
10012 return 1;
10014 return 0;
10017 /* This function may generate code to access DECL from WHERE. This is
10018 done only if certain conditions meet. */
10020 static tree
10021 maybe_access_field (decl, where, type)
10022 tree decl, where, type;
10024 if (TREE_CODE (decl) == FIELD_DECL && decl != current_this
10025 && !FIELD_STATIC (decl))
10026 decl = build_field_ref (where ? where : current_this,
10027 (type ? type : DECL_CONTEXT (decl)),
10028 DECL_NAME (decl));
10029 return decl;
10032 /* Build a method invocation, by patching PATCH. If non NULL
10033 and according to the situation, PRIMARY and WHERE may be
10034 used. IS_STATIC is set to 1 if the invoked function is static. */
10036 static tree
10037 patch_method_invocation (patch, primary, where, from_super,
10038 is_static, ret_decl)
10039 tree patch, primary, where;
10040 int from_super;
10041 int *is_static;
10042 tree *ret_decl;
10044 tree wfl = TREE_OPERAND (patch, 0);
10045 tree args = TREE_OPERAND (patch, 1);
10046 tree name = EXPR_WFL_NODE (wfl);
10047 tree list;
10048 int is_static_flag = 0;
10049 int is_super_init = 0;
10050 tree this_arg = NULL_TREE;
10051 int is_array_clone_call = 0;
10053 /* Should be overriden if everything goes well. Otherwise, if
10054 something fails, it should keep this value. It stop the
10055 evaluation of a bogus assignment. See java_complete_tree,
10056 MODIFY_EXPR: for the reasons why we sometimes want to keep on
10057 evaluating an assignment */
10058 TREE_TYPE (patch) = error_mark_node;
10060 /* Since lookup functions are messing with line numbers, save the
10061 context now. */
10062 java_parser_context_save_global ();
10064 /* 15.11.1: Compile-Time Step 1: Determine Class or Interface to Search */
10066 /* Resolution of qualified name, excluding constructors */
10067 if (QUALIFIED_P (name) && !CALL_CONSTRUCTOR_P (patch))
10069 tree identifier, identifier_wfl, type, resolved;
10070 /* Extract the last IDENTIFIER of the qualified
10071 expression. This is a wfl and we will use it's location
10072 data during error report. */
10073 identifier_wfl = cut_identifier_in_qualified (wfl);
10074 identifier = EXPR_WFL_NODE (identifier_wfl);
10076 /* Given the context, IDENTIFIER is syntactically qualified
10077 as a MethodName. We need to qualify what's before */
10078 qualify_ambiguous_name (wfl);
10079 resolved = resolve_field_access (wfl, NULL, NULL);
10081 if (resolved == error_mark_node)
10082 PATCH_METHOD_RETURN_ERROR ();
10084 type = GET_SKIP_TYPE (resolved);
10085 resolve_and_layout (type, NULL_TREE);
10087 if (JPRIMITIVE_TYPE_P (type))
10089 parse_error_context
10090 (identifier_wfl,
10091 "Can't invoke a method on primitive type `%s'",
10092 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
10093 PATCH_METHOD_RETURN_ERROR ();
10096 list = lookup_method_invoke (0, identifier_wfl, type, identifier, args);
10097 args = nreverse (args);
10099 /* We're resolving a call from a type */
10100 if (TREE_CODE (resolved) == TYPE_DECL)
10102 if (CLASS_INTERFACE (resolved))
10104 parse_error_context
10105 (identifier_wfl,
10106 "Can't make static reference to method `%s' in interface `%s'",
10107 IDENTIFIER_POINTER (identifier),
10108 IDENTIFIER_POINTER (name));
10109 PATCH_METHOD_RETURN_ERROR ();
10111 if (list && !METHOD_STATIC (list))
10113 char *fct_name = xstrdup (lang_printable_name (list, 0));
10114 parse_error_context
10115 (identifier_wfl,
10116 "Can't make static reference to method `%s %s' in class `%s'",
10117 lang_printable_name (TREE_TYPE (TREE_TYPE (list)), 0),
10118 fct_name, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
10119 free (fct_name);
10120 PATCH_METHOD_RETURN_ERROR ();
10123 else
10124 this_arg = primary = resolved;
10126 if (TYPE_ARRAY_P (type) && identifier == get_identifier ("clone"))
10127 is_array_clone_call = 1;
10129 /* IDENTIFIER_WFL will be used to report any problem further */
10130 wfl = identifier_wfl;
10132 /* Resolution of simple names, names generated after a primary: or
10133 constructors */
10134 else
10136 tree class_to_search = NULL_TREE;
10137 int lc; /* Looking for Constructor */
10139 /* We search constructor in their target class */
10140 if (CALL_CONSTRUCTOR_P (patch))
10142 if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10143 class_to_search = EXPR_WFL_NODE (wfl);
10144 else if (EXPR_WFL_NODE (TREE_OPERAND (patch, 0)) ==
10145 this_identifier_node)
10146 class_to_search = NULL_TREE;
10147 else if (EXPR_WFL_NODE (TREE_OPERAND (patch, 0)) ==
10148 super_identifier_node)
10150 is_super_init = 1;
10151 if (CLASSTYPE_SUPER (current_class))
10152 class_to_search =
10153 DECL_NAME (TYPE_NAME (CLASSTYPE_SUPER (current_class)));
10154 else
10156 parse_error_context (wfl, "Can't invoke super constructor on java.lang.Object");
10157 PATCH_METHOD_RETURN_ERROR ();
10161 /* Class to search is NULL if we're searching the current one */
10162 if (class_to_search)
10164 class_to_search = resolve_and_layout (class_to_search, wfl);
10166 if (!class_to_search)
10168 parse_error_context
10169 (wfl, "Class `%s' not found in type declaration",
10170 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10171 PATCH_METHOD_RETURN_ERROR ();
10174 /* Can't instantiate an abstract class, but we can
10175 invoke it's constructor. It's use within the `new'
10176 context is denied here. */
10177 if (CLASS_ABSTRACT (class_to_search)
10178 && TREE_CODE (patch) == NEW_CLASS_EXPR)
10180 parse_error_context
10181 (wfl, "Class `%s' is an abstract class. It can't be instantiated",
10182 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10183 PATCH_METHOD_RETURN_ERROR ();
10186 class_to_search = TREE_TYPE (class_to_search);
10188 else
10189 class_to_search = current_class;
10190 lc = 1;
10192 /* This is a regular search in the local class, unless an
10193 alternate class is specified. */
10194 else
10196 if (where != NULL_TREE)
10197 class_to_search = where;
10198 else if (QUALIFIED_P (name))
10199 class_to_search = current_class;
10200 else
10202 class_to_search = current_class;
10204 for (;;)
10206 if (has_method (class_to_search, name))
10207 break;
10208 if (! INNER_CLASS_TYPE_P (class_to_search))
10210 parse_error_context (wfl,
10211 "No method named `%s' in scope",
10212 IDENTIFIER_POINTER (name));
10213 PATCH_METHOD_RETURN_ERROR ();
10215 class_to_search
10216 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class_to_search)));
10219 lc = 0;
10222 /* NAME is a simple identifier or comes from a primary. Search
10223 in the class whose declaration contain the method being
10224 invoked. */
10225 resolve_and_layout (class_to_search, NULL_TREE);
10227 list = lookup_method_invoke (lc, wfl, class_to_search, name, args);
10228 /* Don't continue if no method were found, as the next statement
10229 can't be executed then. */
10230 if (!list)
10231 PATCH_METHOD_RETURN_ERROR ();
10233 if (TYPE_ARRAY_P (class_to_search)
10234 && DECL_NAME (list) == get_identifier ("clone"))
10235 is_array_clone_call = 1;
10237 /* Check for static reference if non static methods */
10238 if (check_for_static_method_reference (wfl, patch, list,
10239 class_to_search, primary))
10240 PATCH_METHOD_RETURN_ERROR ();
10242 /* Check for inner classes creation from illegal contexts */
10243 if (lc && (INNER_CLASS_TYPE_P (class_to_search)
10244 && !CLASS_STATIC (TYPE_NAME (class_to_search)))
10245 && INNER_ENCLOSING_SCOPE_CHECK (class_to_search))
10247 parse_error_context
10248 (wfl, "No enclosing instance for inner class `%s' is in scope%s",
10249 lang_printable_name (class_to_search, 0),
10250 (!current_this ? "" :
10251 "; an explicit one must be provided when creating this inner class"));
10252 PATCH_METHOD_RETURN_ERROR ();
10255 /* Non static methods are called with the current object extra
10256 argument. If patch a `new TYPE()', the argument is the value
10257 returned by the object allocator. If method is resolved as a
10258 primary, use the primary otherwise use the current THIS. */
10259 args = nreverse (args);
10260 if (TREE_CODE (patch) != NEW_CLASS_EXPR)
10262 this_arg = primary ? primary : current_this;
10264 /* If we're using an access method, things are different.
10265 There are two familly of cases:
10267 1) We're not generating bytecodes:
10269 - LIST is non static. It's invocation is transformed from
10270 x(a1,...,an) into this$<n>.x(a1,....an).
10271 - LIST is static. It's invocation is transformed from
10272 x(a1,...,an) into TYPE_OF(this$<n>).x(a1,....an)
10274 2) We're generating bytecodes:
10276 - LIST is non static. It's invocation is transformed from
10277 x(a1,....,an) into access$<n>(this$<n>,a1,...,an).
10278 - LIST is static. It's invocation is transformed from
10279 x(a1,....,an) into TYPE_OF(this$<n>).x(a1,....an).
10281 Of course, this$<n> can be abitrary complex, ranging from
10282 this$0 (the immediate outer context) to
10283 access$0(access$0(...(this$0))).
10285 maybe_use_access_method returns a non zero value if the
10286 this_arg has to be moved into the (then generated) stub
10287 argument list. In the meantime, the selected function
10288 might have be replaced by a generated stub. */
10289 if (!primary &&
10290 maybe_use_access_method (is_super_init, &list, &this_arg))
10292 args = tree_cons (NULL_TREE, this_arg, args);
10293 this_arg = NULL_TREE; /* So it doesn't get chained twice */
10298 /* Merge point of all resolution schemes. If we have nothing, this
10299 is an error, already signaled */
10300 if (!list)
10301 PATCH_METHOD_RETURN_ERROR ();
10303 /* Check accessibility, position the is_static flag, build and
10304 return the call */
10305 if (not_accessible_p (DECL_CONTEXT (current_function_decl), list,
10306 (primary ? TREE_TYPE (TREE_TYPE (primary)) :
10307 NULL_TREE), from_super)
10308 /* Calls to clone() on array types are permitted as a special-case. */
10309 && !is_array_clone_call)
10311 const char *fct_name = IDENTIFIER_POINTER (DECL_NAME (list));
10312 const char *access =
10313 java_accstring_lookup (get_access_flags_from_decl (list));
10314 const char *klass =
10315 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (list))));
10316 const char *refklass =
10317 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class)));
10318 const char *what = (DECL_CONSTRUCTOR_P (list)
10319 ? "constructor" : "method");
10320 /* FIXME: WFL yields the wrong message here but I don't know
10321 what else to use. */
10322 parse_error_context (wfl,
10323 "Can't access %s %s `%s.%s' from `%s'",
10324 access, what, klass, fct_name, refklass);
10325 PATCH_METHOD_RETURN_ERROR ();
10328 /* Deprecation check: check whether the method being invoked or the
10329 instance-being-created's type are deprecated. */
10330 if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10331 check_deprecation (wfl, TYPE_NAME (DECL_CONTEXT (list)));
10332 else
10333 check_deprecation (wfl, list);
10335 /* If invoking a innerclass constructor, there are hidden parameters
10336 to pass */
10337 if (TREE_CODE (patch) == NEW_CLASS_EXPR
10338 && PURE_INNER_CLASS_TYPE_P (DECL_CONTEXT (list)))
10340 /* And make sure we add the accessed local variables to be saved
10341 in field aliases. */
10342 args = build_alias_initializer_parameter_list
10343 (AIPL_FUNCTION_CTOR_INVOCATION, DECL_CONTEXT (list), args, NULL);
10345 /* Secretly pass the current_this/primary as a second argument */
10346 if (primary || current_this)
10348 tree extra_arg;
10349 tree this_type = (current_this ?
10350 TREE_TYPE (TREE_TYPE (current_this)) : NULL_TREE);
10351 /* Method's (list) enclosing context */
10352 tree mec = DECL_CONTEXT (TYPE_NAME (DECL_CONTEXT (list)));
10353 /* If we have a primary, use it. */
10354 if (primary)
10355 extra_arg = primary;
10356 /* The current `this' is an inner class but isn't a direct
10357 enclosing context for the inner class we're trying to
10358 create. Build an access to the proper enclosing context
10359 and use it. */
10360 else if (current_this && PURE_INNER_CLASS_TYPE_P (this_type)
10361 && this_type != TREE_TYPE (mec))
10364 extra_arg = build_access_to_thisn (current_class,
10365 TREE_TYPE (mec), 0);
10366 extra_arg = java_complete_tree (extra_arg);
10368 /* Otherwise, just use the current `this' as an enclosing
10369 context. */
10370 else
10371 extra_arg = current_this;
10372 args = tree_cons (NULL_TREE, extra_arg, args);
10374 else
10375 args = tree_cons (NULL_TREE, integer_zero_node, args);
10378 /* This handles the situation where a constructor invocation needs
10379 to have an enclosing context passed as a second parameter (the
10380 constructor is one of an inner class. We extract it from the
10381 current function. */
10382 if ((is_super_init ||
10383 (TREE_CODE (patch) == CALL_EXPR && name == this_identifier_node))
10384 && PURE_INNER_CLASS_TYPE_P (DECL_CONTEXT (list)))
10386 tree enclosing_decl = DECL_CONTEXT (TYPE_NAME (current_class));
10387 tree extra_arg;
10389 if (ANONYMOUS_CLASS_P (current_class) || !DECL_CONTEXT (enclosing_decl))
10391 extra_arg = DECL_FUNCTION_BODY (current_function_decl);
10392 extra_arg = TREE_CHAIN (BLOCK_EXPR_DECLS (extra_arg));
10394 else
10396 tree dest = TREE_TYPE (DECL_CONTEXT (enclosing_decl));
10397 extra_arg =
10398 build_access_to_thisn (TREE_TYPE (enclosing_decl), dest, 0);
10399 extra_arg = java_complete_tree (extra_arg);
10401 args = tree_cons (NULL_TREE, extra_arg, args);
10404 is_static_flag = METHOD_STATIC (list);
10405 if (! is_static_flag && this_arg != NULL_TREE)
10406 args = tree_cons (NULL_TREE, this_arg, args);
10408 /* In the context of an explicit constructor invocation, we can't
10409 invoke any method relying on `this'. Exceptions are: we're
10410 invoking a static function, primary exists and is not the current
10411 this, we're creating a new object. */
10412 if (ctxp->explicit_constructor_p
10413 && !is_static_flag
10414 && (!primary || primary == current_this)
10415 && (TREE_CODE (patch) != NEW_CLASS_EXPR))
10417 parse_error_context (wfl, "Can't reference `this' before the superclass constructor has been called");
10418 PATCH_METHOD_RETURN_ERROR ();
10420 java_parser_context_restore_global ();
10421 if (is_static)
10422 *is_static = is_static_flag;
10423 /* Sometimes, we want the decl of the selected method. Such as for
10424 EH checking */
10425 if (ret_decl)
10426 *ret_decl = list;
10427 patch = patch_invoke (patch, list, args);
10429 /* Now is a good time to insert the call to finit$ */
10430 if (is_super_init && CLASS_HAS_FINIT_P (current_class))
10432 tree finit_parms, finit_call;
10434 /* Prepare to pass hidden parameters to finit$, if any. */
10435 finit_parms = build_alias_initializer_parameter_list
10436 (AIPL_FUNCTION_FINIT_INVOCATION, current_class, NULL_TREE, NULL);
10438 finit_call =
10439 build_method_invocation (build_wfl_node (finit_identifier_node),
10440 finit_parms);
10442 /* Generate the code used to initialize fields declared with an
10443 initialization statement and build a compound statement along
10444 with the super constructor invocation. */
10445 patch = build (COMPOUND_EXPR, void_type_node, patch,
10446 java_complete_tree (finit_call));
10447 CAN_COMPLETE_NORMALLY (patch) = 1;
10449 return patch;
10452 /* Check that we're not trying to do a static reference to a method in
10453 non static method. Return 1 if it's the case, 0 otherwise. */
10455 static int
10456 check_for_static_method_reference (wfl, node, method, where, primary)
10457 tree wfl, node, method, where, primary;
10459 if (METHOD_STATIC (current_function_decl)
10460 && !METHOD_STATIC (method) && !primary && !CALL_CONSTRUCTOR_P (node))
10462 char *fct_name = xstrdup (lang_printable_name (method, 0));
10463 parse_error_context
10464 (wfl, "Can't make static reference to method `%s %s' in class `%s'",
10465 lang_printable_name (TREE_TYPE (TREE_TYPE (method)), 0), fct_name,
10466 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (where))));
10467 free (fct_name);
10468 return 1;
10470 return 0;
10473 /* Fix the invocation of *MDECL if necessary in the case of a
10474 invocation from an inner class. *THIS_ARG might be modified
10475 appropriately and an alternative access to *MDECL might be
10476 returned. */
10478 static int
10479 maybe_use_access_method (is_super_init, mdecl, this_arg)
10480 int is_super_init;
10481 tree *mdecl, *this_arg;
10483 tree ctx;
10484 tree md = *mdecl, ta = *this_arg;
10485 int to_return = 0;
10486 int non_static_context = !METHOD_STATIC (md);
10488 if (is_super_init
10489 || DECL_CONTEXT (md) == current_class
10490 || !PURE_INNER_CLASS_TYPE_P (current_class)
10491 || DECL_FINIT_P (md)
10492 || DECL_INSTINIT_P (md))
10493 return 0;
10495 /* If we're calling a method found in an enclosing class, generate
10496 what it takes to retrieve the right this. Don't do that if we're
10497 invoking a static method. Note that if MD's type is unrelated to
10498 CURRENT_CLASS, then the current this can be used. */
10500 if (non_static_context && DECL_CONTEXT (md) != object_type_node)
10502 ctx = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current_class)));
10503 if (inherits_from_p (ctx, DECL_CONTEXT (md)))
10505 ta = build_current_thisn (current_class);
10506 ta = build_wfl_node (ta);
10508 else
10510 tree type = ctx;
10511 while (type)
10513 maybe_build_thisn_access_method (type);
10514 if (inherits_from_p (type, DECL_CONTEXT (md)))
10516 ta = build_access_to_thisn (ctx, type, 0);
10517 break;
10519 type = (DECL_CONTEXT (TYPE_NAME (type)) ?
10520 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))) : NULL_TREE);
10523 ta = java_complete_tree (ta);
10526 /* We might have to use an access method to get to MD. We can
10527 break the method access rule as far as we're not generating
10528 bytecode */
10529 if (METHOD_PRIVATE (md) && flag_emit_class_files)
10531 md = build_outer_method_access_method (md);
10532 to_return = 1;
10535 *mdecl = md;
10536 *this_arg = ta;
10538 /* Returnin a non zero value indicates we were doing a non static
10539 method invokation that is now a static invocation. It will have
10540 callee displace `this' to insert it in the regular argument
10541 list. */
10542 return (non_static_context && to_return);
10545 /* Patch an invoke expression METHOD and ARGS, based on its invocation
10546 mode. */
10548 static tree
10549 patch_invoke (patch, method, args)
10550 tree patch, method, args;
10552 tree dtable, func;
10553 tree original_call, t, ta;
10554 tree check = NULL_TREE;
10556 /* Last step for args: convert build-in types. If we're dealing with
10557 a new TYPE() type call, the first argument to the constructor
10558 isn't found in the incoming argument list, but delivered by
10559 `new' */
10560 t = TYPE_ARG_TYPES (TREE_TYPE (method));
10561 if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10562 t = TREE_CHAIN (t);
10563 for (ta = args; t != end_params_node && ta;
10564 t = TREE_CHAIN (t), ta = TREE_CHAIN (ta))
10565 if (JPRIMITIVE_TYPE_P (TREE_TYPE (TREE_VALUE (ta))) &&
10566 TREE_TYPE (TREE_VALUE (ta)) != TREE_VALUE (t))
10567 TREE_VALUE (ta) = convert (TREE_VALUE (t), TREE_VALUE (ta));
10569 /* Resolve unresolved returned type isses */
10570 t = TREE_TYPE (TREE_TYPE (method));
10571 if (TREE_CODE (t) == POINTER_TYPE && !CLASS_LOADED_P (TREE_TYPE (t)))
10572 resolve_and_layout (TREE_TYPE (t), NULL);
10574 if (flag_emit_class_files || flag_emit_xref)
10575 func = method;
10576 else
10578 tree signature = build_java_signature (TREE_TYPE (method));
10579 switch (invocation_mode (method, CALL_USING_SUPER (patch)))
10581 case INVOKE_VIRTUAL:
10582 dtable = invoke_build_dtable (0, args);
10583 func = build_invokevirtual (dtable, method);
10584 break;
10586 case INVOKE_NONVIRTUAL:
10587 /* If the object for the method call is null, we throw an
10588 exception. We don't do this if the object is the current
10589 method's `this'. In other cases we just rely on an
10590 optimization pass to eliminate redundant checks. */
10591 if (TREE_VALUE (args) != current_this)
10593 /* We use a save_expr here to make sure we only evaluate
10594 the new `self' expression once. */
10595 tree save_arg = save_expr (TREE_VALUE (args));
10596 TREE_VALUE (args) = save_arg;
10597 check = java_check_reference (save_arg, 1);
10599 /* Fall through. */
10601 case INVOKE_SUPER:
10602 case INVOKE_STATIC:
10603 func = build_known_method_ref (method, TREE_TYPE (method),
10604 DECL_CONTEXT (method),
10605 signature, args);
10606 break;
10608 case INVOKE_INTERFACE:
10609 dtable = invoke_build_dtable (1, args);
10610 func = build_invokeinterface (dtable, method);
10611 break;
10613 default:
10614 abort ();
10617 /* Ensure self_type is initialized, (invokestatic). FIXME */
10618 func = build1 (NOP_EXPR, build_pointer_type (TREE_TYPE (method)), func);
10621 TREE_TYPE (patch) = TREE_TYPE (TREE_TYPE (method));
10622 TREE_OPERAND (patch, 0) = func;
10623 TREE_OPERAND (patch, 1) = args;
10624 original_call = patch;
10626 /* We're processing a `new TYPE ()' form. New is called and its
10627 returned value is the first argument to the constructor. We build
10628 a COMPOUND_EXPR and use saved expression so that the overall NEW
10629 expression value is a pointer to a newly created and initialized
10630 class. */
10631 if (TREE_CODE (original_call) == NEW_CLASS_EXPR)
10633 tree class = DECL_CONTEXT (method);
10634 tree c1, saved_new, size, new;
10635 if (flag_emit_class_files || flag_emit_xref)
10637 TREE_TYPE (patch) = build_pointer_type (class);
10638 return patch;
10640 if (!TYPE_SIZE (class))
10641 safe_layout_class (class);
10642 size = size_in_bytes (class);
10643 new = build (CALL_EXPR, promote_type (class),
10644 build_address_of (alloc_object_node),
10645 tree_cons (NULL_TREE, build_class_ref (class),
10646 build_tree_list (NULL_TREE,
10647 size_in_bytes (class))),
10648 NULL_TREE);
10649 saved_new = save_expr (new);
10650 c1 = build_tree_list (NULL_TREE, saved_new);
10651 TREE_CHAIN (c1) = TREE_OPERAND (original_call, 1);
10652 TREE_OPERAND (original_call, 1) = c1;
10653 TREE_SET_CODE (original_call, CALL_EXPR);
10654 patch = build (COMPOUND_EXPR, TREE_TYPE (new), patch, saved_new);
10657 /* If CHECK is set, then we are building a check to see if the object
10658 is NULL. */
10659 if (check != NULL_TREE)
10661 patch = build (COMPOUND_EXPR, TREE_TYPE (patch), check, patch);
10662 TREE_SIDE_EFFECTS (patch) = 1;
10665 /* In order to be able to modify PATCH later, we SAVE_EXPR it and
10666 put it as the first expression of a COMPOUND_EXPR. The second
10667 expression being an empty statement to be later patched if
10668 necessary. We remember a TREE_LIST (the PURPOSE is the method,
10669 the VALUE is the compound) in a hashtable and return a
10670 COMPOUND_EXPR built so that the result of the evaluation of the
10671 original PATCH node is returned. */
10672 if (STATIC_CLASS_INIT_OPT_P ()
10673 && current_function_decl && METHOD_STATIC (method))
10675 tree list;
10676 tree fndecl = current_function_decl;
10677 tree save = save_expr (patch);
10678 tree type = TREE_TYPE (patch);
10680 patch = build (COMPOUND_EXPR, type, save, empty_stmt_node);
10681 list = build_tree_list (method, patch);
10683 hash_lookup (&DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (fndecl),
10684 (const hash_table_key) list, TRUE, NULL);
10686 patch = build (COMPOUND_EXPR, type, patch, save);
10689 return patch;
10692 static int
10693 invocation_mode (method, super)
10694 tree method;
10695 int super;
10697 int access = get_access_flags_from_decl (method);
10699 if (super)
10700 return INVOKE_SUPER;
10702 if (access & ACC_STATIC)
10703 return INVOKE_STATIC;
10705 /* We have to look for a constructor before we handle nonvirtual
10706 calls; otherwise the constructor will look nonvirtual. */
10707 if (DECL_CONSTRUCTOR_P (method))
10708 return INVOKE_STATIC;
10710 if (access & ACC_FINAL || access & ACC_PRIVATE)
10711 return INVOKE_NONVIRTUAL;
10713 if (CLASS_FINAL (TYPE_NAME (DECL_CONTEXT (method))))
10714 return INVOKE_NONVIRTUAL;
10716 if (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))))
10717 return INVOKE_INTERFACE;
10719 return INVOKE_VIRTUAL;
10722 /* Retrieve a refined list of matching methods. It covers the step
10723 15.11.2 (Compile-Time Step 2) */
10725 static tree
10726 lookup_method_invoke (lc, cl, class, name, arg_list)
10727 int lc;
10728 tree cl;
10729 tree class, name, arg_list;
10731 tree atl = end_params_node; /* Arg Type List */
10732 tree method, signature, list, node;
10733 const char *candidates; /* Used for error report */
10734 char *dup;
10736 /* Fix the arguments */
10737 for (node = arg_list; node; node = TREE_CHAIN (node))
10739 tree current_arg = TREE_TYPE (TREE_VALUE (node));
10740 /* Non primitive type may have to be resolved */
10741 if (!JPRIMITIVE_TYPE_P (current_arg))
10742 resolve_and_layout (current_arg, NULL_TREE);
10743 /* And promoted */
10744 if (TREE_CODE (current_arg) == RECORD_TYPE)
10745 current_arg = promote_type (current_arg);
10746 atl = tree_cons (NULL_TREE, current_arg, atl);
10749 /* Presto. If we're dealing with an anonymous class and a
10750 constructor call, generate the right constructor now, since we
10751 know the arguments' types. */
10753 if (lc && ANONYMOUS_CLASS_P (class))
10754 craft_constructor (TYPE_NAME (class), atl);
10756 /* Find all candidates and then refine the list, searching for the
10757 most specific method. */
10758 list = find_applicable_accessible_methods_list (lc, class, name, atl);
10759 list = find_most_specific_methods_list (list);
10760 if (list && !TREE_CHAIN (list))
10761 return TREE_VALUE (list);
10763 /* Issue an error. List candidates if any. Candidates are listed
10764 only if accessible (non accessible methods may end-up here for
10765 the sake of a better error report). */
10766 candidates = NULL;
10767 if (list)
10769 tree current;
10770 obstack_grow (&temporary_obstack, ". Candidates are:\n", 18);
10771 for (current = list; current; current = TREE_CHAIN (current))
10773 tree cm = TREE_VALUE (current);
10774 char string [4096];
10775 if (!cm || not_accessible_p (class, cm, NULL_TREE, 0))
10776 continue;
10777 sprintf
10778 (string, " `%s' in `%s'%s",
10779 get_printable_method_name (cm),
10780 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (cm)))),
10781 (TREE_CHAIN (current) ? "\n" : ""));
10782 obstack_grow (&temporary_obstack, string, strlen (string));
10784 obstack_1grow (&temporary_obstack, '\0');
10785 candidates = obstack_finish (&temporary_obstack);
10787 /* Issue the error message */
10788 method = make_node (FUNCTION_TYPE);
10789 TYPE_ARG_TYPES (method) = atl;
10790 signature = build_java_argument_signature (method);
10791 dup = xstrdup (lang_printable_name (class, 0));
10792 parse_error_context (cl, "Can't find %s `%s(%s)' in type `%s'%s",
10793 (lc ? "constructor" : "method"),
10794 (lc ? dup : IDENTIFIER_POINTER (name)),
10795 IDENTIFIER_POINTER (signature), dup,
10796 (candidates ? candidates : ""));
10797 free (dup);
10798 return NULL_TREE;
10801 /* 15.11.2.1: Find Methods that are Applicable and Accessible. LC is 1
10802 when we're looking for a constructor. */
10804 static tree
10805 find_applicable_accessible_methods_list (lc, class, name, arglist)
10806 int lc;
10807 tree class, name, arglist;
10809 static struct hash_table t, *searched_classes = NULL;
10810 static int search_not_done = 0;
10811 tree list = NULL_TREE, all_list = NULL_TREE;
10813 /* Check the hash table to determine if this class has been searched
10814 already. */
10815 if (searched_classes)
10817 if (hash_lookup (searched_classes,
10818 (const hash_table_key) class, FALSE, NULL))
10819 return NULL;
10821 else
10823 hash_table_init (&t, hash_newfunc, java_hash_hash_tree_node,
10824 java_hash_compare_tree_node);
10825 searched_classes = &t;
10828 search_not_done++;
10829 hash_lookup (searched_classes,
10830 (const hash_table_key) class, TRUE, NULL);
10832 if (!CLASS_LOADED_P (class) && !CLASS_FROM_SOURCE_P (class))
10834 load_class (class, 1);
10835 safe_layout_class (class);
10838 /* Search interfaces */
10839 if (TREE_CODE (TYPE_NAME (class)) == TYPE_DECL
10840 && CLASS_INTERFACE (TYPE_NAME (class)))
10842 int i, n;
10843 tree basetype_vec = TYPE_BINFO_BASETYPES (class);
10844 search_applicable_methods_list (lc, TYPE_METHODS (class),
10845 name, arglist, &list, &all_list);
10846 n = TREE_VEC_LENGTH (basetype_vec);
10847 for (i = 1; i < n; i++)
10849 tree t = BINFO_TYPE (TREE_VEC_ELT (basetype_vec, i));
10850 tree rlist;
10852 rlist = find_applicable_accessible_methods_list (lc, t, name,
10853 arglist);
10854 list = chainon (rlist, list);
10857 /* Search classes */
10858 else
10860 search_applicable_methods_list (lc, TYPE_METHODS (class),
10861 name, arglist, &list, &all_list);
10863 /* When looking finit$, class$ or instinit$, we turn LC to 1 so
10864 that we only search in class. Note that we should have found
10865 something at this point. */
10866 if (ID_FINIT_P (name) || ID_CLASSDOLLAR_P (name) || ID_INSTINIT_P (name))
10868 lc = 1;
10869 if (!list)
10870 abort ();
10873 /* We must search all interfaces of this class */
10874 if (!lc)
10876 tree basetype_vec = TYPE_BINFO_BASETYPES (class);
10877 int n = TREE_VEC_LENGTH (basetype_vec), i;
10878 for (i = 1; i < n; i++)
10880 tree t = BINFO_TYPE (TREE_VEC_ELT (basetype_vec, i));
10881 if (t != object_type_node)
10883 tree rlist
10884 = find_applicable_accessible_methods_list (lc, t,
10885 name, arglist);
10886 list = chainon (rlist, list);
10891 /* Search superclass */
10892 if (!lc && CLASSTYPE_SUPER (class) != NULL_TREE)
10894 tree rlist;
10895 class = CLASSTYPE_SUPER (class);
10896 rlist = find_applicable_accessible_methods_list (lc, class,
10897 name, arglist);
10898 list = chainon (rlist, list);
10902 search_not_done--;
10904 /* We're done. Reset the searched classes list and finally search
10905 java.lang.Object if it wasn't searched already. */
10906 if (!search_not_done)
10908 if (!lc
10909 && TYPE_METHODS (object_type_node)
10910 && !hash_lookup (searched_classes,
10911 (const hash_table_key) object_type_node,
10912 FALSE, NULL))
10914 search_applicable_methods_list (lc,
10915 TYPE_METHODS (object_type_node),
10916 name, arglist, &list, &all_list);
10918 hash_table_free (searched_classes);
10919 searched_classes = NULL;
10922 /* Either return the list obtained or all selected (but
10923 inaccessible) methods for better error report. */
10924 return (!list ? all_list : list);
10927 /* Effectively search for the appropriate method in method */
10929 static void
10930 search_applicable_methods_list (lc, method, name, arglist, list, all_list)
10931 int lc;
10932 tree method, name, arglist;
10933 tree *list, *all_list;
10935 for (; method; method = TREE_CHAIN (method))
10937 /* When dealing with constructor, stop here, otherwise search
10938 other classes */
10939 if (lc && !DECL_CONSTRUCTOR_P (method))
10940 continue;
10941 else if (!lc && (DECL_CONSTRUCTOR_P (method)
10942 || (DECL_NAME (method) != name)))
10943 continue;
10945 if (argument_types_convertible (method, arglist))
10947 /* Retain accessible methods only */
10948 if (!not_accessible_p (DECL_CONTEXT (current_function_decl),
10949 method, NULL_TREE, 0))
10950 *list = tree_cons (NULL_TREE, method, *list);
10951 else
10952 /* Also retain all selected method here */
10953 *all_list = tree_cons (NULL_TREE, method, *list);
10958 /* 15.11.2.2 Choose the Most Specific Method */
10960 static tree
10961 find_most_specific_methods_list (list)
10962 tree list;
10964 int max = 0;
10965 int abstract, candidates;
10966 tree current, new_list = NULL_TREE;
10967 for (current = list; current; current = TREE_CHAIN (current))
10969 tree method;
10970 DECL_SPECIFIC_COUNT (TREE_VALUE (current)) = 0;
10972 for (method = list; method; method = TREE_CHAIN (method))
10974 tree method_v, current_v;
10975 /* Don't test a method against itself */
10976 if (method == current)
10977 continue;
10979 method_v = TREE_VALUE (method);
10980 current_v = TREE_VALUE (current);
10982 /* Compare arguments and location where methods where declared */
10983 if (argument_types_convertible (method_v, current_v))
10985 if (valid_method_invocation_conversion_p
10986 (DECL_CONTEXT (method_v), DECL_CONTEXT (current_v))
10987 || (INNER_CLASS_TYPE_P (DECL_CONTEXT (current_v))
10988 && enclosing_context_p (DECL_CONTEXT (method_v),
10989 DECL_CONTEXT (current_v))))
10991 int v = (DECL_SPECIFIC_COUNT (current_v) +=
10992 (INNER_CLASS_TYPE_P (DECL_CONTEXT (current_v)) ? 2 : 1));
10993 max = (v > max ? v : max);
10999 /* Review the list and select the maximally specific methods */
11000 for (current = list, abstract = -1, candidates = -1;
11001 current; current = TREE_CHAIN (current))
11002 if (DECL_SPECIFIC_COUNT (TREE_VALUE (current)) == max)
11004 new_list = tree_cons (NULL_TREE, TREE_VALUE (current), new_list);
11005 abstract += (METHOD_ABSTRACT (TREE_VALUE (current)) ? 1 : 0);
11006 candidates++;
11009 /* If we have several and they're all abstract, just pick the
11010 closest one. */
11011 if (candidates > 0 && (candidates == abstract))
11013 new_list = nreverse (new_list);
11014 TREE_CHAIN (new_list) = NULL_TREE;
11017 /* We have several (we couldn't find a most specific), all but one
11018 are abstract, we pick the only non abstract one. */
11019 if (candidates > 0 && (candidates == abstract+1))
11021 for (current = new_list; current; current = TREE_CHAIN (current))
11022 if (!METHOD_ABSTRACT (TREE_VALUE (current)))
11024 TREE_CHAIN (current) = NULL_TREE;
11025 new_list = current;
11029 /* If we can't find one, lower expectations and try to gather multiple
11030 maximally specific methods */
11031 while (!new_list && max)
11033 while (--max > 0)
11035 if (DECL_SPECIFIC_COUNT (TREE_VALUE (current)) == max)
11036 new_list = tree_cons (NULL_TREE, TREE_VALUE (current), new_list);
11040 return new_list;
11043 /* Make sure that the type of each M2_OR_ARGLIST arguments can be
11044 converted by method invocation conversion (5.3) to the type of the
11045 corresponding parameter of M1. Implementation expects M2_OR_ARGLIST
11046 to change less often than M1. */
11048 static int
11049 argument_types_convertible (m1, m2_or_arglist)
11050 tree m1, m2_or_arglist;
11052 static tree m2_arg_value = NULL_TREE;
11053 static tree m2_arg_cache = NULL_TREE;
11054 static int initialized_p;
11056 register tree m1_arg, m2_arg;
11058 /* Register M2_ARG_VALUE and M2_ARG_CACHE with the garbage
11059 collector. */
11060 if (!initialized_p)
11062 ggc_add_tree_root (&m2_arg_value, 1);
11063 ggc_add_tree_root (&m2_arg_cache, 1);
11064 initialized_p = 1;
11067 SKIP_THIS_AND_ARTIFICIAL_PARMS (m1_arg, m1)
11069 if (m2_arg_value == m2_or_arglist)
11070 m2_arg = m2_arg_cache;
11071 else
11073 /* M2_OR_ARGLIST can be a function DECL or a raw list of
11074 argument types */
11075 if (m2_or_arglist && TREE_CODE (m2_or_arglist) == FUNCTION_DECL)
11077 m2_arg = TYPE_ARG_TYPES (TREE_TYPE (m2_or_arglist));
11078 if (!METHOD_STATIC (m2_or_arglist))
11079 m2_arg = TREE_CHAIN (m2_arg);
11081 else
11082 m2_arg = m2_or_arglist;
11084 m2_arg_value = m2_or_arglist;
11085 m2_arg_cache = m2_arg;
11088 while (m1_arg != end_params_node && m2_arg != end_params_node)
11090 resolve_and_layout (TREE_VALUE (m1_arg), NULL_TREE);
11091 if (!valid_method_invocation_conversion_p (TREE_VALUE (m1_arg),
11092 TREE_VALUE (m2_arg)))
11093 break;
11094 m1_arg = TREE_CHAIN (m1_arg);
11095 m2_arg = TREE_CHAIN (m2_arg);
11097 return m1_arg == end_params_node && m2_arg == end_params_node;
11100 /* Qualification routines */
11102 static void
11103 qualify_ambiguous_name (id)
11104 tree id;
11106 tree qual, qual_wfl, name = NULL_TREE, decl, ptr_type = NULL_TREE,
11107 saved_current_class;
11108 int again, super_found = 0, this_found = 0, new_array_found = 0;
11109 int code;
11111 /* We first qualify the first element, then derive qualification of
11112 others based on the first one. If the first element is qualified
11113 by a resolution (field or type), this resolution is stored in the
11114 QUAL_RESOLUTION of the qual element being examined. We need to
11115 save the current_class since the use of SUPER might change the
11116 its value. */
11117 saved_current_class = current_class;
11118 qual = EXPR_WFL_QUALIFICATION (id);
11119 do {
11121 /* Simple qualified expression feature a qual_wfl that is a
11122 WFL. Expression derived from a primary feature more complicated
11123 things like a CALL_EXPR. Expression from primary need to be
11124 worked out to extract the part on which the qualification will
11125 take place. */
11126 qual_wfl = QUAL_WFL (qual);
11127 switch (TREE_CODE (qual_wfl))
11129 case CALL_EXPR:
11130 qual_wfl = TREE_OPERAND (qual_wfl, 0);
11131 if (TREE_CODE (qual_wfl) != EXPR_WITH_FILE_LOCATION)
11133 qual = EXPR_WFL_QUALIFICATION (qual_wfl);
11134 qual_wfl = QUAL_WFL (qual);
11136 break;
11137 case NEW_ARRAY_EXPR:
11138 case NEW_ANONYMOUS_ARRAY_EXPR:
11139 qual = TREE_CHAIN (qual);
11140 again = new_array_found = 1;
11141 continue;
11142 case CONVERT_EXPR:
11143 break;
11144 case NEW_CLASS_EXPR:
11145 qual_wfl = TREE_OPERAND (qual_wfl, 0);
11146 break;
11147 case ARRAY_REF:
11148 while (TREE_CODE (qual_wfl) == ARRAY_REF)
11149 qual_wfl = TREE_OPERAND (qual_wfl, 0);
11150 break;
11151 case STRING_CST:
11152 qual = TREE_CHAIN (qual);
11153 qual_wfl = QUAL_WFL (qual);
11154 break;
11155 case CLASS_LITERAL:
11156 qual = TREE_CHAIN (qual);
11157 qual_wfl = QUAL_WFL (qual);
11158 break;
11159 default:
11160 /* Fix for -Wall. Just break doing nothing */
11161 break;
11164 ptr_type = current_class;
11165 again = 0;
11166 code = TREE_CODE (qual_wfl);
11168 /* Pos evaluation: non WFL leading expression nodes */
11169 if (code == CONVERT_EXPR
11170 && TREE_CODE (TREE_TYPE (qual_wfl)) == EXPR_WITH_FILE_LOCATION)
11171 name = EXPR_WFL_NODE (TREE_TYPE (qual_wfl));
11173 else if (code == INTEGER_CST)
11174 name = qual_wfl;
11176 else if (code == CONVERT_EXPR &&
11177 TREE_CODE (TREE_OPERAND (qual_wfl, 0)) == EXPR_WITH_FILE_LOCATION)
11178 name = TREE_OPERAND (qual_wfl, 0);
11180 else if ((code == ARRAY_REF || code == CALL_EXPR || code == MODIFY_EXPR) &&
11181 TREE_CODE (TREE_OPERAND (qual_wfl, 0)) == EXPR_WITH_FILE_LOCATION)
11182 name = EXPR_WFL_NODE (TREE_OPERAND (qual_wfl, 0));
11184 else if (code == TREE_LIST)
11185 name = EXPR_WFL_NODE (TREE_PURPOSE (qual_wfl));
11187 else if (code == STRING_CST || code == CONDITIONAL_EXPR
11188 || code == PLUS_EXPR)
11190 qual = TREE_CHAIN (qual);
11191 qual_wfl = QUAL_WFL (qual);
11192 again = 1;
11194 else
11196 name = EXPR_WFL_NODE (qual_wfl);
11197 if (!name)
11199 qual = EXPR_WFL_QUALIFICATION (qual_wfl);
11200 again = 1;
11204 /* If we have a THIS (from a primary), we set the context accordingly */
11205 if (name == this_identifier_node)
11207 /* This isn't really elegant. One more added irregularity
11208 before I start using COMPONENT_REF (hopefully very soon.) */
11209 if (TREE_CODE (TREE_PURPOSE (qual)) == ARRAY_REF
11210 && TREE_CODE (TREE_OPERAND (TREE_PURPOSE (qual), 0)) ==
11211 EXPR_WITH_FILE_LOCATION
11212 && EXPR_WFL_NODE (TREE_OPERAND (TREE_PURPOSE (qual), 0)) ==
11213 this_identifier_node)
11215 qual = TREE_OPERAND (TREE_PURPOSE (qual), 0);
11216 qual = EXPR_WFL_QUALIFICATION (qual);
11218 qual = TREE_CHAIN (qual);
11219 qual_wfl = QUAL_WFL (qual);
11220 if (TREE_CODE (qual_wfl) == CALL_EXPR)
11221 again = 1;
11222 else if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION)
11223 name = EXPR_WFL_NODE (qual_wfl);
11224 else if (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR)
11225 name = TREE_OPERAND (qual_wfl, 0);
11226 this_found = 1;
11228 /* If we have a SUPER, we set the context accordingly */
11229 if (name == super_identifier_node)
11231 current_class = CLASSTYPE_SUPER (ptr_type);
11232 /* Check that there is such a thing as a super class. If not,
11233 return. The error will be caught later on, during the
11234 resolution */
11235 if (!current_class)
11237 current_class = saved_current_class;
11238 return;
11240 qual = TREE_CHAIN (qual);
11241 /* Do one more interation to set things up */
11242 super_found = again = 1;
11244 } while (again);
11246 /* If name appears within the scope of a local variable declaration
11247 or parameter declaration, then it is an expression name. We don't
11248 carry this test out if we're in the context of the use of SUPER
11249 or THIS */
11250 if (!this_found && !super_found
11251 && TREE_CODE (name) != STRING_CST && TREE_CODE (name) != INTEGER_CST
11252 && (decl = IDENTIFIER_LOCAL_VALUE (name)))
11254 RESOLVE_EXPRESSION_NAME_P (qual_wfl) = 1;
11255 QUAL_RESOLUTION (qual) = decl;
11258 /* If within the class/interface NAME was found to be used there
11259 exists a (possibly inherited) field named NAME, then this is an
11260 expression name. If we saw a NEW_ARRAY_EXPR before and want to
11261 address length, it is OK. */
11262 else if ((decl = lookup_field_wrapper (ptr_type, name))
11263 || name == length_identifier_node)
11265 RESOLVE_EXPRESSION_NAME_P (qual_wfl) = 1;
11266 QUAL_RESOLUTION (qual) = (new_array_found ? NULL_TREE : decl);
11269 /* We reclassify NAME as yielding to a type name resolution if:
11270 - NAME is a class/interface declared within the compilation
11271 unit containing NAME,
11272 - NAME is imported via a single-type-import declaration,
11273 - NAME is declared in an another compilation unit of the package
11274 of the compilation unit containing NAME,
11275 - NAME is declared by exactly on type-import-on-demand declaration
11276 of the compilation unit containing NAME.
11277 - NAME is actually a STRING_CST.
11278 This can't happen if the expression was qualified by `this.' */
11279 else if (! this_found &&
11280 (TREE_CODE (name) == STRING_CST ||
11281 TREE_CODE (name) == INTEGER_CST ||
11282 (decl = resolve_and_layout (name, NULL_TREE))))
11284 RESOLVE_TYPE_NAME_P (qual_wfl) = 1;
11285 QUAL_RESOLUTION (qual) = decl;
11288 /* Method call, array references and cast are expression name */
11289 else if (TREE_CODE (QUAL_WFL (qual)) == CALL_EXPR
11290 || TREE_CODE (QUAL_WFL (qual)) == ARRAY_REF
11291 || TREE_CODE (QUAL_WFL (qual)) == CONVERT_EXPR
11292 || TREE_CODE (QUAL_WFL (qual)) == MODIFY_EXPR)
11293 RESOLVE_EXPRESSION_NAME_P (qual_wfl) = 1;
11295 /* Check here that NAME isn't declared by more than one
11296 type-import-on-demand declaration of the compilation unit
11297 containing NAME. FIXME */
11299 /* Otherwise, NAME is reclassified as a package name */
11300 else
11301 RESOLVE_PACKAGE_NAME_P (qual_wfl) = 1;
11303 /* Propagate the qualification accross other components of the
11304 qualified name */
11305 for (qual = TREE_CHAIN (qual); qual;
11306 qual_wfl = QUAL_WFL (qual), qual = TREE_CHAIN (qual))
11308 if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
11309 RESOLVE_PACKAGE_NAME_P (QUAL_WFL (qual)) = 1;
11310 else
11311 RESOLVE_EXPRESSION_NAME_P (QUAL_WFL (qual)) = 1;
11314 /* Store the global qualification for the ambiguous part of ID back
11315 into ID fields */
11316 if (RESOLVE_EXPRESSION_NAME_P (qual_wfl))
11317 RESOLVE_EXPRESSION_NAME_P (id) = 1;
11318 else if (RESOLVE_TYPE_NAME_P (qual_wfl))
11319 RESOLVE_TYPE_NAME_P (id) = 1;
11320 else if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
11321 RESOLVE_PACKAGE_NAME_P (id) = 1;
11323 /* Restore the current class */
11324 current_class = saved_current_class;
11327 static int
11328 breakdown_qualified (left, right, source)
11329 tree *left, *right, source;
11331 char *p, *base;
11332 int l = IDENTIFIER_LENGTH (source);
11334 base = alloca (l + 1);
11335 memcpy (base, IDENTIFIER_POINTER (source), l + 1);
11337 /* Breakdown NAME into REMAINDER . IDENTIFIER */
11338 p = base + l - 1;
11339 while (*p != '.' && p != base)
11340 p--;
11342 /* We didn't find a '.'. Return an error */
11343 if (p == base)
11344 return 1;
11346 *p = '\0';
11347 if (right)
11348 *right = get_identifier (p+1);
11349 *left = get_identifier (base);
11351 return 0;
11354 /* Return TRUE if two classes are from the same package. */
11356 static int
11357 in_same_package (name1, name2)
11358 tree name1, name2;
11360 tree tmp;
11361 tree pkg1;
11362 tree pkg2;
11364 if (TREE_CODE (name1) == TYPE_DECL)
11365 name1 = DECL_NAME (name1);
11366 if (TREE_CODE (name2) == TYPE_DECL)
11367 name2 = DECL_NAME (name2);
11369 if (QUALIFIED_P (name1) != QUALIFIED_P (name2))
11370 /* One in empty package. */
11371 return 0;
11373 if (QUALIFIED_P (name1) == 0 && QUALIFIED_P (name2) == 0)
11374 /* Both in empty package. */
11375 return 1;
11377 breakdown_qualified (&pkg1, &tmp, name1);
11378 breakdown_qualified (&pkg2, &tmp, name2);
11380 return (pkg1 == pkg2);
11383 /* Patch tree nodes in a function body. When a BLOCK is found, push
11384 local variable decls if present.
11385 Same as java_complete_lhs, but does resolve static finals to values. */
11387 static tree
11388 java_complete_tree (node)
11389 tree node;
11391 node = java_complete_lhs (node);
11392 if (JDECL_P (node) && CLASS_FINAL_VARIABLE_P (node)
11393 && DECL_INITIAL (node) != NULL_TREE
11394 && !flag_emit_xref)
11396 tree value = DECL_INITIAL (node);
11397 DECL_INITIAL (node) = NULL_TREE;
11398 value = fold_constant_for_init (value, node);
11399 DECL_INITIAL (node) = value;
11400 if (value != NULL_TREE)
11402 /* fold_constant_for_init sometimes widen the original type
11403 of the constant (i.e. byte to int.) It's not desirable,
11404 especially if NODE is a function argument. */
11405 if ((TREE_CODE (value) == INTEGER_CST
11406 || TREE_CODE (value) == REAL_CST)
11407 && TREE_TYPE (node) != TREE_TYPE (value))
11408 return convert (TREE_TYPE (node), value);
11409 else
11410 return value;
11412 else
11413 DECL_FIELD_FINAL_IUD (node) = 0;
11415 return node;
11418 static tree
11419 java_stabilize_reference (node)
11420 tree node;
11422 if (TREE_CODE (node) == COMPOUND_EXPR)
11424 tree op0 = TREE_OPERAND (node, 0);
11425 tree op1 = TREE_OPERAND (node, 1);
11426 TREE_OPERAND (node, 0) = save_expr (op0);
11427 TREE_OPERAND (node, 1) = java_stabilize_reference (op1);
11428 return node;
11430 return stabilize_reference (node);
11433 /* Patch tree nodes in a function body. When a BLOCK is found, push
11434 local variable decls if present.
11435 Same as java_complete_tree, but does not resolve static finals to values. */
11437 static tree
11438 java_complete_lhs (node)
11439 tree node;
11441 tree nn, cn, wfl_op1, wfl_op2, wfl_op3;
11442 int flag;
11444 /* CONVERT_EXPR always has its type set, even though it needs to be
11445 worked out. */
11446 if (TREE_TYPE (node) && TREE_CODE (node) != CONVERT_EXPR)
11447 return node;
11449 /* The switch block implements cases processing container nodes
11450 first. Contained nodes are always written back. Leaves come
11451 next and return a value. */
11452 switch (TREE_CODE (node))
11454 case BLOCK:
11456 /* 1- Block section.
11457 Set the local values on decl names so we can identify them
11458 faster when they're referenced. At that stage, identifiers
11459 are legal so we don't check for declaration errors. */
11460 for (cn = BLOCK_EXPR_DECLS (node); cn; cn = TREE_CHAIN (cn))
11462 DECL_CONTEXT (cn) = current_function_decl;
11463 IDENTIFIER_LOCAL_VALUE (DECL_NAME (cn)) = cn;
11465 if (BLOCK_EXPR_BODY (node) == NULL_TREE)
11466 CAN_COMPLETE_NORMALLY (node) = 1;
11467 else
11469 tree stmt = BLOCK_EXPR_BODY (node);
11470 tree *ptr;
11471 int error_seen = 0;
11472 if (TREE_CODE (stmt) == COMPOUND_EXPR)
11474 /* Re-order from (((A; B); C); ...; Z) to
11475 (A; (B; (C ; (...; Z)))).
11476 This makes it easier to scan the statements left-to-right
11477 without using recursion (which might overflow the stack
11478 if the block has many statements. */
11479 for (;;)
11481 tree left = TREE_OPERAND (stmt, 0);
11482 if (TREE_CODE (left) != COMPOUND_EXPR)
11483 break;
11484 TREE_OPERAND (stmt, 0) = TREE_OPERAND (left, 1);
11485 TREE_OPERAND (left, 1) = stmt;
11486 stmt = left;
11488 BLOCK_EXPR_BODY (node) = stmt;
11491 /* Now do the actual complete, without deep recursion for
11492 long blocks. */
11493 ptr = &BLOCK_EXPR_BODY (node);
11494 while (TREE_CODE (*ptr) == COMPOUND_EXPR
11495 && TREE_OPERAND (*ptr, 1) != empty_stmt_node)
11497 tree cur = java_complete_tree (TREE_OPERAND (*ptr, 0));
11498 tree *next = &TREE_OPERAND (*ptr, 1);
11499 TREE_OPERAND (*ptr, 0) = cur;
11500 if (cur == empty_stmt_node)
11502 /* Optimization; makes it easier to detect empty bodies.
11503 Most useful for <clinit> with all-constant initializer. */
11504 *ptr = *next;
11505 continue;
11507 if (TREE_CODE (cur) == ERROR_MARK)
11508 error_seen++;
11509 else if (! CAN_COMPLETE_NORMALLY (cur))
11511 wfl_op2 = *next;
11512 for (;;)
11514 if (TREE_CODE (wfl_op2) == BLOCK)
11515 wfl_op2 = BLOCK_EXPR_BODY (wfl_op2);
11516 else if (TREE_CODE (wfl_op2) == COMPOUND_EXPR)
11517 wfl_op2 = TREE_OPERAND (wfl_op2, 0);
11518 else
11519 break;
11521 if (TREE_CODE (wfl_op2) != CASE_EXPR
11522 && TREE_CODE (wfl_op2) != DEFAULT_EXPR)
11523 unreachable_stmt_error (*ptr);
11525 ptr = next;
11527 *ptr = java_complete_tree (*ptr);
11529 if (TREE_CODE (*ptr) == ERROR_MARK || error_seen > 0)
11530 return error_mark_node;
11531 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (*ptr);
11533 /* Turn local bindings to null */
11534 for (cn = BLOCK_EXPR_DECLS (node); cn; cn = TREE_CHAIN (cn))
11535 IDENTIFIER_LOCAL_VALUE (DECL_NAME (cn)) = NULL_TREE;
11537 TREE_TYPE (node) = void_type_node;
11538 break;
11540 /* 2- They are expressions but ultimately deal with statements */
11542 case THROW_EXPR:
11543 wfl_op1 = TREE_OPERAND (node, 0);
11544 COMPLETE_CHECK_OP_0 (node);
11545 /* 14.19 A throw statement cannot complete normally. */
11546 CAN_COMPLETE_NORMALLY (node) = 0;
11547 return patch_throw_statement (node, wfl_op1);
11549 case SYNCHRONIZED_EXPR:
11550 wfl_op1 = TREE_OPERAND (node, 0);
11551 return patch_synchronized_statement (node, wfl_op1);
11553 case TRY_EXPR:
11554 return patch_try_statement (node);
11556 case TRY_FINALLY_EXPR:
11557 COMPLETE_CHECK_OP_0 (node);
11558 COMPLETE_CHECK_OP_1 (node);
11559 if (TREE_OPERAND (node, 0) == empty_stmt_node)
11560 return TREE_OPERAND (node, 1);
11561 if (TREE_OPERAND (node, 1) == empty_stmt_node)
11562 return TREE_OPERAND (node, 0);
11563 CAN_COMPLETE_NORMALLY (node)
11564 = (CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0))
11565 && CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1)));
11566 TREE_TYPE (node) = TREE_TYPE (TREE_OPERAND (node, 0));
11567 return node;
11569 case CLEANUP_POINT_EXPR:
11570 COMPLETE_CHECK_OP_0 (node);
11571 TREE_TYPE (node) = void_type_node;
11572 CAN_COMPLETE_NORMALLY (node) =
11573 CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0));
11574 return node;
11576 case WITH_CLEANUP_EXPR:
11577 COMPLETE_CHECK_OP_0 (node);
11578 COMPLETE_CHECK_OP_1 (node);
11579 CAN_COMPLETE_NORMALLY (node) =
11580 CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0));
11581 TREE_TYPE (node) = void_type_node;
11582 return node;
11584 case LABELED_BLOCK_EXPR:
11585 PUSH_LABELED_BLOCK (node);
11586 if (LABELED_BLOCK_BODY (node))
11587 COMPLETE_CHECK_OP_1 (node);
11588 TREE_TYPE (node) = void_type_node;
11589 POP_LABELED_BLOCK ();
11591 if (LABELED_BLOCK_BODY (node) == empty_stmt_node)
11593 LABELED_BLOCK_BODY (node) = NULL_TREE;
11594 CAN_COMPLETE_NORMALLY (node) = 1;
11596 else if (CAN_COMPLETE_NORMALLY (LABELED_BLOCK_BODY (node)))
11597 CAN_COMPLETE_NORMALLY (node) = 1;
11598 return node;
11600 case EXIT_BLOCK_EXPR:
11601 /* We don't complete operand 1, because it's the return value of
11602 the EXIT_BLOCK_EXPR which doesn't exist it Java */
11603 return patch_bc_statement (node);
11605 case CASE_EXPR:
11606 cn = java_complete_tree (TREE_OPERAND (node, 0));
11607 if (cn == error_mark_node)
11608 return cn;
11610 /* First, the case expression must be constant. Values of final
11611 fields are accepted. */
11612 cn = fold (cn);
11613 if ((TREE_CODE (cn) == COMPOUND_EXPR || TREE_CODE (cn) == COMPONENT_REF)
11614 && JDECL_P (TREE_OPERAND (cn, 1))
11615 && FIELD_FINAL (TREE_OPERAND (cn, 1))
11616 && DECL_INITIAL (TREE_OPERAND (cn, 1)))
11618 cn = fold_constant_for_init (DECL_INITIAL (TREE_OPERAND (cn, 1)),
11619 TREE_OPERAND (cn, 1));
11621 /* Accept final locals too. */
11622 else if (TREE_CODE (cn) == VAR_DECL && LOCAL_FINAL (cn))
11623 cn = fold_constant_for_init (DECL_INITIAL (cn), cn);
11625 if (!TREE_CONSTANT (cn) && !flag_emit_xref)
11627 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11628 parse_error_context (node, "Constant expression required");
11629 return error_mark_node;
11632 nn = ctxp->current_loop;
11634 /* It must be assignable to the type of the switch expression. */
11635 if (!try_builtin_assignconv (NULL_TREE,
11636 TREE_TYPE (TREE_OPERAND (nn, 0)), cn))
11638 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11639 parse_error_context
11640 (wfl_operator,
11641 "Incompatible type for case. Can't convert `%s' to `int'",
11642 lang_printable_name (TREE_TYPE (cn), 0));
11643 return error_mark_node;
11646 cn = fold (convert (int_type_node, cn));
11647 TREE_CONSTANT_OVERFLOW (cn) = 0;
11648 CAN_COMPLETE_NORMALLY (cn) = 1;
11650 /* Multiple instance of a case label bearing the same
11651 value is checked during code generation. The case
11652 expression is allright so far. */
11653 if (TREE_CODE (cn) == VAR_DECL)
11654 cn = DECL_INITIAL (cn);
11655 TREE_OPERAND (node, 0) = cn;
11656 TREE_TYPE (node) = void_type_node;
11657 CAN_COMPLETE_NORMALLY (node) = 1;
11658 TREE_SIDE_EFFECTS (node) = 1;
11659 break;
11661 case DEFAULT_EXPR:
11662 nn = ctxp->current_loop;
11663 /* Only one default label is allowed per switch statement */
11664 if (SWITCH_HAS_DEFAULT (nn))
11666 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11667 parse_error_context (wfl_operator,
11668 "Duplicate case label: `default'");
11669 return error_mark_node;
11671 else
11672 SWITCH_HAS_DEFAULT (nn) = 1;
11673 TREE_TYPE (node) = void_type_node;
11674 TREE_SIDE_EFFECTS (node) = 1;
11675 CAN_COMPLETE_NORMALLY (node) = 1;
11676 break;
11678 case SWITCH_EXPR:
11679 case LOOP_EXPR:
11680 PUSH_LOOP (node);
11681 /* Check whether the loop was enclosed in a labeled
11682 statement. If not, create one, insert the loop in it and
11683 return the node */
11684 nn = patch_loop_statement (node);
11686 /* Anyways, walk the body of the loop */
11687 if (TREE_CODE (node) == LOOP_EXPR)
11688 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11689 /* Switch statement: walk the switch expression and the cases */
11690 else
11691 node = patch_switch_statement (node);
11693 if (node == error_mark_node || TREE_OPERAND (node, 0) == error_mark_node)
11694 nn = error_mark_node;
11695 else
11697 TREE_TYPE (nn) = TREE_TYPE (node) = void_type_node;
11698 /* If we returned something different, that's because we
11699 inserted a label. Pop the label too. */
11700 if (nn != node)
11702 if (CAN_COMPLETE_NORMALLY (node))
11703 CAN_COMPLETE_NORMALLY (nn) = 1;
11704 POP_LABELED_BLOCK ();
11707 POP_LOOP ();
11708 return nn;
11710 case EXIT_EXPR:
11711 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11712 return patch_exit_expr (node);
11714 case COND_EXPR:
11715 /* Condition */
11716 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11717 if (TREE_OPERAND (node, 0) == error_mark_node)
11718 return error_mark_node;
11719 /* then-else branches */
11720 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
11721 if (TREE_OPERAND (node, 1) == error_mark_node)
11722 return error_mark_node;
11723 TREE_OPERAND (node, 2) = java_complete_tree (TREE_OPERAND (node, 2));
11724 if (TREE_OPERAND (node, 2) == error_mark_node)
11725 return error_mark_node;
11726 return patch_if_else_statement (node);
11727 break;
11729 case CONDITIONAL_EXPR:
11730 /* Condition */
11731 wfl_op1 = TREE_OPERAND (node, 0);
11732 COMPLETE_CHECK_OP_0 (node);
11733 wfl_op2 = TREE_OPERAND (node, 1);
11734 COMPLETE_CHECK_OP_1 (node);
11735 wfl_op3 = TREE_OPERAND (node, 2);
11736 COMPLETE_CHECK_OP_2 (node);
11737 return patch_conditional_expr (node, wfl_op1, wfl_op2);
11739 /* 3- Expression section */
11740 case COMPOUND_EXPR:
11741 wfl_op2 = TREE_OPERAND (node, 1);
11742 TREE_OPERAND (node, 0) = nn =
11743 java_complete_tree (TREE_OPERAND (node, 0));
11744 if (wfl_op2 == empty_stmt_node)
11745 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (nn);
11746 else
11748 if (! CAN_COMPLETE_NORMALLY (nn) && TREE_CODE (nn) != ERROR_MARK)
11750 /* An unreachable condition in a do-while statement
11751 is *not* (technically) an unreachable statement. */
11752 nn = wfl_op2;
11753 if (TREE_CODE (nn) == EXPR_WITH_FILE_LOCATION)
11754 nn = EXPR_WFL_NODE (nn);
11755 if (TREE_CODE (nn) != EXIT_EXPR)
11757 SET_WFL_OPERATOR (wfl_operator, node, wfl_op2);
11758 parse_error_context (wfl_operator, "Unreachable statement");
11761 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
11762 if (TREE_OPERAND (node, 1) == error_mark_node)
11763 return error_mark_node;
11764 CAN_COMPLETE_NORMALLY (node)
11765 = CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1));
11767 TREE_TYPE (node) = TREE_TYPE (TREE_OPERAND (node, 1));
11768 break;
11770 case RETURN_EXPR:
11771 /* CAN_COMPLETE_NORMALLY (node) = 0; */
11772 return patch_return (node);
11774 case EXPR_WITH_FILE_LOCATION:
11775 if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
11776 || TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
11778 tree wfl = node;
11779 node = resolve_expression_name (node, NULL);
11780 if (node == error_mark_node)
11781 return node;
11782 /* Keep line number information somewhere were it doesn't
11783 disrupt the completion process. */
11784 if (flag_emit_xref && TREE_CODE (node) != CALL_EXPR)
11786 EXPR_WFL_NODE (wfl) = TREE_OPERAND (node, 1);
11787 TREE_OPERAND (node, 1) = wfl;
11789 CAN_COMPLETE_NORMALLY (node) = 1;
11791 else
11793 tree body;
11794 int save_lineno = lineno;
11795 lineno = EXPR_WFL_LINENO (node);
11796 body = java_complete_tree (EXPR_WFL_NODE (node));
11797 lineno = save_lineno;
11798 EXPR_WFL_NODE (node) = body;
11799 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (body);
11800 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (body);
11801 if (body == empty_stmt_node || TREE_CONSTANT (body))
11803 /* Makes it easier to constant fold, detect empty bodies. */
11804 return body;
11806 if (body == error_mark_node)
11808 /* Its important for the evaluation of assignment that
11809 this mark on the TREE_TYPE is propagated. */
11810 TREE_TYPE (node) = error_mark_node;
11811 return error_mark_node;
11813 else
11814 TREE_TYPE (node) = TREE_TYPE (EXPR_WFL_NODE (node));
11817 break;
11819 case NEW_ARRAY_EXPR:
11820 /* Patch all the dimensions */
11821 flag = 0;
11822 for (cn = TREE_OPERAND (node, 1); cn; cn = TREE_CHAIN (cn))
11824 int location = EXPR_WFL_LINECOL (TREE_VALUE (cn));
11825 tree dim = convert (int_type_node,
11826 java_complete_tree (TREE_VALUE (cn)));
11827 if (dim == error_mark_node)
11829 flag = 1;
11830 continue;
11832 else
11834 TREE_VALUE (cn) = dim;
11835 /* Setup the location of the current dimension, for
11836 later error report. */
11837 TREE_PURPOSE (cn) =
11838 build_expr_wfl (NULL_TREE, input_filename, 0, 0);
11839 EXPR_WFL_LINECOL (TREE_PURPOSE (cn)) = location;
11842 /* They complete the array creation expression, if no errors
11843 were found. */
11844 CAN_COMPLETE_NORMALLY (node) = 1;
11845 return (flag ? error_mark_node
11846 : force_evaluation_order (patch_newarray (node)));
11848 case NEW_ANONYMOUS_ARRAY_EXPR:
11849 /* Create the array type if necessary. */
11850 if (ANONYMOUS_ARRAY_DIMS_SIG (node))
11852 tree type = ANONYMOUS_ARRAY_BASE_TYPE (node);
11853 if (!(type = resolve_type_during_patch (type)))
11854 return error_mark_node;
11855 type = build_array_from_name (type, NULL_TREE,
11856 ANONYMOUS_ARRAY_DIMS_SIG (node), NULL);
11857 ANONYMOUS_ARRAY_BASE_TYPE (node) = build_pointer_type (type);
11859 node = patch_new_array_init (ANONYMOUS_ARRAY_BASE_TYPE (node),
11860 ANONYMOUS_ARRAY_INITIALIZER (node));
11861 if (node == error_mark_node)
11862 return error_mark_node;
11863 CAN_COMPLETE_NORMALLY (node) = 1;
11864 return node;
11866 case NEW_CLASS_EXPR:
11867 case CALL_EXPR:
11868 /* Complete function's argument(s) first */
11869 if (complete_function_arguments (node))
11870 return error_mark_node;
11871 else
11873 tree decl, wfl = TREE_OPERAND (node, 0);
11874 int in_this = CALL_THIS_CONSTRUCTOR_P (node);
11875 int from_super = (EXPR_WFL_NODE (TREE_OPERAND (node, 0)) ==
11876 super_identifier_node);
11878 node = patch_method_invocation (node, NULL_TREE, NULL_TREE,
11879 from_super, 0, &decl);
11880 if (node == error_mark_node)
11881 return error_mark_node;
11883 check_thrown_exceptions (EXPR_WFL_LINECOL (node), decl);
11884 /* If we call this(...), register signature and positions */
11885 if (in_this)
11886 DECL_CONSTRUCTOR_CALLS (current_function_decl) =
11887 tree_cons (wfl, decl,
11888 DECL_CONSTRUCTOR_CALLS (current_function_decl));
11889 CAN_COMPLETE_NORMALLY (node) = 1;
11890 return force_evaluation_order (node);
11893 case MODIFY_EXPR:
11894 /* Save potential wfls */
11895 wfl_op1 = TREE_OPERAND (node, 0);
11896 TREE_OPERAND (node, 0) = nn = java_complete_lhs (wfl_op1);
11898 if (MODIFY_EXPR_FROM_INITIALIZATION_P (node)
11899 && TREE_CODE (nn) == VAR_DECL && TREE_STATIC (nn)
11900 && DECL_INITIAL (nn) != NULL_TREE)
11902 tree value;
11904 value = fold_constant_for_init (nn, nn);
11906 /* When we have a primitype type, or a string and we're not
11907 emitting a class file, we actually don't want to generate
11908 anything for the assignment. */
11909 if (value != NULL_TREE &&
11910 (JPRIMITIVE_TYPE_P (TREE_TYPE (value)) ||
11911 (TREE_TYPE (value) == string_ptr_type_node &&
11912 ! flag_emit_class_files)))
11914 /* Prepare node for patch_assignment */
11915 TREE_OPERAND (node, 1) = value;
11916 /* Call patch assignment to verify the assignment */
11917 if (patch_assignment (node, wfl_op1, value) == error_mark_node)
11918 return error_mark_node;
11919 /* Set DECL_INITIAL properly (a conversion might have
11920 been decided by patch_assignment) and return the
11921 empty statement. */
11922 else
11924 tree patched = patch_string (TREE_OPERAND (node, 1));
11925 if (patched)
11926 DECL_INITIAL (nn) = patched;
11927 else
11928 DECL_INITIAL (nn) = TREE_OPERAND (node, 1);
11929 return empty_stmt_node;
11932 if (! flag_emit_class_files)
11933 DECL_INITIAL (nn) = NULL_TREE;
11934 if (CLASS_FINAL_VARIABLE_P (nn))
11935 DECL_FIELD_FINAL_IUD (nn) = 0;
11937 wfl_op2 = TREE_OPERAND (node, 1);
11939 if (TREE_OPERAND (node, 0) == error_mark_node)
11940 return error_mark_node;
11942 flag = COMPOUND_ASSIGN_P (wfl_op2);
11943 if (flag)
11945 /* This might break when accessing outer field from inner
11946 class. TESTME, FIXME */
11947 tree lvalue = java_stabilize_reference (TREE_OPERAND (node, 0));
11949 /* Hand stabilize the lhs on both places */
11950 TREE_OPERAND (node, 0) = lvalue;
11951 TREE_OPERAND (TREE_OPERAND (node, 1), 0) =
11952 (flag_emit_class_files ? lvalue : save_expr (lvalue));
11954 /* 15.25.2.a: Left hand is not an array access. FIXME */
11955 /* Now complete the RHS. We write it back later on. */
11956 nn = java_complete_tree (TREE_OPERAND (node, 1));
11958 if ((cn = patch_string (nn)))
11959 nn = cn;
11961 /* The last part of the rewrite for E1 op= E2 is to have
11962 E1 = (T)(E1 op E2), with T being the type of E1. */
11963 nn = java_complete_tree (build_cast (EXPR_WFL_LINECOL (wfl_op2),
11964 TREE_TYPE (lvalue), nn));
11966 /* If the assignment is compound and has reference type,
11967 then ensure the LHS has type String and nothing else. */
11968 if (JREFERENCE_TYPE_P (TREE_TYPE (lvalue))
11969 && ! JSTRING_TYPE_P (TREE_TYPE (lvalue)))
11970 parse_error_context (wfl_op2,
11971 "Incompatible type for `+='. Can't convert `%s' to `java.lang.String'",
11972 lang_printable_name (TREE_TYPE (lvalue), 0));
11974 /* 15.25.2.b: Left hand is an array access. FIXME */
11977 /* If we're about to patch a NEW_ARRAY_INIT, we call a special
11978 function to complete this RHS. Note that a NEW_ARRAY_INIT
11979 might have been already fully expanded if created as a result
11980 of processing an anonymous array initializer. We avoid doing
11981 the operation twice by testing whether the node already bears
11982 a type. */
11983 else if (TREE_CODE (wfl_op2) == NEW_ARRAY_INIT && !TREE_TYPE (wfl_op2))
11984 nn = patch_new_array_init (TREE_TYPE (TREE_OPERAND (node, 0)),
11985 TREE_OPERAND (node, 1));
11986 /* Otherwise we simply complete the RHS */
11987 else
11988 nn = java_complete_tree (TREE_OPERAND (node, 1));
11990 if (nn == error_mark_node)
11991 return error_mark_node;
11993 /* Write back the RHS as we evaluated it. */
11994 TREE_OPERAND (node, 1) = nn;
11996 /* In case we're handling = with a String as a RHS, we need to
11997 produce a String out of the RHS (it might still be a
11998 STRING_CST or a StringBuffer at this stage */
11999 if ((nn = patch_string (TREE_OPERAND (node, 1))))
12000 TREE_OPERAND (node, 1) = nn;
12002 if ((nn = outer_field_access_fix (wfl_op1, TREE_OPERAND (node, 0),
12003 TREE_OPERAND (node, 1))))
12005 /* We return error_mark_node if outer_field_access_fix
12006 detects we write into a final. */
12007 if (nn == error_mark_node)
12008 return error_mark_node;
12009 node = nn;
12011 else
12013 /* Can't assign to a (blank) final. */
12014 if (check_final_assignment (TREE_OPERAND (node, 0), wfl_op1))
12015 return error_mark_node;
12016 node = patch_assignment (node, wfl_op1, wfl_op2);
12017 /* Reorganize the tree if necessary. */
12018 if (flag && (!JREFERENCE_TYPE_P (TREE_TYPE (node))
12019 || JSTRING_P (TREE_TYPE (node))))
12020 node = java_refold (node);
12023 /* Seek to set DECL_INITIAL to a proper value, since it might have
12024 undergone a conversion in patch_assignment. We do that only when
12025 it's necessary to have DECL_INITIAL properly set. */
12026 nn = TREE_OPERAND (node, 0);
12027 if (TREE_CODE (nn) == VAR_DECL
12028 && DECL_INITIAL (nn) && CONSTANT_VALUE_P (DECL_INITIAL (nn))
12029 && FIELD_STATIC (nn) && FIELD_FINAL (nn)
12030 && (JPRIMITIVE_TYPE_P (TREE_TYPE (nn))
12031 || TREE_TYPE (nn) == string_ptr_type_node))
12032 DECL_INITIAL (nn) = TREE_OPERAND (node, 1);
12034 CAN_COMPLETE_NORMALLY (node) = 1;
12035 return node;
12037 case MULT_EXPR:
12038 case PLUS_EXPR:
12039 case MINUS_EXPR:
12040 case LSHIFT_EXPR:
12041 case RSHIFT_EXPR:
12042 case URSHIFT_EXPR:
12043 case BIT_AND_EXPR:
12044 case BIT_XOR_EXPR:
12045 case BIT_IOR_EXPR:
12046 case TRUNC_MOD_EXPR:
12047 case TRUNC_DIV_EXPR:
12048 case RDIV_EXPR:
12049 case TRUTH_ANDIF_EXPR:
12050 case TRUTH_ORIF_EXPR:
12051 case EQ_EXPR:
12052 case NE_EXPR:
12053 case GT_EXPR:
12054 case GE_EXPR:
12055 case LT_EXPR:
12056 case LE_EXPR:
12057 /* Operands 0 and 1 are WFL in certain cases only. patch_binop
12058 knows how to handle those cases. */
12059 wfl_op1 = TREE_OPERAND (node, 0);
12060 wfl_op2 = TREE_OPERAND (node, 1);
12062 CAN_COMPLETE_NORMALLY (node) = 1;
12063 /* Don't complete string nodes if dealing with the PLUS operand. */
12064 if (TREE_CODE (node) != PLUS_EXPR || !JSTRING_P (wfl_op1))
12066 nn = java_complete_tree (wfl_op1);
12067 if (nn == error_mark_node)
12068 return error_mark_node;
12070 TREE_OPERAND (node, 0) = nn;
12072 if (TREE_CODE (node) != PLUS_EXPR || !JSTRING_P (wfl_op2))
12074 nn = java_complete_tree (wfl_op2);
12075 if (nn == error_mark_node)
12076 return error_mark_node;
12078 TREE_OPERAND (node, 1) = nn;
12080 return force_evaluation_order (patch_binop (node, wfl_op1, wfl_op2));
12082 case INSTANCEOF_EXPR:
12083 wfl_op1 = TREE_OPERAND (node, 0);
12084 COMPLETE_CHECK_OP_0 (node);
12085 if (flag_emit_xref)
12087 TREE_TYPE (node) = boolean_type_node;
12088 return node;
12090 return patch_binop (node, wfl_op1, TREE_OPERAND (node, 1));
12092 case UNARY_PLUS_EXPR:
12093 case NEGATE_EXPR:
12094 case TRUTH_NOT_EXPR:
12095 case BIT_NOT_EXPR:
12096 case PREDECREMENT_EXPR:
12097 case PREINCREMENT_EXPR:
12098 case POSTDECREMENT_EXPR:
12099 case POSTINCREMENT_EXPR:
12100 case CONVERT_EXPR:
12101 /* There are cases were wfl_op1 is a WFL. patch_unaryop knows
12102 how to handle those cases. */
12103 wfl_op1 = TREE_OPERAND (node, 0);
12104 CAN_COMPLETE_NORMALLY (node) = 1;
12105 TREE_OPERAND (node, 0) = java_complete_tree (wfl_op1);
12106 if (TREE_OPERAND (node, 0) == error_mark_node)
12107 return error_mark_node;
12108 node = patch_unaryop (node, wfl_op1);
12109 CAN_COMPLETE_NORMALLY (node) = 1;
12110 break;
12112 case ARRAY_REF:
12113 /* There are cases were wfl_op1 is a WFL. patch_array_ref knows
12114 how to handle those cases. */
12115 wfl_op1 = TREE_OPERAND (node, 0);
12116 TREE_OPERAND (node, 0) = java_complete_tree (wfl_op1);
12117 if (TREE_OPERAND (node, 0) == error_mark_node)
12118 return error_mark_node;
12119 if (!flag_emit_class_files && !flag_emit_xref)
12120 TREE_OPERAND (node, 0) = save_expr (TREE_OPERAND (node, 0));
12121 /* The same applies to wfl_op2 */
12122 wfl_op2 = TREE_OPERAND (node, 1);
12123 TREE_OPERAND (node, 1) = java_complete_tree (wfl_op2);
12124 if (TREE_OPERAND (node, 1) == error_mark_node)
12125 return error_mark_node;
12126 if (!flag_emit_class_files && !flag_emit_xref)
12127 TREE_OPERAND (node, 1) = save_expr (TREE_OPERAND (node, 1));
12128 return patch_array_ref (node);
12130 case RECORD_TYPE:
12131 return node;;
12133 case COMPONENT_REF:
12134 /* The first step in the re-write of qualified name handling. FIXME.
12135 So far, this is only to support PRIMTYPE.class -> PRIMCLASS.TYPE. */
12136 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
12137 if (TREE_CODE (TREE_OPERAND (node, 0)) == RECORD_TYPE)
12139 tree name = TREE_OPERAND (node, 1);
12140 tree field = lookup_field_wrapper (TREE_OPERAND (node, 0), name);
12141 if (field == NULL_TREE)
12143 error ("missing static field `%s'", IDENTIFIER_POINTER (name));
12144 return error_mark_node;
12146 if (! FIELD_STATIC (field))
12148 error ("not a static field `%s'", IDENTIFIER_POINTER (name));
12149 return error_mark_node;
12151 return field;
12153 else
12154 abort ();
12155 break;
12157 case THIS_EXPR:
12158 /* Can't use THIS in a static environment */
12159 if (!current_this)
12161 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12162 parse_error_context (wfl_operator,
12163 "Keyword `this' used outside allowed context");
12164 TREE_TYPE (node) = error_mark_node;
12165 return error_mark_node;
12167 if (ctxp->explicit_constructor_p)
12169 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12170 parse_error_context
12171 (wfl_operator, "Can't reference `this' or `super' before the superclass constructor has been called");
12172 TREE_TYPE (node) = error_mark_node;
12173 return error_mark_node;
12175 return current_this;
12177 case CLASS_LITERAL:
12178 CAN_COMPLETE_NORMALLY (node) = 1;
12179 node = patch_incomplete_class_ref (node);
12180 if (node == error_mark_node)
12181 return error_mark_node;
12182 break;
12184 default:
12185 CAN_COMPLETE_NORMALLY (node) = 1;
12186 /* Ok: may be we have a STRING_CST or a crafted `StringBuffer'
12187 and it's time to turn it into the appropriate String object */
12188 if ((nn = patch_string (node)))
12189 node = nn;
12190 else
12191 internal_error ("No case for %s", tree_code_name [TREE_CODE (node)]);
12193 return node;
12196 /* Complete function call's argument. Return a non zero value is an
12197 error was found. */
12199 static int
12200 complete_function_arguments (node)
12201 tree node;
12203 int flag = 0;
12204 tree cn;
12206 ctxp->explicit_constructor_p += (CALL_EXPLICIT_CONSTRUCTOR_P (node) ? 1 : 0);
12207 for (cn = TREE_OPERAND (node, 1); cn; cn = TREE_CHAIN (cn))
12209 tree wfl = TREE_VALUE (cn), parm, temp;
12210 parm = java_complete_tree (wfl);
12212 if (parm == error_mark_node)
12214 flag = 1;
12215 continue;
12217 /* If have a string literal that we haven't transformed yet or a
12218 crafted string buffer, as a result of use of the the String
12219 `+' operator. Build `parm.toString()' and expand it. */
12220 if ((temp = patch_string (parm)))
12221 parm = temp;
12222 /* Inline PRIMTYPE.TYPE read access */
12223 parm = maybe_build_primttype_type_ref (parm, wfl);
12225 TREE_VALUE (cn) = parm;
12227 ctxp->explicit_constructor_p -= (CALL_EXPLICIT_CONSTRUCTOR_P (node) ? 1 : 0);
12228 return flag;
12231 /* Sometimes (for loops and variable initialized during their
12232 declaration), we want to wrap a statement around a WFL and turn it
12233 debugable. */
12235 static tree
12236 build_debugable_stmt (location, stmt)
12237 int location;
12238 tree stmt;
12240 if (TREE_CODE (stmt) != EXPR_WITH_FILE_LOCATION)
12242 stmt = build_expr_wfl (stmt, input_filename, 0, 0);
12243 EXPR_WFL_LINECOL (stmt) = location;
12245 JAVA_MAYBE_GENERATE_DEBUG_INFO (stmt);
12246 return stmt;
12249 static tree
12250 build_expr_block (body, decls)
12251 tree body, decls;
12253 tree node = make_node (BLOCK);
12254 BLOCK_EXPR_DECLS (node) = decls;
12255 BLOCK_EXPR_BODY (node) = body;
12256 if (body)
12257 TREE_TYPE (node) = TREE_TYPE (body);
12258 TREE_SIDE_EFFECTS (node) = 1;
12259 return node;
12262 /* Create a new function block and link it approriately to current
12263 function block chain */
12265 static tree
12266 enter_block ()
12268 tree b = build_expr_block (NULL_TREE, NULL_TREE);
12270 /* Link block B supercontext to the previous block. The current
12271 function DECL is used as supercontext when enter_a_block is called
12272 for the first time for a given function. The current function body
12273 (DECL_FUNCTION_BODY) is set to be block B. */
12275 tree fndecl = current_function_decl;
12277 if (!fndecl) {
12278 BLOCK_SUPERCONTEXT (b) = current_static_block;
12279 current_static_block = b;
12282 else if (!DECL_FUNCTION_BODY (fndecl))
12284 BLOCK_SUPERCONTEXT (b) = fndecl;
12285 DECL_FUNCTION_BODY (fndecl) = b;
12287 else
12289 BLOCK_SUPERCONTEXT (b) = DECL_FUNCTION_BODY (fndecl);
12290 DECL_FUNCTION_BODY (fndecl) = b;
12292 return b;
12295 /* Exit a block by changing the current function body
12296 (DECL_FUNCTION_BODY) to the current block super context, only if
12297 the block being exited isn't the method's top level one. */
12299 static tree
12300 exit_block ()
12302 tree b;
12303 if (current_function_decl)
12305 b = DECL_FUNCTION_BODY (current_function_decl);
12306 if (BLOCK_SUPERCONTEXT (b) != current_function_decl)
12307 DECL_FUNCTION_BODY (current_function_decl) = BLOCK_SUPERCONTEXT (b);
12309 else
12311 b = current_static_block;
12313 if (BLOCK_SUPERCONTEXT (b))
12314 current_static_block = BLOCK_SUPERCONTEXT (b);
12316 return b;
12319 /* Lookup for NAME in the nested function's blocks, all the way up to
12320 the current toplevel one. It complies with Java's local variable
12321 scoping rules. */
12323 static tree
12324 lookup_name_in_blocks (name)
12325 tree name;
12327 tree b = GET_CURRENT_BLOCK (current_function_decl);
12329 while (b != current_function_decl)
12331 tree current;
12333 /* Paranoid sanity check. To be removed */
12334 if (TREE_CODE (b) != BLOCK)
12335 abort ();
12337 for (current = BLOCK_EXPR_DECLS (b); current;
12338 current = TREE_CHAIN (current))
12339 if (DECL_NAME (current) == name)
12340 return current;
12341 b = BLOCK_SUPERCONTEXT (b);
12343 return NULL_TREE;
12346 static void
12347 maybe_absorb_scoping_blocks ()
12349 while (BLOCK_IS_IMPLICIT (GET_CURRENT_BLOCK (current_function_decl)))
12351 tree b = exit_block ();
12352 java_method_add_stmt (current_function_decl, b);
12353 SOURCE_FRONTEND_DEBUG (("Absorbing scoping block at line %d", lineno));
12358 /* This section of the source is reserved to build_* functions that
12359 are building incomplete tree nodes and the patch_* functions that
12360 are completing them. */
12362 /* Wrap a non WFL node around a WFL. */
12364 static tree
12365 build_wfl_wrap (node, location)
12366 tree node;
12367 int location;
12369 tree wfl, node_to_insert = node;
12371 /* We want to process THIS . xxx symbolicaly, to keep it consistent
12372 with the way we're processing SUPER. A THIS from a primary as a
12373 different form than a SUPER. Turn THIS into something symbolic */
12374 if (TREE_CODE (node) == THIS_EXPR)
12375 node_to_insert = wfl = build_wfl_node (this_identifier_node);
12376 else
12377 wfl = build_expr_wfl (NULL_TREE, ctxp->filename, 0, 0);
12379 EXPR_WFL_LINECOL (wfl) = location;
12380 EXPR_WFL_QUALIFICATION (wfl) = build_tree_list (node_to_insert, NULL_TREE);
12381 return wfl;
12384 /* Build a super() constructor invocation. Returns empty_stmt_node if
12385 we're currently dealing with the class java.lang.Object. */
12387 static tree
12388 build_super_invocation (mdecl)
12389 tree mdecl;
12391 if (DECL_CONTEXT (mdecl) == object_type_node)
12392 return empty_stmt_node;
12393 else
12395 tree super_wfl = build_wfl_node (super_identifier_node);
12396 tree a = NULL_TREE, t;
12397 /* If we're dealing with an anonymous class, pass the arguments
12398 of the crafted constructor along. */
12399 if (ANONYMOUS_CLASS_P (DECL_CONTEXT (mdecl)))
12401 SKIP_THIS_AND_ARTIFICIAL_PARMS (t, mdecl);
12402 for (; t != end_params_node; t = TREE_CHAIN (t))
12403 a = tree_cons (NULL_TREE, build_wfl_node (TREE_PURPOSE (t)), a);
12405 return build_method_invocation (super_wfl, a);
12409 /* Build a SUPER/THIS qualified method invocation. */
12411 static tree
12412 build_this_super_qualified_invocation (use_this, name, args, lloc, rloc)
12413 int use_this;
12414 tree name, args;
12415 int lloc, rloc;
12417 tree invok;
12418 tree wfl =
12419 build_wfl_node (use_this ? this_identifier_node : super_identifier_node);
12420 EXPR_WFL_LINECOL (wfl) = lloc;
12421 invok = build_method_invocation (name, args);
12422 return make_qualified_primary (wfl, invok, rloc);
12425 /* Build an incomplete CALL_EXPR node. */
12427 static tree
12428 build_method_invocation (name, args)
12429 tree name;
12430 tree args;
12432 tree call = build (CALL_EXPR, NULL_TREE, name, args, NULL_TREE);
12433 TREE_SIDE_EFFECTS (call) = 1;
12434 EXPR_WFL_LINECOL (call) = EXPR_WFL_LINECOL (name);
12435 return call;
12438 /* Build an incomplete new xxx(...) node. */
12440 static tree
12441 build_new_invocation (name, args)
12442 tree name, args;
12444 tree call = build (NEW_CLASS_EXPR, NULL_TREE, name, args, NULL_TREE);
12445 TREE_SIDE_EFFECTS (call) = 1;
12446 EXPR_WFL_LINECOL (call) = EXPR_WFL_LINECOL (name);
12447 return call;
12450 /* Build an incomplete assignment expression. */
12452 static tree
12453 build_assignment (op, op_location, lhs, rhs)
12454 int op, op_location;
12455 tree lhs, rhs;
12457 tree assignment;
12458 /* Build the corresponding binop if we deal with a Compound
12459 Assignment operator. Mark the binop sub-tree as part of a
12460 Compound Assignment expression */
12461 if (op != ASSIGN_TK)
12463 rhs = build_binop (BINOP_LOOKUP (op), op_location, lhs, rhs);
12464 COMPOUND_ASSIGN_P (rhs) = 1;
12466 assignment = build (MODIFY_EXPR, NULL_TREE, lhs, rhs);
12467 TREE_SIDE_EFFECTS (assignment) = 1;
12468 EXPR_WFL_LINECOL (assignment) = op_location;
12469 return assignment;
12472 /* Print an INTEGER_CST node in a static buffer, and return the buffer. */
12474 char *
12475 print_int_node (node)
12476 tree node;
12478 static char buffer [80];
12479 if (TREE_CONSTANT_OVERFLOW (node))
12480 sprintf (buffer, "<overflow>");
12482 if (TREE_INT_CST_HIGH (node) == 0)
12483 sprintf (buffer, HOST_WIDE_INT_PRINT_UNSIGNED,
12484 TREE_INT_CST_LOW (node));
12485 else if (TREE_INT_CST_HIGH (node) == -1
12486 && TREE_INT_CST_LOW (node) != 0)
12488 buffer [0] = '-';
12489 sprintf (&buffer [1], HOST_WIDE_INT_PRINT_UNSIGNED,
12490 -TREE_INT_CST_LOW (node));
12492 else
12493 sprintf (buffer, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
12494 TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
12496 return buffer;
12501 /* This section of the code handle assignment check with FINAL
12502 variables. */
12504 static void
12505 reset_static_final_variable_assignment_flag (class)
12506 tree class;
12508 tree field;
12509 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12510 if (CLASS_FINAL_VARIABLE_P (field))
12511 DECL_FIELD_FINAL_LIIC (field) = 0;
12514 /* Figure whether all final static variable have been initialized. */
12516 static void
12517 check_static_final_variable_assignment_flag (class)
12518 tree class;
12520 tree field;
12522 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12523 if (CLASS_FINAL_VARIABLE_P (field)
12524 && !DECL_FIELD_FINAL_IUD (field) && !DECL_FIELD_FINAL_LIIC (field))
12525 parse_error_context
12526 (DECL_FIELD_FINAL_WFL (field),
12527 "Blank static final variable `%s' may not have been initialized",
12528 IDENTIFIER_POINTER (DECL_NAME (field)));
12531 /* This function marks all final variable locally unassigned. */
12533 static void
12534 reset_final_variable_local_assignment_flag (class)
12535 tree class;
12537 tree field;
12538 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12539 if (FINAL_VARIABLE_P (field))
12540 DECL_FIELD_FINAL_LIIC (field) = 0;
12543 /* Figure whether all final variables have beem initialized in MDECL
12544 and mark MDECL accordingly. */
12546 static void
12547 check_final_variable_local_assignment_flag (class, mdecl)
12548 tree class;
12549 tree mdecl;
12551 tree field;
12552 int initialized = 0;
12553 int non_initialized = 0;
12555 if (DECL_FUNCTION_SYNTHETIC_CTOR (mdecl))
12556 return;
12558 /* First find out whether all final variables or no final variable
12559 are initialized in this ctor. We don't take into account final
12560 variable that have been initialized upon declaration. */
12561 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12562 if (FINAL_VARIABLE_P (field) && !DECL_FIELD_FINAL_IUD (field))
12564 if (DECL_FIELD_FINAL_LIIC (field))
12565 initialized++;
12566 else
12567 non_initialized++;
12570 /* There were no non initialized variable and no initialized variable.
12571 This ctor is fine. */
12572 if (!non_initialized && !initialized)
12573 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 1;
12574 /* If no variables have been initialized, that fine. We'll check
12575 later whether this ctor calls a constructor which initializes
12576 them. We mark the ctor as not initializing all its finals. */
12577 else if (initialized == 0)
12578 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 0;
12579 /* If we have a mixed bag, then we have a problem. We need to report
12580 all the variables we're not initializing. */
12581 else if (initialized && non_initialized)
12583 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 0;
12584 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12585 if (FIELD_FINAL (field)
12586 && !DECL_FIELD_FINAL_IUD (field) && !DECL_FIELD_FINAL_LIIC (field))
12588 parse_error_context
12589 (lookup_cl (mdecl),
12590 "Blank final variable `%s' may not have been initialized in this constructor",
12591 IDENTIFIER_POINTER (DECL_NAME (field)));
12592 DECL_FIELD_FINAL_IERR (field) = 1;
12595 /* Otherwise we know this ctor is initializing all its final
12596 variable. We mark it so. */
12597 else
12598 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 1;
12601 /* This function recurses in a simple what through STMT and stops when
12602 it finds a constructor call. It then verifies that the called
12603 constructor initialized its final properly. Return 1 upon success,
12604 0 or -1 otherwise. */
12606 static int
12607 check_final_variable_indirect_assignment (stmt)
12608 tree stmt;
12610 int res;
12611 switch (TREE_CODE (stmt))
12613 case EXPR_WITH_FILE_LOCATION:
12614 return check_final_variable_indirect_assignment (EXPR_WFL_NODE (stmt));
12615 case COMPOUND_EXPR:
12616 res = check_final_variable_indirect_assignment (TREE_OPERAND (stmt, 0));
12617 if (res)
12618 return res;
12619 return check_final_variable_indirect_assignment (TREE_OPERAND (stmt, 1));
12620 case SAVE_EXPR:
12621 return check_final_variable_indirect_assignment (TREE_OPERAND (stmt, 0));
12622 case CALL_EXPR:
12624 tree decl = TREE_OPERAND (stmt, 0);
12625 tree fbody;
12627 if (TREE_CODE (decl) != FUNCTION_DECL)
12628 decl = TREE_OPERAND (TREE_OPERAND (decl, 0), 0);
12629 if (TREE_CODE (decl) != FUNCTION_DECL)
12630 abort ();
12631 if (DECL_FUNCTION_ALL_FINAL_INITIALIZED (decl))
12632 return 1;
12633 if (DECL_FINIT_P (decl) || DECL_CONTEXT (decl) != current_class)
12634 return -1;
12635 fbody = BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (decl));
12636 if (fbody == error_mark_node)
12637 return -1;
12638 fbody = BLOCK_EXPR_BODY (fbody);
12639 return check_final_variable_indirect_assignment (fbody);
12641 default:
12642 break;
12644 return 0;
12647 /* This is the last chance to catch a final variable initialization
12648 problem. This routine will report an error if a final variable was
12649 never (globally) initialized and never reported as not having been
12650 initialized properly. */
12652 static void
12653 check_final_variable_global_assignment_flag (class)
12654 tree class;
12656 tree field, mdecl;
12657 int nnctor = 0;
12659 /* We go through all natural ctors and see whether they're
12660 initializing all their final variables or not. */
12661 current_function_decl = NULL_TREE; /* For the error report. */
12662 for (mdecl = TYPE_METHODS (class); mdecl; mdecl = TREE_CHAIN (mdecl))
12663 if (DECL_CONSTRUCTOR_P (mdecl) && ! DECL_FUNCTION_SYNTHETIC_CTOR (mdecl))
12665 if (!DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl))
12667 /* It doesn't. Maybe it calls a constructor that initializes
12668 them. find out. */
12669 tree fbody = BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (mdecl));
12670 if (fbody == error_mark_node)
12671 continue;
12672 fbody = BLOCK_EXPR_BODY (fbody);
12673 if (check_final_variable_indirect_assignment (fbody) == 1)
12675 DECL_FUNCTION_ALL_FINAL_INITIALIZED (mdecl) = 1;
12676 nnctor++;
12678 else
12679 parse_error_context
12680 (lookup_cl (mdecl),
12681 "Final variable initialization error in this constructor");
12683 else
12684 nnctor++;
12687 /* Finally we catch final variables that never were initialized */
12688 for (field = TYPE_FIELDS (class); field; field = TREE_CHAIN (field))
12689 if (FINAL_VARIABLE_P (field)
12690 /* If the field wasn't initialized upon declaration */
12691 && !DECL_FIELD_FINAL_IUD (field)
12692 /* There wasn't natural ctor in which the field could have been
12693 initialized */
12694 && !nnctor
12695 /* If we never reported a problem with this field */
12696 && !DECL_FIELD_FINAL_IERR (field))
12698 current_function_decl = NULL;
12699 parse_error_context
12700 (DECL_FIELD_FINAL_WFL (field),
12701 "Final variable `%s' hasn't been initialized upon its declaration",
12702 IDENTIFIER_POINTER (DECL_NAME (field)));
12707 /* Return 1 if an assignment to a FINAL is attempted in a non suitable
12708 context. */
12710 static int
12711 check_final_assignment (lvalue, wfl)
12712 tree lvalue, wfl;
12714 if (TREE_CODE (lvalue) != COMPONENT_REF && !JDECL_P (lvalue))
12715 return 0;
12717 if (TREE_CODE (lvalue) == COMPONENT_REF
12718 && JDECL_P (TREE_OPERAND (lvalue, 1)))
12719 lvalue = TREE_OPERAND (lvalue, 1);
12721 if (!FIELD_FINAL (lvalue))
12722 return 0;
12724 /* Now the logic. We can modify a final VARIABLE:
12725 1) in finit$, (its declaration was followed by an initialization,)
12726 2) consistently in each natural ctor, if it wasn't initialized in
12727 finit$ or once in <clinit>. In any other cases, an error should be
12728 reported. */
12729 if (DECL_FINIT_P (current_function_decl))
12731 DECL_FIELD_FINAL_IUD (lvalue) = 1;
12732 return 0;
12735 if (!DECL_FUNCTION_SYNTHETIC_CTOR (current_function_decl)
12736 /* Only if it wasn't given a value upon initialization */
12737 && DECL_LANG_SPECIFIC (lvalue) && !DECL_FIELD_FINAL_IUD (lvalue)
12738 /* If it was never assigned a value in this constructor */
12739 && !DECL_FIELD_FINAL_LIIC (lvalue))
12741 /* Turn the locally assigned flag on, it will be checked later
12742 on to point out at discrepancies. */
12743 DECL_FIELD_FINAL_LIIC (lvalue) = 1;
12744 if (DECL_CLINIT_P (current_function_decl))
12745 DECL_FIELD_FINAL_IUD (lvalue) = 1;
12746 return 0;
12749 /* Other problems should be reported right away. */
12750 parse_error_context
12751 (wfl, "Can't %sassign a value to the final variable `%s'",
12752 (FIELD_STATIC (lvalue) ? "re" : ""),
12753 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
12755 /* Note that static field can be initialized once and only once. */
12756 if (FIELD_STATIC (lvalue))
12757 DECL_FIELD_FINAL_IERR (lvalue) = 1;
12759 return 1;
12762 /* Inline references to java.lang.PRIMTYPE.TYPE when accessed in
12763 read. This is needed to avoid circularities in the implementation
12764 of these fields in libjava. */
12766 static tree
12767 maybe_build_primttype_type_ref (rhs, wfl)
12768 tree rhs, wfl;
12770 tree to_return = NULL_TREE;
12771 tree rhs_type = TREE_TYPE (rhs);
12772 if (TREE_CODE (rhs) == COMPOUND_EXPR)
12774 tree n = TREE_OPERAND (rhs, 1);
12775 if (TREE_CODE (n) == VAR_DECL
12776 && DECL_NAME (n) == TYPE_identifier_node
12777 && rhs_type == class_ptr_type
12778 && TREE_CODE (wfl) == EXPR_WITH_FILE_LOCATION
12779 && TREE_CODE (EXPR_WFL_NODE (wfl)) == IDENTIFIER_NODE)
12781 const char *self_name = IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl));
12782 if (!strncmp (self_name, "java.lang.", 10))
12783 to_return = build_primtype_type_ref (self_name);
12786 return (to_return ? to_return : rhs );
12789 /* 15.25 Assignment operators. */
12791 static tree
12792 patch_assignment (node, wfl_op1, wfl_op2)
12793 tree node;
12794 tree wfl_op1;
12795 tree wfl_op2;
12797 tree rhs = TREE_OPERAND (node, 1);
12798 tree lvalue = TREE_OPERAND (node, 0), llvalue;
12799 tree lhs_type = NULL_TREE, rhs_type, new_rhs = NULL_TREE;
12800 int error_found = 0;
12801 int lvalue_from_array = 0;
12803 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12805 /* Lhs can be a named variable */
12806 if (JDECL_P (lvalue))
12808 lhs_type = TREE_TYPE (lvalue);
12810 /* Or Lhs can be a array acccess. Should that be lvalue ? FIXME +
12811 comment on reason why */
12812 else if (TREE_CODE (wfl_op1) == ARRAY_REF)
12814 lhs_type = TREE_TYPE (lvalue);
12815 lvalue_from_array = 1;
12817 /* Or a field access */
12818 else if (TREE_CODE (lvalue) == COMPONENT_REF)
12819 lhs_type = TREE_TYPE (lvalue);
12820 /* Or a function return slot */
12821 else if (TREE_CODE (lvalue) == RESULT_DECL)
12822 lhs_type = TREE_TYPE (lvalue);
12823 /* Otherwise, we might want to try to write into an optimized static
12824 final, this is an of a different nature, reported further on. */
12825 else if (TREE_CODE (wfl_op1) == EXPR_WITH_FILE_LOCATION
12826 && resolve_expression_name (wfl_op1, &llvalue))
12828 if (!error_found && check_final_assignment (llvalue, wfl_op1))
12830 /* What we should do instead is resetting the all the flags
12831 previously set, exchange lvalue for llvalue and continue. */
12832 error_found = 1;
12833 return error_mark_node;
12835 else
12836 lhs_type = TREE_TYPE (lvalue);
12838 else
12840 parse_error_context (wfl_op1, "Invalid left hand side of assignment");
12841 error_found = 1;
12844 rhs_type = TREE_TYPE (rhs);
12845 /* 5.1 Try the assignment conversion for builtin type. */
12846 new_rhs = try_builtin_assignconv (wfl_op1, lhs_type, rhs);
12848 /* 5.2 If it failed, try a reference conversion */
12849 if (!new_rhs && (new_rhs = try_reference_assignconv (lhs_type, rhs)))
12850 lhs_type = promote_type (rhs_type);
12852 /* 15.25.2 If we have a compound assignment, convert RHS into the
12853 type of the LHS */
12854 else if (COMPOUND_ASSIGN_P (TREE_OPERAND (node, 1)))
12855 new_rhs = convert (lhs_type, rhs);
12857 /* Explicit cast required. This is an error */
12858 if (!new_rhs)
12860 char *t1 = xstrdup (lang_printable_name (TREE_TYPE (rhs), 0));
12861 char *t2 = xstrdup (lang_printable_name (lhs_type, 0));
12862 tree wfl;
12863 char operation [32]; /* Max size known */
12865 /* If the assignment is part of a declaration, we use the WFL of
12866 the declared variable to point out the error and call it a
12867 declaration problem. If the assignment is a genuine =
12868 operator, we call is a operator `=' problem, otherwise we
12869 call it an assignment problem. In both of these last cases,
12870 we use the WFL of the operator to indicate the error. */
12872 if (MODIFY_EXPR_FROM_INITIALIZATION_P (node))
12874 wfl = wfl_op1;
12875 strcpy (operation, "declaration");
12877 else
12879 wfl = wfl_operator;
12880 if (COMPOUND_ASSIGN_P (TREE_OPERAND (node, 1)))
12881 strcpy (operation, "assignment");
12882 else if (TREE_CODE (TREE_OPERAND (node, 0)) == RESULT_DECL)
12883 strcpy (operation, "`return'");
12884 else
12885 strcpy (operation, "`='");
12888 if (!valid_cast_to_p (rhs_type, lhs_type))
12889 parse_error_context
12890 (wfl, "Incompatible type for %s. Can't convert `%s' to `%s'",
12891 operation, t1, t2);
12892 else
12893 parse_error_context (wfl, "Incompatible type for %s. Explicit cast needed to convert `%s' to `%s'",
12894 operation, t1, t2);
12895 free (t1); free (t2);
12896 error_found = 1;
12899 /* Inline read access to java.lang.PRIMTYPE.TYPE */
12900 if (new_rhs)
12901 new_rhs = maybe_build_primttype_type_ref (new_rhs, wfl_op2);
12903 if (error_found)
12904 return error_mark_node;
12906 /* 10.10: Array Store Exception runtime check */
12907 if (!flag_emit_class_files
12908 && !flag_emit_xref
12909 && lvalue_from_array
12910 && JREFERENCE_TYPE_P (TYPE_ARRAY_ELEMENT (lhs_type)))
12912 tree check;
12913 tree base = lvalue;
12915 /* We need to retrieve the right argument for
12916 _Jv_CheckArrayStore. This is somewhat complicated by bounds
12917 and null pointer checks, both of which wrap the operand in
12918 one layer of COMPOUND_EXPR. */
12919 if (TREE_CODE (lvalue) == COMPOUND_EXPR)
12920 base = TREE_OPERAND (lvalue, 0);
12921 else
12923 tree op = TREE_OPERAND (base, 0);
12925 /* We can have a SAVE_EXPR here when doing String +=. */
12926 if (TREE_CODE (op) == SAVE_EXPR)
12927 op = TREE_OPERAND (op, 0);
12928 if (flag_bounds_check)
12929 base = TREE_OPERAND (TREE_OPERAND (op, 1), 0);
12930 else
12931 base = TREE_OPERAND (op, 0);
12934 /* Build the invocation of _Jv_CheckArrayStore */
12935 new_rhs = save_expr (new_rhs);
12936 check = build (CALL_EXPR, void_type_node,
12937 build_address_of (soft_checkarraystore_node),
12938 tree_cons (NULL_TREE, base,
12939 build_tree_list (NULL_TREE, new_rhs)),
12940 NULL_TREE);
12941 TREE_SIDE_EFFECTS (check) = 1;
12943 /* We have to decide on an insertion point */
12944 if (TREE_CODE (lvalue) == COMPOUND_EXPR)
12946 tree t;
12947 if (flag_bounds_check)
12949 t = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (lvalue, 1), 0), 0);
12950 TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (lvalue, 1), 0), 0) =
12951 build (COMPOUND_EXPR, void_type_node, t, check);
12953 else
12954 TREE_OPERAND (lvalue, 1) = build (COMPOUND_EXPR, lhs_type,
12955 check, TREE_OPERAND (lvalue, 1));
12957 else if (flag_bounds_check)
12959 tree hook = lvalue;
12960 tree compound = TREE_OPERAND (lvalue, 0);
12961 tree bound_check, new_compound;
12963 if (TREE_CODE (compound) == SAVE_EXPR)
12965 compound = TREE_OPERAND (compound, 0);
12966 hook = TREE_OPERAND (hook, 0);
12969 /* Find the array bound check, hook the original array access. */
12970 bound_check = TREE_OPERAND (compound, 0);
12971 TREE_OPERAND (hook, 0) = TREE_OPERAND (compound, 1);
12973 /* Make sure the bound check will happen before the store check */
12974 new_compound =
12975 build (COMPOUND_EXPR, void_type_node, bound_check, check);
12977 /* Re-assemble the augmented array access. */
12978 lvalue = build (COMPOUND_EXPR, lhs_type, new_compound, lvalue);
12980 else
12981 lvalue = build (COMPOUND_EXPR, lhs_type, check, lvalue);
12984 /* Final locals can be used as case values in switch
12985 statement. Prepare them for this eventuality. */
12986 if (TREE_CODE (lvalue) == VAR_DECL
12987 && LOCAL_FINAL_P (lvalue)
12988 && TREE_CONSTANT (new_rhs)
12989 && IDENTIFIER_LOCAL_VALUE (DECL_NAME (lvalue))
12990 && JINTEGRAL_TYPE_P (TREE_TYPE (lvalue))
12993 TREE_CONSTANT (lvalue) = 1;
12994 DECL_INITIAL (lvalue) = new_rhs;
12997 TREE_OPERAND (node, 0) = lvalue;
12998 TREE_OPERAND (node, 1) = new_rhs;
12999 TREE_TYPE (node) = lhs_type;
13000 return node;
13003 /* Check that type SOURCE can be cast into type DEST. If the cast
13004 can't occur at all, return 0 otherwise 1. This function is used to
13005 produce accurate error messages on the reasons why an assignment
13006 failed. */
13008 static tree
13009 try_reference_assignconv (lhs_type, rhs)
13010 tree lhs_type, rhs;
13012 tree new_rhs = NULL_TREE;
13013 tree rhs_type = TREE_TYPE (rhs);
13015 if (!JPRIMITIVE_TYPE_P (rhs_type) && JREFERENCE_TYPE_P (lhs_type))
13017 /* `null' may be assigned to any reference type */
13018 if (rhs == null_pointer_node)
13019 new_rhs = null_pointer_node;
13020 /* Try the reference assignment conversion */
13021 else if (valid_ref_assignconv_cast_p (rhs_type, lhs_type, 0))
13022 new_rhs = rhs;
13023 /* This is a magic assignment that we process differently */
13024 else if (TREE_CODE (rhs) == JAVA_EXC_OBJ_EXPR)
13025 new_rhs = rhs;
13027 return new_rhs;
13030 /* Check that RHS can be converted into LHS_TYPE by the assignment
13031 conversion (5.2), for the cases of RHS being a builtin type. Return
13032 NULL_TREE if the conversion fails or if because RHS isn't of a
13033 builtin type. Return a converted RHS if the conversion is possible. */
13035 static tree
13036 try_builtin_assignconv (wfl_op1, lhs_type, rhs)
13037 tree wfl_op1, lhs_type, rhs;
13039 tree new_rhs = NULL_TREE;
13040 tree rhs_type = TREE_TYPE (rhs);
13042 /* Handle boolean specially. */
13043 if (TREE_CODE (rhs_type) == BOOLEAN_TYPE
13044 || TREE_CODE (lhs_type) == BOOLEAN_TYPE)
13046 if (TREE_CODE (rhs_type) == BOOLEAN_TYPE
13047 && TREE_CODE (lhs_type) == BOOLEAN_TYPE)
13048 new_rhs = rhs;
13051 /* Zero accepted everywhere */
13052 else if (TREE_CODE (rhs) == INTEGER_CST
13053 && TREE_INT_CST_HIGH (rhs) == 0 && TREE_INT_CST_LOW (rhs) == 0
13054 && JPRIMITIVE_TYPE_P (rhs_type))
13055 new_rhs = convert (lhs_type, rhs);
13057 /* 5.1.1 Try Identity Conversion,
13058 5.1.2 Try Widening Primitive Conversion */
13059 else if (valid_builtin_assignconv_identity_widening_p (lhs_type, rhs_type))
13060 new_rhs = convert (lhs_type, rhs);
13062 /* Try a narrowing primitive conversion (5.1.3):
13063 - expression is a constant expression of type int AND
13064 - variable is byte, short or char AND
13065 - The value of the expression is representable in the type of the
13066 variable */
13067 else if (rhs_type == int_type_node && TREE_CONSTANT (rhs)
13068 && (lhs_type == byte_type_node || lhs_type == char_type_node
13069 || lhs_type == short_type_node))
13071 if (int_fits_type_p (rhs, lhs_type))
13072 new_rhs = convert (lhs_type, rhs);
13073 else if (wfl_op1) /* Might be called with a NULL */
13074 parse_warning_context
13075 (wfl_op1, "Constant expression `%s' too wide for narrowing primitive conversion to `%s'",
13076 print_int_node (rhs), lang_printable_name (lhs_type, 0));
13077 /* Reported a warning that will turn into an error further
13078 down, so we don't return */
13081 return new_rhs;
13084 /* Return 1 if RHS_TYPE can be converted to LHS_TYPE by identity
13085 conversion (5.1.1) or widening primitive conversion (5.1.2). Return
13086 0 is the conversion test fails. This implements parts the method
13087 invocation convertion (5.3). */
13089 static int
13090 valid_builtin_assignconv_identity_widening_p (lhs_type, rhs_type)
13091 tree lhs_type, rhs_type;
13093 /* 5.1.1: This is the identity conversion part. */
13094 if (lhs_type == rhs_type)
13095 return 1;
13097 /* Reject non primitive types and boolean conversions. */
13098 if (!JNUMERIC_TYPE_P (lhs_type) || !JNUMERIC_TYPE_P (rhs_type))
13099 return 0;
13101 /* 5.1.2: widening primitive conversion. byte, even if it's smaller
13102 than a char can't be converted into a char. Short can't too, but
13103 the < test below takes care of that */
13104 if (lhs_type == char_type_node && rhs_type == byte_type_node)
13105 return 0;
13107 /* Accept all promoted type here. Note, we can't use <= in the test
13108 below, because we still need to bounce out assignments of short
13109 to char and the likes */
13110 if (lhs_type == int_type_node
13111 && (rhs_type == promoted_byte_type_node
13112 || rhs_type == promoted_short_type_node
13113 || rhs_type == promoted_char_type_node
13114 || rhs_type == promoted_boolean_type_node))
13115 return 1;
13117 /* From here, an integral is widened if its precision is smaller
13118 than the precision of the LHS or if the LHS is a floating point
13119 type, or the RHS is a float and the RHS a double. */
13120 if ((JINTEGRAL_TYPE_P (rhs_type) && JINTEGRAL_TYPE_P (lhs_type)
13121 && (TYPE_PRECISION (rhs_type) < TYPE_PRECISION (lhs_type)))
13122 || (JINTEGRAL_TYPE_P (rhs_type) && JFLOAT_TYPE_P (lhs_type))
13123 || (rhs_type == float_type_node && lhs_type == double_type_node))
13124 return 1;
13126 return 0;
13129 /* Check that something of SOURCE type can be assigned or cast to
13130 something of DEST type at runtime. Return 1 if the operation is
13131 valid, 0 otherwise. If CAST is set to 1, we're treating the case
13132 were SOURCE is cast into DEST, which borrows a lot of the
13133 assignment check. */
13135 static int
13136 valid_ref_assignconv_cast_p (source, dest, cast)
13137 tree source;
13138 tree dest;
13139 int cast;
13141 /* SOURCE or DEST might be null if not from a declared entity. */
13142 if (!source || !dest)
13143 return 0;
13144 if (JNULLP_TYPE_P (source))
13145 return 1;
13146 if (TREE_CODE (source) == POINTER_TYPE)
13147 source = TREE_TYPE (source);
13148 if (TREE_CODE (dest) == POINTER_TYPE)
13149 dest = TREE_TYPE (dest);
13151 /* If source and dest are being compiled from bytecode, they may need to
13152 be loaded. */
13153 if (CLASS_P (source) && !CLASS_LOADED_P (source))
13155 load_class (source, 1);
13156 safe_layout_class (source);
13158 if (CLASS_P (dest) && !CLASS_LOADED_P (dest))
13160 load_class (dest, 1);
13161 safe_layout_class (dest);
13164 /* Case where SOURCE is a class type */
13165 if (TYPE_CLASS_P (source))
13167 if (TYPE_CLASS_P (dest))
13168 return (source == dest
13169 || inherits_from_p (source, dest)
13170 || (cast && inherits_from_p (dest, source)));
13171 if (TYPE_INTERFACE_P (dest))
13173 /* If doing a cast and SOURCE is final, the operation is
13174 always correct a compile time (because even if SOURCE
13175 does not implement DEST, a subclass of SOURCE might). */
13176 if (cast && !CLASS_FINAL (TYPE_NAME (source)))
13177 return 1;
13178 /* Otherwise, SOURCE must implement DEST */
13179 return interface_of_p (dest, source);
13181 /* DEST is an array, cast permited if SOURCE is of Object type */
13182 return (cast && source == object_type_node ? 1 : 0);
13184 if (TYPE_INTERFACE_P (source))
13186 if (TYPE_CLASS_P (dest))
13188 /* If not casting, DEST must be the Object type */
13189 if (!cast)
13190 return dest == object_type_node;
13191 /* We're doing a cast. The cast is always valid is class
13192 DEST is not final, otherwise, DEST must implement SOURCE */
13193 else if (!CLASS_FINAL (TYPE_NAME (dest)))
13194 return 1;
13195 else
13196 return interface_of_p (source, dest);
13198 if (TYPE_INTERFACE_P (dest))
13200 /* If doing a cast, then if SOURCE and DEST contain method
13201 with the same signature but different return type, then
13202 this is a (compile time) error */
13203 if (cast)
13205 tree method_source, method_dest;
13206 tree source_type;
13207 tree source_sig;
13208 tree source_name;
13209 for (method_source = TYPE_METHODS (source); method_source;
13210 method_source = TREE_CHAIN (method_source))
13212 source_sig =
13213 build_java_argument_signature (TREE_TYPE (method_source));
13214 source_type = TREE_TYPE (TREE_TYPE (method_source));
13215 source_name = DECL_NAME (method_source);
13216 for (method_dest = TYPE_METHODS (dest);
13217 method_dest; method_dest = TREE_CHAIN (method_dest))
13218 if (source_sig ==
13219 build_java_argument_signature (TREE_TYPE (method_dest))
13220 && source_name == DECL_NAME (method_dest)
13221 && source_type != TREE_TYPE (TREE_TYPE (method_dest)))
13222 return 0;
13224 return 1;
13226 else
13227 return source == dest || interface_of_p (dest, source);
13229 else
13231 /* Array */
13232 return (cast
13233 && (DECL_NAME (TYPE_NAME (source)) == java_lang_cloneable
13234 || (DECL_NAME (TYPE_NAME (source))
13235 == java_io_serializable)));
13238 if (TYPE_ARRAY_P (source))
13240 if (TYPE_CLASS_P (dest))
13241 return dest == object_type_node;
13242 /* Can't cast an array to an interface unless the interface is
13243 java.lang.Cloneable or java.io.Serializable. */
13244 if (TYPE_INTERFACE_P (dest))
13245 return (DECL_NAME (TYPE_NAME (dest)) == java_lang_cloneable
13246 || DECL_NAME (TYPE_NAME (dest)) == java_io_serializable);
13247 else /* Arrays */
13249 tree source_element_type = TYPE_ARRAY_ELEMENT (source);
13250 tree dest_element_type = TYPE_ARRAY_ELEMENT (dest);
13252 /* In case of severe errors, they turn out null */
13253 if (!dest_element_type || !source_element_type)
13254 return 0;
13255 if (source_element_type == dest_element_type)
13256 return 1;
13257 return valid_ref_assignconv_cast_p (source_element_type,
13258 dest_element_type, cast);
13260 return 0;
13262 return 0;
13265 static int
13266 valid_cast_to_p (source, dest)
13267 tree source;
13268 tree dest;
13270 if (TREE_CODE (source) == POINTER_TYPE)
13271 source = TREE_TYPE (source);
13272 if (TREE_CODE (dest) == POINTER_TYPE)
13273 dest = TREE_TYPE (dest);
13275 if (TREE_CODE (source) == RECORD_TYPE && TREE_CODE (dest) == RECORD_TYPE)
13276 return valid_ref_assignconv_cast_p (source, dest, 1);
13278 else if (JNUMERIC_TYPE_P (source) && JNUMERIC_TYPE_P (dest))
13279 return 1;
13281 else if (TREE_CODE (source) == BOOLEAN_TYPE
13282 && TREE_CODE (dest) == BOOLEAN_TYPE)
13283 return 1;
13285 return 0;
13288 static tree
13289 do_unary_numeric_promotion (arg)
13290 tree arg;
13292 tree type = TREE_TYPE (arg);
13293 if ((TREE_CODE (type) == INTEGER_TYPE && TYPE_PRECISION (type) < 32)
13294 || TREE_CODE (type) == CHAR_TYPE)
13295 arg = convert (int_type_node, arg);
13296 return arg;
13299 /* Return a non zero value if SOURCE can be converted into DEST using
13300 the method invocation conversion rule (5.3). */
13301 static int
13302 valid_method_invocation_conversion_p (dest, source)
13303 tree dest, source;
13305 return ((JPRIMITIVE_TYPE_P (source) && JPRIMITIVE_TYPE_P (dest)
13306 && valid_builtin_assignconv_identity_widening_p (dest, source))
13307 || ((JREFERENCE_TYPE_P (source) || JNULLP_TYPE_P (source))
13308 && (JREFERENCE_TYPE_P (dest) || JNULLP_TYPE_P (dest))
13309 && valid_ref_assignconv_cast_p (source, dest, 0)));
13312 /* Build an incomplete binop expression. */
13314 static tree
13315 build_binop (op, op_location, op1, op2)
13316 enum tree_code op;
13317 int op_location;
13318 tree op1, op2;
13320 tree binop = build (op, NULL_TREE, op1, op2);
13321 TREE_SIDE_EFFECTS (binop) = 1;
13322 /* Store the location of the operator, for better error report. The
13323 string of the operator will be rebuild based on the OP value. */
13324 EXPR_WFL_LINECOL (binop) = op_location;
13325 return binop;
13328 /* Build the string of the operator retained by NODE. If NODE is part
13329 of a compound expression, add an '=' at the end of the string. This
13330 function is called when an error needs to be reported on an
13331 operator. The string is returned as a pointer to a static character
13332 buffer. */
13334 static char *
13335 operator_string (node)
13336 tree node;
13338 #define BUILD_OPERATOR_STRING(S) \
13340 sprintf (buffer, "%s%s", S, (COMPOUND_ASSIGN_P (node) ? "=" : "")); \
13341 return buffer; \
13344 static char buffer [10];
13345 switch (TREE_CODE (node))
13347 case MULT_EXPR: BUILD_OPERATOR_STRING ("*");
13348 case RDIV_EXPR: BUILD_OPERATOR_STRING ("/");
13349 case TRUNC_MOD_EXPR: BUILD_OPERATOR_STRING ("%");
13350 case PLUS_EXPR: BUILD_OPERATOR_STRING ("+");
13351 case MINUS_EXPR: BUILD_OPERATOR_STRING ("-");
13352 case LSHIFT_EXPR: BUILD_OPERATOR_STRING ("<<");
13353 case RSHIFT_EXPR: BUILD_OPERATOR_STRING (">>");
13354 case URSHIFT_EXPR: BUILD_OPERATOR_STRING (">>>");
13355 case BIT_AND_EXPR: BUILD_OPERATOR_STRING ("&");
13356 case BIT_XOR_EXPR: BUILD_OPERATOR_STRING ("^");
13357 case BIT_IOR_EXPR: BUILD_OPERATOR_STRING ("|");
13358 case TRUTH_ANDIF_EXPR: BUILD_OPERATOR_STRING ("&&");
13359 case TRUTH_ORIF_EXPR: BUILD_OPERATOR_STRING ("||");
13360 case EQ_EXPR: BUILD_OPERATOR_STRING ("==");
13361 case NE_EXPR: BUILD_OPERATOR_STRING ("!=");
13362 case GT_EXPR: BUILD_OPERATOR_STRING (">");
13363 case GE_EXPR: BUILD_OPERATOR_STRING (">=");
13364 case LT_EXPR: BUILD_OPERATOR_STRING ("<");
13365 case LE_EXPR: BUILD_OPERATOR_STRING ("<=");
13366 case UNARY_PLUS_EXPR: BUILD_OPERATOR_STRING ("+");
13367 case NEGATE_EXPR: BUILD_OPERATOR_STRING ("-");
13368 case TRUTH_NOT_EXPR: BUILD_OPERATOR_STRING ("!");
13369 case BIT_NOT_EXPR: BUILD_OPERATOR_STRING ("~");
13370 case PREINCREMENT_EXPR: /* Fall through */
13371 case POSTINCREMENT_EXPR: BUILD_OPERATOR_STRING ("++");
13372 case PREDECREMENT_EXPR: /* Fall through */
13373 case POSTDECREMENT_EXPR: BUILD_OPERATOR_STRING ("--");
13374 default:
13375 internal_error ("unregistered operator %s",
13376 tree_code_name [TREE_CODE (node)]);
13378 return NULL;
13379 #undef BUILD_OPERATOR_STRING
13382 /* Return 1 if VAR_ACCESS1 is equivalent to VAR_ACCESS2. */
13384 static int
13385 java_decl_equiv (var_acc1, var_acc2)
13386 tree var_acc1, var_acc2;
13388 if (JDECL_P (var_acc1))
13389 return (var_acc1 == var_acc2);
13391 return (TREE_CODE (var_acc1) == COMPONENT_REF
13392 && TREE_CODE (var_acc2) == COMPONENT_REF
13393 && TREE_OPERAND (TREE_OPERAND (var_acc1, 0), 0)
13394 == TREE_OPERAND (TREE_OPERAND (var_acc2, 0), 0)
13395 && TREE_OPERAND (var_acc1, 1) == TREE_OPERAND (var_acc2, 1));
13398 /* Return a non zero value if CODE is one of the operators that can be
13399 used in conjunction with the `=' operator in a compound assignment. */
13401 static int
13402 binop_compound_p (code)
13403 enum tree_code code;
13405 int i;
13406 for (i = 0; i < BINOP_COMPOUND_CANDIDATES; i++)
13407 if (binop_lookup [i] == code)
13408 break;
13410 return i < BINOP_COMPOUND_CANDIDATES;
13413 /* Reorganize after a fold to get SAVE_EXPR to generate what we want. */
13415 static tree
13416 java_refold (t)
13417 tree t;
13419 tree c, b, ns, decl;
13421 if (TREE_CODE (t) != MODIFY_EXPR)
13422 return t;
13424 c = TREE_OPERAND (t, 1);
13425 if (! (c && TREE_CODE (c) == COMPOUND_EXPR
13426 && TREE_CODE (TREE_OPERAND (c, 0)) == MODIFY_EXPR
13427 && binop_compound_p (TREE_CODE (TREE_OPERAND (c, 1)))))
13428 return t;
13430 /* Now the left branch of the binary operator. */
13431 b = TREE_OPERAND (TREE_OPERAND (c, 1), 0);
13432 if (! (b && TREE_CODE (b) == NOP_EXPR
13433 && TREE_CODE (TREE_OPERAND (b, 0)) == SAVE_EXPR))
13434 return t;
13436 ns = TREE_OPERAND (TREE_OPERAND (b, 0), 0);
13437 if (! (ns && TREE_CODE (ns) == NOP_EXPR
13438 && TREE_CODE (TREE_OPERAND (ns, 0)) == SAVE_EXPR))
13439 return t;
13441 decl = TREE_OPERAND (TREE_OPERAND (ns, 0), 0);
13442 if ((JDECL_P (decl) || TREE_CODE (decl) == COMPONENT_REF)
13443 /* It's got to be the an equivalent decl */
13444 && java_decl_equiv (decl, TREE_OPERAND (TREE_OPERAND (c, 0), 0)))
13446 /* Shorten the NOP_EXPR/SAVE_EXPR path. */
13447 TREE_OPERAND (TREE_OPERAND (c, 1), 0) = TREE_OPERAND (ns, 0);
13448 /* Substitute the COMPOUND_EXPR by the BINOP_EXPR */
13449 TREE_OPERAND (t, 1) = TREE_OPERAND (c, 1);
13450 /* Change the right part of the BINOP_EXPR */
13451 TREE_OPERAND (TREE_OPERAND (t, 1), 1) = TREE_OPERAND (c, 0);
13454 return t;
13457 /* Binary operators (15.16 up to 15.18). We return error_mark_node on
13458 errors but we modify NODE so that it contains the type computed
13459 according to the expression, when it's fixed. Otherwise, we write
13460 error_mark_node as the type. It allows us to further the analysis
13461 of remaining nodes and detects more errors in certain cases. */
13463 static tree
13464 patch_binop (node, wfl_op1, wfl_op2)
13465 tree node;
13466 tree wfl_op1;
13467 tree wfl_op2;
13469 tree op1 = TREE_OPERAND (node, 0);
13470 tree op2 = TREE_OPERAND (node, 1);
13471 tree op1_type = TREE_TYPE (op1);
13472 tree op2_type = TREE_TYPE (op2);
13473 tree prom_type = NULL_TREE, cn;
13474 enum tree_code code = TREE_CODE (node);
13476 /* If 1, tell the routine that we have to return error_mark_node
13477 after checking for the initialization of the RHS */
13478 int error_found = 0;
13480 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
13482 /* If either op<n>_type are NULL, this might be early signs of an
13483 error situation, unless it's too early to tell (in case we're
13484 handling a `+', `==', `!=' or `instanceof'.) We want to set op<n>_type
13485 correctly so the error can be later on reported accurately. */
13486 if (! (code == PLUS_EXPR || code == NE_EXPR
13487 || code == EQ_EXPR || code == INSTANCEOF_EXPR))
13489 tree n;
13490 if (! op1_type)
13492 n = java_complete_tree (op1);
13493 op1_type = TREE_TYPE (n);
13495 if (! op2_type)
13497 n = java_complete_tree (op2);
13498 op2_type = TREE_TYPE (n);
13502 switch (code)
13504 /* 15.16 Multiplicative operators */
13505 case MULT_EXPR: /* 15.16.1 Multiplication Operator * */
13506 case RDIV_EXPR: /* 15.16.2 Division Operator / */
13507 case TRUNC_DIV_EXPR: /* 15.16.2 Integral type Division Operator / */
13508 case TRUNC_MOD_EXPR: /* 15.16.3 Remainder operator % */
13509 if (!JNUMERIC_TYPE_P (op1_type) || !JNUMERIC_TYPE_P (op2_type))
13511 if (!JNUMERIC_TYPE_P (op1_type))
13512 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13513 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13514 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13515 TREE_TYPE (node) = error_mark_node;
13516 error_found = 1;
13517 break;
13519 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13521 /* Detect integral division by zero */
13522 if ((code == RDIV_EXPR || code == TRUNC_MOD_EXPR)
13523 && TREE_CODE (prom_type) == INTEGER_TYPE
13524 && (op2 == integer_zero_node || op2 == long_zero_node ||
13525 (TREE_CODE (op2) == INTEGER_CST &&
13526 ! TREE_INT_CST_LOW (op2) && ! TREE_INT_CST_HIGH (op2))))
13528 parse_warning_context (wfl_operator, "Evaluating this expression will result in an arithmetic exception being thrown.");
13529 TREE_CONSTANT (node) = 0;
13532 /* Change the division operator if necessary */
13533 if (code == RDIV_EXPR && TREE_CODE (prom_type) == INTEGER_TYPE)
13534 TREE_SET_CODE (node, TRUNC_DIV_EXPR);
13536 /* Before divisions as is disapear, try to simplify and bail if
13537 applicable, otherwise we won't perform even simple
13538 simplifications like (1-1)/3. We can't do that with floating
13539 point number, folds can't handle them at this stage. */
13540 if (code == RDIV_EXPR && TREE_CONSTANT (op1) && TREE_CONSTANT (op2)
13541 && JINTEGRAL_TYPE_P (op1) && JINTEGRAL_TYPE_P (op2))
13543 TREE_TYPE (node) = prom_type;
13544 node = fold (node);
13545 if (TREE_CODE (node) != code)
13546 return node;
13549 if (TREE_CODE (prom_type) == INTEGER_TYPE
13550 && flag_use_divide_subroutine
13551 && ! flag_emit_class_files
13552 && (code == RDIV_EXPR || code == TRUNC_MOD_EXPR))
13553 return build_java_soft_divmod (TREE_CODE (node), prom_type, op1, op2);
13555 /* This one is more complicated. FLOATs are processed by a
13556 function call to soft_fmod. Duplicate the value of the
13557 COMPOUND_ASSIGN_P flag. */
13558 if (code == TRUNC_MOD_EXPR)
13560 tree mod = build_java_binop (TRUNC_MOD_EXPR, prom_type, op1, op2);
13561 COMPOUND_ASSIGN_P (mod) = COMPOUND_ASSIGN_P (node);
13562 TREE_SIDE_EFFECTS (mod)
13563 = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13564 return mod;
13566 break;
13568 /* 15.17 Additive Operators */
13569 case PLUS_EXPR: /* 15.17.1 String Concatenation Operator + */
13571 /* Operation is valid if either one argument is a string
13572 constant, a String object or a StringBuffer crafted for the
13573 purpose of the a previous usage of the String concatenation
13574 operator */
13576 if (TREE_CODE (op1) == STRING_CST
13577 || TREE_CODE (op2) == STRING_CST
13578 || JSTRING_TYPE_P (op1_type)
13579 || JSTRING_TYPE_P (op2_type)
13580 || IS_CRAFTED_STRING_BUFFER_P (op1)
13581 || IS_CRAFTED_STRING_BUFFER_P (op2))
13582 return build_string_concatenation (op1, op2);
13584 case MINUS_EXPR: /* 15.17.2 Additive Operators (+ and -) for
13585 Numeric Types */
13586 if (!JNUMERIC_TYPE_P (op1_type) || !JNUMERIC_TYPE_P (op2_type))
13588 if (!JNUMERIC_TYPE_P (op1_type))
13589 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13590 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13591 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13592 TREE_TYPE (node) = error_mark_node;
13593 error_found = 1;
13594 break;
13596 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13597 break;
13599 /* 15.18 Shift Operators */
13600 case LSHIFT_EXPR:
13601 case RSHIFT_EXPR:
13602 case URSHIFT_EXPR:
13603 if (!JINTEGRAL_TYPE_P (op1_type) || !JINTEGRAL_TYPE_P (op2_type))
13605 if (!JINTEGRAL_TYPE_P (op1_type))
13606 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op1_type);
13607 else
13609 if (JNUMERIC_TYPE_P (op2_type))
13610 parse_error_context (wfl_operator,
13611 "Incompatible type for `%s'. Explicit cast needed to convert shift distance from `%s' to integral",
13612 operator_string (node),
13613 lang_printable_name (op2_type, 0));
13614 else
13615 parse_error_context (wfl_operator,
13616 "Incompatible type for `%s'. Can't convert shift distance from `%s' to integral",
13617 operator_string (node),
13618 lang_printable_name (op2_type, 0));
13620 TREE_TYPE (node) = error_mark_node;
13621 error_found = 1;
13622 break;
13625 /* Unary numeric promotion (5.6.1) is performed on each operand
13626 separatly */
13627 op1 = do_unary_numeric_promotion (op1);
13628 op2 = do_unary_numeric_promotion (op2);
13630 /* The type of the shift expression is the type of the promoted
13631 type of the left-hand operand */
13632 prom_type = TREE_TYPE (op1);
13634 /* Shift int only up to 0x1f and long up to 0x3f */
13635 if (prom_type == int_type_node)
13636 op2 = fold (build (BIT_AND_EXPR, int_type_node, op2,
13637 build_int_2 (0x1f, 0)));
13638 else
13639 op2 = fold (build (BIT_AND_EXPR, int_type_node, op2,
13640 build_int_2 (0x3f, 0)));
13642 /* The >>> operator is a >> operating on unsigned quantities */
13643 if (code == URSHIFT_EXPR && ! flag_emit_class_files)
13645 tree to_return;
13646 tree utype = unsigned_type (prom_type);
13647 op1 = convert (utype, op1);
13648 TREE_SET_CODE (node, RSHIFT_EXPR);
13649 TREE_OPERAND (node, 0) = op1;
13650 TREE_OPERAND (node, 1) = op2;
13651 TREE_TYPE (node) = utype;
13652 to_return = convert (prom_type, node);
13653 /* Copy the original value of the COMPOUND_ASSIGN_P flag */
13654 COMPOUND_ASSIGN_P (to_return) = COMPOUND_ASSIGN_P (node);
13655 TREE_SIDE_EFFECTS (to_return)
13656 = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13657 return to_return;
13659 break;
13661 /* 15.19.1 Type Comparison Operator instaceof */
13662 case INSTANCEOF_EXPR:
13664 TREE_TYPE (node) = boolean_type_node;
13666 if (!(op2_type = resolve_type_during_patch (op2)))
13667 return error_mark_node;
13669 /* The first operand must be a reference type or the null type */
13670 if (!JREFERENCE_TYPE_P (op1_type) && op1 != null_pointer_node)
13671 error_found = 1; /* Error reported further below */
13673 /* The second operand must be a reference type */
13674 if (!JREFERENCE_TYPE_P (op2_type))
13676 SET_WFL_OPERATOR (wfl_operator, node, wfl_op2);
13677 parse_error_context
13678 (wfl_operator, "Invalid argument `%s' for `instanceof'",
13679 lang_printable_name (op2_type, 0));
13680 error_found = 1;
13683 if (!error_found && valid_ref_assignconv_cast_p (op1_type, op2_type, 1))
13685 /* If the first operand is null, the result is always false */
13686 if (op1 == null_pointer_node)
13687 return boolean_false_node;
13688 else if (flag_emit_class_files)
13690 TREE_OPERAND (node, 1) = op2_type;
13691 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op1);
13692 return node;
13694 /* Otherwise we have to invoke instance of to figure it out */
13695 else
13696 return build_instanceof (op1, op2_type);
13698 /* There is no way the expression operand can be an instance of
13699 the type operand. This is a compile time error. */
13700 else
13702 char *t1 = xstrdup (lang_printable_name (op1_type, 0));
13703 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
13704 parse_error_context
13705 (wfl_operator, "Impossible for `%s' to be instance of `%s'",
13706 t1, lang_printable_name (op2_type, 0));
13707 free (t1);
13708 error_found = 1;
13711 break;
13713 /* 15.21 Bitwise and Logical Operators */
13714 case BIT_AND_EXPR:
13715 case BIT_XOR_EXPR:
13716 case BIT_IOR_EXPR:
13717 if (JINTEGRAL_TYPE_P (op1_type) && JINTEGRAL_TYPE_P (op2_type))
13718 /* Binary numeric promotion is performed on both operand and the
13719 expression retain that type */
13720 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13722 else if (TREE_CODE (op1_type) == BOOLEAN_TYPE
13723 && TREE_CODE (op1_type) == BOOLEAN_TYPE)
13724 /* The type of the bitwise operator expression is BOOLEAN */
13725 prom_type = boolean_type_node;
13726 else
13728 if (!JINTEGRAL_TYPE_P (op1_type))
13729 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op1_type);
13730 if (!JINTEGRAL_TYPE_P (op2_type) && (op1_type != op2_type))
13731 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op2_type);
13732 TREE_TYPE (node) = error_mark_node;
13733 error_found = 1;
13734 /* Insert a break here if adding thing before the switch's
13735 break for this case */
13737 break;
13739 /* 15.22 Conditional-And Operator */
13740 case TRUTH_ANDIF_EXPR:
13741 /* 15.23 Conditional-Or Operator */
13742 case TRUTH_ORIF_EXPR:
13743 /* Operands must be of BOOLEAN type */
13744 if (TREE_CODE (op1_type) != BOOLEAN_TYPE ||
13745 TREE_CODE (op2_type) != BOOLEAN_TYPE)
13747 if (TREE_CODE (op1_type) != BOOLEAN_TYPE)
13748 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op1_type);
13749 if (TREE_CODE (op2_type) != BOOLEAN_TYPE && (op1_type != op2_type))
13750 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op2_type);
13751 TREE_TYPE (node) = boolean_type_node;
13752 error_found = 1;
13753 break;
13755 /* The type of the conditional operators is BOOLEAN */
13756 prom_type = boolean_type_node;
13757 break;
13759 /* 15.19.1 Numerical Comparison Operators <, <=, >, >= */
13760 case LT_EXPR:
13761 case GT_EXPR:
13762 case LE_EXPR:
13763 case GE_EXPR:
13764 /* The type of each of the operands must be a primitive numeric
13765 type */
13766 if (!JNUMERIC_TYPE_P (op1_type) || ! JNUMERIC_TYPE_P (op2_type))
13768 if (!JNUMERIC_TYPE_P (op1_type))
13769 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13770 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13771 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13772 TREE_TYPE (node) = boolean_type_node;
13773 error_found = 1;
13774 break;
13776 /* Binary numeric promotion is performed on the operands */
13777 binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13778 /* The type of the relation expression is always BOOLEAN */
13779 prom_type = boolean_type_node;
13780 break;
13782 /* 15.20 Equality Operator */
13783 case EQ_EXPR:
13784 case NE_EXPR:
13785 /* It's time for us to patch the strings. */
13786 if ((cn = patch_string (op1)))
13788 op1 = cn;
13789 op1_type = TREE_TYPE (op1);
13791 if ((cn = patch_string (op2)))
13793 op2 = cn;
13794 op2_type = TREE_TYPE (op2);
13797 /* 15.20.1 Numerical Equality Operators == and != */
13798 /* Binary numeric promotion is performed on the operands */
13799 if (JNUMERIC_TYPE_P (op1_type) && JNUMERIC_TYPE_P (op2_type))
13800 binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13802 /* 15.20.2 Boolean Equality Operators == and != */
13803 else if (TREE_CODE (op1_type) == BOOLEAN_TYPE &&
13804 TREE_CODE (op2_type) == BOOLEAN_TYPE)
13805 ; /* Nothing to do here */
13807 /* 15.20.3 Reference Equality Operators == and != */
13808 /* Types have to be either references or the null type. If
13809 they're references, it must be possible to convert either
13810 type to the other by casting conversion. */
13811 else if (op1 == null_pointer_node || op2 == null_pointer_node
13812 || (JREFERENCE_TYPE_P (op1_type) && JREFERENCE_TYPE_P (op2_type)
13813 && (valid_ref_assignconv_cast_p (op1_type, op2_type, 1)
13814 || valid_ref_assignconv_cast_p (op2_type,
13815 op1_type, 1))))
13816 ; /* Nothing to do here */
13818 /* Else we have an error figure what can't be converted into
13819 what and report the error */
13820 else
13822 char *t1;
13823 t1 = xstrdup (lang_printable_name (op1_type, 0));
13824 parse_error_context
13825 (wfl_operator,
13826 "Incompatible type for `%s'. Can't convert `%s' to `%s'",
13827 operator_string (node), t1,
13828 lang_printable_name (op2_type, 0));
13829 free (t1);
13830 TREE_TYPE (node) = boolean_type_node;
13831 error_found = 1;
13832 break;
13834 prom_type = boolean_type_node;
13835 break;
13836 default:
13837 abort ();
13840 if (error_found)
13841 return error_mark_node;
13843 TREE_OPERAND (node, 0) = op1;
13844 TREE_OPERAND (node, 1) = op2;
13845 TREE_TYPE (node) = prom_type;
13846 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13848 if (flag_emit_xref)
13849 return node;
13851 /* fold does not respect side-effect order as required for Java but not C.
13852 * Also, it sometimes create SAVE_EXPRs which are bad when emitting
13853 * bytecode.
13855 if (flag_emit_class_files ? (TREE_CONSTANT (op1) && TREE_CONSTANT (op2))
13856 : ! TREE_SIDE_EFFECTS (node))
13857 node = fold (node);
13858 return node;
13861 /* Concatenate the STRING_CST CSTE and STRING. When AFTER is a non
13862 zero value, the value of CSTE comes after the valude of STRING */
13864 static tree
13865 do_merge_string_cste (cste, string, string_len, after)
13866 tree cste;
13867 const char *string;
13868 int string_len, after;
13870 const char *old = TREE_STRING_POINTER (cste);
13871 int old_len = TREE_STRING_LENGTH (cste);
13872 int len = old_len + string_len;
13873 char *new = alloca (len+1);
13875 if (after)
13877 memcpy (new, string, string_len);
13878 memcpy (&new [string_len], old, old_len);
13880 else
13882 memcpy (new, old, old_len);
13883 memcpy (&new [old_len], string, string_len);
13885 new [len] = '\0';
13886 return build_string (len, new);
13889 /* Tries to merge OP1 (a STRING_CST) and OP2 (if suitable). Return a
13890 new STRING_CST on success, NULL_TREE on failure */
13892 static tree
13893 merge_string_cste (op1, op2, after)
13894 tree op1, op2;
13895 int after;
13897 /* Handle two string constants right away */
13898 if (TREE_CODE (op2) == STRING_CST)
13899 return do_merge_string_cste (op1, TREE_STRING_POINTER (op2),
13900 TREE_STRING_LENGTH (op2), after);
13902 /* Reasonable integer constant can be treated right away */
13903 if (TREE_CODE (op2) == INTEGER_CST && !TREE_CONSTANT_OVERFLOW (op2))
13905 static const char *boolean_true = "true";
13906 static const char *boolean_false = "false";
13907 static const char *null_pointer = "null";
13908 char ch[3];
13909 const char *string;
13911 if (op2 == boolean_true_node)
13912 string = boolean_true;
13913 else if (op2 == boolean_false_node)
13914 string = boolean_false;
13915 else if (op2 == null_pointer_node)
13916 string = null_pointer;
13917 else if (TREE_TYPE (op2) == char_type_node)
13919 ch[0] = (char )TREE_INT_CST_LOW (op2);
13920 ch[1] = '\0';
13921 string = ch;
13923 else
13924 string = print_int_node (op2);
13926 return do_merge_string_cste (op1, string, strlen (string), after);
13928 return NULL_TREE;
13931 /* Tries to statically concatenate OP1 and OP2 if possible. Either one
13932 has to be a STRING_CST and the other part must be a STRING_CST or a
13933 INTEGRAL constant. Return a new STRING_CST if the operation
13934 succeed, NULL_TREE otherwise.
13936 If the case we want to optimize for space, we might want to return
13937 NULL_TREE for each invocation of this routine. FIXME */
13939 static tree
13940 string_constant_concatenation (op1, op2)
13941 tree op1, op2;
13943 if (TREE_CODE (op1) == STRING_CST || (TREE_CODE (op2) == STRING_CST))
13945 tree string, rest;
13946 int invert;
13948 string = (TREE_CODE (op1) == STRING_CST ? op1 : op2);
13949 rest = (string == op1 ? op2 : op1);
13950 invert = (string == op1 ? 0 : 1 );
13952 /* Walk REST, only if it looks reasonable */
13953 if (TREE_CODE (rest) != STRING_CST
13954 && !IS_CRAFTED_STRING_BUFFER_P (rest)
13955 && !JSTRING_TYPE_P (TREE_TYPE (rest))
13956 && TREE_CODE (rest) == EXPR_WITH_FILE_LOCATION)
13958 rest = java_complete_tree (rest);
13959 if (rest == error_mark_node)
13960 return error_mark_node;
13961 rest = fold (rest);
13963 return merge_string_cste (string, rest, invert);
13965 return NULL_TREE;
13968 /* Implement the `+' operator. Does static optimization if possible,
13969 otherwise create (if necessary) and append elements to a
13970 StringBuffer. The StringBuffer will be carried around until it is
13971 used for a function call or an assignment. Then toString() will be
13972 called on it to turn it into a String object. */
13974 static tree
13975 build_string_concatenation (op1, op2)
13976 tree op1, op2;
13978 tree result;
13979 int side_effects = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13981 if (flag_emit_xref)
13982 return build (PLUS_EXPR, string_type_node, op1, op2);
13984 /* Try to do some static optimization */
13985 if ((result = string_constant_concatenation (op1, op2)))
13986 return result;
13988 /* Discard empty strings on either side of the expression */
13989 if (TREE_CODE (op1) == STRING_CST && TREE_STRING_LENGTH (op1) == 0)
13991 op1 = op2;
13992 op2 = NULL_TREE;
13994 else if (TREE_CODE (op2) == STRING_CST && TREE_STRING_LENGTH (op2) == 0)
13995 op2 = NULL_TREE;
13997 /* If operands are string constant, turn then into object references */
13998 if (TREE_CODE (op1) == STRING_CST)
13999 op1 = patch_string_cst (op1);
14000 if (op2 && TREE_CODE (op2) == STRING_CST)
14001 op2 = patch_string_cst (op2);
14003 /* If either one of the constant is null and the other non null
14004 operand is a String object, return it. */
14005 if (JSTRING_TYPE_P (TREE_TYPE (op1)) && !op2)
14006 return op1;
14008 /* If OP1 isn't already a StringBuffer, create and
14009 initialize a new one */
14010 if (!IS_CRAFTED_STRING_BUFFER_P (op1))
14012 /* Two solutions here:
14013 1) OP1 is a constant string reference, we call new StringBuffer(OP1)
14014 2) OP1 is something else, we call new StringBuffer().append(OP1). */
14015 if (TREE_CONSTANT (op1) && JSTRING_TYPE_P (TREE_TYPE (op1)))
14016 op1 = BUILD_STRING_BUFFER (op1);
14017 else
14019 tree aNew = BUILD_STRING_BUFFER (NULL_TREE);
14020 op1 = make_qualified_primary (aNew, BUILD_APPEND (op1), 0);
14024 if (op2)
14026 /* OP1 is no longer the last node holding a crafted StringBuffer */
14027 IS_CRAFTED_STRING_BUFFER_P (op1) = 0;
14028 /* Create a node for `{new...,xxx}.append (op2)' */
14029 if (op2)
14030 op1 = make_qualified_primary (op1, BUILD_APPEND (op2), 0);
14033 /* Mark the last node holding a crafted StringBuffer */
14034 IS_CRAFTED_STRING_BUFFER_P (op1) = 1;
14036 TREE_SIDE_EFFECTS (op1) = side_effects;
14037 return op1;
14040 /* Patch the string node NODE. NODE can be a STRING_CST of a crafted
14041 StringBuffer. If no string were found to be patched, return
14042 NULL. */
14044 static tree
14045 patch_string (node)
14046 tree node;
14048 if (node == error_mark_node)
14049 return error_mark_node;
14050 if (TREE_CODE (node) == STRING_CST)
14051 return patch_string_cst (node);
14052 else if (IS_CRAFTED_STRING_BUFFER_P (node))
14054 int saved = ctxp->explicit_constructor_p;
14055 tree invoke = build_method_invocation (wfl_to_string, NULL_TREE);
14056 tree ret;
14057 /* Temporary disable forbid the use of `this'. */
14058 ctxp->explicit_constructor_p = 0;
14059 ret = java_complete_tree (make_qualified_primary (node, invoke, 0));
14060 /* String concatenation arguments must be evaluated in order too. */
14061 ret = force_evaluation_order (ret);
14062 /* Restore it at its previous value */
14063 ctxp->explicit_constructor_p = saved;
14064 return ret;
14066 return NULL_TREE;
14069 /* Build the internal representation of a string constant. */
14071 static tree
14072 patch_string_cst (node)
14073 tree node;
14075 int location;
14076 if (! flag_emit_class_files)
14078 node = get_identifier (TREE_STRING_POINTER (node));
14079 location = alloc_name_constant (CONSTANT_String, node);
14080 node = build_ref_from_constant_pool (location);
14082 TREE_TYPE (node) = string_ptr_type_node;
14083 TREE_CONSTANT (node) = 1;
14084 return node;
14087 /* Build an incomplete unary operator expression. */
14089 static tree
14090 build_unaryop (op_token, op_location, op1)
14091 int op_token, op_location;
14092 tree op1;
14094 enum tree_code op;
14095 tree unaryop;
14096 switch (op_token)
14098 case PLUS_TK: op = UNARY_PLUS_EXPR; break;
14099 case MINUS_TK: op = NEGATE_EXPR; break;
14100 case NEG_TK: op = TRUTH_NOT_EXPR; break;
14101 case NOT_TK: op = BIT_NOT_EXPR; break;
14102 default: abort ();
14105 unaryop = build1 (op, NULL_TREE, op1);
14106 TREE_SIDE_EFFECTS (unaryop) = 1;
14107 /* Store the location of the operator, for better error report. The
14108 string of the operator will be rebuild based on the OP value. */
14109 EXPR_WFL_LINECOL (unaryop) = op_location;
14110 return unaryop;
14113 /* Special case for the ++/-- operators, since they require an extra
14114 argument to build, which is set to NULL and patched
14115 later. IS_POST_P is 1 if the operator, 0 otherwise. */
14117 static tree
14118 build_incdec (op_token, op_location, op1, is_post_p)
14119 int op_token, op_location;
14120 tree op1;
14121 int is_post_p;
14123 static enum tree_code lookup [2][2] =
14125 { PREDECREMENT_EXPR, PREINCREMENT_EXPR, },
14126 { POSTDECREMENT_EXPR, POSTINCREMENT_EXPR, },
14128 tree node = build (lookup [is_post_p][(op_token - DECR_TK)],
14129 NULL_TREE, op1, NULL_TREE);
14130 TREE_SIDE_EFFECTS (node) = 1;
14131 /* Store the location of the operator, for better error report. The
14132 string of the operator will be rebuild based on the OP value. */
14133 EXPR_WFL_LINECOL (node) = op_location;
14134 return node;
14137 /* Build an incomplete cast operator, based on the use of the
14138 CONVERT_EXPR. Note that TREE_TYPE of the constructed node is
14139 set. java_complete_tree is trained to walk a CONVERT_EXPR even
14140 though its type is already set. */
14142 static tree
14143 build_cast (location, type, exp)
14144 int location;
14145 tree type, exp;
14147 tree node = build1 (CONVERT_EXPR, type, exp);
14148 EXPR_WFL_LINECOL (node) = location;
14149 return node;
14152 /* Build an incomplete class reference operator. */
14153 static tree
14154 build_incomplete_class_ref (location, class_name)
14155 int location;
14156 tree class_name;
14158 tree node = build1 (CLASS_LITERAL, NULL_TREE, class_name);
14159 EXPR_WFL_LINECOL (node) = location;
14160 return node;
14163 /* Complete an incomplete class reference operator. */
14164 static tree
14165 patch_incomplete_class_ref (node)
14166 tree node;
14168 tree type = TREE_OPERAND (node, 0);
14169 tree ref_type;
14171 if (!(ref_type = resolve_type_during_patch (type)))
14172 return error_mark_node;
14174 if (!flag_emit_class_files || JPRIMITIVE_TYPE_P (ref_type))
14176 tree dot = build_class_ref (ref_type);
14177 /* A class referenced by `foo.class' is initialized. */
14178 if (!flag_emit_class_files)
14179 dot = build_class_init (ref_type, dot);
14180 return java_complete_tree (dot);
14183 /* If we're emitting class files and we have to deal with non
14184 primitive types, we invoke (and consider generating) the
14185 synthetic static method `class$'. */
14186 if (!TYPE_DOT_CLASS (current_class))
14187 build_dot_class_method (current_class);
14188 ref_type = build_dot_class_method_invocation (ref_type);
14189 return java_complete_tree (ref_type);
14192 /* 15.14 Unary operators. We return error_mark_node in case of error,
14193 but preserve the type of NODE if the type is fixed. */
14195 static tree
14196 patch_unaryop (node, wfl_op)
14197 tree node;
14198 tree wfl_op;
14200 tree op = TREE_OPERAND (node, 0);
14201 tree op_type = TREE_TYPE (op);
14202 tree prom_type = NULL_TREE, value, decl;
14203 int outer_field_flag = 0;
14204 int code = TREE_CODE (node);
14205 int error_found = 0;
14207 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14209 switch (code)
14211 /* 15.13.2 Postfix Increment Operator ++ */
14212 case POSTINCREMENT_EXPR:
14213 /* 15.13.3 Postfix Increment Operator -- */
14214 case POSTDECREMENT_EXPR:
14215 /* 15.14.1 Prefix Increment Operator ++ */
14216 case PREINCREMENT_EXPR:
14217 /* 15.14.2 Prefix Decrement Operator -- */
14218 case PREDECREMENT_EXPR:
14219 op = decl = strip_out_static_field_access_decl (op);
14220 outer_field_flag = outer_field_expanded_access_p (op, NULL, NULL, NULL);
14221 /* We might be trying to change an outer field accessed using
14222 access method. */
14223 if (outer_field_flag)
14225 /* Retrieve the decl of the field we're trying to access. We
14226 do that by first retrieving the function we would call to
14227 access the field. It has been already verified that this
14228 field isn't final */
14229 if (flag_emit_class_files)
14230 decl = TREE_OPERAND (op, 0);
14231 else
14232 decl = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (op, 0), 0), 0);
14233 decl = DECL_FUNCTION_ACCESS_DECL (decl);
14235 /* We really should have a JAVA_ARRAY_EXPR to avoid this */
14236 else if (!JDECL_P (decl)
14237 && TREE_CODE (decl) != COMPONENT_REF
14238 && !(flag_emit_class_files && TREE_CODE (decl) == ARRAY_REF)
14239 && TREE_CODE (decl) != INDIRECT_REF
14240 && !(TREE_CODE (decl) == COMPOUND_EXPR
14241 && TREE_OPERAND (decl, 1)
14242 && (TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)))
14244 tree lvalue;
14245 /* Before screaming, check that we're not in fact trying to
14246 increment a optimized static final access, in which case
14247 we issue an different error message. */
14248 if (!(TREE_CODE (wfl_op) == EXPR_WITH_FILE_LOCATION
14249 && resolve_expression_name (wfl_op, &lvalue)
14250 && check_final_assignment (lvalue, wfl_op)))
14251 parse_error_context (wfl_operator, "Invalid argument to `%s'",
14252 operator_string (node));
14253 TREE_TYPE (node) = error_mark_node;
14254 error_found = 1;
14257 if (check_final_assignment (op, wfl_op))
14258 error_found = 1;
14260 /* From now on, we know that op if a variable and that it has a
14261 valid wfl. We use wfl_op to locate errors related to the
14262 ++/-- operand. */
14263 else if (!JNUMERIC_TYPE_P (op_type))
14265 parse_error_context
14266 (wfl_op, "Invalid argument type `%s' to `%s'",
14267 lang_printable_name (op_type, 0), operator_string (node));
14268 TREE_TYPE (node) = error_mark_node;
14269 error_found = 1;
14271 else
14273 /* Before the addition, binary numeric promotion is performed on
14274 both operands, if really necessary */
14275 if (JINTEGRAL_TYPE_P (op_type))
14277 value = build_int_2 (1, 0);
14278 TREE_TYPE (value) = TREE_TYPE (node) = op_type;
14280 else
14282 value = build_int_2 (1, 0);
14283 TREE_TYPE (node) =
14284 binary_numeric_promotion (op_type,
14285 TREE_TYPE (value), &op, &value);
14288 /* We remember we might be accessing an outer field */
14289 if (outer_field_flag)
14291 /* We re-generate an access to the field */
14292 value = build (PLUS_EXPR, TREE_TYPE (op),
14293 build_outer_field_access (wfl_op, decl), value);
14295 /* And we patch the original access$() into a write
14296 with plus_op as a rhs */
14297 return outer_field_access_fix (node, op, value);
14300 /* And write back into the node. */
14301 TREE_OPERAND (node, 0) = op;
14302 TREE_OPERAND (node, 1) = value;
14303 /* Convert the overall back into its original type, if
14304 necessary, and return */
14305 if (JINTEGRAL_TYPE_P (op_type))
14306 return fold (node);
14307 else
14308 return fold (convert (op_type, node));
14310 break;
14312 /* 15.14.3 Unary Plus Operator + */
14313 case UNARY_PLUS_EXPR:
14314 /* 15.14.4 Unary Minus Operator - */
14315 case NEGATE_EXPR:
14316 if (!JNUMERIC_TYPE_P (op_type))
14318 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op_type);
14319 TREE_TYPE (node) = error_mark_node;
14320 error_found = 1;
14322 /* Unary numeric promotion is performed on operand */
14323 else
14325 op = do_unary_numeric_promotion (op);
14326 prom_type = TREE_TYPE (op);
14327 if (code == UNARY_PLUS_EXPR)
14328 return fold (op);
14330 break;
14332 /* 15.14.5 Bitwise Complement Operator ~ */
14333 case BIT_NOT_EXPR:
14334 if (!JINTEGRAL_TYPE_P (op_type))
14336 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op_type);
14337 TREE_TYPE (node) = error_mark_node;
14338 error_found = 1;
14340 else
14342 op = do_unary_numeric_promotion (op);
14343 prom_type = TREE_TYPE (op);
14345 break;
14347 /* 15.14.6 Logical Complement Operator ! */
14348 case TRUTH_NOT_EXPR:
14349 if (TREE_CODE (op_type) != BOOLEAN_TYPE)
14351 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op_type);
14352 /* But the type is known. We will report an error if further
14353 attempt of a assignment is made with this rhs */
14354 TREE_TYPE (node) = boolean_type_node;
14355 error_found = 1;
14357 else
14358 prom_type = boolean_type_node;
14359 break;
14361 /* 15.15 Cast Expression */
14362 case CONVERT_EXPR:
14363 value = patch_cast (node, wfl_operator);
14364 if (value == error_mark_node)
14366 /* If this cast is part of an assignment, we tell the code
14367 that deals with it not to complain about a mismatch,
14368 because things have been cast, anyways */
14369 TREE_TYPE (node) = error_mark_node;
14370 error_found = 1;
14372 else
14374 value = fold (value);
14375 TREE_SIDE_EFFECTS (value) = TREE_SIDE_EFFECTS (op);
14376 return value;
14378 break;
14381 if (error_found)
14382 return error_mark_node;
14384 /* There are cases where node has been replaced by something else
14385 and we don't end up returning here: UNARY_PLUS_EXPR,
14386 CONVERT_EXPR, {POST,PRE}{INCR,DECR}EMENT_EXPR. */
14387 TREE_OPERAND (node, 0) = fold (op);
14388 TREE_TYPE (node) = prom_type;
14389 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op);
14390 return fold (node);
14393 /* Generic type resolution that sometimes takes place during node
14394 patching. Returned the resolved type or generate an error
14395 message. Return the resolved type or NULL_TREE. */
14397 static tree
14398 resolve_type_during_patch (type)
14399 tree type;
14401 if (unresolved_type_p (type, NULL))
14403 tree type_decl = resolve_and_layout (EXPR_WFL_NODE (type), type);
14404 if (!type_decl)
14406 parse_error_context (type,
14407 "Class `%s' not found in type declaration",
14408 IDENTIFIER_POINTER (EXPR_WFL_NODE (type)));
14409 return NULL_TREE;
14411 return TREE_TYPE (type_decl);
14413 return type;
14415 /* 5.5 Casting Conversion. error_mark_node is returned if an error is
14416 found. Otherwise NODE or something meant to replace it is returned. */
14418 static tree
14419 patch_cast (node, wfl_op)
14420 tree node;
14421 tree wfl_op;
14423 tree op = TREE_OPERAND (node, 0);
14424 tree op_type = TREE_TYPE (op);
14425 tree cast_type = TREE_TYPE (node);
14426 char *t1;
14428 /* First resolve OP_TYPE if unresolved */
14429 if (!(cast_type = resolve_type_during_patch (cast_type)))
14430 return error_mark_node;
14432 /* Check on cast that are proven correct at compile time */
14433 if (JNUMERIC_TYPE_P (cast_type) && JNUMERIC_TYPE_P (op_type))
14435 /* Same type */
14436 if (cast_type == op_type)
14437 return node;
14439 /* float and double type are converted to the original type main
14440 variant and then to the target type. */
14441 if (JFLOAT_TYPE_P (op_type) && TREE_CODE (cast_type) == CHAR_TYPE)
14442 op = convert (integer_type_node, op);
14444 /* Try widening/narowwing convertion. Potentially, things need
14445 to be worked out in gcc so we implement the extreme cases
14446 correctly. fold_convert() needs to be fixed. */
14447 return convert (cast_type, op);
14450 /* It's also valid to cast a boolean into a boolean */
14451 if (op_type == boolean_type_node && cast_type == boolean_type_node)
14452 return node;
14454 /* null can be casted to references */
14455 if (op == null_pointer_node && JREFERENCE_TYPE_P (cast_type))
14456 return build_null_of_type (cast_type);
14458 /* The remaining legal casts involve conversion between reference
14459 types. Check for their compile time correctness. */
14460 if (JREFERENCE_TYPE_P (op_type) && JREFERENCE_TYPE_P (cast_type)
14461 && valid_ref_assignconv_cast_p (op_type, cast_type, 1))
14463 TREE_TYPE (node) = promote_type (cast_type);
14464 /* Now, the case can be determined correct at compile time if
14465 OP_TYPE can be converted into CAST_TYPE by assignment
14466 conversion (5.2) */
14468 if (valid_ref_assignconv_cast_p (op_type, cast_type, 0))
14470 TREE_SET_CODE (node, NOP_EXPR);
14471 return node;
14474 if (flag_emit_class_files)
14476 TREE_SET_CODE (node, CONVERT_EXPR);
14477 return node;
14480 /* The cast requires a run-time check */
14481 return build (CALL_EXPR, promote_type (cast_type),
14482 build_address_of (soft_checkcast_node),
14483 tree_cons (NULL_TREE, build_class_ref (cast_type),
14484 build_tree_list (NULL_TREE, op)),
14485 NULL_TREE);
14488 /* Any other casts are proven incorrect at compile time */
14489 t1 = xstrdup (lang_printable_name (op_type, 0));
14490 parse_error_context (wfl_op, "Invalid cast from `%s' to `%s'",
14491 t1, lang_printable_name (cast_type, 0));
14492 free (t1);
14493 return error_mark_node;
14496 /* Build a null constant and give it the type TYPE. */
14498 static tree
14499 build_null_of_type (type)
14500 tree type;
14502 tree node = build_int_2 (0, 0);
14503 TREE_TYPE (node) = promote_type (type);
14504 return node;
14507 /* Build an ARRAY_REF incomplete tree node. Note that operand 1 isn't
14508 a list of indices. */
14509 static tree
14510 build_array_ref (location, array, index)
14511 int location;
14512 tree array, index;
14514 tree node = build (ARRAY_REF, NULL_TREE, array, index);
14515 EXPR_WFL_LINECOL (node) = location;
14516 return node;
14519 /* 15.12 Array Access Expression */
14521 static tree
14522 patch_array_ref (node)
14523 tree node;
14525 tree array = TREE_OPERAND (node, 0);
14526 tree array_type = TREE_TYPE (array);
14527 tree index = TREE_OPERAND (node, 1);
14528 tree index_type = TREE_TYPE (index);
14529 int error_found = 0;
14531 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14533 if (TREE_CODE (array_type) == POINTER_TYPE)
14534 array_type = TREE_TYPE (array_type);
14536 /* The array reference must be an array */
14537 if (!TYPE_ARRAY_P (array_type))
14539 parse_error_context
14540 (wfl_operator,
14541 "`[]' can only be applied to arrays. It can't be applied to `%s'",
14542 lang_printable_name (array_type, 0));
14543 TREE_TYPE (node) = error_mark_node;
14544 error_found = 1;
14547 /* The array index undergoes unary numeric promotion. The promoted
14548 type must be int */
14549 index = do_unary_numeric_promotion (index);
14550 if (TREE_TYPE (index) != int_type_node)
14552 if (valid_cast_to_p (index_type, int_type_node))
14553 parse_error_context (wfl_operator,
14554 "Incompatible type for `[]'. Explicit cast needed to convert `%s' to `int'",
14555 lang_printable_name (index_type, 0));
14556 else
14557 parse_error_context (wfl_operator,
14558 "Incompatible type for `[]'. Can't convert `%s' to `int'",
14559 lang_printable_name (index_type, 0));
14560 TREE_TYPE (node) = error_mark_node;
14561 error_found = 1;
14564 if (error_found)
14565 return error_mark_node;
14567 array_type = TYPE_ARRAY_ELEMENT (array_type);
14569 if (flag_emit_class_files || flag_emit_xref)
14571 TREE_OPERAND (node, 0) = array;
14572 TREE_OPERAND (node, 1) = index;
14574 else
14576 /* The save_expr is for correct evaluation order. It would be cleaner
14577 to use force_evaluation_order (see comment there), but that is
14578 difficult when we also have to deal with bounds checking. */
14579 if (TREE_SIDE_EFFECTS (index))
14580 array = save_expr (array);
14581 node = build_java_arrayaccess (array, array_type, index);
14582 if (TREE_SIDE_EFFECTS (index))
14583 node = build (COMPOUND_EXPR, array_type, array, node);
14585 TREE_TYPE (node) = array_type;
14586 return node;
14589 /* 15.9 Array Creation Expressions */
14591 static tree
14592 build_newarray_node (type, dims, extra_dims)
14593 tree type;
14594 tree dims;
14595 int extra_dims;
14597 tree node =
14598 build (NEW_ARRAY_EXPR, NULL_TREE, type, nreverse (dims),
14599 build_int_2 (extra_dims, 0));
14600 return node;
14603 static tree
14604 patch_newarray (node)
14605 tree node;
14607 tree type = TREE_OPERAND (node, 0);
14608 tree dims = TREE_OPERAND (node, 1);
14609 tree cdim, array_type;
14610 int error_found = 0;
14611 int ndims = 0;
14612 int xdims = TREE_INT_CST_LOW (TREE_OPERAND (node, 2));
14614 /* Dimension types are verified. It's better for the types to be
14615 verified in order. */
14616 for (cdim = dims, ndims = 0; cdim; cdim = TREE_CHAIN (cdim), ndims++ )
14618 int dim_error = 0;
14619 tree dim = TREE_VALUE (cdim);
14621 /* Dim might have been saved during its evaluation */
14622 dim = (TREE_CODE (dim) == SAVE_EXPR ? TREE_OPERAND (dim, 0) : dim);
14624 /* The type of each specified dimension must be an integral type. */
14625 if (!JINTEGRAL_TYPE_P (TREE_TYPE (dim)))
14626 dim_error = 1;
14628 /* Each expression undergoes an unary numeric promotion (5.6.1) and the
14629 promoted type must be int. */
14630 else
14632 dim = do_unary_numeric_promotion (dim);
14633 if (TREE_TYPE (dim) != int_type_node)
14634 dim_error = 1;
14637 /* Report errors on types here */
14638 if (dim_error)
14640 parse_error_context
14641 (TREE_PURPOSE (cdim),
14642 "Incompatible type for dimension in array creation expression. %s convert `%s' to `int'",
14643 (valid_cast_to_p (TREE_TYPE (dim), int_type_node) ?
14644 "Explicit cast needed to" : "Can't"),
14645 lang_printable_name (TREE_TYPE (dim), 0));
14646 error_found = 1;
14649 TREE_PURPOSE (cdim) = NULL_TREE;
14652 /* Resolve array base type if unresolved */
14653 if (!(type = resolve_type_during_patch (type)))
14654 error_found = 1;
14656 if (error_found)
14658 /* We don't want further evaluation of this bogus array creation
14659 operation */
14660 TREE_TYPE (node) = error_mark_node;
14661 return error_mark_node;
14664 /* Set array_type to the actual (promoted) array type of the result. */
14665 if (TREE_CODE (type) == RECORD_TYPE)
14666 type = build_pointer_type (type);
14667 while (--xdims >= 0)
14669 type = promote_type (build_java_array_type (type, -1));
14671 dims = nreverse (dims);
14672 array_type = type;
14673 for (cdim = dims; cdim; cdim = TREE_CHAIN (cdim))
14675 type = array_type;
14676 array_type
14677 = build_java_array_type (type,
14678 TREE_CODE (cdim) == INTEGER_CST
14679 ? (HOST_WIDE_INT) TREE_INT_CST_LOW (cdim)
14680 : -1);
14681 array_type = promote_type (array_type);
14683 dims = nreverse (dims);
14685 /* The node is transformed into a function call. Things are done
14686 differently according to the number of dimensions. If the number
14687 of dimension is equal to 1, then the nature of the base type
14688 (primitive or not) matters. */
14689 if (ndims == 1)
14690 return build_new_array (type, TREE_VALUE (dims));
14692 /* Can't reuse what's already written in expr.c because it uses the
14693 JVM stack representation. Provide a build_multianewarray. FIXME */
14694 return build (CALL_EXPR, array_type,
14695 build_address_of (soft_multianewarray_node),
14696 tree_cons (NULL_TREE, build_class_ref (TREE_TYPE (array_type)),
14697 tree_cons (NULL_TREE,
14698 build_int_2 (ndims, 0), dims )),
14699 NULL_TREE);
14702 /* 10.6 Array initializer. */
14704 /* Build a wfl for array element that don't have one, so we can
14705 pin-point errors. */
14707 static tree
14708 maybe_build_array_element_wfl (node)
14709 tree node;
14711 if (TREE_CODE (node) != EXPR_WITH_FILE_LOCATION)
14712 return build_expr_wfl (NULL_TREE, ctxp->filename,
14713 ctxp->elc.line, ctxp->elc.prev_col);
14714 else
14715 return NULL_TREE;
14718 /* Build a NEW_ARRAY_INIT that features a CONSTRUCTOR node. This makes
14719 identification of initialized arrays easier to detect during walk
14720 and expansion. */
14722 static tree
14723 build_new_array_init (location, values)
14724 int location;
14725 tree values;
14727 tree constructor = build (CONSTRUCTOR, NULL_TREE, NULL_TREE, values);
14728 tree to_return = build1 (NEW_ARRAY_INIT, NULL_TREE, constructor);
14729 EXPR_WFL_LINECOL (to_return) = location;
14730 return to_return;
14733 /* Expand a NEW_ARRAY_INIT node. Return error_mark_node if an error
14734 occurred. Otherwise return NODE after having set its type
14735 appropriately. */
14737 static tree
14738 patch_new_array_init (type, node)
14739 tree type, node;
14741 int error_seen = 0;
14742 tree current, element_type;
14743 HOST_WIDE_INT length;
14744 int all_constant = 1;
14745 tree init = TREE_OPERAND (node, 0);
14747 if (TREE_CODE (type) != POINTER_TYPE || ! TYPE_ARRAY_P (TREE_TYPE (type)))
14749 parse_error_context (node,
14750 "Invalid array initializer for non-array type `%s'",
14751 lang_printable_name (type, 1));
14752 return error_mark_node;
14754 type = TREE_TYPE (type);
14755 element_type = TYPE_ARRAY_ELEMENT (type);
14757 CONSTRUCTOR_ELTS (init) = nreverse (CONSTRUCTOR_ELTS (init));
14759 for (length = 0, current = CONSTRUCTOR_ELTS (init);
14760 current; length++, current = TREE_CHAIN (current))
14762 tree elt = TREE_VALUE (current);
14763 if (elt == NULL_TREE || TREE_CODE (elt) != NEW_ARRAY_INIT)
14765 error_seen |= array_constructor_check_entry (element_type, current);
14766 elt = TREE_VALUE (current);
14767 /* When compiling to native code, STRING_CST is converted to
14768 INDIRECT_REF, but still with a TREE_CONSTANT flag. */
14769 if (! TREE_CONSTANT (elt) || TREE_CODE (elt) == INDIRECT_REF)
14770 all_constant = 0;
14772 else
14774 TREE_VALUE (current) = patch_new_array_init (element_type, elt);
14775 TREE_PURPOSE (current) = NULL_TREE;
14776 all_constant = 0;
14778 if (elt && TREE_CODE (elt) == TREE_LIST
14779 && TREE_VALUE (elt) == error_mark_node)
14780 error_seen = 1;
14783 if (error_seen)
14784 return error_mark_node;
14786 /* Create a new type. We can't reuse the one we have here by
14787 patching its dimension because it originally is of dimension -1
14788 hence reused by gcc. This would prevent triangular arrays. */
14789 type = build_java_array_type (element_type, length);
14790 TREE_TYPE (init) = TREE_TYPE (TREE_CHAIN (TREE_CHAIN (TYPE_FIELDS (type))));
14791 TREE_TYPE (node) = promote_type (type);
14792 TREE_CONSTANT (init) = all_constant;
14793 TREE_CONSTANT (node) = all_constant;
14794 return node;
14797 /* Verify that one entry of the initializer element list can be
14798 assigned to the array base type. Report 1 if an error occurred, 0
14799 otherwise. */
14801 static int
14802 array_constructor_check_entry (type, entry)
14803 tree type, entry;
14805 char *array_type_string = NULL; /* For error reports */
14806 tree value, type_value, new_value, wfl_value, patched;
14807 int error_seen = 0;
14809 new_value = NULL_TREE;
14810 wfl_value = TREE_VALUE (entry);
14812 value = java_complete_tree (TREE_VALUE (entry));
14813 /* patch_string return error_mark_node if arg is error_mark_node */
14814 if ((patched = patch_string (value)))
14815 value = patched;
14816 if (value == error_mark_node)
14817 return 1;
14819 type_value = TREE_TYPE (value);
14821 /* At anytime, try_builtin_assignconv can report a warning on
14822 constant overflow during narrowing. */
14823 SET_WFL_OPERATOR (wfl_operator, TREE_PURPOSE (entry), wfl_value);
14824 new_value = try_builtin_assignconv (wfl_operator, type, value);
14825 if (!new_value && (new_value = try_reference_assignconv (type, value)))
14826 type_value = promote_type (type);
14828 /* Check and report errors */
14829 if (!new_value)
14831 const char *msg = (!valid_cast_to_p (type_value, type) ?
14832 "Can't" : "Explicit cast needed to");
14833 if (!array_type_string)
14834 array_type_string = xstrdup (lang_printable_name (type, 1));
14835 parse_error_context
14836 (wfl_operator, "Incompatible type for array. %s convert `%s' to `%s'",
14837 msg, lang_printable_name (type_value, 1), array_type_string);
14838 error_seen = 1;
14841 if (new_value)
14843 new_value = maybe_build_primttype_type_ref (new_value, wfl_value);
14844 TREE_VALUE (entry) = new_value;
14847 if (array_type_string)
14848 free (array_type_string);
14850 TREE_PURPOSE (entry) = NULL_TREE;
14851 return error_seen;
14854 static tree
14855 build_this (location)
14856 int location;
14858 tree node = build_wfl_node (this_identifier_node);
14859 TREE_SET_CODE (node, THIS_EXPR);
14860 EXPR_WFL_LINECOL (node) = location;
14861 return node;
14864 /* 14.15 The return statement. It builds a modify expression that
14865 assigns the returned value to the RESULT_DECL that hold the value
14866 to be returned. */
14868 static tree
14869 build_return (location, op)
14870 int location;
14871 tree op;
14873 tree node = build1 (RETURN_EXPR, NULL_TREE, op);
14874 EXPR_WFL_LINECOL (node) = location;
14875 node = build_debugable_stmt (location, node);
14876 return node;
14879 static tree
14880 patch_return (node)
14881 tree node;
14883 tree return_exp = TREE_OPERAND (node, 0);
14884 tree meth = current_function_decl;
14885 tree mtype = TREE_TYPE (TREE_TYPE (current_function_decl));
14886 int error_found = 0;
14888 TREE_TYPE (node) = error_mark_node;
14889 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14891 /* It's invalid to have a return value within a function that is
14892 declared with the keyword void or that is a constructor */
14893 if (return_exp && (mtype == void_type_node || DECL_CONSTRUCTOR_P (meth)))
14894 error_found = 1;
14896 /* It's invalid to use a return statement in a static block */
14897 if (DECL_CLINIT_P (current_function_decl))
14898 error_found = 1;
14900 /* It's invalid to have a no return value within a function that
14901 isn't declared with the keyword `void' */
14902 if (!return_exp && (mtype != void_type_node && !DECL_CONSTRUCTOR_P (meth)))
14903 error_found = 2;
14905 if (DECL_INSTINIT_P (current_function_decl))
14906 error_found = 1;
14908 if (error_found)
14910 if (DECL_INSTINIT_P (current_function_decl))
14911 parse_error_context (wfl_operator,
14912 "`return' inside instance initializer");
14914 else if (DECL_CLINIT_P (current_function_decl))
14915 parse_error_context (wfl_operator,
14916 "`return' inside static initializer");
14918 else if (!DECL_CONSTRUCTOR_P (meth))
14920 char *t = xstrdup (lang_printable_name (mtype, 0));
14921 parse_error_context (wfl_operator,
14922 "`return' with%s value from `%s %s'",
14923 (error_found == 1 ? "" : "out"),
14924 t, lang_printable_name (meth, 0));
14925 free (t);
14927 else
14928 parse_error_context (wfl_operator,
14929 "`return' with value from constructor `%s'",
14930 lang_printable_name (meth, 0));
14931 return error_mark_node;
14934 /* If we have a return_exp, build a modify expression and expand
14935 it. Note: at that point, the assignment is declared valid, but we
14936 may want to carry some more hacks */
14937 if (return_exp)
14939 tree exp = java_complete_tree (return_exp);
14940 tree modify, patched;
14942 /* If the function returned value and EXP are booleans, EXP has
14943 to be converted into the type of DECL_RESULT, which is integer
14944 (see complete_start_java_method) */
14945 if (TREE_TYPE (exp) == boolean_type_node &&
14946 TREE_TYPE (TREE_TYPE (meth)) == boolean_type_node)
14947 exp = convert_to_integer (TREE_TYPE (DECL_RESULT (meth)), exp);
14949 /* `null' can be assigned to a function returning a reference */
14950 if (JREFERENCE_TYPE_P (TREE_TYPE (TREE_TYPE (meth))) &&
14951 exp == null_pointer_node)
14952 exp = build_null_of_type (TREE_TYPE (TREE_TYPE (meth)));
14954 if ((patched = patch_string (exp)))
14955 exp = patched;
14957 modify = build (MODIFY_EXPR, NULL_TREE, DECL_RESULT (meth), exp);
14958 EXPR_WFL_LINECOL (modify) = EXPR_WFL_LINECOL (node);
14959 modify = java_complete_tree (modify);
14961 if (modify != error_mark_node)
14963 TREE_SIDE_EFFECTS (modify) = 1;
14964 TREE_OPERAND (node, 0) = modify;
14966 else
14967 return error_mark_node;
14969 TREE_TYPE (node) = void_type_node;
14970 TREE_SIDE_EFFECTS (node) = 1;
14971 return node;
14974 /* 14.8 The if Statement */
14976 static tree
14977 build_if_else_statement (location, expression, if_body, else_body)
14978 int location;
14979 tree expression, if_body, else_body;
14981 tree node;
14982 if (!else_body)
14983 else_body = empty_stmt_node;
14984 node = build (COND_EXPR, NULL_TREE, expression, if_body, else_body);
14985 EXPR_WFL_LINECOL (node) = location;
14986 node = build_debugable_stmt (location, node);
14987 return node;
14990 static tree
14991 patch_if_else_statement (node)
14992 tree node;
14994 tree expression = TREE_OPERAND (node, 0);
14996 TREE_TYPE (node) = error_mark_node;
14997 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14999 /* The type of expression must be boolean */
15000 if (TREE_TYPE (expression) != boolean_type_node
15001 && TREE_TYPE (expression) != promoted_boolean_type_node)
15003 parse_error_context
15004 (wfl_operator,
15005 "Incompatible type for `if'. Can't convert `%s' to `boolean'",
15006 lang_printable_name (TREE_TYPE (expression), 0));
15007 return error_mark_node;
15010 TREE_TYPE (node) = void_type_node;
15011 TREE_SIDE_EFFECTS (node) = 1;
15012 CAN_COMPLETE_NORMALLY (node)
15013 = CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1))
15014 | CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 2));
15015 return node;
15018 /* 14.6 Labeled Statements */
15020 /* Action taken when a lableled statement is parsed. a new
15021 LABELED_BLOCK_EXPR is created. No statement is attached to the
15022 label, yet. LABEL can be NULL_TREE for artificially-generated blocks. */
15024 static tree
15025 build_labeled_block (location, label)
15026 int location;
15027 tree label;
15029 tree label_name ;
15030 tree label_decl, node;
15031 if (label == NULL_TREE || label == continue_identifier_node)
15032 label_name = label;
15033 else
15035 label_name = merge_qualified_name (label_id, label);
15036 /* Issue an error if we try to reuse a label that was previously
15037 declared */
15038 if (IDENTIFIER_LOCAL_VALUE (label_name))
15040 EXPR_WFL_LINECOL (wfl_operator) = location;
15041 parse_error_context (wfl_operator,
15042 "Declaration of `%s' shadows a previous label declaration",
15043 IDENTIFIER_POINTER (label));
15044 EXPR_WFL_LINECOL (wfl_operator) =
15045 EXPR_WFL_LINECOL (IDENTIFIER_LOCAL_VALUE (label_name));
15046 parse_error_context (wfl_operator,
15047 "This is the location of the previous declaration of label `%s'",
15048 IDENTIFIER_POINTER (label));
15049 java_error_count--;
15053 label_decl = create_label_decl (label_name);
15054 node = build (LABELED_BLOCK_EXPR, NULL_TREE, label_decl, NULL_TREE);
15055 EXPR_WFL_LINECOL (node) = location;
15056 TREE_SIDE_EFFECTS (node) = 1;
15057 return node;
15060 /* A labeled statement LBE is attached a statement. */
15062 static tree
15063 finish_labeled_statement (lbe, statement)
15064 tree lbe; /* Labeled block expr */
15065 tree statement;
15067 /* In anyways, tie the loop to its statement */
15068 LABELED_BLOCK_BODY (lbe) = statement;
15069 pop_labeled_block ();
15070 POP_LABELED_BLOCK ();
15071 return lbe;
15074 /* 14.10, 14.11, 14.12 Loop Statements */
15076 /* Create an empty LOOP_EXPR and make it the last in the nested loop
15077 list. */
15079 static tree
15080 build_new_loop (loop_body)
15081 tree loop_body;
15083 tree loop = build (LOOP_EXPR, NULL_TREE, loop_body);
15084 TREE_SIDE_EFFECTS (loop) = 1;
15085 PUSH_LOOP (loop);
15086 return loop;
15089 /* Create a loop body according to the following structure:
15090 COMPOUND_EXPR
15091 COMPOUND_EXPR (loop main body)
15092 EXIT_EXPR (this order is for while/for loops.
15093 LABELED_BLOCK_EXPR the order is reversed for do loops)
15094 LABEL_DECL (a continue occuring here branches at the
15095 BODY end of this labeled block)
15096 INCREMENT (if any)
15098 REVERSED, if non zero, tells that the loop condition expr comes
15099 after the body, like in the do-while loop.
15101 To obtain a loop, the loop body structure described above is
15102 encapsulated within a LOOP_EXPR surrounded by a LABELED_BLOCK_EXPR:
15104 LABELED_BLOCK_EXPR
15105 LABEL_DECL (use this label to exit the loop)
15106 LOOP_EXPR
15107 <structure described above> */
15109 static tree
15110 build_loop_body (location, condition, reversed)
15111 int location;
15112 tree condition;
15113 int reversed;
15115 tree first, second, body;
15117 condition = build (EXIT_EXPR, NULL_TREE, condition); /* Force walk */
15118 EXPR_WFL_LINECOL (condition) = location; /* For accurate error report */
15119 condition = build_debugable_stmt (location, condition);
15120 TREE_SIDE_EFFECTS (condition) = 1;
15122 body = build_labeled_block (0, continue_identifier_node);
15123 first = (reversed ? body : condition);
15124 second = (reversed ? condition : body);
15125 return
15126 build (COMPOUND_EXPR, NULL_TREE,
15127 build (COMPOUND_EXPR, NULL_TREE, first, second), empty_stmt_node);
15130 /* Install CONDITION (if any) and loop BODY (using REVERSED to tell
15131 their order) on the current loop. Unlink the current loop from the
15132 loop list. */
15134 static tree
15135 finish_loop_body (location, condition, body, reversed)
15136 int location;
15137 tree condition, body;
15138 int reversed;
15140 tree to_return = ctxp->current_loop;
15141 tree loop_body = LOOP_EXPR_BODY (to_return);
15142 if (condition)
15144 tree cnode = LOOP_EXPR_BODY_CONDITION_EXPR (loop_body, reversed);
15145 /* We wrapped the EXIT_EXPR around a WFL so we can debug it.
15146 The real EXIT_EXPR is one operand further. */
15147 EXPR_WFL_LINECOL (cnode) = location;
15148 /* This one is for accurate error reports */
15149 EXPR_WFL_LINECOL (TREE_OPERAND (cnode, 0)) = location;
15150 TREE_OPERAND (TREE_OPERAND (cnode, 0), 0) = condition;
15152 LOOP_EXPR_BODY_BODY_EXPR (loop_body, reversed) = body;
15153 POP_LOOP ();
15154 return to_return;
15157 /* Tailored version of finish_loop_body for FOR loops, when FOR
15158 loops feature the condition part */
15160 static tree
15161 finish_for_loop (location, condition, update, body)
15162 int location;
15163 tree condition, update, body;
15165 /* Put the condition and the loop body in place */
15166 tree loop = finish_loop_body (location, condition, body, 0);
15167 /* LOOP is the current loop which has been now popped of the loop
15168 stack. Install the update block */
15169 LOOP_EXPR_BODY_UPDATE_BLOCK (LOOP_EXPR_BODY (loop)) = update;
15170 return loop;
15173 /* Try to find the loop a block might be related to. This comprises
15174 the case where the LOOP_EXPR is found as the second operand of a
15175 COMPOUND_EXPR, because the loop happens to have an initialization
15176 part, then expressed as the first operand of the COMPOUND_EXPR. If
15177 the search finds something, 1 is returned. Otherwise, 0 is
15178 returned. The search is assumed to start from a
15179 LABELED_BLOCK_EXPR's block. */
15181 static tree
15182 search_loop (statement)
15183 tree statement;
15185 if (TREE_CODE (statement) == LOOP_EXPR)
15186 return statement;
15188 if (TREE_CODE (statement) == BLOCK)
15189 statement = BLOCK_SUBBLOCKS (statement);
15190 else
15191 return NULL_TREE;
15193 if (statement && TREE_CODE (statement) == COMPOUND_EXPR)
15194 while (statement && TREE_CODE (statement) == COMPOUND_EXPR)
15195 statement = TREE_OPERAND (statement, 1);
15197 return (TREE_CODE (statement) == LOOP_EXPR
15198 && FOR_LOOP_P (statement) ? statement : NULL_TREE);
15201 /* Return 1 if LOOP can be found in the labeled block BLOCK. 0 is
15202 returned otherwise. */
15204 static int
15205 labeled_block_contains_loop_p (block, loop)
15206 tree block, loop;
15208 if (!block)
15209 return 0;
15211 if (LABELED_BLOCK_BODY (block) == loop)
15212 return 1;
15214 if (FOR_LOOP_P (loop) && search_loop (LABELED_BLOCK_BODY (block)) == loop)
15215 return 1;
15217 return 0;
15220 /* If the loop isn't surrounded by a labeled statement, create one and
15221 insert LOOP as its body. */
15223 static tree
15224 patch_loop_statement (loop)
15225 tree loop;
15227 tree loop_label;
15229 TREE_TYPE (loop) = void_type_node;
15230 if (labeled_block_contains_loop_p (ctxp->current_labeled_block, loop))
15231 return loop;
15233 loop_label = build_labeled_block (0, NULL_TREE);
15234 /* LOOP is an EXPR node, so it should have a valid EXPR_WFL_LINECOL
15235 that LOOP_LABEL could enquire about, for a better accuracy. FIXME */
15236 LABELED_BLOCK_BODY (loop_label) = loop;
15237 PUSH_LABELED_BLOCK (loop_label);
15238 return loop_label;
15241 /* 14.13, 14.14: break and continue Statements */
15243 /* Build a break or a continue statement. a null NAME indicates an
15244 unlabeled break/continue statement. */
15246 static tree
15247 build_bc_statement (location, is_break, name)
15248 int location, is_break;
15249 tree name;
15251 tree break_continue, label_block_expr = NULL_TREE;
15253 if (name)
15255 if (!(label_block_expr = IDENTIFIER_LOCAL_VALUE
15256 (merge_qualified_name (label_id, EXPR_WFL_NODE (name)))))
15257 /* Null means that we don't have a target for this named
15258 break/continue. In this case, we make the target to be the
15259 label name, so that the error can be reported accuratly in
15260 patch_bc_statement. */
15261 label_block_expr = EXPR_WFL_NODE (name);
15263 /* Unlabeled break/continue will be handled during the
15264 break/continue patch operation */
15265 break_continue
15266 = build (EXIT_BLOCK_EXPR, NULL_TREE, label_block_expr, NULL_TREE);
15268 IS_BREAK_STMT_P (break_continue) = is_break;
15269 TREE_SIDE_EFFECTS (break_continue) = 1;
15270 EXPR_WFL_LINECOL (break_continue) = location;
15271 break_continue = build_debugable_stmt (location, break_continue);
15272 return break_continue;
15275 /* Verification of a break/continue statement. */
15277 static tree
15278 patch_bc_statement (node)
15279 tree node;
15281 tree bc_label = EXIT_BLOCK_LABELED_BLOCK (node), target_stmt;
15282 tree labeled_block = ctxp->current_labeled_block;
15283 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15285 /* Having an identifier here means that the target is unknown. */
15286 if (bc_label != NULL_TREE && TREE_CODE (bc_label) == IDENTIFIER_NODE)
15288 parse_error_context (wfl_operator, "No label definition found for `%s'",
15289 IDENTIFIER_POINTER (bc_label));
15290 return error_mark_node;
15292 if (! IS_BREAK_STMT_P (node))
15294 /* It's a continue statement. */
15295 for (;; labeled_block = TREE_CHAIN (labeled_block))
15297 if (labeled_block == NULL_TREE)
15299 if (bc_label == NULL_TREE)
15300 parse_error_context (wfl_operator,
15301 "`continue' must be in loop");
15302 else
15303 parse_error_context
15304 (wfl_operator, "continue label `%s' does not name a loop",
15305 IDENTIFIER_POINTER (bc_label));
15306 return error_mark_node;
15308 if ((DECL_NAME (LABELED_BLOCK_LABEL (labeled_block))
15309 == continue_identifier_node)
15310 && (bc_label == NULL_TREE
15311 || TREE_CHAIN (labeled_block) == bc_label))
15313 bc_label = labeled_block;
15314 break;
15318 else if (!bc_label)
15320 for (;; labeled_block = TREE_CHAIN (labeled_block))
15322 if (labeled_block == NULL_TREE)
15324 parse_error_context (wfl_operator,
15325 "`break' must be in loop or switch");
15326 return error_mark_node;
15328 target_stmt = LABELED_BLOCK_BODY (labeled_block);
15329 if (TREE_CODE (target_stmt) == SWITCH_EXPR
15330 || search_loop (target_stmt))
15332 bc_label = labeled_block;
15333 break;
15338 EXIT_BLOCK_LABELED_BLOCK (node) = bc_label;
15339 CAN_COMPLETE_NORMALLY (bc_label) = 1;
15341 /* Our break/continue don't return values. */
15342 TREE_TYPE (node) = void_type_node;
15343 /* Encapsulate the break within a compound statement so that it's
15344 expanded all the times by expand_expr (and not clobbered
15345 sometimes, like after a if statement) */
15346 node = add_stmt_to_compound (NULL_TREE, void_type_node, node);
15347 TREE_SIDE_EFFECTS (node) = 1;
15348 return node;
15351 /* Process the exit expression belonging to a loop. Its type must be
15352 boolean. */
15354 static tree
15355 patch_exit_expr (node)
15356 tree node;
15358 tree expression = TREE_OPERAND (node, 0);
15359 TREE_TYPE (node) = error_mark_node;
15360 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15362 /* The type of expression must be boolean */
15363 if (TREE_TYPE (expression) != boolean_type_node)
15365 parse_error_context
15366 (wfl_operator,
15367 "Incompatible type for loop conditional. Can't convert `%s' to `boolean'",
15368 lang_printable_name (TREE_TYPE (expression), 0));
15369 return error_mark_node;
15371 /* Now we know things are allright, invert the condition, fold and
15372 return */
15373 TREE_OPERAND (node, 0) =
15374 fold (build1 (TRUTH_NOT_EXPR, boolean_type_node, expression));
15376 if (! integer_zerop (TREE_OPERAND (node, 0))
15377 && ctxp->current_loop != NULL_TREE
15378 && TREE_CODE (ctxp->current_loop) == LOOP_EXPR)
15379 CAN_COMPLETE_NORMALLY (ctxp->current_loop) = 1;
15380 if (! integer_onep (TREE_OPERAND (node, 0)))
15381 CAN_COMPLETE_NORMALLY (node) = 1;
15384 TREE_TYPE (node) = void_type_node;
15385 return node;
15388 /* 14.9 Switch statement */
15390 static tree
15391 patch_switch_statement (node)
15392 tree node;
15394 tree se = TREE_OPERAND (node, 0), se_type;
15396 /* Complete the switch expression */
15397 se = TREE_OPERAND (node, 0) = java_complete_tree (se);
15398 se_type = TREE_TYPE (se);
15399 /* The type of the switch expression must be char, byte, short or
15400 int */
15401 if (! JINTEGRAL_TYPE_P (se_type) || se_type == long_type_node)
15403 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15404 parse_error_context (wfl_operator,
15405 "Incompatible type for `switch'. Can't convert `%s' to `int'",
15406 lang_printable_name (se_type, 0));
15407 /* This is what java_complete_tree will check */
15408 TREE_OPERAND (node, 0) = error_mark_node;
15409 return error_mark_node;
15412 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
15414 /* Ready to return */
15415 if (TREE_CODE (TREE_OPERAND (node, 1)) == ERROR_MARK)
15417 TREE_TYPE (node) = error_mark_node;
15418 return error_mark_node;
15420 TREE_TYPE (node) = void_type_node;
15421 TREE_SIDE_EFFECTS (node) = 1;
15422 CAN_COMPLETE_NORMALLY (node)
15423 = CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1))
15424 || ! SWITCH_HAS_DEFAULT (node);
15425 return node;
15428 /* 14.18 The try/catch statements */
15430 /* Encapsulate TRY_STMTS' in a try catch sequence. The catch clause
15431 catches TYPE and executes CATCH_STMTS. */
15433 static tree
15434 encapsulate_with_try_catch (location, type, try_stmts, catch_stmts)
15435 int location;
15436 tree type, try_stmts, catch_stmts;
15438 tree try_block, catch_clause_param, catch_block, catch;
15440 /* First build a try block */
15441 try_block = build_expr_block (try_stmts, NULL_TREE);
15443 /* Build a catch block: we need a catch clause parameter */
15444 catch_clause_param = build_decl (VAR_DECL,
15445 wpv_id, build_pointer_type (type));
15446 /* And a block */
15447 catch_block = build_expr_block (NULL_TREE, catch_clause_param);
15449 /* Initialize the variable and store in the block */
15450 catch = build (MODIFY_EXPR, NULL_TREE, catch_clause_param,
15451 build (JAVA_EXC_OBJ_EXPR, ptr_type_node));
15452 add_stmt_to_block (catch_block, NULL_TREE, catch);
15454 /* Add the catch statements */
15455 add_stmt_to_block (catch_block, NULL_TREE, catch_stmts);
15457 /* Now we can build a CATCH_EXPR */
15458 catch_block = build1 (CATCH_EXPR, NULL_TREE, catch_block);
15460 return build_try_statement (location, try_block, catch_block);
15463 static tree
15464 build_try_statement (location, try_block, catches)
15465 int location;
15466 tree try_block, catches;
15468 tree node = build (TRY_EXPR, NULL_TREE, try_block, catches);
15469 EXPR_WFL_LINECOL (node) = location;
15470 return node;
15473 static tree
15474 build_try_finally_statement (location, try_block, finally)
15475 int location;
15476 tree try_block, finally;
15478 tree node = build (TRY_FINALLY_EXPR, NULL_TREE, try_block, finally);
15479 EXPR_WFL_LINECOL (node) = location;
15480 return node;
15483 static tree
15484 patch_try_statement (node)
15485 tree node;
15487 int error_found = 0;
15488 tree try = TREE_OPERAND (node, 0);
15489 /* Exception handlers are considered in left to right order */
15490 tree catch = nreverse (TREE_OPERAND (node, 1));
15491 tree current, caught_type_list = NULL_TREE;
15493 /* Check catch clauses, if any. Every time we find an error, we try
15494 to process the next catch clause. We process the catch clause before
15495 the try block so that when processing the try block we can check thrown
15496 exceptions againts the caught type list. */
15497 for (current = catch; current; current = TREE_CHAIN (current))
15499 tree carg_decl, carg_type;
15500 tree sub_current, catch_block, catch_clause;
15501 int unreachable;
15503 /* At this point, the structure of the catch clause is
15504 CATCH_EXPR (catch node)
15505 BLOCK (with the decl of the parameter)
15506 COMPOUND_EXPR
15507 MODIFY_EXPR (assignment of the catch parameter)
15508 BLOCK (catch clause block)
15510 catch_clause = TREE_OPERAND (current, 0);
15511 carg_decl = BLOCK_EXPR_DECLS (catch_clause);
15512 carg_type = TREE_TYPE (TREE_TYPE (carg_decl));
15514 /* Catch clauses can't have more than one parameter declared,
15515 but it's already enforced by the grammar. Make sure that the
15516 only parameter of the clause statement in of class Throwable
15517 or a subclass of Throwable, but that was done earlier. The
15518 catch clause parameter type has also been resolved. */
15520 /* Just make sure that the catch clause parameter type inherits
15521 from java.lang.Throwable */
15522 if (!inherits_from_p (carg_type, throwable_type_node))
15524 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (current);
15525 parse_error_context (wfl_operator,
15526 "Can't catch class `%s'. Catch clause parameter type must be a subclass of class `java.lang.Throwable'",
15527 lang_printable_name (carg_type, 0));
15528 error_found = 1;
15529 continue;
15532 /* Partial check for unreachable catch statement: The catch
15533 clause is reachable iff is no earlier catch block A in
15534 the try statement such that the type of the catch
15535 clause's parameter is the same as or a subclass of the
15536 type of A's parameter */
15537 unreachable = 0;
15538 for (sub_current = catch;
15539 sub_current != current; sub_current = TREE_CHAIN (sub_current))
15541 tree sub_catch_clause, decl;
15542 sub_catch_clause = TREE_OPERAND (sub_current, 0);
15543 decl = BLOCK_EXPR_DECLS (sub_catch_clause);
15545 if (inherits_from_p (carg_type, TREE_TYPE (TREE_TYPE (decl))))
15547 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (current);
15548 parse_error_context
15549 (wfl_operator,
15550 "`catch' not reached because of the catch clause at line %d",
15551 EXPR_WFL_LINENO (sub_current));
15552 unreachable = error_found = 1;
15553 break;
15556 /* Complete the catch clause block */
15557 catch_block = java_complete_tree (TREE_OPERAND (current, 0));
15558 if (catch_block == error_mark_node)
15560 error_found = 1;
15561 continue;
15563 if (CAN_COMPLETE_NORMALLY (catch_block))
15564 CAN_COMPLETE_NORMALLY (node) = 1;
15565 TREE_OPERAND (current, 0) = catch_block;
15567 if (unreachable)
15568 continue;
15570 /* Things to do here: the exception must be thrown */
15572 /* Link this type to the caught type list */
15573 caught_type_list = tree_cons (NULL_TREE, carg_type, caught_type_list);
15576 PUSH_EXCEPTIONS (caught_type_list);
15577 if ((try = java_complete_tree (try)) == error_mark_node)
15578 error_found = 1;
15579 if (CAN_COMPLETE_NORMALLY (try))
15580 CAN_COMPLETE_NORMALLY (node) = 1;
15581 POP_EXCEPTIONS ();
15583 /* Verification ends here */
15584 if (error_found)
15585 return error_mark_node;
15587 TREE_OPERAND (node, 0) = try;
15588 TREE_OPERAND (node, 1) = catch;
15589 TREE_TYPE (node) = void_type_node;
15590 return node;
15593 /* 14.17 The synchronized Statement */
15595 static tree
15596 patch_synchronized_statement (node, wfl_op1)
15597 tree node, wfl_op1;
15599 tree expr = java_complete_tree (TREE_OPERAND (node, 0));
15600 tree block = TREE_OPERAND (node, 1);
15602 tree tmp, enter, exit, expr_decl, assignment;
15604 if (expr == error_mark_node)
15606 block = java_complete_tree (block);
15607 return expr;
15610 /* We might be trying to synchronize on a STRING_CST */
15611 if ((tmp = patch_string (expr)))
15612 expr = tmp;
15614 /* The TYPE of expr must be a reference type */
15615 if (!JREFERENCE_TYPE_P (TREE_TYPE (expr)))
15617 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15618 parse_error_context (wfl_operator, "Incompatible type for `synchronized'. Can't convert `%s' to `java.lang.Object'",
15619 lang_printable_name (TREE_TYPE (expr), 0));
15620 return error_mark_node;
15623 if (flag_emit_xref)
15625 TREE_OPERAND (node, 0) = expr;
15626 TREE_OPERAND (node, 1) = java_complete_tree (block);
15627 CAN_COMPLETE_NORMALLY (node) = 1;
15628 return node;
15631 /* Generate a try-finally for the synchronized statement, except
15632 that the handler that catches all throw exception calls
15633 _Jv_MonitorExit and then rethrow the exception.
15634 The synchronized statement is then implemented as:
15635 TRY
15637 _Jv_MonitorEnter (expression)
15638 synchronized_block
15639 _Jv_MonitorExit (expression)
15641 CATCH_ALL
15643 e = _Jv_exception_info ();
15644 _Jv_MonitorExit (expression)
15645 Throw (e);
15646 } */
15648 expr_decl = build_decl (VAR_DECL, generate_name (), TREE_TYPE (expr));
15649 BUILD_MONITOR_ENTER (enter, expr_decl);
15650 BUILD_MONITOR_EXIT (exit, expr_decl);
15651 CAN_COMPLETE_NORMALLY (enter) = 1;
15652 CAN_COMPLETE_NORMALLY (exit) = 1;
15653 assignment = build (MODIFY_EXPR, NULL_TREE, expr_decl, expr);
15654 TREE_SIDE_EFFECTS (assignment) = 1;
15655 node = build1 (CLEANUP_POINT_EXPR, NULL_TREE,
15656 build (COMPOUND_EXPR, NULL_TREE,
15657 build (WITH_CLEANUP_EXPR, NULL_TREE,
15658 build (COMPOUND_EXPR, NULL_TREE,
15659 assignment, enter),
15660 exit, NULL_TREE),
15661 block));
15662 node = build_expr_block (node, expr_decl);
15664 return java_complete_tree (node);
15667 /* 14.16 The throw Statement */
15669 static tree
15670 patch_throw_statement (node, wfl_op1)
15671 tree node, wfl_op1;
15673 tree expr = TREE_OPERAND (node, 0);
15674 tree type = TREE_TYPE (expr);
15675 int unchecked_ok = 0, tryblock_throws_ok = 0;
15677 /* Thrown expression must be assignable to java.lang.Throwable */
15678 if (!try_reference_assignconv (throwable_type_node, expr))
15680 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15681 parse_error_context (wfl_operator,
15682 "Can't throw `%s'; it must be a subclass of class `java.lang.Throwable'",
15683 lang_printable_name (type, 0));
15684 /* If the thrown expression was a reference, we further the
15685 compile-time check. */
15686 if (!JREFERENCE_TYPE_P (type))
15687 return error_mark_node;
15690 /* At least one of the following must be true */
15692 /* The type of the throw expression is a not checked exception,
15693 i.e. is a unchecked expression. */
15694 unchecked_ok = IS_UNCHECKED_EXCEPTION_P (TREE_TYPE (type));
15696 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15697 /* An instance can't throw a checked exception unless that exception
15698 is explicitely declared in the `throws' clause of each
15699 constructor. This doesn't apply to anonymous classes, since they
15700 don't have declared constructors. */
15701 if (!unchecked_ok
15702 && DECL_INSTINIT_P (current_function_decl)
15703 && !ANONYMOUS_CLASS_P (current_class))
15705 tree current;
15706 for (current = TYPE_METHODS (current_class); current;
15707 current = TREE_CHAIN (current))
15708 if (DECL_CONSTRUCTOR_P (current)
15709 && !check_thrown_exceptions_do (TREE_TYPE (expr)))
15711 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)",
15712 lang_printable_name (TREE_TYPE (expr), 0));
15713 return error_mark_node;
15717 /* Throw is contained in a try statement and at least one catch
15718 clause can receive the thrown expression or the current method is
15719 declared to throw such an exception. Or, the throw statement is
15720 contained in a method or constructor declaration and the type of
15721 the Expression is assignable to at least one type listed in the
15722 throws clause the declaration. */
15723 if (!unchecked_ok)
15724 tryblock_throws_ok = check_thrown_exceptions_do (TREE_TYPE (expr));
15725 if (!(unchecked_ok || tryblock_throws_ok))
15727 /* If there is a surrounding try block that has no matching
15728 clatch clause, report it first. A surrounding try block exits
15729 only if there is something after the list of checked
15730 exception thrown by the current function (if any). */
15731 if (IN_TRY_BLOCK_P ())
15732 parse_error_context (wfl_operator, "Checked exception `%s' can't be caught by any of the catch clause(s) of the surrounding `try' block",
15733 lang_printable_name (type, 0));
15734 /* If we have no surrounding try statement and the method doesn't have
15735 any throws, report it now. FIXME */
15737 /* We report that the exception can't be throw from a try block
15738 in all circumstances but when the `throw' is inside a static
15739 block. */
15740 else if (!EXCEPTIONS_P (currently_caught_type_list)
15741 && !tryblock_throws_ok)
15743 if (DECL_CLINIT_P (current_function_decl))
15744 parse_error_context (wfl_operator,
15745 "Checked exception `%s' can't be thrown in initializer",
15746 lang_printable_name (type, 0));
15747 else
15748 parse_error_context (wfl_operator,
15749 "Checked exception `%s' isn't thrown from a `try' block",
15750 lang_printable_name (type, 0));
15752 /* Otherwise, the current method doesn't have the appropriate
15753 throws declaration */
15754 else
15755 parse_error_context (wfl_operator, "Checked exception `%s' doesn't match any of current method's `throws' declaration(s)",
15756 lang_printable_name (type, 0));
15757 return error_mark_node;
15760 if (! flag_emit_class_files && ! flag_emit_xref)
15761 BUILD_THROW (node, expr);
15763 /* If doing xrefs, keep the location where the `throw' was seen. */
15764 if (flag_emit_xref)
15765 EXPR_WFL_LINECOL (node) = EXPR_WFL_LINECOL (wfl_op1);
15766 return node;
15769 /* Check that exception said to be thrown by method DECL can be
15770 effectively caught from where DECL is invoked. */
15772 static void
15773 check_thrown_exceptions (location, decl)
15774 int location;
15775 tree decl;
15777 tree throws;
15778 /* For all the unchecked exceptions thrown by DECL */
15779 for (throws = DECL_FUNCTION_THROWS (decl); throws;
15780 throws = TREE_CHAIN (throws))
15781 if (!check_thrown_exceptions_do (TREE_VALUE (throws)))
15783 #if 1
15784 /* Temporary hack to suppresses errors about cloning arrays. FIXME */
15785 if (DECL_NAME (decl) == get_identifier ("clone"))
15786 continue;
15787 #endif
15788 EXPR_WFL_LINECOL (wfl_operator) = location;
15789 if (DECL_FINIT_P (current_function_decl))
15790 parse_error_context
15791 (wfl_operator, "Exception `%s' can't be thrown in initializer",
15792 lang_printable_name (TREE_VALUE (throws), 0));
15793 else
15795 parse_error_context
15796 (wfl_operator, "Exception `%s' must be caught, or it must be declared in the `throws' clause of `%s'",
15797 lang_printable_name (TREE_VALUE (throws), 0),
15798 (DECL_INIT_P (current_function_decl) ?
15799 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))) :
15800 IDENTIFIER_POINTER (DECL_NAME (current_function_decl))));
15805 /* Return 1 if checked EXCEPTION is caught at the current nesting level of
15806 try-catch blocks, OR is listed in the `throws' clause of the
15807 current method. */
15809 static int
15810 check_thrown_exceptions_do (exception)
15811 tree exception;
15813 tree list = currently_caught_type_list;
15814 resolve_and_layout (exception, NULL_TREE);
15815 /* First, all the nested try-catch-finally at that stage. The
15816 last element contains `throws' clause exceptions, if any. */
15817 if (IS_UNCHECKED_EXCEPTION_P (exception))
15818 return 1;
15819 while (list)
15821 tree caught;
15822 for (caught = TREE_VALUE (list); caught; caught = TREE_CHAIN (caught))
15823 if (valid_ref_assignconv_cast_p (exception, TREE_VALUE (caught), 0))
15824 return 1;
15825 list = TREE_CHAIN (list);
15827 return 0;
15830 static void
15831 purge_unchecked_exceptions (mdecl)
15832 tree mdecl;
15834 tree throws = DECL_FUNCTION_THROWS (mdecl);
15835 tree new = NULL_TREE;
15837 while (throws)
15839 tree next = TREE_CHAIN (throws);
15840 if (!IS_UNCHECKED_EXCEPTION_P (TREE_VALUE (throws)))
15842 TREE_CHAIN (throws) = new;
15843 new = throws;
15845 throws = next;
15847 /* List is inverted here, but it doesn't matter */
15848 DECL_FUNCTION_THROWS (mdecl) = new;
15851 /* This function goes over all of CLASS_TYPE ctors and checks whether
15852 each of them features at least one unchecked exception in its
15853 `throws' clause. If it's the case, it returns `true', `false'
15854 otherwise. */
15856 static bool
15857 ctors_unchecked_throws_clause_p (class_type)
15858 tree class_type;
15860 tree current;
15862 for (current = TYPE_METHODS (class_type); current;
15863 current = TREE_CHAIN (current))
15865 bool ctu = false; /* Ctor Throws Unchecked */
15866 if (DECL_CONSTRUCTOR_P (current))
15868 tree throws;
15869 for (throws = DECL_FUNCTION_THROWS (current); throws && !ctu;
15870 throws = TREE_CHAIN (throws))
15871 if (inherits_from_p (TREE_VALUE (throws), exception_type_node))
15872 ctu = true;
15874 /* We return false as we found one ctor that is unfit. */
15875 if (!ctu && DECL_CONSTRUCTOR_P (current))
15876 return false;
15878 /* All ctors feature at least one unchecked exception in their
15879 `throws' clause. */
15880 return true;
15883 /* 15.24 Conditional Operator ?: */
15885 static tree
15886 patch_conditional_expr (node, wfl_cond, wfl_op1)
15887 tree node, wfl_cond, wfl_op1;
15889 tree cond = TREE_OPERAND (node, 0);
15890 tree op1 = TREE_OPERAND (node, 1);
15891 tree op2 = TREE_OPERAND (node, 2);
15892 tree resulting_type = NULL_TREE;
15893 tree t1, t2, patched;
15894 int error_found = 0;
15896 /* Operands of ?: might be StringBuffers crafted as a result of a
15897 string concatenation. Obtain a descent operand here. */
15898 if ((patched = patch_string (op1)))
15899 TREE_OPERAND (node, 1) = op1 = patched;
15900 if ((patched = patch_string (op2)))
15901 TREE_OPERAND (node, 2) = op2 = patched;
15903 t1 = TREE_TYPE (op1);
15904 t2 = TREE_TYPE (op2);
15906 /* The first expression must be a boolean */
15907 if (TREE_TYPE (cond) != boolean_type_node)
15909 SET_WFL_OPERATOR (wfl_operator, node, wfl_cond);
15910 parse_error_context (wfl_operator,
15911 "Incompatible type for `?:'. Can't convert `%s' to `boolean'",
15912 lang_printable_name (TREE_TYPE (cond), 0));
15913 error_found = 1;
15916 /* Second and third can be numeric, boolean (i.e. primitive),
15917 references or null. Anything else results in an error */
15918 if (!((JNUMERIC_TYPE_P (t1) && JNUMERIC_TYPE_P (t2))
15919 || ((JREFERENCE_TYPE_P (t1) || op1 == null_pointer_node)
15920 && (JREFERENCE_TYPE_P (t2) || op2 == null_pointer_node))
15921 || (t1 == boolean_type_node && t2 == boolean_type_node)))
15922 error_found = 1;
15924 /* Determine the type of the conditional expression. Same types are
15925 easy to deal with */
15926 else if (t1 == t2)
15927 resulting_type = t1;
15929 /* There are different rules for numeric types */
15930 else if (JNUMERIC_TYPE_P (t1))
15932 /* if byte/short found, the resulting type is short */
15933 if ((t1 == byte_type_node && t2 == short_type_node)
15934 || (t1 == short_type_node && t2 == byte_type_node))
15935 resulting_type = short_type_node;
15937 /* If t1 is a constant int and t2 is of type byte, short or char
15938 and t1's value fits in t2, then the resulting type is t2 */
15939 else if ((t1 == int_type_node && TREE_CONSTANT (TREE_OPERAND (node, 1)))
15940 && JBSC_TYPE_P (t2) && int_fits_type_p (TREE_OPERAND (node, 1), t2))
15941 resulting_type = t2;
15943 /* If t2 is a constant int and t1 is of type byte, short or char
15944 and t2's value fits in t1, then the resulting type is t1 */
15945 else if ((t2 == int_type_node && TREE_CONSTANT (TREE_OPERAND (node, 2)))
15946 && JBSC_TYPE_P (t1) && int_fits_type_p (TREE_OPERAND (node, 2), t1))
15947 resulting_type = t1;
15949 /* Otherwise, binary numeric promotion is applied and the
15950 resulting type is the promoted type of operand 1 and 2 */
15951 else
15952 resulting_type = binary_numeric_promotion (t1, t2,
15953 &TREE_OPERAND (node, 1),
15954 &TREE_OPERAND (node, 2));
15957 /* Cases of a reference and a null type */
15958 else if (JREFERENCE_TYPE_P (t1) && op2 == null_pointer_node)
15959 resulting_type = t1;
15961 else if (JREFERENCE_TYPE_P (t2) && op1 == null_pointer_node)
15962 resulting_type = t2;
15964 /* Last case: different reference types. If a type can be converted
15965 into the other one by assignment conversion, the latter
15966 determines the type of the expression */
15967 else if ((resulting_type = try_reference_assignconv (t1, op2)))
15968 resulting_type = promote_type (t1);
15970 else if ((resulting_type = try_reference_assignconv (t2, op1)))
15971 resulting_type = promote_type (t2);
15973 /* If we don't have any resulting type, we're in trouble */
15974 if (!resulting_type)
15976 char *t = xstrdup (lang_printable_name (t1, 0));
15977 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15978 parse_error_context (wfl_operator,
15979 "Incompatible type for `?:'. Can't convert `%s' to `%s'",
15980 t, lang_printable_name (t2, 0));
15981 free (t);
15982 error_found = 1;
15985 if (error_found)
15987 TREE_TYPE (node) = error_mark_node;
15988 return error_mark_node;
15991 TREE_TYPE (node) = resulting_type;
15992 TREE_SET_CODE (node, COND_EXPR);
15993 CAN_COMPLETE_NORMALLY (node) = 1;
15994 return node;
15997 /* Wrap EXPR with code to initialize DECL's class, if appropriate. */
15999 static tree
16000 maybe_build_class_init_for_field (decl, expr)
16001 tree decl, expr;
16003 tree clas = DECL_CONTEXT (decl);
16004 if (flag_emit_class_files || flag_emit_xref)
16005 return expr;
16007 if (TREE_CODE (decl) == VAR_DECL && FIELD_STATIC (decl)
16008 && FIELD_FINAL (decl))
16010 tree init = DECL_INITIAL (decl);
16011 if (init != NULL_TREE)
16012 init = fold_constant_for_init (init, decl);
16013 if (init != NULL_TREE && CONSTANT_VALUE_P (init))
16014 return expr;
16017 return build_class_init (clas, expr);
16020 /* Try to constant fold NODE.
16021 If NODE is not a constant expression, return NULL_EXPR.
16022 CONTEXT is a static final VAR_DECL whose initializer we are folding. */
16024 static tree
16025 fold_constant_for_init (node, context)
16026 tree node;
16027 tree context;
16029 tree op0, op1, val;
16030 enum tree_code code = TREE_CODE (node);
16032 switch (code)
16034 case STRING_CST:
16035 case INTEGER_CST:
16036 case REAL_CST:
16037 return node;
16039 case PLUS_EXPR:
16040 case MINUS_EXPR:
16041 case MULT_EXPR:
16042 case TRUNC_MOD_EXPR:
16043 case RDIV_EXPR:
16044 case LSHIFT_EXPR:
16045 case RSHIFT_EXPR:
16046 case URSHIFT_EXPR:
16047 case BIT_AND_EXPR:
16048 case BIT_XOR_EXPR:
16049 case BIT_IOR_EXPR:
16050 case TRUTH_ANDIF_EXPR:
16051 case TRUTH_ORIF_EXPR:
16052 case EQ_EXPR:
16053 case NE_EXPR:
16054 case GT_EXPR:
16055 case GE_EXPR:
16056 case LT_EXPR:
16057 case LE_EXPR:
16058 op0 = TREE_OPERAND (node, 0);
16059 op1 = TREE_OPERAND (node, 1);
16060 val = fold_constant_for_init (op0, context);
16061 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16062 return NULL_TREE;
16063 TREE_OPERAND (node, 0) = val;
16064 val = fold_constant_for_init (op1, context);
16065 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16066 return NULL_TREE;
16067 TREE_OPERAND (node, 1) = val;
16068 return patch_binop (node, op0, op1);
16070 case UNARY_PLUS_EXPR:
16071 case NEGATE_EXPR:
16072 case TRUTH_NOT_EXPR:
16073 case BIT_NOT_EXPR:
16074 case CONVERT_EXPR:
16075 op0 = TREE_OPERAND (node, 0);
16076 val = fold_constant_for_init (op0, context);
16077 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16078 return NULL_TREE;
16079 TREE_OPERAND (node, 0) = val;
16080 return patch_unaryop (node, op0);
16081 break;
16083 case COND_EXPR:
16084 val = fold_constant_for_init (TREE_OPERAND (node, 0), context);
16085 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16086 return NULL_TREE;
16087 TREE_OPERAND (node, 0) = val;
16088 val = fold_constant_for_init (TREE_OPERAND (node, 1), context);
16089 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16090 return NULL_TREE;
16091 TREE_OPERAND (node, 1) = val;
16092 val = fold_constant_for_init (TREE_OPERAND (node, 2), context);
16093 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16094 return NULL_TREE;
16095 TREE_OPERAND (node, 2) = val;
16096 return integer_zerop (TREE_OPERAND (node, 0)) ? TREE_OPERAND (node, 1)
16097 : TREE_OPERAND (node, 2);
16099 case VAR_DECL:
16100 case FIELD_DECL:
16101 if (! FIELD_FINAL (node)
16102 || DECL_INITIAL (node) == NULL_TREE)
16103 return NULL_TREE;
16104 val = DECL_INITIAL (node);
16105 /* Guard against infinite recursion. */
16106 DECL_INITIAL (node) = NULL_TREE;
16107 val = fold_constant_for_init (val, node);
16108 DECL_INITIAL (node) = val;
16109 if (!val && CLASS_FINAL_VARIABLE_P (node))
16110 DECL_FIELD_FINAL_IUD (node) = 0;
16111 return val;
16113 case EXPR_WITH_FILE_LOCATION:
16114 /* Compare java_complete_tree and resolve_expression_name. */
16115 if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
16116 || TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
16118 tree name = EXPR_WFL_NODE (node);
16119 tree decl;
16120 if (PRIMARY_P (node))
16121 return NULL_TREE;
16122 else if (! QUALIFIED_P (name))
16124 decl = lookup_field_wrapper (DECL_CONTEXT (context), name);
16125 if (decl == NULL_TREE
16126 || (! FIELD_STATIC (decl) && ! FIELD_FINAL (decl)))
16127 return NULL_TREE;
16128 return fold_constant_for_init (decl, decl);
16130 else
16132 /* Wait until the USE_COMPONENT_REF re-write. FIXME. */
16133 qualify_ambiguous_name (node);
16134 if (resolve_field_access (node, &decl, NULL)
16135 && decl != NULL_TREE)
16136 return fold_constant_for_init (decl, decl);
16137 return NULL_TREE;
16140 else
16142 op0 = TREE_OPERAND (node, 0);
16143 val = fold_constant_for_init (op0, context);
16144 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16145 return NULL_TREE;
16146 TREE_OPERAND (node, 0) = val;
16147 return val;
16150 #ifdef USE_COMPONENT_REF
16151 case IDENTIFIER:
16152 case COMPONENT_REF:
16154 #endif
16156 default:
16157 return NULL_TREE;
16161 #ifdef USE_COMPONENT_REF
16162 /* Context is 'T' for TypeName, 'P' for PackageName,
16163 'M' for MethodName, 'E' for ExpressionName, and 'A' for AmbiguousName. */
16165 tree
16166 resolve_simple_name (name, context)
16167 tree name;
16168 int context;
16172 tree
16173 resolve_qualified_name (name, context)
16174 tree name;
16175 int context;
16178 #endif
16180 /* Mark P, which is really a `struct parser_ctxt **' for GC. */
16182 static void
16183 mark_parser_ctxt (p)
16184 void *p;
16186 struct parser_ctxt *pc = *((struct parser_ctxt **) p);
16187 int i;
16189 if (!pc)
16190 return;
16192 #ifndef JC1_LITE
16193 for (i = 0; i < 11; ++i)
16194 ggc_mark_tree (pc->modifier_ctx[i]);
16195 ggc_mark_tree (pc->class_type);
16196 ggc_mark_tree (pc->function_decl);
16197 ggc_mark_tree (pc->package);
16198 ggc_mark_tree (pc->class_list);
16199 ggc_mark_tree (pc->current_parsed_class);
16200 ggc_mark_tree (pc->current_parsed_class_un);
16201 ggc_mark_tree (pc->non_static_initialized);
16202 ggc_mark_tree (pc->static_initialized);
16203 ggc_mark_tree (pc->instance_initializers);
16204 ggc_mark_tree (pc->import_list);
16205 ggc_mark_tree (pc->import_demand_list);
16206 ggc_mark_tree (pc->current_loop);
16207 ggc_mark_tree (pc->current_labeled_block);
16208 #endif /* JC1_LITE */
16210 if (pc->next)
16211 mark_parser_ctxt (&pc->next);
16214 void
16215 init_src_parse ()
16217 /* Register roots with the garbage collector. */
16218 ggc_add_tree_root (src_parse_roots, sizeof (src_parse_roots) / sizeof(tree));
16223 /* This section deals with the functions that are called when tables
16224 recording class initialization information are traversed. */
16226 /* Attach to PTR (a block) the declaration found in ENTRY. */
16228 static bool
16229 attach_init_test_initialization_flags (entry, ptr)
16230 struct hash_entry *entry;
16231 PTR ptr;
16233 tree block = (tree)ptr;
16234 struct init_test_hash_entry *ite = (struct init_test_hash_entry *) entry;
16236 TREE_CHAIN (ite->init_test_decl) = BLOCK_EXPR_DECLS (block);
16237 BLOCK_EXPR_DECLS (block) = ite->init_test_decl;
16238 return true;
16241 /* This function is called for each statement calling a static
16242 function. ENTRY is a TREE_LIST whose PURPOSE is the called
16243 function and VALUE is a compound whose second operand can be
16244 patched with static class initialization flag assignments. */
16246 static bool
16247 adjust_init_test_initialization (entry, info)
16248 struct hash_entry *entry;
16249 PTR info ATTRIBUTE_UNUSED;
16251 tree list = (tree)(entry->key);
16252 tree called_method = TREE_PURPOSE (list);
16253 tree compound = TREE_VALUE (list);
16254 tree assignment_compound_list = build_tree_list (called_method, NULL);
16256 /* For each class definitely initialized in CALLED_METHOD, fill
16257 ASSIGNMENT_COMPOUND with assignment to the class initialization flag. */
16258 hash_traverse (&DECL_FUNCTION_INITIALIZED_CLASS_TABLE (called_method),
16259 emit_test_initialization, assignment_compound_list);
16261 if (TREE_VALUE (assignment_compound_list))
16262 TREE_OPERAND (compound, 1) = TREE_VALUE (assignment_compound_list);
16264 return true;
16267 /* This function is called for each classes that is known definitely
16268 assigned when a given static method was called. This function
16269 augments a compound expression (INFO) storing all assignment to
16270 initialized static class flags if a flag already existed, otherwise
16271 a new one is created. */
16273 static bool
16274 emit_test_initialization (entry, info)
16275 struct hash_entry *entry;
16276 PTR info;
16278 tree l = (tree) info;
16279 tree decl, init;
16281 struct init_test_hash_entry *ite = (struct init_test_hash_entry *)
16282 hash_lookup (&DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl),
16283 entry->key, FALSE, NULL);
16285 /* If we haven't found a flag and we're dealing with self registered
16286 with current_function_decl, then don't do anything. Self is
16287 always added as definitely initialized but this information is
16288 valid only if used outside the current function. */
16289 if (! ite)
16291 if (current_function_decl != TREE_PURPOSE (l))
16292 ite = (struct init_test_hash_entry *)
16293 hash_lookup (&DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl),
16294 entry->key, TRUE, NULL);
16295 else
16296 return true;
16299 /* If we don't have a variable, create one and install it. */
16300 if (! ite->init_test_decl)
16302 tree block;
16304 decl = build_decl (VAR_DECL, NULL_TREE, boolean_type_node);
16305 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
16306 LOCAL_CLASS_INITIALIZATION_FLAG (decl) = 1;
16307 DECL_CONTEXT (decl) = current_function_decl;
16308 DECL_INITIAL (decl) = boolean_true_node;
16310 /* The trick is to find the right context for it. */
16311 block = BLOCK_SUBBLOCKS (GET_CURRENT_BLOCK (current_function_decl));
16312 TREE_CHAIN (decl) = BLOCK_EXPR_DECLS (block);
16313 BLOCK_EXPR_DECLS (block) = decl;
16314 ite->init_test_decl = decl;
16316 else
16317 decl = ite->init_test_decl;
16319 /* Now simply augment the compound that holds all the assignments
16320 pertaining to this method invocation. */
16321 init = build (MODIFY_EXPR, boolean_type_node, decl, boolean_true_node);
16322 TREE_SIDE_EFFECTS (init) = 1;
16323 TREE_VALUE (l) = add_stmt_to_compound (TREE_VALUE (l), void_type_node, init);
16324 TREE_SIDE_EFFECTS (TREE_VALUE (l)) = 1;
16326 return true;