Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / java / parse.y
bloba467ff15a79fe63b12cce66a662cd20302743fd8
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, 2002, 2003, 2004, 2005
4 Free Software Foundation, Inc.
5 Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to
21 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA.
24 Java and all Java-based marks are trademarks or registered trademarks
25 of Sun Microsystems, Inc. in the United States and other countries.
26 The Free Software Foundation is independent of Sun Microsystems, Inc. */
28 /* This file parses java source code and issues a tree node image
29 suitable for code generation (byte code and targeted CPU assembly
30 language).
32 The grammar conforms to the Java grammar described in "The Java(TM)
33 Language Specification. J. Gosling, B. Joy, G. Steele. Addison Wesley
34 1996, ISBN 0-201-63451-1"
36 The following modifications were brought to the original grammar:
38 method_body: added the rule '| block SC_TK'
39 static_initializer: added the rule 'static block SC_TK'.
41 Note: All the extra rules described above should go away when the
42 empty_statement rule will work.
44 statement_nsi: 'nsi' should be read no_short_if.
46 Some rules have been modified to support JDK1.1 inner classes
47 definitions and other extensions. */
50 #include "config.h"
51 #include "system.h"
52 #include "coretypes.h"
53 #include "tm.h"
54 #include <dirent.h>
55 #include "tree.h"
56 #include "rtl.h"
57 #include "real.h"
58 #include "obstack.h"
59 #include "toplev.h"
60 #include "pretty-print.h"
61 #include "diagnostic.h"
62 #include "flags.h"
63 #include "java-tree.h"
64 #include "jcf.h"
65 #include "lex.h"
66 #include "parse.h"
67 #include "zipfile.h"
68 #include "convert.h"
69 #include "buffer.h"
70 #include "function.h"
71 #include "except.h"
72 #include "ggc.h"
73 #include "debug.h"
74 #include "tree-inline.h"
75 #include "tree-dump.h"
76 #include "cgraph.h"
77 #include "target.h"
79 /* Local function prototypes */
80 static char *java_accstring_lookup (int);
81 static const char *accessibility_string (int);
82 static void classitf_redefinition_error (const char *,tree, tree, tree);
83 static void variable_redefinition_error (tree, tree, tree, int);
84 static tree create_class (int, tree, tree, tree);
85 static tree create_interface (int, tree, tree);
86 static void end_class_declaration (int);
87 static tree find_field (tree, tree);
88 static tree lookup_field_wrapper (tree, tree);
89 static int duplicate_declaration_error_p (tree, tree, tree);
90 static void register_fields (int, tree, tree);
91 static tree parser_qualified_classname (tree);
92 static int parser_check_super (tree, tree, tree);
93 static int parser_check_super_interface (tree, tree, tree);
94 static void check_modifiers_consistency (int);
95 static tree lookup_cl (tree);
96 static tree lookup_java_method2 (tree, tree, int);
97 static tree method_header (int, tree, tree, tree);
98 static void fix_method_argument_names (tree ,tree);
99 static tree method_declarator (tree, tree);
100 static void parse_warning_context (tree cl, const char *gmsgid, ...) ATTRIBUTE_GCC_DIAG(2,3);
101 #ifdef USE_MAPPED_LOCATION
102 static void issue_warning_error_from_context
103 (source_location, const char *gmsgid, va_list *);
104 #else
105 static void issue_warning_error_from_context
106 (tree, const char *gmsgid, va_list *);
107 #endif
108 static void parse_ctor_invocation_error (void);
109 static tree parse_jdk1_1_error (const char *);
110 static void complete_class_report_errors (jdep *);
111 static int process_imports (void);
112 static void read_import_dir (tree);
113 static int find_in_imports_on_demand (tree, tree);
114 static void find_in_imports (tree, tree);
115 static bool inner_class_accessible (tree, tree);
116 static void check_inner_class_access (tree, tree, tree);
117 static int check_pkg_class_access (tree, tree, bool, tree);
118 static tree resolve_package (tree, tree *, tree *);
119 static tree resolve_class (tree, tree, tree, tree);
120 static void declare_local_variables (int, tree, tree);
121 static void dump_java_tree (enum tree_dump_index, tree);
122 static void source_start_java_method (tree);
123 static void source_end_java_method (void);
124 static tree find_name_in_single_imports (tree);
125 static void check_abstract_method_header (tree);
126 static tree lookup_java_interface_method2 (tree, tree);
127 static tree resolve_expression_name (tree, tree *);
128 static tree maybe_create_class_interface_decl (tree, tree, tree, tree);
129 static int check_class_interface_creation (int, int, tree, tree, tree, tree);
130 static tree patch_method_invocation (tree, tree, tree, int, int *, tree *);
131 static tree resolve_and_layout (tree, tree);
132 static tree qualify_and_find (tree, tree, tree);
133 static tree resolve_no_layout (tree, tree);
134 static int invocation_mode (tree, int);
135 static tree find_applicable_accessible_methods_list (int, tree, tree, tree);
136 static void search_applicable_methods_list (int, tree, tree, tree, tree *, tree *);
137 static tree find_most_specific_methods_list (tree);
138 static int argument_types_convertible (tree, tree);
139 static tree patch_invoke (tree, tree, tree);
140 static int maybe_use_access_method (int, tree *, tree *);
141 static tree lookup_method_invoke (int, tree, tree, tree, tree);
142 static tree register_incomplete_type (int, tree, tree, tree);
143 static tree check_inner_circular_reference (tree, tree);
144 static tree check_circular_reference (tree);
145 static tree obtain_incomplete_type (tree);
146 static tree java_complete_lhs (tree);
147 static tree java_complete_tree (tree);
148 static tree maybe_generate_pre_expand_clinit (tree);
149 static int analyze_clinit_body (tree, tree);
150 static int maybe_yank_clinit (tree);
151 static void start_complete_expand_method (tree);
152 static void java_complete_expand_method (tree);
153 static void java_expand_method_bodies (tree);
154 static int unresolved_type_p (tree, tree *);
155 static void create_jdep_list (struct parser_ctxt *);
156 static tree build_expr_block (tree, tree);
157 static tree enter_block (void);
158 static tree exit_block (void);
159 static tree lookup_name_in_blocks (tree);
160 static void maybe_absorb_scoping_blocks (void);
161 static tree build_method_invocation (tree, tree);
162 static tree build_new_invocation (tree, tree);
163 static tree build_assignment (int, int, tree, tree);
164 static tree build_binop (enum tree_code, int, tree, tree);
165 static tree patch_assignment (tree, tree);
166 static tree patch_binop (tree, tree, tree, int);
167 static tree build_unaryop (int, int, tree);
168 static tree build_incdec (int, int, tree, int);
169 static tree patch_unaryop (tree, tree);
170 static tree build_cast (int, tree, tree);
171 static tree build_null_of_type (tree);
172 static tree patch_cast (tree, tree);
173 static int valid_ref_assignconv_cast_p (tree, tree, int);
174 static int valid_builtin_assignconv_identity_widening_p (tree, tree);
175 static int valid_cast_to_p (tree, tree);
176 static int valid_method_invocation_conversion_p (tree, tree);
177 static tree try_builtin_assignconv (tree, tree, tree);
178 static tree try_reference_assignconv (tree, tree);
179 static tree build_unresolved_array_type (tree);
180 static int build_type_name_from_array_name (tree, tree *);
181 static tree build_array_from_name (tree, tree, tree, tree *);
182 static tree build_array_ref (int, tree, tree);
183 static tree patch_array_ref (tree);
184 #ifdef USE_MAPPED_LOCATION
185 static tree make_qualified_name (tree, tree, source_location);
186 #else
187 static tree make_qualified_name (tree, tree, int);
188 #endif
189 static tree merge_qualified_name (tree, tree);
190 static tree make_qualified_primary (tree, tree, int);
191 static int resolve_qualified_expression_name (tree, tree *, tree *, tree *);
192 static void qualify_ambiguous_name (tree);
193 static tree resolve_field_access (tree, tree *, tree *);
194 static tree build_newarray_node (tree, tree, int);
195 static tree patch_newarray (tree);
196 static tree resolve_type_during_patch (tree);
197 static tree build_this (int);
198 static tree build_wfl_wrap (tree, int);
199 static tree build_return (int, tree);
200 static tree patch_return (tree);
201 static tree maybe_access_field (tree, tree, tree);
202 static int complete_function_arguments (tree);
203 static int check_for_static_method_reference (tree, tree, tree, tree, tree);
204 static int not_accessible_p (tree, tree, tree, int);
205 static void check_deprecation (tree, tree);
206 static int class_in_current_package (tree);
207 static tree build_if_else_statement (int, tree, tree, tree);
208 static tree patch_if_else_statement (tree);
209 static tree add_stmt_to_block (tree, tree, tree);
210 static tree patch_exit_expr (tree);
211 static tree build_labeled_block (int, tree);
212 static tree finish_labeled_statement (tree, tree);
213 static tree build_bc_statement (int, int, tree);
214 static tree patch_bc_statement (tree);
215 static tree patch_loop_statement (tree);
216 static tree build_new_loop (tree);
217 static tree build_loop_body (int, tree, int);
218 static tree finish_loop_body (int, tree, tree, int);
219 static tree build_debugable_stmt (int, tree);
220 static tree finish_for_loop (int, tree, tree, tree);
221 static tree patch_switch_statement (tree);
222 static tree string_constant_concatenation (tree, tree);
223 static tree build_string_concatenation (tree, tree);
224 static tree patch_string_cst (tree);
225 static tree patch_string (tree);
226 static tree encapsulate_with_try_catch (int, tree, tree, tree);
227 #ifdef USE_MAPPED_LOCATION
228 static tree build_assertion (source_location, tree, tree);
229 #else
230 static tree build_assertion (int, tree, tree);
231 #endif
232 static tree build_try_statement (int, tree, tree);
233 static tree build_try_finally_statement (int, tree, tree);
234 static tree patch_try_statement (tree);
235 static tree patch_synchronized_statement (tree, tree);
236 static tree patch_throw_statement (tree, tree);
237 static void add_exception_to_throws (tree, tree);
238 #ifdef USE_MAPPED_LOCATION
239 static void check_thrown_exceptions (source_location, tree, tree);
240 #else
241 static void check_thrown_exceptions (int, tree, tree);
242 #endif
243 static int check_thrown_exceptions_do (tree);
244 static bool ctors_unchecked_throws_clause_p (tree);
245 static void check_concrete_throws_clauses (tree, tree, tree, tree);
246 static void check_throws_clauses (tree, tree, tree);
247 static void finish_method_declaration (tree);
248 static tree build_super_invocation (tree);
249 static int verify_constructor_circularity (tree, tree);
250 static char *constructor_circularity_msg (tree, tree);
251 static tree build_this_super_qualified_invocation (int, tree, tree, int, int);
252 static const char *get_printable_method_name (tree);
253 static tree patch_conditional_expr (tree, tree, tree);
254 static tree generate_finit (tree);
255 static tree generate_instinit (tree);
256 static tree build_instinit_invocation (tree);
257 static void fix_constructors (tree);
258 static tree build_alias_initializer_parameter_list (int, tree, tree, int *);
259 static tree craft_constructor (tree, tree);
260 static tree get_constructor_super (tree);
261 static tree create_artificial_method (tree, int, tree, tree, tree);
262 static void start_artificial_method_body (tree);
263 static void end_artificial_method_body (tree);
264 static int check_method_redefinition (tree, tree);
265 static int check_method_types_complete (tree);
266 static bool hack_is_accessible_p (tree, tree);
267 static void java_check_regular_methods (tree);
268 static void check_interface_throws_clauses (tree, tree);
269 static void java_check_abstract_methods (tree);
270 static void unreachable_stmt_error (tree);
271 static int not_accessible_field_error (tree, tree);
272 static tree find_expr_with_wfl (tree);
273 static void missing_return_error (tree);
274 static tree build_new_array_init (int, tree);
275 static tree patch_new_array_init (tree, tree);
276 static tree maybe_build_array_element_wfl (tree);
277 static int array_constructor_check_entry (tree, constructor_elt *);
278 static const char *purify_type_name (const char *);
279 static tree fold_constant_for_init (tree, tree);
280 static jdeplist *reverse_jdep_list (struct parser_ctxt *);
281 static void static_ref_err (tree, tree, tree);
282 static void parser_add_interface (tree, tree, tree);
283 static void add_superinterfaces (tree, tree);
284 static tree jdep_resolve_class (jdep *);
285 static int note_possible_classname (const char *, int);
286 static void java_complete_expand_classes (void);
287 static void java_complete_expand_class (tree);
288 static void java_complete_expand_methods (tree);
289 static tree cut_identifier_in_qualified (tree);
290 static tree java_stabilize_reference (tree);
291 static tree do_unary_numeric_promotion (tree);
292 static char * operator_string (tree);
293 static tree do_merge_string_cste (tree, const char *, int, int);
294 static tree merge_string_cste (tree, tree, int);
295 static tree java_refold (tree);
296 static int java_decl_equiv (tree, tree);
297 static int binop_compound_p (enum tree_code);
298 static tree search_loop (tree);
299 static int labeled_block_contains_loop_p (tree, tree);
300 static int check_abstract_method_definitions (int, tree, tree);
301 static void java_check_abstract_method_definitions (tree);
302 static void java_debug_context_do (int);
303 static void java_parser_context_push_initialized_field (void);
304 static void java_parser_context_pop_initialized_field (void);
305 static tree reorder_static_initialized (tree);
306 static void java_parser_context_suspend (void);
307 static void java_parser_context_resume (void);
308 static int pop_current_osb (struct parser_ctxt *);
310 /* JDK 1.1 work. FIXME */
312 static tree maybe_make_nested_class_name (tree);
313 static int make_nested_class_name (tree);
314 static void link_nested_class_to_enclosing (void);
315 static tree resolve_inner_class (tree, tree, tree, tree);
316 static tree find_as_inner_class (tree, tree, tree);
317 static tree find_as_inner_class_do (tree, tree);
318 static int check_inner_class_redefinition (tree, tree);
320 static tree build_thisn_assign (void);
321 static tree build_current_thisn (tree);
322 static tree build_access_to_thisn (tree, tree, int);
323 static tree maybe_build_thisn_access_method (tree);
325 static tree build_nested_field_access (tree, tree);
326 static tree build_nested_field_access_methods (tree);
327 static tree build_nested_field_access_method (tree, tree, tree, tree, tree);
328 static tree build_nested_field_access_expr (int, tree, tree, tree, tree);
329 static tree build_nested_method_access_method (tree);
330 static tree build_new_access_id (void);
332 static int nested_member_access_p (tree, tree);
333 static int nested_field_expanded_access_p (tree, tree *, tree *, tree *);
334 static tree nested_field_access_fix (tree, tree, tree);
336 static tree build_incomplete_class_ref (int, tree);
337 static tree patch_incomplete_class_ref (tree);
338 static tree create_anonymous_class (tree);
339 static void patch_anonymous_class (tree, tree, tree);
340 static void add_inner_class_fields (tree, tree);
342 static tree build_dot_class_method (tree);
343 static tree build_dot_class_method_invocation (tree, tree);
344 static void create_new_parser_context (int);
345 static tree maybe_build_class_init_for_field (tree, tree);
347 static int emit_test_initialization (void **, void *);
349 static char *string_convert_int_cst (tree);
351 /* Number of error found so far. */
352 int java_error_count;
353 /* Number of warning found so far. */
354 int java_warning_count;
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;
363 struct parser_ctxt *ctxp_for_generation_last = NULL;
365 /* binop_lookup maps token to tree_code. It is used where binary
366 operations are involved and required by the parser. RDIV_EXPR
367 covers both integral/floating point division. The code is changed
368 once the type of both operator is worked out. */
370 static const enum tree_code binop_lookup[19] =
372 PLUS_EXPR, MINUS_EXPR, MULT_EXPR, RDIV_EXPR, TRUNC_MOD_EXPR,
373 LSHIFT_EXPR, RSHIFT_EXPR, URSHIFT_EXPR,
374 BIT_AND_EXPR, BIT_XOR_EXPR, BIT_IOR_EXPR,
375 TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR,
376 EQ_EXPR, NE_EXPR, GT_EXPR, GE_EXPR, LT_EXPR, LE_EXPR,
378 #define BINOP_LOOKUP(VALUE) \
379 binop_lookup [((VALUE) - PLUS_TK) % ARRAY_SIZE (binop_lookup)]
381 /* This is the end index for binary operators that can also be used
382 in compound assignments. */
383 #define BINOP_COMPOUND_CANDIDATES 11
385 /* The "$L" identifier we use to create labels. */
386 static GTY(()) tree label_id;
388 /* The "StringBuffer" identifier used for the String `+' operator. */
389 static GTY(()) tree wfl_string_buffer;
391 /* The "append" identifier used for String `+' operator. */
392 static GTY(()) tree wfl_append;
394 /* The "toString" identifier used for String `+' operator. */
395 static GTY(()) tree wfl_to_string;
397 /* The "java.lang" import qualified name. */
398 static GTY(()) tree java_lang_id;
400 /* The generated `inst$' identifier used for generated enclosing
401 instance/field access functions. */
402 static GTY(()) tree inst_id;
404 /* Context and flag for static blocks */
405 static GTY(()) tree current_static_block;
407 /* The generated `write_parm_value$' identifier. */
408 static GTY(()) tree wpv_id;
410 /* Hold THIS for the scope of the current method decl. */
411 static GTY(()) tree current_this;
413 /* Hold a list of catch clauses list. The first element of this list is
414 the list of the catch clauses of the currently analyzed try block. */
415 static GTY(()) tree currently_caught_type_list;
417 /* This holds a linked list of all the case labels for the current
418 switch statement. It is only used when checking to see if there
419 are duplicate labels. FIXME: probably this should just be attached
420 to the switch itself; then it could be referenced via
421 `ctxp->current_loop'. */
422 static GTY(()) tree case_label_list;
424 /* Anonymous class counter. Will be reset to 1 every time a non
425 anonymous class gets created. */
426 static int anonymous_class_counter = 1;
428 static GTY(()) tree src_parse_roots[1];
430 /* All classes seen from source code */
431 #define gclass_list src_parse_roots[0]
433 /* Check modifiers. If one doesn't fit, retrieve it in its declaration
434 line and point it out. */
435 /* Should point out the one that don't fit. ASCII/unicode, going
436 backward. FIXME */
438 #define check_modifiers(__message, __value, __mask) do { \
439 if ((__value) & ~(__mask)) \
441 size_t i, remainder = (__value) & ~(__mask); \
442 for (i = 0; i < ARRAY_SIZE (ctxp->modifier_ctx); i++) \
443 if ((1 << i) & remainder) \
444 parse_error_context (ctxp->modifier_ctx [i], (__message), \
445 java_accstring_lookup (1 << i)); \
447 } while (0)
451 %union {
452 tree node;
453 int sub_token;
454 struct {
455 int token;
456 #ifdef USE_MAPPED_LOCATION
457 source_location location;
458 #else
459 int location;
460 #endif
461 } operator;
462 int value;
466 #ifdef USE_MAPPED_LOCATION
467 #define SET_EXPR_LOCATION_FROM_TOKEN(EXPR, TOKEN) \
468 SET_EXPR_LOCATION(EXPR, (TOKEN).location)
469 #else
470 #define SET_EXPR_LOCATION_FROM_TOKEN(EXPR, TOKEN) \
471 (EXPR_WFL_LINECOL (EXPR) = (TOKEN).location)
472 #endif
474 #include "lex.c"
477 %pure_parser
479 /* Things defined here have to match the order of what's in the
480 binop_lookup table. */
482 %token PLUS_TK MINUS_TK MULT_TK DIV_TK REM_TK
483 %token LS_TK SRS_TK ZRS_TK
484 %token AND_TK XOR_TK OR_TK
485 %token BOOL_AND_TK BOOL_OR_TK
486 %token EQ_TK NEQ_TK GT_TK GTE_TK LT_TK LTE_TK
488 /* This maps to the same binop_lookup entry than the token above */
490 %token PLUS_ASSIGN_TK MINUS_ASSIGN_TK MULT_ASSIGN_TK DIV_ASSIGN_TK
491 %token REM_ASSIGN_TK
492 %token LS_ASSIGN_TK SRS_ASSIGN_TK ZRS_ASSIGN_TK
493 %token AND_ASSIGN_TK XOR_ASSIGN_TK OR_ASSIGN_TK
496 /* Modifier TOKEN have to be kept in this order. Don't scramble it */
498 %token PUBLIC_TK PRIVATE_TK PROTECTED_TK
499 %token STATIC_TK FINAL_TK SYNCHRONIZED_TK
500 %token VOLATILE_TK TRANSIENT_TK NATIVE_TK
501 %token PAD_TK ABSTRACT_TK STRICT_TK
502 %token MODIFIER_TK
504 /* Keep those two in order, too */
505 %token DECR_TK INCR_TK
507 /* From now one, things can be in any order */
509 %token DEFAULT_TK IF_TK THROW_TK
510 %token BOOLEAN_TK DO_TK IMPLEMENTS_TK
511 %token THROWS_TK BREAK_TK IMPORT_TK
512 %token ELSE_TK INSTANCEOF_TK RETURN_TK
513 %token VOID_TK CATCH_TK INTERFACE_TK
514 %token CASE_TK EXTENDS_TK FINALLY_TK
515 %token SUPER_TK WHILE_TK CLASS_TK
516 %token SWITCH_TK CONST_TK TRY_TK
517 %token FOR_TK NEW_TK CONTINUE_TK
518 %token GOTO_TK PACKAGE_TK THIS_TK
519 %token ASSERT_TK
521 %token BYTE_TK SHORT_TK INT_TK LONG_TK
522 %token CHAR_TK INTEGRAL_TK
524 %token FLOAT_TK DOUBLE_TK FP_TK
526 %token ID_TK
528 %token REL_QM_TK REL_CL_TK NOT_TK NEG_TK
530 %token ASSIGN_ANY_TK ASSIGN_TK
531 %token OP_TK CP_TK OCB_TK CCB_TK OSB_TK CSB_TK SC_TK C_TK DOT_TK
533 %token STRING_LIT_TK CHAR_LIT_TK INT_LIT_TK FP_LIT_TK
534 %token TRUE_TK FALSE_TK BOOL_LIT_TK NULL_TK
536 %type <value> modifiers MODIFIER_TK final synchronized
538 %type <node> super ID_TK identifier
539 %type <node> name simple_name qualified_name
540 %type <node> type_declaration compilation_unit
541 field_declaration method_declaration extends_interfaces
542 interfaces interface_type_list
543 import_declarations package_declaration
544 type_declarations interface_body
545 interface_member_declaration constant_declaration
546 interface_member_declarations interface_type
547 abstract_method_declaration
548 %type <node> class_body_declaration class_member_declaration
549 static_initializer constructor_declaration block
550 %type <node> class_body_declarations constructor_header
551 %type <node> class_or_interface_type class_type class_type_list
552 constructor_declarator explicit_constructor_invocation
553 %type <node> dim_expr dim_exprs this_or_super throws
555 %type <node> variable_declarator_id variable_declarator
556 variable_declarators variable_initializer
557 variable_initializers constructor_body
558 array_initializer
560 %type <node> class_body block_end constructor_block_end
561 %type <node> statement statement_without_trailing_substatement
562 labeled_statement if_then_statement label_decl
563 if_then_else_statement while_statement for_statement
564 statement_nsi labeled_statement_nsi do_statement
565 if_then_else_statement_nsi while_statement_nsi
566 for_statement_nsi statement_expression_list for_init
567 for_update statement_expression expression_statement
568 primary_no_new_array expression primary array_type
569 array_creation_initialized array_creation_uninitialized
570 class_instance_creation_expression field_access
571 method_invocation array_access something_dot_new
572 argument_list postfix_expression while_expression
573 post_increment_expression post_decrement_expression
574 unary_expression_not_plus_minus unary_expression
575 pre_increment_expression pre_decrement_expression
576 cast_expression
577 multiplicative_expression additive_expression
578 shift_expression relational_expression
579 equality_expression and_expression
580 exclusive_or_expression inclusive_or_expression
581 conditional_and_expression conditional_or_expression
582 conditional_expression assignment_expression
583 left_hand_side assignment for_header for_begin
584 constant_expression do_statement_begin empty_statement
585 switch_statement synchronized_statement throw_statement
586 try_statement assert_statement
587 switch_expression switch_block
588 catches catch_clause catch_clause_parameter finally
589 anonymous_class_creation trap_overflow_corner_case
590 %type <node> return_statement break_statement continue_statement
592 %type <operator> ASSIGN_TK MULT_ASSIGN_TK DIV_ASSIGN_TK
593 %type <operator> REM_ASSIGN_TK PLUS_ASSIGN_TK MINUS_ASSIGN_TK
594 %type <operator> LS_ASSIGN_TK SRS_ASSIGN_TK ZRS_ASSIGN_TK
595 %type <operator> AND_ASSIGN_TK XOR_ASSIGN_TK OR_ASSIGN_TK
596 %type <operator> ASSIGN_ANY_TK assignment_operator
597 %token <operator> EQ_TK GTE_TK ZRS_TK SRS_TK GT_TK LTE_TK LS_TK
598 %token <operator> BOOL_AND_TK AND_TK BOOL_OR_TK OR_TK INCR_TK PLUS_TK
599 %token <operator> DECR_TK MINUS_TK MULT_TK DIV_TK XOR_TK REM_TK NEQ_TK
600 %token <operator> NEG_TK REL_QM_TK REL_CL_TK NOT_TK LT_TK OCB_TK CCB_TK
601 %token <operator> OP_TK OSB_TK DOT_TK THROW_TK INSTANCEOF_TK
602 %type <operator> THIS_TK SUPER_TK RETURN_TK BREAK_TK CONTINUE_TK
603 %type <operator> CASE_TK DEFAULT_TK TRY_TK CATCH_TK SYNCHRONIZED_TK
604 %type <operator> NEW_TK ASSERT_TK
606 %type <node> method_body
608 %type <node> literal INT_LIT_TK FP_LIT_TK BOOL_LIT_TK CHAR_LIT_TK
609 STRING_LIT_TK NULL_TK VOID_TK
611 %type <node> IF_TK WHILE_TK FOR_TK
613 %type <node> formal_parameter_list formal_parameter
614 method_declarator method_header
616 %type <node> primitive_type reference_type type
617 BOOLEAN_TK INTEGRAL_TK FP_TK
619 /* Added or modified JDK 1.1 rule types */
620 %type <node> type_literals
623 /* 19.2 Production from 2.3: The Syntactic Grammar */
624 goal: compilation_unit
628 /* 19.3 Productions from 3: Lexical structure */
629 literal:
630 INT_LIT_TK
631 | FP_LIT_TK
632 | BOOL_LIT_TK
633 | CHAR_LIT_TK
634 | STRING_LIT_TK
635 | NULL_TK
638 /* 19.4 Productions from 4: Types, Values and Variables */
639 type:
640 primitive_type
641 | reference_type
644 primitive_type:
645 INTEGRAL_TK
646 | FP_TK
647 | BOOLEAN_TK
650 reference_type:
651 class_or_interface_type
652 | array_type
655 class_or_interface_type:
656 name
659 class_type:
660 class_or_interface_type /* Default rule */
663 interface_type:
664 class_or_interface_type
667 array_type:
668 primitive_type dims
670 int osb = pop_current_osb (ctxp);
671 tree t = build_java_array_type (($1), -1);
672 while (--osb)
673 t = build_unresolved_array_type (t);
674 $$ = t;
676 | name dims
678 int osb = pop_current_osb (ctxp);
679 tree t = $1;
680 while (osb--)
681 t = build_unresolved_array_type (t);
682 $$ = t;
686 /* 19.5 Productions from 6: Names */
687 name:
688 simple_name /* Default rule */
689 | qualified_name /* Default rule */
692 simple_name:
693 identifier /* Default rule */
696 qualified_name:
697 name DOT_TK identifier
698 { $$ = make_qualified_name ($1, $3, $2.location); }
701 identifier:
702 ID_TK
705 /* 19.6: Production from 7: Packages */
706 compilation_unit:
707 {$$ = NULL;}
708 | package_declaration
709 | import_declarations
710 | type_declarations
711 | package_declaration import_declarations
712 | package_declaration type_declarations
713 | import_declarations type_declarations
714 | package_declaration import_declarations type_declarations
717 import_declarations:
718 import_declaration
720 $$ = NULL;
722 | import_declarations import_declaration
724 $$ = NULL;
728 type_declarations:
729 type_declaration
730 | type_declarations type_declaration
733 package_declaration:
734 PACKAGE_TK name SC_TK
736 ctxp->package = EXPR_WFL_NODE ($2);
738 | PACKAGE_TK error
739 {yyerror ("Missing name"); RECOVER;}
740 | PACKAGE_TK name error
741 {yyerror ("';' expected"); RECOVER;}
744 import_declaration:
745 single_type_import_declaration
746 | type_import_on_demand_declaration
749 single_type_import_declaration:
750 IMPORT_TK name SC_TK
752 tree name = EXPR_WFL_NODE ($2), last_name;
753 int i = IDENTIFIER_LENGTH (name)-1;
754 const char *last = &IDENTIFIER_POINTER (name)[i];
755 while (last != IDENTIFIER_POINTER (name))
757 if (last [0] == '.')
758 break;
759 last--;
761 last_name = get_identifier (++last);
762 if (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (last_name))
764 tree err = find_name_in_single_imports (last_name);
765 if (err && err != name)
766 parse_error_context
767 ($2, "Ambiguous class: %qs and %qs",
768 IDENTIFIER_POINTER (name),
769 IDENTIFIER_POINTER (err));
770 else
771 REGISTER_IMPORT ($2, last_name);
773 else
774 REGISTER_IMPORT ($2, last_name);
776 | IMPORT_TK error
777 {yyerror ("Missing name"); RECOVER;}
778 | IMPORT_TK name error
779 {yyerror ("';' expected"); RECOVER;}
782 type_import_on_demand_declaration:
783 IMPORT_TK name DOT_TK MULT_TK SC_TK
785 tree name = EXPR_WFL_NODE ($2);
786 tree it;
787 /* Search for duplicates. */
788 for (it = ctxp->import_demand_list; it; it = TREE_CHAIN (it))
789 if (EXPR_WFL_NODE (TREE_PURPOSE (it)) == name)
790 break;
791 /* Don't import the same thing more than once, just ignore
792 duplicates (7.5.2) */
793 if (! it)
795 read_import_dir ($2);
796 ctxp->import_demand_list =
797 chainon (ctxp->import_demand_list,
798 build_tree_list ($2, NULL_TREE));
801 | IMPORT_TK name DOT_TK error
802 {yyerror ("'*' expected"); RECOVER;}
803 | IMPORT_TK name DOT_TK MULT_TK error
804 {yyerror ("';' expected"); RECOVER;}
807 type_declaration:
808 class_declaration
809 { end_class_declaration (0); }
810 | interface_declaration
811 { end_class_declaration (0); }
812 | empty_statement
813 | error
815 YYERROR_NOW;
816 yyerror ("Class or interface declaration expected");
820 /* 19.7 Shortened from the original:
821 modifiers: modifier | modifiers modifier
822 modifier: any of public... */
823 modifiers:
824 MODIFIER_TK
826 $$ = (1 << $1);
828 | modifiers MODIFIER_TK
830 int acc = (1 << $2);
831 if ($$ & acc)
832 parse_error_context
833 (ctxp->modifier_ctx [$2], "Modifier %qs declared twice",
834 java_accstring_lookup (acc));
835 else
837 $$ |= acc;
842 /* 19.8.1 Production from $8.1: Class Declaration */
843 class_declaration:
844 modifiers CLASS_TK identifier super interfaces
845 { create_class ($1, $3, $4, $5); }
846 class_body
848 | CLASS_TK identifier super interfaces
849 { create_class (0, $2, $3, $4); }
850 class_body
852 | modifiers CLASS_TK error
853 { yyerror ("Missing class name"); RECOVER; }
854 | CLASS_TK error
855 { yyerror ("Missing class name"); RECOVER; }
856 | CLASS_TK identifier error
858 if (!ctxp->class_err) yyerror ("'{' expected");
859 DRECOVER(class1);
861 | modifiers CLASS_TK identifier error
862 { if (!ctxp->class_err) yyerror ("'{' expected"); RECOVER; }
865 super:
866 { $$ = NULL; }
867 | EXTENDS_TK class_type
868 { $$ = $2; }
869 | EXTENDS_TK class_type error
870 {yyerror ("'{' expected"); ctxp->class_err=1;}
871 | EXTENDS_TK error
872 {yyerror ("Missing super class name"); ctxp->class_err=1;}
875 interfaces:
876 { $$ = NULL_TREE; }
877 | IMPLEMENTS_TK interface_type_list
878 { $$ = $2; }
879 | IMPLEMENTS_TK error
881 ctxp->class_err=1;
882 yyerror ("Missing interface name");
886 interface_type_list:
887 interface_type
889 ctxp->interface_number = 1;
890 $$ = build_tree_list ($1, NULL_TREE);
892 | interface_type_list C_TK interface_type
894 ctxp->interface_number++;
895 $$ = chainon ($1, build_tree_list ($3, NULL_TREE));
897 | interface_type_list C_TK error
898 {yyerror ("Missing interface name"); RECOVER;}
901 class_body:
902 OCB_TK CCB_TK
904 $$ = GET_CPC ();
906 | OCB_TK class_body_declarations CCB_TK
908 $$ = GET_CPC ();
912 class_body_declarations:
913 class_body_declaration
914 | class_body_declarations class_body_declaration
917 class_body_declaration:
918 class_member_declaration
919 | static_initializer
920 | constructor_declaration
921 | block /* Added, JDK1.1, instance initializer */
923 if (!IS_EMPTY_STMT ($1))
925 TREE_CHAIN ($1) = CPC_INSTANCE_INITIALIZER_STMT (ctxp);
926 SET_CPC_INSTANCE_INITIALIZER_STMT (ctxp, $1);
931 class_member_declaration:
932 field_declaration
933 | method_declaration
934 | class_declaration /* Added, JDK1.1 inner classes */
935 { end_class_declaration (1); }
936 | interface_declaration /* Added, JDK1.1 inner interfaces */
937 { end_class_declaration (1); }
938 | empty_statement
941 /* 19.8.2 Productions from 8.3: Field Declarations */
942 field_declaration:
943 type variable_declarators SC_TK
944 { register_fields (0, $1, $2); }
945 | modifiers type variable_declarators SC_TK
947 check_modifiers
948 ("Illegal modifier %qs for field declaration",
949 $1, FIELD_MODIFIERS);
950 check_modifiers_consistency ($1);
951 register_fields ($1, $2, $3);
955 variable_declarators:
956 /* Should we use build_decl_list () instead ? FIXME */
957 variable_declarator /* Default rule */
958 | variable_declarators C_TK variable_declarator
959 { $$ = chainon ($1, $3); }
960 | variable_declarators C_TK error
961 {yyerror ("Missing term"); RECOVER;}
964 variable_declarator:
965 variable_declarator_id
966 { $$ = build_tree_list ($1, NULL_TREE); }
967 | variable_declarator_id ASSIGN_TK variable_initializer
969 if (java_error_count)
970 $3 = NULL_TREE;
971 $$ = build_tree_list
972 ($1, build_assignment ($2.token, $2.location, $1, $3));
974 | variable_declarator_id ASSIGN_TK error
976 yyerror ("Missing variable initializer");
977 $$ = build_tree_list ($1, NULL_TREE);
978 RECOVER;
980 | variable_declarator_id ASSIGN_TK variable_initializer error
982 yyerror ("';' expected");
983 $$ = build_tree_list ($1, NULL_TREE);
984 RECOVER;
988 variable_declarator_id:
989 identifier
990 | variable_declarator_id OSB_TK CSB_TK
991 { $$ = build_unresolved_array_type ($1); }
992 | identifier error
993 {yyerror ("Invalid declaration"); DRECOVER(vdi);}
994 | variable_declarator_id OSB_TK error
996 yyerror ("']' expected");
997 DRECOVER(vdi);
999 | variable_declarator_id CSB_TK error
1000 {yyerror ("Unbalanced ']'"); DRECOVER(vdi);}
1003 variable_initializer:
1004 expression
1005 | array_initializer
1008 /* 19.8.3 Productions from 8.4: Method Declarations */
1009 method_declaration:
1010 method_header
1012 current_function_decl = $1;
1013 if (current_function_decl
1014 && TREE_CODE (current_function_decl) == FUNCTION_DECL)
1015 source_start_java_method (current_function_decl);
1016 else
1017 current_function_decl = NULL_TREE;
1019 method_body
1020 { finish_method_declaration ($3); }
1021 | method_header error
1022 {YYNOT_TWICE yyerror ("'{' expected"); RECOVER;}
1025 method_header:
1026 type method_declarator throws
1027 { $$ = method_header (0, $1, $2, $3); }
1028 | VOID_TK method_declarator throws
1029 { $$ = method_header (0, void_type_node, $2, $3); }
1030 | modifiers type method_declarator throws
1031 { $$ = method_header ($1, $2, $3, $4); }
1032 | modifiers VOID_TK method_declarator throws
1033 { $$ = method_header ($1, void_type_node, $3, $4); }
1034 | type error
1036 yyerror ("Invalid method declaration, method name required");
1037 $$ = NULL_TREE;
1038 RECOVER;
1040 | modifiers type error
1042 yyerror ("Identifier expected");
1043 $$ = NULL_TREE;
1044 RECOVER;
1046 | VOID_TK error
1048 yyerror ("Identifier expected");
1049 $$ = NULL_TREE;
1050 RECOVER;
1052 | modifiers VOID_TK error
1054 yyerror ("Identifier expected");
1055 $$ = NULL_TREE;
1056 RECOVER;
1058 | modifiers error
1060 yyerror ("Invalid method declaration, return type required");
1061 $$ = NULL_TREE;
1062 RECOVER;
1066 method_declarator:
1067 identifier OP_TK CP_TK
1069 ctxp->formal_parameter_number = 0;
1070 $$ = method_declarator ($1, NULL_TREE);
1072 | identifier OP_TK formal_parameter_list CP_TK
1073 { $$ = method_declarator ($1, $3); }
1074 | method_declarator OSB_TK CSB_TK
1076 SET_EXPR_LOCATION_FROM_TOKEN (wfl_operator, $2);
1077 TREE_PURPOSE ($1) =
1078 build_unresolved_array_type (TREE_PURPOSE ($1));
1079 parse_warning_context
1080 (wfl_operator,
1081 "Discouraged form of returned type specification");
1083 | identifier OP_TK error
1084 {yyerror ("')' expected"); DRECOVER(method_declarator);}
1085 | method_declarator OSB_TK error
1086 {yyerror ("']' expected"); RECOVER;}
1089 formal_parameter_list:
1090 formal_parameter
1092 ctxp->formal_parameter_number = 1;
1094 | formal_parameter_list C_TK formal_parameter
1096 ctxp->formal_parameter_number += 1;
1097 $$ = chainon ($1, $3);
1099 | formal_parameter_list C_TK error
1100 { yyerror ("Missing formal parameter term"); RECOVER; }
1103 formal_parameter:
1104 type variable_declarator_id
1106 $$ = build_tree_list ($2, $1);
1108 | final type variable_declarator_id /* Added, JDK1.1 final parms */
1110 $$ = build_tree_list ($3, $2);
1111 ARG_FINAL_P ($$) = 1;
1113 | type error
1115 yyerror ("Missing identifier"); RECOVER;
1116 $$ = NULL_TREE;
1118 | final type error
1120 yyerror ("Missing identifier"); RECOVER;
1121 $$ = NULL_TREE;
1125 final:
1126 modifiers
1128 check_modifiers ("Illegal modifier %qs. Only %<final%> was expected here",
1129 $1, ACC_FINAL);
1130 if ($1 != ACC_FINAL)
1131 MODIFIER_WFL (FINAL_TK) = build_wfl_node (NULL_TREE);
1135 throws:
1136 { $$ = NULL_TREE; }
1137 | THROWS_TK class_type_list
1138 { $$ = $2; }
1139 | THROWS_TK error
1140 {yyerror ("Missing class type term"); RECOVER;}
1143 class_type_list:
1144 class_type
1145 { $$ = build_tree_list ($1, $1); }
1146 | class_type_list C_TK class_type
1147 { $$ = tree_cons ($3, $3, $1); }
1148 | class_type_list C_TK error
1149 {yyerror ("Missing class type term"); RECOVER;}
1152 method_body:
1153 block
1154 | SC_TK { $$ = NULL_TREE; }
1157 /* 19.8.4 Productions from 8.5: Static Initializers */
1158 static_initializer:
1159 static block
1161 TREE_CHAIN ($2) = CPC_STATIC_INITIALIZER_STMT (ctxp);
1162 SET_CPC_STATIC_INITIALIZER_STMT (ctxp, $2);
1163 current_static_block = NULL_TREE;
1167 static: /* Test lval.sub_token here */
1168 modifiers
1170 check_modifiers ("Illegal modifier %qs for static initializer", $1, ACC_STATIC);
1171 /* Can't have a static initializer in an innerclass */
1172 if ($1 | ACC_STATIC &&
1173 GET_CPC_LIST () && !TOPLEVEL_CLASS_DECL_P (GET_CPC ()))
1174 parse_error_context
1175 (MODIFIER_WFL (STATIC_TK),
1176 "Can't define static initializer in class %qs. Static initializer can only be defined in top-level classes",
1177 IDENTIFIER_POINTER (DECL_NAME (GET_CPC ())));
1178 SOURCE_FRONTEND_DEBUG (("Modifiers: %d", $1));
1182 /* 19.8.5 Productions from 8.6: Constructor Declarations */
1183 constructor_declaration:
1184 constructor_header
1186 current_function_decl = $1;
1187 source_start_java_method (current_function_decl);
1189 constructor_body
1190 { finish_method_declaration ($3); }
1193 constructor_header:
1194 constructor_declarator throws
1195 { $$ = method_header (0, NULL_TREE, $1, $2); }
1196 | modifiers constructor_declarator throws
1197 { $$ = method_header ($1, NULL_TREE, $2, $3); }
1200 constructor_declarator:
1201 simple_name OP_TK CP_TK
1203 ctxp->formal_parameter_number = 0;
1204 $$ = method_declarator ($1, NULL_TREE);
1206 | simple_name OP_TK formal_parameter_list CP_TK
1207 { $$ = method_declarator ($1, $3); }
1210 constructor_body:
1211 /* Unlike regular method, we always need a complete (empty)
1212 body so we can safely perform all the required code
1213 addition (super invocation and field initialization) */
1214 block_begin constructor_block_end
1216 BLOCK_EXPR_BODY ($2) = build_java_empty_stmt ();
1217 $$ = $2;
1219 | block_begin explicit_constructor_invocation constructor_block_end
1220 { $$ = $3; }
1221 | block_begin block_statements constructor_block_end
1222 { $$ = $3; }
1223 | block_begin explicit_constructor_invocation block_statements constructor_block_end
1224 { $$ = $4; }
1227 constructor_block_end:
1228 block_end
1231 /* Error recovery for that rule moved down expression_statement: rule. */
1232 explicit_constructor_invocation:
1233 this_or_super OP_TK CP_TK SC_TK
1235 $$ = build_method_invocation ($1, NULL_TREE);
1236 $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $$);
1237 $$ = java_method_add_stmt (current_function_decl, $$);
1239 | this_or_super OP_TK argument_list CP_TK SC_TK
1241 $$ = build_method_invocation ($1, $3);
1242 $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $$);
1243 $$ = java_method_add_stmt (current_function_decl, $$);
1245 /* Added, JDK1.1 inner classes. Modified because the rule
1246 'primary' couldn't work. */
1247 | name DOT_TK SUPER_TK OP_TK argument_list CP_TK SC_TK
1248 {$$ = parse_jdk1_1_error ("explicit constructor invocation"); }
1249 | name DOT_TK SUPER_TK OP_TK CP_TK SC_TK
1250 {$$ = parse_jdk1_1_error ("explicit constructor invocation"); }
1253 this_or_super: /* Added, simplifies error diagnostics */
1254 THIS_TK
1256 tree wfl = build_wfl_node (this_identifier_node);
1257 SET_EXPR_LOCATION_FROM_TOKEN (wfl, $1);
1258 $$ = wfl;
1260 | SUPER_TK
1262 tree wfl = build_wfl_node (super_identifier_node);
1263 SET_EXPR_LOCATION_FROM_TOKEN (wfl, $1);
1264 $$ = wfl;
1268 /* 19.9 Productions from 9: Interfaces */
1269 /* 19.9.1 Productions from 9.1: Interfaces Declarations */
1270 interface_declaration:
1271 INTERFACE_TK identifier
1272 { create_interface (0, $2, NULL_TREE); }
1273 interface_body
1274 { ; }
1275 | modifiers INTERFACE_TK identifier
1276 { create_interface ($1, $3, NULL_TREE); }
1277 interface_body
1278 { ; }
1279 | INTERFACE_TK identifier extends_interfaces
1280 { create_interface (0, $2, $3); }
1281 interface_body
1282 { ; }
1283 | modifiers INTERFACE_TK identifier extends_interfaces
1284 { create_interface ($1, $3, $4); }
1285 interface_body
1286 { ; }
1287 | INTERFACE_TK identifier error
1288 { yyerror ("'{' expected"); RECOVER; }
1289 | modifiers INTERFACE_TK identifier error
1290 { yyerror ("'{' expected"); RECOVER; }
1293 extends_interfaces:
1294 EXTENDS_TK interface_type
1296 ctxp->interface_number = 1;
1297 $$ = build_tree_list ($2, NULL_TREE);
1299 | extends_interfaces C_TK interface_type
1301 ctxp->interface_number++;
1302 $$ = chainon ($1, build_tree_list ($3, NULL_TREE));
1304 | EXTENDS_TK error
1305 {yyerror ("Invalid interface type"); RECOVER;}
1306 | extends_interfaces C_TK error
1307 {yyerror ("Missing term"); RECOVER;}
1310 interface_body:
1311 OCB_TK CCB_TK
1312 { $$ = NULL_TREE; }
1313 | OCB_TK interface_member_declarations CCB_TK
1314 { $$ = NULL_TREE; }
1317 interface_member_declarations:
1318 interface_member_declaration
1319 | interface_member_declarations interface_member_declaration
1322 interface_member_declaration:
1323 constant_declaration
1324 | abstract_method_declaration
1325 | class_declaration /* Added, JDK1.1 inner classes */
1326 { end_class_declaration (1); }
1327 | interface_declaration /* Added, JDK1.1 inner interfaces */
1328 { end_class_declaration (1); }
1329 | empty_statement
1332 constant_declaration:
1333 field_declaration
1336 abstract_method_declaration:
1337 method_header SC_TK
1339 check_abstract_method_header ($1);
1340 current_function_decl = NULL_TREE; /* FIXME ? */
1342 | method_header error
1343 {yyerror ("';' expected"); RECOVER;}
1346 /* 19.10 Productions from 10: Arrays */
1347 array_initializer:
1348 OCB_TK CCB_TK
1349 { $$ = build_new_array_init ($1.location, NULL_TREE); }
1350 | OCB_TK C_TK CCB_TK
1351 { $$ = build_new_array_init ($1.location, NULL_TREE); }
1352 | OCB_TK variable_initializers CCB_TK
1353 { $$ = build_new_array_init ($1.location, $2); }
1354 | OCB_TK variable_initializers C_TK CCB_TK
1355 { $$ = build_new_array_init ($1.location, $2); }
1358 variable_initializers:
1359 variable_initializer
1361 $$ = tree_cons (maybe_build_array_element_wfl ($1),
1362 $1, NULL_TREE);
1364 | variable_initializers C_TK variable_initializer
1366 $$ = tree_cons (maybe_build_array_element_wfl ($3), $3, $1);
1368 | variable_initializers C_TK error
1369 {yyerror ("Missing term"); RECOVER;}
1372 /* 19.11 Production from 14: Blocks and Statements */
1373 block:
1374 block_begin block_end
1375 { $$ = $2; }
1376 | block_begin block_statements block_end
1377 { $$ = $3; }
1380 block_begin:
1381 OCB_TK
1382 { enter_block (); }
1385 block_end:
1386 CCB_TK
1388 maybe_absorb_scoping_blocks ();
1389 $$ = exit_block ();
1390 if (!BLOCK_SUBBLOCKS ($$))
1391 BLOCK_SUBBLOCKS ($$) = build_java_empty_stmt ();
1395 block_statements:
1396 block_statement
1397 | block_statements block_statement
1400 block_statement:
1401 local_variable_declaration_statement
1402 | statement
1403 { java_method_add_stmt (current_function_decl, $1); }
1404 | class_declaration /* Added, JDK1.1 local classes */
1406 LOCAL_CLASS_P (TREE_TYPE (GET_CPC ())) = 1;
1407 end_class_declaration (1);
1411 local_variable_declaration_statement:
1412 local_variable_declaration SC_TK /* Can't catch missing ';' here */
1415 local_variable_declaration:
1416 type variable_declarators
1417 { declare_local_variables (0, $1, $2); }
1418 | final type variable_declarators /* Added, JDK1.1 final locals */
1419 { declare_local_variables ($1, $2, $3); }
1422 statement:
1423 statement_without_trailing_substatement
1424 | labeled_statement
1425 | if_then_statement
1426 | if_then_else_statement
1427 | while_statement
1428 | for_statement
1429 { $$ = exit_block (); }
1432 statement_nsi:
1433 statement_without_trailing_substatement
1434 | labeled_statement_nsi
1435 | if_then_else_statement_nsi
1436 | while_statement_nsi
1437 | for_statement_nsi
1438 { $$ = exit_block (); }
1441 statement_without_trailing_substatement:
1442 block
1443 | empty_statement
1444 | expression_statement
1445 | switch_statement
1446 | do_statement
1447 | break_statement
1448 | continue_statement
1449 | return_statement
1450 | synchronized_statement
1451 | throw_statement
1452 | try_statement
1453 | assert_statement
1456 empty_statement:
1457 SC_TK
1459 if (flag_extraneous_semicolon
1460 && ! current_static_block
1461 && (! current_function_decl ||
1462 /* Verify we're not in a inner class declaration */
1463 (GET_CPC () != TYPE_NAME
1464 (DECL_CONTEXT (current_function_decl)))))
1467 #ifdef USE_MAPPED_LOCATION
1468 SET_EXPR_LOCATION (wfl_operator, input_location);
1469 #else
1470 EXPR_WFL_SET_LINECOL (wfl_operator, input_line, -1);
1471 #endif
1472 parse_warning_context (wfl_operator, "An empty declaration is a deprecated feature that should not be used");
1474 $$ = build_java_empty_stmt ();
1478 label_decl:
1479 identifier REL_CL_TK
1481 $$ = build_labeled_block (EXPR_WFL_LINECOL ($1),
1482 EXPR_WFL_NODE ($1));
1483 pushlevel (2);
1484 push_labeled_block ($$);
1485 PUSH_LABELED_BLOCK ($$);
1489 labeled_statement:
1490 label_decl statement
1491 { $$ = finish_labeled_statement ($1, $2); }
1492 | identifier error
1493 {yyerror ("':' expected"); RECOVER;}
1496 labeled_statement_nsi:
1497 label_decl statement_nsi
1498 { $$ = finish_labeled_statement ($1, $2); }
1501 /* We concentrate here a bunch of error handling rules that we couldn't write
1502 earlier, because expression_statement catches a missing ';'. */
1503 expression_statement:
1504 statement_expression SC_TK
1506 /* We have a statement. Generate a WFL around it so
1507 we can debug it */
1508 #ifdef USE_MAPPED_LOCATION
1509 $$ = expr_add_location ($1, input_location, 1);
1510 #else
1511 $$ = build_expr_wfl ($1, input_filename, input_line, 0);
1512 JAVA_MAYBE_GENERATE_DEBUG_INFO ($$);
1513 #endif
1514 /* We know we have a statement, so set the debug
1515 info to be eventually generate here. */
1517 | error SC_TK
1519 YYNOT_TWICE yyerror ("Invalid expression statement");
1520 DRECOVER (expr_stmt);
1522 | error OCB_TK
1524 YYNOT_TWICE yyerror ("Invalid expression statement");
1525 DRECOVER (expr_stmt);
1527 | error CCB_TK
1529 YYNOT_TWICE yyerror ("Invalid expression statement");
1530 DRECOVER (expr_stmt);
1532 | this_or_super OP_TK error
1533 {yyerror ("')' expected"); RECOVER;}
1534 | this_or_super OP_TK CP_TK error
1536 parse_ctor_invocation_error ();
1537 RECOVER;
1539 | this_or_super OP_TK argument_list error
1540 {yyerror ("')' expected"); RECOVER;}
1541 | this_or_super OP_TK argument_list CP_TK error
1543 parse_ctor_invocation_error ();
1544 RECOVER;
1546 | name DOT_TK SUPER_TK error
1547 {yyerror ("'(' expected"); RECOVER;}
1548 | name DOT_TK SUPER_TK OP_TK error
1549 {yyerror ("')' expected"); RECOVER;}
1550 | name DOT_TK SUPER_TK OP_TK argument_list error
1551 {yyerror ("')' expected"); RECOVER;}
1552 | name DOT_TK SUPER_TK OP_TK argument_list CP_TK error
1553 {yyerror ("';' expected"); RECOVER;}
1554 | name DOT_TK SUPER_TK OP_TK CP_TK error
1555 {yyerror ("';' expected"); RECOVER;}
1558 statement_expression:
1559 assignment
1560 | pre_increment_expression
1561 | pre_decrement_expression
1562 | post_increment_expression
1563 | post_decrement_expression
1564 | method_invocation
1565 | class_instance_creation_expression
1568 if_then_statement:
1569 IF_TK OP_TK expression CP_TK statement
1571 $$ = build_if_else_statement ($2.location, $3,
1572 $5, NULL_TREE);
1574 | IF_TK error
1575 {yyerror ("'(' expected"); RECOVER;}
1576 | IF_TK OP_TK error
1577 {yyerror ("Missing term"); RECOVER;}
1578 | IF_TK OP_TK expression error
1579 {yyerror ("')' expected"); RECOVER;}
1582 if_then_else_statement:
1583 IF_TK OP_TK expression CP_TK statement_nsi ELSE_TK statement
1584 { $$ = build_if_else_statement ($2.location, $3, $5, $7); }
1587 if_then_else_statement_nsi:
1588 IF_TK OP_TK expression CP_TK statement_nsi ELSE_TK statement_nsi
1589 { $$ = build_if_else_statement ($2.location, $3, $5, $7); }
1592 switch_statement:
1593 switch_expression
1595 enter_block ();
1597 switch_block
1599 /* Make into "proper list" of COMPOUND_EXPRs.
1600 I.e. make the last statement also have its own
1601 COMPOUND_EXPR. */
1602 maybe_absorb_scoping_blocks ();
1603 TREE_OPERAND ($1, 1) = exit_block ();
1604 $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $1);
1608 switch_expression:
1609 SWITCH_TK OP_TK expression CP_TK
1611 $$ = build3 (SWITCH_EXPR, NULL_TREE, $3,
1612 NULL_TREE, NULL_TREE);
1613 SET_EXPR_LOCATION_FROM_TOKEN ($$, $2);
1615 | SWITCH_TK error
1616 {yyerror ("'(' expected"); RECOVER;}
1617 | SWITCH_TK OP_TK error
1618 {yyerror ("Missing term or ')'"); DRECOVER(switch_statement);}
1619 | SWITCH_TK OP_TK expression CP_TK error
1620 {yyerror ("'{' expected"); RECOVER;}
1623 /* Default assignment is there to avoid type node on switch_block
1624 node. */
1626 switch_block:
1627 OCB_TK CCB_TK
1628 { $$ = NULL_TREE; }
1629 | OCB_TK switch_labels CCB_TK
1630 { $$ = NULL_TREE; }
1631 | OCB_TK switch_block_statement_groups CCB_TK
1632 { $$ = NULL_TREE; }
1633 | OCB_TK switch_block_statement_groups switch_labels CCB_TK
1634 { $$ = NULL_TREE; }
1637 switch_block_statement_groups:
1638 switch_block_statement_group
1639 | switch_block_statement_groups switch_block_statement_group
1642 switch_block_statement_group:
1643 switch_labels block_statements
1646 switch_labels:
1647 switch_label
1648 | switch_labels switch_label
1651 switch_label:
1652 CASE_TK constant_expression REL_CL_TK
1654 tree lab = build1 (CASE_EXPR, NULL_TREE, $2);
1655 SET_EXPR_LOCATION_FROM_TOKEN (lab, $1);
1656 java_method_add_stmt (current_function_decl, lab);
1658 | DEFAULT_TK REL_CL_TK
1660 tree lab = make_node (DEFAULT_EXPR);
1661 SET_EXPR_LOCATION_FROM_TOKEN (lab, $1);
1662 java_method_add_stmt (current_function_decl, lab);
1664 | CASE_TK error
1665 {yyerror ("Missing or invalid constant expression"); RECOVER;}
1666 | CASE_TK constant_expression error
1667 {yyerror ("':' expected"); RECOVER;}
1668 | DEFAULT_TK error
1669 {yyerror ("':' expected"); RECOVER;}
1672 while_expression:
1673 WHILE_TK OP_TK expression CP_TK
1675 tree body = build_loop_body ($2.location, $3, 0);
1676 $$ = build_new_loop (body);
1680 while_statement:
1681 while_expression statement
1682 { $$ = finish_loop_body (0, NULL_TREE, $2, 0); }
1683 | WHILE_TK error
1684 {YYERROR_NOW; yyerror ("'(' expected"); RECOVER;}
1685 | WHILE_TK OP_TK error
1686 {yyerror ("Missing term and ')' expected"); RECOVER;}
1687 | WHILE_TK OP_TK expression error
1688 {yyerror ("')' expected"); RECOVER;}
1691 while_statement_nsi:
1692 while_expression statement_nsi
1693 { $$ = finish_loop_body (0, NULL_TREE, $2, 0); }
1696 do_statement_begin:
1697 DO_TK
1699 tree body = build_loop_body (0, NULL_TREE, 1);
1700 $$ = build_new_loop (body);
1702 /* Need error handing here. FIXME */
1705 do_statement:
1706 do_statement_begin statement WHILE_TK OP_TK expression CP_TK SC_TK
1707 { $$ = finish_loop_body ($4.location, $5, $2, 1); }
1710 for_statement:
1711 for_begin SC_TK expression SC_TK for_update CP_TK statement
1713 if (CONSTANT_CLASS_P ($3))
1714 $3 = build_wfl_node ($3);
1715 $$ = finish_for_loop (EXPR_WFL_LINECOL ($3), $3, $5, $7);
1717 | for_begin SC_TK SC_TK for_update CP_TK statement
1719 $$ = finish_for_loop (0, NULL_TREE, $4, $6);
1720 /* We have not condition, so we get rid of the EXIT_EXPR */
1721 LOOP_EXPR_BODY_CONDITION_EXPR (LOOP_EXPR_BODY ($$), 0) =
1722 build_java_empty_stmt ();
1724 | for_begin SC_TK error
1725 {yyerror ("Invalid control expression"); RECOVER;}
1726 | for_begin SC_TK expression SC_TK error
1727 {yyerror ("Invalid update expression"); RECOVER;}
1728 | for_begin SC_TK SC_TK error
1729 {yyerror ("Invalid update expression"); RECOVER;}
1732 for_statement_nsi:
1733 for_begin SC_TK expression SC_TK for_update CP_TK statement_nsi
1734 { $$ = finish_for_loop (EXPR_WFL_LINECOL ($3), $3, $5, $7);}
1735 | for_begin SC_TK SC_TK for_update CP_TK statement_nsi
1737 $$ = finish_for_loop (0, NULL_TREE, $4, $6);
1738 /* We have not condition, so we get rid of the EXIT_EXPR */
1739 LOOP_EXPR_BODY_CONDITION_EXPR (LOOP_EXPR_BODY ($$), 0) =
1740 build_java_empty_stmt ();
1744 for_header:
1745 FOR_TK OP_TK
1747 /* This scope defined for local variable that may be
1748 defined within the scope of the for loop */
1749 enter_block ();
1751 | FOR_TK error
1752 {yyerror ("'(' expected"); DRECOVER(for_1);}
1753 | FOR_TK OP_TK error
1754 {yyerror ("Invalid init statement"); RECOVER;}
1757 for_begin:
1758 for_header for_init
1760 /* We now declare the loop body. The loop is
1761 declared as a for loop. */
1762 tree body = build_loop_body (0, NULL_TREE, 0);
1763 $$ = build_new_loop (body);
1764 FOR_LOOP_P ($$) = 1;
1765 /* The loop is added to the current block the for
1766 statement is defined within */
1767 java_method_add_stmt (current_function_decl, $$);
1770 for_init: /* Can be empty */
1771 { $$ = build_java_empty_stmt (); }
1772 | statement_expression_list
1774 /* Init statement recorded within the previously
1775 defined block scope */
1776 $$ = java_method_add_stmt (current_function_decl, $1);
1778 | local_variable_declaration
1780 /* Local variable are recorded within the previously
1781 defined block scope */
1782 $$ = NULL_TREE;
1784 | statement_expression_list error
1785 {yyerror ("';' expected"); DRECOVER(for_init_1);}
1788 for_update: /* Can be empty */
1789 {$$ = build_java_empty_stmt ();}
1790 | statement_expression_list
1791 { $$ = build_debugable_stmt (BUILD_LOCATION (), $1); }
1794 statement_expression_list:
1795 statement_expression
1796 { $$ = add_stmt_to_compound (NULL_TREE, NULL_TREE, $1); }
1797 | statement_expression_list C_TK statement_expression
1798 { $$ = add_stmt_to_compound ($1, NULL_TREE, $3); }
1799 | statement_expression_list C_TK error
1800 {yyerror ("Missing term"); RECOVER;}
1803 break_statement:
1804 BREAK_TK SC_TK
1805 { $$ = build_bc_statement ($1.location, 1, NULL_TREE); }
1806 | BREAK_TK identifier SC_TK
1807 { $$ = build_bc_statement ($1.location, 1, $2); }
1808 | BREAK_TK error
1809 {yyerror ("Missing term"); RECOVER;}
1810 | BREAK_TK identifier error
1811 {yyerror ("';' expected"); RECOVER;}
1814 continue_statement:
1815 CONTINUE_TK SC_TK
1816 { $$ = build_bc_statement ($1.location, 0, NULL_TREE); }
1817 | CONTINUE_TK identifier SC_TK
1818 { $$ = build_bc_statement ($1.location, 0, $2); }
1819 | CONTINUE_TK error
1820 {yyerror ("Missing term"); RECOVER;}
1821 | CONTINUE_TK identifier error
1822 {yyerror ("';' expected"); RECOVER;}
1825 return_statement:
1826 RETURN_TK SC_TK
1827 { $$ = build_return ($1.location, NULL_TREE); }
1828 | RETURN_TK expression SC_TK
1829 { $$ = build_return ($1.location, $2); }
1830 | RETURN_TK error
1831 {yyerror ("Missing term"); RECOVER;}
1832 | RETURN_TK expression error
1833 {yyerror ("';' expected"); RECOVER;}
1836 throw_statement:
1837 THROW_TK expression SC_TK
1839 $$ = build1 (THROW_EXPR, NULL_TREE, $2);
1840 SET_EXPR_LOCATION_FROM_TOKEN ($$, $1);
1842 | THROW_TK error
1843 {yyerror ("Missing term"); RECOVER;}
1844 | THROW_TK expression error
1845 {yyerror ("';' expected"); RECOVER;}
1848 assert_statement:
1849 ASSERT_TK expression REL_CL_TK expression SC_TK
1851 $$ = build_assertion ($1.location, $2, $4);
1853 | ASSERT_TK expression SC_TK
1855 $$ = build_assertion ($1.location, $2, NULL_TREE);
1857 | ASSERT_TK error
1858 {yyerror ("Missing term"); RECOVER;}
1859 | ASSERT_TK expression error
1860 {yyerror ("';' expected"); RECOVER;}
1863 synchronized_statement:
1864 synchronized OP_TK expression CP_TK block
1866 $$ = build2 (SYNCHRONIZED_EXPR, NULL_TREE, $3, $5);
1867 EXPR_WFL_LINECOL ($$) =
1868 EXPR_WFL_LINECOL (MODIFIER_WFL (SYNCHRONIZED_TK));
1870 | synchronized OP_TK expression CP_TK error
1871 {yyerror ("'{' expected"); RECOVER;}
1872 | synchronized error
1873 {yyerror ("'(' expected"); RECOVER;}
1874 | synchronized OP_TK error CP_TK
1875 {yyerror ("Missing term"); RECOVER;}
1876 | synchronized OP_TK error
1877 {yyerror ("Missing term"); RECOVER;}
1880 synchronized:
1881 modifiers
1883 check_modifiers (
1884 "Illegal modifier %qs. Only %<synchronized%> was expected here",
1885 $1, ACC_SYNCHRONIZED);
1886 if ($1 != ACC_SYNCHRONIZED)
1887 MODIFIER_WFL (SYNCHRONIZED_TK) =
1888 build_wfl_node (NULL_TREE);
1892 try_statement:
1893 TRY_TK block catches
1894 { $$ = build_try_statement ($1.location, $2, $3); }
1895 | TRY_TK block finally
1896 { $$ = build_try_finally_statement ($1.location, $2, $3); }
1897 | TRY_TK block catches finally
1898 { $$ = build_try_finally_statement
1899 ($1.location, build_try_statement ($1.location,
1900 $2, $3), $4);
1902 | TRY_TK error
1903 {yyerror ("'{' expected"); DRECOVER (try_statement);}
1906 catches:
1907 catch_clause
1908 | catches catch_clause
1910 TREE_CHAIN ($2) = $1;
1911 $$ = $2;
1915 catch_clause:
1916 catch_clause_parameter block
1918 java_method_add_stmt (current_function_decl, $2);
1919 exit_block ();
1920 $$ = $1;
1924 catch_clause_parameter:
1925 CATCH_TK OP_TK formal_parameter CP_TK
1927 /* We add a block to define a scope for
1928 formal_parameter (CCBP). The formal parameter is
1929 declared initialized by the appropriate function
1930 call */
1931 tree ccpb;
1932 tree init;
1933 if ($3)
1935 ccpb = enter_block ();
1936 init = build_assignment
1937 (ASSIGN_TK, $2.location, TREE_PURPOSE ($3),
1938 build0 (JAVA_EXC_OBJ_EXPR, ptr_type_node));
1939 declare_local_variables (0, TREE_VALUE ($3),
1940 build_tree_list
1941 (TREE_PURPOSE ($3), init));
1942 $$ = build1 (JAVA_CATCH_EXPR, NULL_TREE, ccpb);
1943 SET_EXPR_LOCATION_FROM_TOKEN ($$, $1);
1945 else
1947 $$ = error_mark_node;
1950 | CATCH_TK error
1951 {yyerror ("'(' expected"); RECOVER; $$ = NULL_TREE;}
1952 | CATCH_TK OP_TK error
1954 yyerror ("Missing term or ')' expected");
1955 RECOVER; $$ = NULL_TREE;
1957 | CATCH_TK OP_TK error CP_TK /* That's for () */
1958 {yyerror ("Missing term"); RECOVER; $$ = NULL_TREE;}
1961 finally:
1962 FINALLY_TK block
1963 { $$ = $2; }
1964 | FINALLY_TK error
1965 {yyerror ("'{' expected"); RECOVER; }
1968 /* 19.12 Production from 15: Expressions */
1969 primary:
1970 primary_no_new_array
1971 | array_creation_uninitialized
1972 | array_creation_initialized
1975 primary_no_new_array:
1976 literal
1977 | THIS_TK
1978 { $$ = build_this ($1.location); }
1979 | OP_TK expression CP_TK
1980 {$$ = $2;}
1981 | class_instance_creation_expression
1982 | field_access
1983 | method_invocation
1984 | array_access
1985 | type_literals
1986 /* Added, JDK1.1 inner classes. Documentation is wrong
1987 referring to a 'ClassName' (class_name) rule that doesn't
1988 exist. Used name: instead. */
1989 | name DOT_TK THIS_TK
1991 tree wfl = build_wfl_node (this_identifier_node);
1992 $$ = make_qualified_primary ($1, wfl, EXPR_WFL_LINECOL ($1));
1994 | OP_TK expression error
1995 {yyerror ("')' expected"); RECOVER;}
1996 | name DOT_TK error
1997 {yyerror ("'class' or 'this' expected" ); RECOVER;}
1998 | primitive_type DOT_TK error
1999 {yyerror ("'class' expected" ); RECOVER;}
2000 | VOID_TK DOT_TK error
2001 {yyerror ("'class' expected" ); RECOVER;}
2004 type_literals:
2005 name DOT_TK CLASS_TK
2006 { $$ = build_incomplete_class_ref ($2.location, $1); }
2007 | array_type DOT_TK CLASS_TK
2008 { $$ = build_incomplete_class_ref ($2.location, $1); }
2009 | primitive_type DOT_TK CLASS_TK
2010 { $$ = build_incomplete_class_ref ($2.location, $1); }
2011 | VOID_TK DOT_TK CLASS_TK
2013 $$ = build_incomplete_class_ref ($2.location,
2014 void_type_node);
2018 class_instance_creation_expression:
2019 NEW_TK class_type OP_TK argument_list CP_TK
2020 { $$ = build_new_invocation ($2, $4); }
2021 | NEW_TK class_type OP_TK CP_TK
2022 { $$ = build_new_invocation ($2, NULL_TREE); }
2023 | anonymous_class_creation
2024 /* Added, JDK1.1 inner classes, modified to use name or
2025 primary instead of primary solely which couldn't work in
2026 all situations. */
2027 | something_dot_new identifier OP_TK CP_TK
2029 tree ctor = build_new_invocation ($2, NULL_TREE);
2030 $$ = make_qualified_primary ($1, ctor,
2031 EXPR_WFL_LINECOL ($1));
2033 | something_dot_new identifier OP_TK CP_TK class_body
2034 | something_dot_new identifier OP_TK argument_list CP_TK
2036 tree ctor = build_new_invocation ($2, $4);
2037 $$ = make_qualified_primary ($1, ctor,
2038 EXPR_WFL_LINECOL ($1));
2040 | something_dot_new identifier OP_TK argument_list CP_TK class_body
2041 | NEW_TK error SC_TK
2042 {$$ = NULL_TREE; yyerror ("'(' expected"); DRECOVER(new_1);}
2043 | NEW_TK class_type error
2044 {$$ = NULL_TREE; yyerror ("'(' expected"); RECOVER;}
2045 | NEW_TK class_type OP_TK error
2046 {$$ = NULL_TREE; yyerror ("')' or term expected"); RECOVER;}
2047 | NEW_TK class_type OP_TK argument_list error
2048 {$$ = NULL_TREE; yyerror ("')' expected"); RECOVER;}
2049 | something_dot_new error
2051 $$ = NULL_TREE;
2052 YYERROR_NOW;
2053 yyerror ("Identifier expected");
2054 RECOVER;
2056 | something_dot_new identifier error
2057 {$$ = NULL_TREE; yyerror ("'(' expected"); RECOVER;}
2060 /* Created after JDK1.1 rules originally added to
2061 class_instance_creation_expression, but modified to use
2062 'class_type' instead of 'TypeName' (type_name) which is mentioned
2063 in the documentation but doesn't exist. */
2065 anonymous_class_creation:
2066 NEW_TK class_type OP_TK argument_list CP_TK
2067 { create_anonymous_class ($2); }
2068 class_body
2070 tree id = build_wfl_node (DECL_NAME (GET_CPC ()));
2071 EXPR_WFL_LINECOL (id) = EXPR_WFL_LINECOL ($2);
2073 end_class_declaration (1);
2075 /* Now we can craft the new expression */
2076 $$ = build_new_invocation (id, $4);
2078 /* Note that we can't possibly be here if
2079 `class_type' is an interface (in which case the
2080 anonymous class extends Object and implements
2081 `class_type', hence its constructor can't have
2082 arguments.) */
2084 /* Otherwise, the innerclass must feature a
2085 constructor matching `argument_list'. Anonymous
2086 classes are a bit special: it's impossible to
2087 define constructor for them, hence constructors
2088 must be generated following the hints provided by
2089 the `new' expression. Whether a super constructor
2090 of that nature exists or not is to be verified
2091 later on in get_constructor_super.
2093 It's during the expansion of a `new' statement
2094 referring to an anonymous class that a ctor will
2095 be generated for the anonymous class, with the
2096 right arguments. */
2099 | NEW_TK class_type OP_TK CP_TK
2100 { create_anonymous_class ($2); }
2101 class_body
2103 tree id = build_wfl_node (DECL_NAME (GET_CPC ()));
2104 EXPR_WFL_LINECOL (id) = EXPR_WFL_LINECOL ($2);
2106 end_class_declaration (1);
2108 /* Now we can craft the new expression. The
2109 statement doesn't need to be remember so that a
2110 constructor can be generated, since its signature
2111 is already known. */
2112 $$ = build_new_invocation (id, NULL_TREE);
2116 something_dot_new: /* Added, not part of the specs. */
2117 name DOT_TK NEW_TK
2118 { $$ = $1; }
2119 | primary DOT_TK NEW_TK
2120 { $$ = $1; }
2123 argument_list:
2124 expression
2126 $$ = tree_cons (NULL_TREE, $1, NULL_TREE);
2127 ctxp->formal_parameter_number = 1;
2129 | argument_list C_TK expression
2131 ctxp->formal_parameter_number += 1;
2132 $$ = tree_cons (NULL_TREE, $3, $1);
2134 | argument_list C_TK error
2135 {yyerror ("Missing term"); RECOVER;}
2138 array_creation_uninitialized:
2139 NEW_TK primitive_type dim_exprs
2140 { $$ = build_newarray_node ($2, $3, 0); }
2141 | NEW_TK class_or_interface_type dim_exprs
2142 { $$ = build_newarray_node ($2, $3, 0); }
2143 | NEW_TK primitive_type dim_exprs dims
2144 { $$ = build_newarray_node ($2, $3, pop_current_osb (ctxp));}
2145 | NEW_TK class_or_interface_type dim_exprs dims
2146 { $$ = build_newarray_node ($2, $3, pop_current_osb (ctxp));}
2147 | NEW_TK error CSB_TK
2148 {yyerror ("'[' expected"); DRECOVER ("]");}
2149 | NEW_TK error OSB_TK
2150 {yyerror ("']' expected"); RECOVER;}
2153 array_creation_initialized:
2154 /* Added, JDK1.1 anonymous array. Initial documentation rule
2155 modified */
2156 NEW_TK class_or_interface_type dims array_initializer
2158 char *sig;
2159 int osb = pop_current_osb (ctxp);
2160 while (osb--)
2161 obstack_grow (&temporary_obstack, "[]", 2);
2162 obstack_1grow (&temporary_obstack, '\0');
2163 sig = obstack_finish (&temporary_obstack);
2164 $$ = build3 (NEW_ANONYMOUS_ARRAY_EXPR, NULL_TREE,
2165 $2, get_identifier (sig), $4);
2167 | NEW_TK primitive_type dims array_initializer
2169 int osb = pop_current_osb (ctxp);
2170 tree type = $2;
2171 while (osb--)
2172 type = build_java_array_type (type, -1);
2173 $$ = build3 (NEW_ANONYMOUS_ARRAY_EXPR, NULL_TREE,
2174 build_pointer_type (type), NULL_TREE, $4);
2176 | NEW_TK error CSB_TK
2177 {yyerror ("'[' expected"); DRECOVER ("]");}
2178 | NEW_TK error OSB_TK
2179 {yyerror ("']' expected"); RECOVER;}
2182 dim_exprs:
2183 dim_expr
2184 { $$ = build_tree_list (NULL_TREE, $1); }
2185 | dim_exprs dim_expr
2186 { $$ = tree_cons (NULL_TREE, $2, $$); }
2189 dim_expr:
2190 OSB_TK expression CSB_TK
2192 if (JNUMERIC_TYPE_P (TREE_TYPE ($2)))
2194 $2 = build_wfl_node ($2);
2195 TREE_TYPE ($2) = NULL_TREE;
2197 EXPR_WFL_LINECOL ($2) = $1.location;
2198 $$ = $2;
2200 | OSB_TK expression error
2201 {yyerror ("']' expected"); RECOVER;}
2202 | OSB_TK error
2204 yyerror ("Missing term");
2205 yyerror ("']' expected");
2206 RECOVER;
2210 dims:
2211 OSB_TK CSB_TK
2213 int allocate = 0;
2214 /* If not initialized, allocate memory for the osb
2215 numbers stack */
2216 if (!ctxp->osb_limit)
2218 allocate = ctxp->osb_limit = 32;
2219 ctxp->osb_depth = -1;
2221 /* If capacity overflown, reallocate a bigger chunk */
2222 else if (ctxp->osb_depth+1 == ctxp->osb_limit)
2223 allocate = ctxp->osb_limit << 1;
2225 if (allocate)
2227 allocate *= sizeof (int);
2228 if (ctxp->osb_number)
2229 ctxp->osb_number = xrealloc (ctxp->osb_number,
2230 allocate);
2231 else
2232 ctxp->osb_number = xmalloc (allocate);
2234 ctxp->osb_depth++;
2235 CURRENT_OSB (ctxp) = 1;
2237 | dims OSB_TK CSB_TK
2238 { CURRENT_OSB (ctxp)++; }
2239 | dims OSB_TK error
2240 { yyerror ("']' expected"); RECOVER;}
2243 field_access:
2244 primary DOT_TK identifier
2245 { $$ = make_qualified_primary ($1, $3, $2.location); }
2246 /* FIXME - REWRITE TO:
2247 { $$ = build_binop (COMPONENT_REF, $2.location, $1, $3); } */
2248 | SUPER_TK DOT_TK identifier
2250 tree super_wfl = build_wfl_node (super_identifier_node);
2251 SET_EXPR_LOCATION_FROM_TOKEN (super_wfl, $1);
2252 $$ = make_qualified_name (super_wfl, $3, $2.location);
2254 | SUPER_TK error
2255 {yyerror ("Field expected"); DRECOVER (super_field_acces);}
2258 method_invocation:
2259 name OP_TK CP_TK
2260 { $$ = build_method_invocation ($1, NULL_TREE); }
2261 | name OP_TK argument_list CP_TK
2262 { $$ = build_method_invocation ($1, $3); }
2263 | primary DOT_TK identifier OP_TK CP_TK
2265 if (TREE_CODE ($1) == THIS_EXPR)
2266 $$ = build_this_super_qualified_invocation
2267 (1, $3, NULL_TREE, 0, $2.location);
2268 else
2270 tree invok = build_method_invocation ($3, NULL_TREE);
2271 $$ = make_qualified_primary ($1, invok, $2.location);
2274 | primary DOT_TK identifier OP_TK argument_list CP_TK
2276 if (TREE_CODE ($1) == THIS_EXPR)
2277 $$ = build_this_super_qualified_invocation
2278 (1, $3, $5, 0, $2.location);
2279 else
2281 tree invok = build_method_invocation ($3, $5);
2282 $$ = make_qualified_primary ($1, invok, $2.location);
2285 | SUPER_TK DOT_TK identifier OP_TK CP_TK
2287 $$ = build_this_super_qualified_invocation
2288 (0, $3, NULL_TREE, $1.location, $2.location);
2290 | SUPER_TK DOT_TK identifier OP_TK argument_list CP_TK
2292 $$ = build_this_super_qualified_invocation
2293 (0, $3, $5, $1.location, $2.location);
2295 /* Screws up thing. I let it here until I'm convinced it can
2296 be removed. FIXME
2297 | primary DOT_TK error
2298 {yyerror ("'(' expected"); DRECOVER(bad);} */
2299 | SUPER_TK DOT_TK error CP_TK
2300 { yyerror ("'(' expected"); DRECOVER (method_invocation); }
2301 | SUPER_TK DOT_TK error DOT_TK
2302 { yyerror ("'(' expected"); DRECOVER (method_invocation); }
2305 array_access:
2306 name OSB_TK expression CSB_TK
2307 { $$ = build_array_ref ($2.location, $1, $3); }
2308 | primary_no_new_array OSB_TK expression CSB_TK
2309 { $$ = build_array_ref ($2.location, $1, $3); }
2310 | array_creation_initialized OSB_TK expression CSB_TK
2311 { $$ = build_array_ref ($2.location, $1, $3); }
2312 | name OSB_TK error
2314 yyerror ("Missing term and ']' expected");
2315 DRECOVER(array_access);
2317 | name OSB_TK expression error
2319 yyerror ("']' expected");
2320 DRECOVER(array_access);
2322 | primary_no_new_array OSB_TK error
2324 yyerror ("Missing term and ']' expected");
2325 DRECOVER(array_access);
2327 | primary_no_new_array OSB_TK expression error
2329 yyerror ("']' expected");
2330 DRECOVER(array_access);
2332 | array_creation_initialized OSB_TK error
2334 yyerror ("Missing term and ']' expected");
2335 DRECOVER(array_access);
2337 | array_creation_initialized OSB_TK expression error
2339 yyerror ("']' expected");
2340 DRECOVER(array_access);
2344 postfix_expression:
2345 primary
2346 | name
2347 | post_increment_expression
2348 | post_decrement_expression
2351 post_increment_expression:
2352 postfix_expression INCR_TK
2353 { $$ = build_incdec ($2.token, $2.location, $1, 1); }
2356 post_decrement_expression:
2357 postfix_expression DECR_TK
2358 { $$ = build_incdec ($2.token, $2.location, $1, 1); }
2361 trap_overflow_corner_case:
2362 pre_increment_expression
2363 | pre_decrement_expression
2364 | PLUS_TK unary_expression
2365 {$$ = build_unaryop ($1.token, $1.location, $2); }
2366 | unary_expression_not_plus_minus
2367 | PLUS_TK error
2368 {yyerror ("Missing term"); RECOVER}
2371 unary_expression:
2372 trap_overflow_corner_case
2374 if ($1)
2375 error_if_numeric_overflow ($1);
2376 $$ = $1;
2378 | MINUS_TK trap_overflow_corner_case
2379 {$$ = build_unaryop ($1.token, $1.location, $2); }
2380 | MINUS_TK error
2381 {yyerror ("Missing term"); RECOVER}
2384 pre_increment_expression:
2385 INCR_TK unary_expression
2386 {$$ = build_incdec ($1.token, $1.location, $2, 0); }
2387 | INCR_TK error
2388 {yyerror ("Missing term"); RECOVER}
2391 pre_decrement_expression:
2392 DECR_TK unary_expression
2393 {$$ = build_incdec ($1.token, $1.location, $2, 0); }
2394 | DECR_TK error
2395 {yyerror ("Missing term"); RECOVER}
2398 unary_expression_not_plus_minus:
2399 postfix_expression
2400 | NOT_TK unary_expression
2401 {$$ = build_unaryop ($1.token, $1.location, $2); }
2402 | NEG_TK unary_expression
2403 {$$ = build_unaryop ($1.token, $1.location, $2); }
2404 | cast_expression
2405 | NOT_TK error
2406 {yyerror ("Missing term"); RECOVER}
2407 | NEG_TK error
2408 {yyerror ("Missing term"); RECOVER}
2411 cast_expression: /* Error handling here is potentially weak */
2412 OP_TK primitive_type dims CP_TK unary_expression
2414 tree type = $2;
2415 int osb = pop_current_osb (ctxp);
2416 while (osb--)
2417 type = build_java_array_type (type, -1);
2418 $$ = build_cast ($1.location, type, $5);
2420 | OP_TK primitive_type CP_TK unary_expression
2421 { $$ = build_cast ($1.location, $2, $4); }
2422 | OP_TK expression CP_TK unary_expression_not_plus_minus
2423 { $$ = build_cast ($1.location, $2, $4); }
2424 | OP_TK name dims CP_TK unary_expression_not_plus_minus
2426 const char *ptr;
2427 int osb = pop_current_osb (ctxp);
2428 obstack_grow (&temporary_obstack,
2429 IDENTIFIER_POINTER (EXPR_WFL_NODE ($2)),
2430 IDENTIFIER_LENGTH (EXPR_WFL_NODE ($2)));
2431 while (osb--)
2432 obstack_grow (&temporary_obstack, "[]", 2);
2433 obstack_1grow (&temporary_obstack, '\0');
2434 ptr = obstack_finish (&temporary_obstack);
2435 EXPR_WFL_NODE ($2) = get_identifier (ptr);
2436 $$ = build_cast ($1.location, $2, $5);
2438 | OP_TK primitive_type OSB_TK error
2439 {yyerror ("']' expected, invalid type expression");}
2440 | OP_TK error
2442 YYNOT_TWICE yyerror ("Invalid type expression"); RECOVER;
2443 RECOVER;
2445 | OP_TK primitive_type dims CP_TK error
2446 {yyerror ("Missing term"); RECOVER;}
2447 | OP_TK primitive_type CP_TK error
2448 {yyerror ("Missing term"); RECOVER;}
2449 | OP_TK name dims CP_TK error
2450 {yyerror ("Missing term"); RECOVER;}
2453 multiplicative_expression:
2454 unary_expression
2455 | multiplicative_expression MULT_TK unary_expression
2457 $$ = build_binop (BINOP_LOOKUP ($2.token),
2458 $2.location, $1, $3);
2460 | multiplicative_expression DIV_TK unary_expression
2462 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2463 $1, $3);
2465 | multiplicative_expression REM_TK unary_expression
2467 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2468 $1, $3);
2470 | multiplicative_expression MULT_TK error
2471 {yyerror ("Missing term"); RECOVER;}
2472 | multiplicative_expression DIV_TK error
2473 {yyerror ("Missing term"); RECOVER;}
2474 | multiplicative_expression REM_TK error
2475 {yyerror ("Missing term"); RECOVER;}
2478 additive_expression:
2479 multiplicative_expression
2480 | additive_expression PLUS_TK multiplicative_expression
2482 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2483 $1, $3);
2485 | additive_expression MINUS_TK multiplicative_expression
2487 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2488 $1, $3);
2490 | additive_expression PLUS_TK error
2491 {yyerror ("Missing term"); RECOVER;}
2492 | additive_expression MINUS_TK error
2493 {yyerror ("Missing term"); RECOVER;}
2496 shift_expression:
2497 additive_expression
2498 | shift_expression LS_TK additive_expression
2500 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2501 $1, $3);
2503 | shift_expression SRS_TK additive_expression
2505 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2506 $1, $3);
2508 | shift_expression ZRS_TK additive_expression
2510 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2511 $1, $3);
2513 | shift_expression LS_TK error
2514 {yyerror ("Missing term"); RECOVER;}
2515 | shift_expression SRS_TK error
2516 {yyerror ("Missing term"); RECOVER;}
2517 | shift_expression ZRS_TK error
2518 {yyerror ("Missing term"); RECOVER;}
2521 relational_expression:
2522 shift_expression
2523 | relational_expression LT_TK shift_expression
2525 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2526 $1, $3);
2528 | relational_expression GT_TK shift_expression
2530 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2531 $1, $3);
2533 | relational_expression LTE_TK shift_expression
2535 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2536 $1, $3);
2538 | relational_expression GTE_TK shift_expression
2540 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2541 $1, $3);
2543 | relational_expression INSTANCEOF_TK reference_type
2544 { $$ = build_binop (INSTANCEOF_EXPR, $2.location, $1, $3); }
2545 | relational_expression LT_TK error
2546 {yyerror ("Missing term"); RECOVER;}
2547 | relational_expression GT_TK error
2548 {yyerror ("Missing term"); RECOVER;}
2549 | relational_expression LTE_TK error
2550 {yyerror ("Missing term"); RECOVER;}
2551 | relational_expression GTE_TK error
2552 {yyerror ("Missing term"); RECOVER;}
2553 | relational_expression INSTANCEOF_TK error
2554 {yyerror ("Invalid reference type"); RECOVER;}
2557 equality_expression:
2558 relational_expression
2559 | equality_expression EQ_TK relational_expression
2561 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2562 $1, $3);
2564 | equality_expression NEQ_TK relational_expression
2566 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2567 $1, $3);
2569 | equality_expression EQ_TK error
2570 {yyerror ("Missing term"); RECOVER;}
2571 | equality_expression NEQ_TK error
2572 {yyerror ("Missing term"); RECOVER;}
2575 and_expression:
2576 equality_expression
2577 | and_expression AND_TK equality_expression
2579 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2580 $1, $3);
2582 | and_expression AND_TK error
2583 {yyerror ("Missing term"); RECOVER;}
2586 exclusive_or_expression:
2587 and_expression
2588 | exclusive_or_expression XOR_TK and_expression
2590 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2591 $1, $3);
2593 | exclusive_or_expression XOR_TK error
2594 {yyerror ("Missing term"); RECOVER;}
2597 inclusive_or_expression:
2598 exclusive_or_expression
2599 | inclusive_or_expression OR_TK exclusive_or_expression
2601 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2602 $1, $3);
2604 | inclusive_or_expression OR_TK error
2605 {yyerror ("Missing term"); RECOVER;}
2608 conditional_and_expression:
2609 inclusive_or_expression
2610 | conditional_and_expression BOOL_AND_TK inclusive_or_expression
2612 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2613 $1, $3);
2615 | conditional_and_expression BOOL_AND_TK error
2616 {yyerror ("Missing term"); RECOVER;}
2619 conditional_or_expression:
2620 conditional_and_expression
2621 | conditional_or_expression BOOL_OR_TK conditional_and_expression
2623 $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2624 $1, $3);
2626 | conditional_or_expression BOOL_OR_TK error
2627 {yyerror ("Missing term"); RECOVER;}
2630 conditional_expression: /* Error handling here is weak */
2631 conditional_or_expression
2632 | conditional_or_expression REL_QM_TK expression REL_CL_TK conditional_expression
2634 $$ = build3 (CONDITIONAL_EXPR, NULL_TREE, $1, $3, $5);
2635 SET_EXPR_LOCATION_FROM_TOKEN ($$, $2);
2637 | conditional_or_expression REL_QM_TK REL_CL_TK error
2639 YYERROR_NOW;
2640 yyerror ("Missing term");
2641 DRECOVER (1);
2643 | conditional_or_expression REL_QM_TK error
2644 {yyerror ("Missing term"); DRECOVER (2);}
2645 | conditional_or_expression REL_QM_TK expression REL_CL_TK error
2646 {yyerror ("Missing term"); DRECOVER (3);}
2649 assignment_expression:
2650 conditional_expression
2651 | assignment
2654 assignment:
2655 left_hand_side assignment_operator assignment_expression
2656 { $$ = build_assignment ($2.token, $2.location, $1, $3); }
2657 | left_hand_side assignment_operator error
2659 YYNOT_TWICE yyerror ("Missing term");
2660 DRECOVER (assign);
2664 left_hand_side:
2665 name
2666 | field_access
2667 | array_access
2670 assignment_operator:
2671 ASSIGN_ANY_TK
2672 | ASSIGN_TK
2675 expression:
2676 assignment_expression
2679 constant_expression:
2680 expression
2685 /* Helper function to retrieve an OSB count. Should be used when the
2686 `dims:' rule is being used. */
2688 static int
2689 pop_current_osb (struct parser_ctxt *ctxp)
2691 int to_return;
2693 if (ctxp->osb_depth < 0)
2694 abort ();
2696 to_return = CURRENT_OSB (ctxp);
2697 ctxp->osb_depth--;
2699 return to_return;
2704 /* This section of the code deal with save/restoring parser contexts.
2705 Add mode documentation here. FIXME */
2707 /* Helper function. Create a new parser context. With
2708 COPY_FROM_PREVIOUS set to a nonzero value, content of the previous
2709 context is copied, otherwise, the new context is zeroed. The newly
2710 created context becomes the current one. */
2712 static void
2713 create_new_parser_context (int copy_from_previous)
2715 struct parser_ctxt *new;
2717 new = ggc_alloc (sizeof (struct parser_ctxt));
2718 if (copy_from_previous)
2720 memcpy (new, ctxp, sizeof (struct parser_ctxt));
2721 /* This flag, indicating the context saves global values,
2722 should only be set by java_parser_context_save_global. */
2723 new->saved_data_ctx = 0;
2725 else
2726 memset (new, 0, sizeof (struct parser_ctxt));
2728 new->next = ctxp;
2729 ctxp = new;
2732 /* Create a new parser context and make it the current one. */
2734 void
2735 java_push_parser_context (void)
2737 create_new_parser_context (0);
2740 void
2741 java_pop_parser_context (int generate)
2743 tree current;
2744 struct parser_ctxt *next;
2746 if (!ctxp)
2747 return;
2749 next = ctxp->next;
2750 if (next)
2752 input_location = ctxp->save_location;
2753 current_class = ctxp->class_type;
2756 /* If the old and new lexers differ, then free the old one. */
2757 if (ctxp->lexer && next && ctxp->lexer != next->lexer)
2758 java_destroy_lexer (ctxp->lexer);
2760 /* Set the single import class file flag to 0 for the current list
2761 of imported things */
2762 for (current = ctxp->import_list; current; current = TREE_CHAIN (current))
2763 IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (TREE_VALUE (current)) = 0;
2765 /* If we pushed a context to parse a class intended to be generated,
2766 we keep it so we can remember the class. What we could actually
2767 do is to just update a list of class names. */
2768 if (generate)
2770 if (ctxp_for_generation_last == NULL)
2771 ctxp_for_generation = ctxp;
2772 else
2773 ctxp_for_generation_last->next = ctxp;
2774 ctxp->next = NULL;
2775 ctxp_for_generation_last = ctxp;
2778 /* And restore those of the previous context */
2779 if ((ctxp = next)) /* Assignment is really meant here */
2780 for (current = ctxp->import_list; current; current = TREE_CHAIN (current))
2781 IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (TREE_VALUE (current)) = 1;
2784 /* Create a parser context for the use of saving some global
2785 variables. */
2787 void
2788 java_parser_context_save_global (void)
2790 if (!ctxp)
2792 java_push_parser_context ();
2793 ctxp->saved_data_ctx = 1;
2796 /* If this context already stores data, create a new one suitable
2797 for data storage. */
2798 else if (ctxp->saved_data)
2800 create_new_parser_context (1);
2801 ctxp->saved_data_ctx = 1;
2804 ctxp->save_location = input_location;
2805 ctxp->class_type = current_class;
2806 ctxp->function_decl = current_function_decl;
2807 ctxp->saved_data = 1;
2810 /* Restore some global variables from the previous context. Make the
2811 previous context the current one. */
2813 void
2814 java_parser_context_restore_global (void)
2816 input_location = ctxp->save_location;
2817 current_class = ctxp->class_type;
2818 if (wfl_operator)
2819 #ifdef USE_MAPPED_LOCATION
2820 SET_EXPR_LOCATION (wfl_operator, ctxp->save_location);
2821 #else
2822 EXPR_WFL_FILENAME_NODE (wfl_operator) = get_identifier (input_filename);
2823 #endif
2824 current_function_decl = ctxp->function_decl;
2825 ctxp->saved_data = 0;
2826 if (ctxp->saved_data_ctx)
2827 java_pop_parser_context (0);
2830 /* Suspend vital data for the current class/function being parsed so
2831 that an other class can be parsed. Used to let local/anonymous
2832 classes be parsed. */
2834 static void
2835 java_parser_context_suspend (void)
2837 /* This makes debugging through java_debug_context easier */
2838 static const char *const name = "<inner buffer context>";
2840 /* Duplicate the previous context, use it to save the globals we're
2841 interested in */
2842 create_new_parser_context (1);
2843 ctxp->function_decl = current_function_decl;
2844 ctxp->class_type = current_class;
2846 /* Then create a new context which inherits all data from the
2847 previous one. This will be the new current context */
2848 create_new_parser_context (1);
2850 /* Help debugging */
2851 ctxp->next->filename = name;
2854 /* Resume vital data for the current class/function being parsed so
2855 that an other class can be parsed. Used to let local/anonymous
2856 classes be parsed. The trick is the data storing file position
2857 informations must be restored to their current value, so parsing
2858 can resume as if no context was ever saved. */
2860 static void
2861 java_parser_context_resume (void)
2863 struct parser_ctxt *old = ctxp; /* This one is to be discarded */
2864 struct parser_ctxt *saver = old->next; /* This one contain saved info */
2865 struct parser_ctxt *restored = saver->next; /* This one is the old current */
2867 /* We need to inherit the list of classes to complete/generate */
2868 restored->classd_list = old->classd_list;
2869 restored->class_list = old->class_list;
2871 /* Restore the current class and function from the saver */
2872 current_class = saver->class_type;
2873 current_function_decl = saver->function_decl;
2875 /* Retrieve the restored context */
2876 ctxp = restored;
2878 /* Re-installed the data for the parsing to carry on */
2879 memcpy (&ctxp->marker_begining, &old->marker_begining,
2880 (size_t)(&ctxp->marker_end - &ctxp->marker_begining));
2883 /* Add a new anchor node to which all statement(s) initializing static
2884 and non static initialized upon declaration field(s) will be
2885 linked. */
2887 static void
2888 java_parser_context_push_initialized_field (void)
2890 tree node;
2892 node = build_tree_list (NULL_TREE, NULL_TREE);
2893 TREE_CHAIN (node) = CPC_STATIC_INITIALIZER_LIST (ctxp);
2894 CPC_STATIC_INITIALIZER_LIST (ctxp) = node;
2896 node = build_tree_list (NULL_TREE, NULL_TREE);
2897 TREE_CHAIN (node) = CPC_INITIALIZER_LIST (ctxp);
2898 CPC_INITIALIZER_LIST (ctxp) = node;
2900 node = build_tree_list (NULL_TREE, NULL_TREE);
2901 TREE_CHAIN (node) = CPC_INSTANCE_INITIALIZER_LIST (ctxp);
2902 CPC_INSTANCE_INITIALIZER_LIST (ctxp) = node;
2905 /* Pop the lists of initialized field. If this lists aren't empty,
2906 remember them so we can use it to create and populate the finit$
2907 or <clinit> functions. */
2909 static void
2910 java_parser_context_pop_initialized_field (void)
2912 tree stmts;
2913 tree class_type = TREE_TYPE (GET_CPC ());
2915 if (CPC_INITIALIZER_LIST (ctxp))
2917 stmts = CPC_INITIALIZER_STMT (ctxp);
2918 CPC_INITIALIZER_LIST (ctxp) = TREE_CHAIN (CPC_INITIALIZER_LIST (ctxp));
2919 if (stmts && !java_error_count)
2920 TYPE_FINIT_STMT_LIST (class_type) = reorder_static_initialized (stmts);
2923 if (CPC_STATIC_INITIALIZER_LIST (ctxp))
2925 stmts = CPC_STATIC_INITIALIZER_STMT (ctxp);
2926 CPC_STATIC_INITIALIZER_LIST (ctxp) =
2927 TREE_CHAIN (CPC_STATIC_INITIALIZER_LIST (ctxp));
2928 /* Keep initialization in order to enforce 8.5 */
2929 if (stmts && !java_error_count)
2930 TYPE_CLINIT_STMT_LIST (class_type) = nreverse (stmts);
2933 /* JDK 1.1 instance initializers */
2934 if (CPC_INSTANCE_INITIALIZER_LIST (ctxp))
2936 stmts = CPC_INSTANCE_INITIALIZER_STMT (ctxp);
2937 CPC_INSTANCE_INITIALIZER_LIST (ctxp) =
2938 TREE_CHAIN (CPC_INSTANCE_INITIALIZER_LIST (ctxp));
2939 if (stmts && !java_error_count)
2940 TYPE_II_STMT_LIST (class_type) = nreverse (stmts);
2944 static tree
2945 reorder_static_initialized (tree list)
2947 /* We have to keep things in order. The alias initializer have to
2948 come first, then the initialized regular field, in reverse to
2949 keep them in lexical order. */
2950 tree marker, previous = NULL_TREE;
2951 for (marker = list; marker; previous = marker, marker = TREE_CHAIN (marker))
2952 if (TREE_CODE (marker) == TREE_LIST
2953 && !TREE_VALUE (marker) && !TREE_PURPOSE (marker))
2954 break;
2956 /* No static initialized, the list is fine as is */
2957 if (!previous)
2958 list = TREE_CHAIN (marker);
2960 /* No marker? reverse the whole list */
2961 else if (!marker)
2962 list = nreverse (list);
2964 /* Otherwise, reverse what's after the marker and the new reordered
2965 sublist will replace the marker. */
2966 else
2968 TREE_CHAIN (previous) = NULL_TREE;
2969 list = nreverse (list);
2970 list = chainon (TREE_CHAIN (marker), list);
2972 return list;
2975 /* Helper functions to dump the parser context stack. */
2977 #define TAB_CONTEXT(C) \
2978 {int i; for (i = 0; i < (C); i++) fputc (' ', stderr);}
2980 static void
2981 java_debug_context_do (int tab)
2983 struct parser_ctxt *copy = ctxp;
2984 while (copy)
2986 TAB_CONTEXT (tab);
2987 fprintf (stderr, "ctxt: 0x%0lX\n", (unsigned long)copy);
2988 TAB_CONTEXT (tab);
2989 fprintf (stderr, "filename: %s\n", copy->filename);
2990 TAB_CONTEXT (tab);
2991 fprintf (stderr, "package: %s\n",
2992 (copy->package ?
2993 IDENTIFIER_POINTER (copy->package) : "<none>"));
2994 TAB_CONTEXT (tab);
2995 fprintf (stderr, "context for saving: %d\n", copy->saved_data_ctx);
2996 TAB_CONTEXT (tab);
2997 fprintf (stderr, "saved data: %d\n", copy->saved_data);
2998 copy = copy->next;
2999 tab += 2;
3003 /* Dump the stacked up parser contexts. Intended to be called from a
3004 debugger. */
3006 void
3007 java_debug_context (void)
3009 java_debug_context_do (0);
3014 /* Flag for the error report routine to issue the error the first time
3015 it's called (overriding the default behavior which is to drop the
3016 first invocation and honor the second one, taking advantage of a
3017 richer context. */
3018 static int force_error = 0;
3020 /* Reporting an constructor invocation error. */
3021 static void
3022 parse_ctor_invocation_error (void)
3024 if (DECL_CONSTRUCTOR_P (current_function_decl))
3025 yyerror ("Constructor invocation must be first thing in a constructor");
3026 else
3027 yyerror ("Only constructors can invoke constructors");
3030 /* Reporting JDK1.1 features not implemented. */
3032 static tree
3033 parse_jdk1_1_error (const char *msg)
3035 sorry (": %qs JDK1.1(TM) feature", msg);
3036 java_error_count++;
3037 return build_java_empty_stmt ();
3040 static int do_warning = 0;
3042 void
3043 yyerror (const char *msgid)
3045 #ifdef USE_MAPPED_LOCATION
3046 static source_location elc;
3047 expanded_location xloc = expand_location (input_location);
3048 int current_line = xloc.line;
3049 #else
3050 static java_lc elc;
3051 int save_lineno;
3052 int current_line = input_line;
3053 #endif
3054 static int prev_lineno;
3055 static const char *prev_msg;
3057 char *remainder, *code_from_source;
3059 if (!force_error && prev_lineno == current_line)
3060 return;
3061 #ifndef USE_MAPPED_LOCATION
3062 current_line = ctxp->lexer->token_start.line;
3063 #endif
3065 /* Save current error location but report latter, when the context is
3066 richer. */
3067 if (ctxp->java_error_flag == 0)
3069 ctxp->java_error_flag = 1;
3070 #ifdef USE_MAPPED_LOCATION
3071 elc = input_location;
3072 #else
3073 elc = ctxp->lexer->token_start;
3074 #endif
3075 /* Do something to use the previous line if we're reaching the
3076 end of the file... */
3077 #ifdef VERBOSE_SKELETON
3078 printf ("* Error detected (%s)\n", (msgid ? msgid : "(null)"));
3079 #endif
3080 return;
3083 /* Ignore duplicate message on the same line. BTW, this is dubious. FIXME */
3084 if (!force_error && msgid == prev_msg && prev_lineno == current_line)
3085 return;
3087 ctxp->java_error_flag = 0;
3088 if (do_warning)
3089 java_warning_count++;
3090 else
3091 java_error_count++;
3093 #if 0 /* FIXME */
3094 if (elc.col == 0 && msgid && msgid[1] == ';')
3095 elc = ctxp->prev_line_end;
3096 #endif
3098 prev_msg = msgid;
3100 #ifdef USE_MAPPED_LOCATION
3101 prev_lineno = current_line;
3102 code_from_source = java_get_line_col (xloc.file, current_line, xloc.column);
3103 #else
3104 save_lineno = input_line;
3105 prev_lineno = input_line = current_line;
3106 code_from_source = java_get_line_col (input_filename, current_line,
3107 ctxp->lexer->token_start.col);
3108 #endif
3111 obstack_grow0 (&temporary_obstack,
3112 code_from_source, strlen (code_from_source));
3113 remainder = obstack_finish (&temporary_obstack);
3114 if (do_warning)
3115 warning (0, "%s.\n%s", msgid, remainder);
3116 else
3117 error ("%s.\n%s", msgid, remainder);
3119 /* This allow us to cheaply avoid an extra 'Invalid expression
3120 statement' error report when errors have been already reported on
3121 the same line. This occurs when we report an error but don't have
3122 a synchronization point other than ';', which
3123 expression_statement is the only one to take care of. */
3124 #ifndef USE_MAPPED_LOCATION
3125 input_line = save_lineno;
3126 #endif
3127 ctxp->prevent_ese = input_line;
3130 static void
3131 issue_warning_error_from_context (
3132 #ifdef USE_MAPPED_LOCATION
3133 source_location cl,
3134 #else
3135 tree cl,
3136 #endif
3137 const char *gmsgid, va_list *ap)
3139 #ifdef USE_MAPPED_LOCATION
3140 source_location saved_location = input_location;
3141 expanded_location xloc = expand_location (cl);
3142 #else
3143 java_lc save_lc = ctxp->lexer->token_start;
3144 const char *saved = ctxp->filename, *saved_input_filename;
3145 #endif
3146 char buffer [4096];
3147 text_info text;
3149 text.err_no = errno;
3150 text.args_ptr = ap;
3151 text.format_spec = gmsgid;
3152 pp_format (global_dc->printer, &text);
3153 pp_output_formatted_text (global_dc->printer);
3154 strncpy (buffer, pp_formatted_text (global_dc->printer), sizeof (buffer) - 1);
3155 buffer[sizeof (buffer) - 1] = '\0';
3156 pp_clear_output_area (global_dc->printer);
3158 force_error = 1;
3160 #ifdef USE_MAPPED_LOCATION
3161 if (xloc.file != NULL)
3163 ctxp->filename = xloc.file;
3164 input_location = cl;
3166 #else
3167 ctxp->lexer->token_start.line = EXPR_WFL_LINENO (cl);
3168 ctxp->lexer->token_start.col = (EXPR_WFL_COLNO (cl) == 0xfff ? -1
3169 : EXPR_WFL_COLNO (cl) == 0xffe ? -2
3170 : EXPR_WFL_COLNO (cl));
3172 /* We have a CL, that's a good reason for using it if it contains data */
3173 if (TREE_CODE (cl) == EXPR_WITH_FILE_LOCATION && EXPR_WFL_FILENAME_NODE (cl))
3174 ctxp->filename = EXPR_WFL_FILENAME (cl);
3175 saved_input_filename = input_filename;
3176 input_filename = ctxp->filename;
3177 #endif
3178 java_error (NULL);
3179 java_error (buffer);
3180 #ifdef USE_MAPPED_LOCATION
3181 input_location = saved_location;
3182 #else
3183 ctxp->filename = saved;
3184 input_filename = saved_input_filename;
3185 ctxp->lexer->token_start = save_lc;
3186 #endif
3187 force_error = 0;
3190 /* Issue an error message at a current source line CL.
3191 FUTURE/FIXME: change cl to be a source_location. */
3193 void
3194 parse_error_context (tree cl, const char *gmsgid, ...)
3196 va_list ap;
3197 va_start (ap, gmsgid);
3198 #ifdef USE_MAPPED_LOCATION
3199 issue_warning_error_from_context (EXPR_LOCATION (cl), gmsgid, &ap);
3200 #else
3201 issue_warning_error_from_context (cl, gmsgid, &ap);
3202 #endif
3203 va_end (ap);
3206 /* Issue a warning at a current source line CL.
3207 FUTURE/FIXME: change cl to be a source_location. */
3209 static void
3210 parse_warning_context (tree cl, const char *gmsgid, ...)
3212 va_list ap;
3213 va_start (ap, gmsgid);
3215 do_warning = 1;
3216 #ifdef USE_MAPPED_LOCATION
3217 issue_warning_error_from_context (EXPR_LOCATION (cl), gmsgid, &ap);
3218 #else
3219 issue_warning_error_from_context (cl, gmsgid, &ap);
3220 #endif
3221 do_warning = 0;
3222 va_end (ap);
3225 static tree
3226 find_expr_with_wfl (tree node)
3228 while (node)
3230 enum tree_code_class code;
3231 tree to_return;
3233 switch (TREE_CODE (node))
3235 case BLOCK:
3236 node = BLOCK_EXPR_BODY (node);
3237 continue;
3239 case COMPOUND_EXPR:
3240 to_return = find_expr_with_wfl (TREE_OPERAND (node, 0));
3241 if (to_return)
3242 return to_return;
3243 node = TREE_OPERAND (node, 1);
3244 continue;
3246 case LOOP_EXPR:
3247 node = TREE_OPERAND (node, 0);
3248 continue;
3250 case LABELED_BLOCK_EXPR:
3251 node = LABELED_BLOCK_BODY (node);
3252 continue;
3254 default:
3255 code = TREE_CODE_CLASS (TREE_CODE (node));
3256 if (((code == tcc_unary) || (code == tcc_binary)
3257 || (code == tcc_expression))
3258 && EXPR_WFL_LINECOL (node))
3259 return node;
3260 return NULL_TREE;
3263 return NULL_TREE;
3266 /* Issue a missing return statement error. Uses METHOD to figure the
3267 last line of the method the error occurs in. */
3269 static void
3270 missing_return_error (tree method)
3272 #ifdef USE_MAPPED_LOCATION
3273 SET_EXPR_LOCATION (wfl_operator, DECL_FUNCTION_LAST_LINE (method));
3274 #else
3275 EXPR_WFL_SET_LINECOL (wfl_operator, DECL_FUNCTION_LAST_LINE (method), -2);
3276 #endif
3277 parse_error_context (wfl_operator, "Missing return statement");
3280 /* Issue an unreachable statement error. From NODE, find the next
3281 statement to report appropriately. */
3282 static void
3283 unreachable_stmt_error (tree node)
3285 /* Browse node to find the next expression node that has a WFL. Use
3286 the location to report the error */
3287 if (TREE_CODE (node) == COMPOUND_EXPR)
3288 node = find_expr_with_wfl (TREE_OPERAND (node, 1));
3289 else
3290 node = find_expr_with_wfl (node);
3292 if (node)
3294 #ifdef USE_MAPPED_LOCATION
3295 SET_EXPR_LOCATION (wfl_operator, EXPR_LOCATION (node));
3296 #else
3297 EXPR_WFL_SET_LINECOL (wfl_operator, EXPR_WFL_LINENO (node), -2);
3298 #endif
3299 parse_error_context (wfl_operator, "Unreachable statement");
3301 else
3302 abort ();
3305 static int
3306 not_accessible_field_error (tree wfl, tree decl)
3308 parse_error_context
3309 (wfl, "Can't access %s field %<%s.%s%> from %qs",
3310 accessibility_string (get_access_flags_from_decl (decl)),
3311 GET_TYPE_NAME (DECL_CONTEXT (decl)),
3312 IDENTIFIER_POINTER (DECL_NAME (decl)),
3313 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))));
3314 return 1;
3318 java_report_errors (void)
3320 if (java_error_count)
3321 fprintf (stderr, "%d error%s",
3322 java_error_count, (java_error_count == 1 ? "" : "s"));
3323 if (java_warning_count)
3324 fprintf (stderr, "%s%d warning%s", (java_error_count ? ", " : ""),
3325 java_warning_count, (java_warning_count == 1 ? "" : "s"));
3326 if (java_error_count || java_warning_count)
3327 putc ('\n', stderr);
3328 return java_error_count;
3331 static char *
3332 java_accstring_lookup (int flags)
3334 static char buffer [80];
3335 #define COPY_RETURN(S) {strcpy (buffer, S); return buffer;}
3337 /* Access modifier looked-up first for easier report on forbidden
3338 access. */
3339 if (flags & ACC_PUBLIC) COPY_RETURN ("public");
3340 if (flags & ACC_PRIVATE) COPY_RETURN ("private");
3341 if (flags & ACC_PROTECTED) COPY_RETURN ("protected");
3342 if (flags & ACC_STATIC) COPY_RETURN ("static");
3343 if (flags & ACC_FINAL) COPY_RETURN ("final");
3344 if (flags & ACC_SYNCHRONIZED) COPY_RETURN ("synchronized");
3345 if (flags & ACC_VOLATILE) COPY_RETURN ("volatile");
3346 if (flags & ACC_TRANSIENT) COPY_RETURN ("transient");
3347 if (flags & ACC_NATIVE) COPY_RETURN ("native");
3348 if (flags & ACC_INTERFACE) COPY_RETURN ("interface");
3349 if (flags & ACC_ABSTRACT) COPY_RETURN ("abstract");
3351 buffer [0] = '\0';
3352 return buffer;
3353 #undef COPY_RETURN
3356 /* Returns a string denoting the accessibility of a class or a member as
3357 indicated by FLAGS. We need a separate function from
3358 java_accstring_lookup, as the latter can return spurious "static", etc.
3359 if package-private access is defined (in which case none of the
3360 relevant access control bits in FLAGS is set). */
3362 static const char *
3363 accessibility_string (int flags)
3365 if (flags & ACC_PRIVATE) return "private";
3366 if (flags & ACC_PROTECTED) return "protected";
3367 if (flags & ACC_PUBLIC) return "public";
3369 return "package-private";
3372 /* Issuing error messages upon redefinition of classes, interfaces or
3373 variables. */
3375 static void
3376 classitf_redefinition_error (const char *context, tree id, tree decl, tree cl)
3378 parse_error_context (cl, "%s %qs already defined in %s:%d",
3379 context, IDENTIFIER_POINTER (id),
3380 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3381 /* Here we should point out where its redefined. It's a unicode. FIXME */
3384 static void
3385 variable_redefinition_error (tree context, tree name, tree type, int line)
3387 const char *type_name;
3389 /* Figure a proper name for type. We might haven't resolved it */
3390 if (TREE_CODE (type) == POINTER_TYPE && !TREE_TYPE (type))
3391 type_name = IDENTIFIER_POINTER (TYPE_NAME (type));
3392 else
3393 type_name = lang_printable_name (type, 0);
3395 parse_error_context (context,
3396 "Variable %qs is already defined in this method and was declared %<%s %s%> at line %d",
3397 IDENTIFIER_POINTER (name),
3398 type_name, IDENTIFIER_POINTER (name), line);
3401 /* If ANAME is terminated with `[]', it indicates an array. This
3402 function returns the number of `[]' found and if this number is
3403 greater than zero, it extracts the array type name and places it in
3404 the node pointed to by TRIMMED unless TRIMMED is null. */
3406 static int
3407 build_type_name_from_array_name (tree aname, tree *trimmed)
3409 const char *name = IDENTIFIER_POINTER (aname);
3410 int len = IDENTIFIER_LENGTH (aname);
3411 int array_dims;
3413 STRING_STRIP_BRACKETS (name, len, array_dims);
3415 if (array_dims && trimmed)
3416 *trimmed = get_identifier_with_length (name, len);
3418 return array_dims;
3421 static tree
3422 build_array_from_name (tree type, tree type_wfl, tree name, tree *ret_name)
3424 int more_dims = 0;
3426 /* Eventually get more dims */
3427 more_dims = build_type_name_from_array_name (name, &name);
3429 /* If we have, then craft a new type for this variable */
3430 if (more_dims)
3432 tree save = type;
3434 /* If we have a pointer, use its type */
3435 if (TREE_CODE (type) == POINTER_TYPE)
3436 type = TREE_TYPE (type);
3438 /* Building the first dimension of a primitive type uses this
3439 function */
3440 if (JPRIMITIVE_TYPE_P (type))
3442 type = build_java_array_type (type, -1);
3443 more_dims--;
3445 /* Otherwise, if we have a WFL for this type, use it (the type
3446 is already an array on an unresolved type, and we just keep
3447 on adding dimensions) */
3448 else if (type_wfl)
3450 type = type_wfl;
3451 more_dims += build_type_name_from_array_name (TYPE_NAME (save),
3452 NULL);
3455 /* Add all the dimensions */
3456 while (more_dims--)
3457 type = build_unresolved_array_type (type);
3459 /* The type may have been incomplete in the first place */
3460 if (type_wfl)
3461 type = obtain_incomplete_type (type);
3464 if (ret_name)
3465 *ret_name = name;
3466 return type;
3469 /* Build something that the type identifier resolver will identify as
3470 being an array to an unresolved type. TYPE_WFL is a WFL on a
3471 identifier. */
3473 static tree
3474 build_unresolved_array_type (tree type_or_wfl)
3476 const char *ptr;
3477 tree wfl;
3479 /* TYPE_OR_WFL might be an array on a resolved type. In this case,
3480 just create a array type */
3481 if (TREE_CODE (type_or_wfl) == RECORD_TYPE)
3482 return build_java_array_type (type_or_wfl, -1);
3484 obstack_grow (&temporary_obstack,
3485 IDENTIFIER_POINTER (EXPR_WFL_NODE (type_or_wfl)),
3486 IDENTIFIER_LENGTH (EXPR_WFL_NODE (type_or_wfl)));
3487 obstack_grow0 (&temporary_obstack, "[]", 2);
3488 ptr = obstack_finish (&temporary_obstack);
3489 #ifdef USE_MAPPED_LOCATION
3490 wfl = build_expr_wfl (get_identifier (ptr), EXPR_LOCATION (type_or_wfl));
3491 #else
3492 wfl = build_expr_wfl (get_identifier (ptr),
3493 EXPR_WFL_FILENAME (type_or_wfl),
3494 EXPR_WFL_LINENO (type_or_wfl),
3495 EXPR_WFL_COLNO (type_or_wfl));
3496 #endif
3497 /* Re-install the existing qualifications so that the type can be
3498 resolved properly. */
3499 EXPR_WFL_QUALIFICATION (wfl) = EXPR_WFL_QUALIFICATION (type_or_wfl);
3500 return wfl;
3503 static void
3504 parser_add_interface (tree class_decl, tree interface_decl, tree wfl)
3506 if (maybe_add_interface (TREE_TYPE (class_decl), TREE_TYPE (interface_decl)))
3507 parse_error_context (wfl, "Interface %qs repeated",
3508 IDENTIFIER_POINTER (DECL_NAME (interface_decl)));
3511 /* Bulk of common class/interface checks. Return 1 if an error was
3512 encountered. TAG is 0 for a class, 1 for an interface. */
3514 static int
3515 check_class_interface_creation (int is_interface, int flags, tree raw_name,
3516 tree qualified_name, tree decl, tree cl)
3518 tree node;
3519 int sca = 0; /* Static class allowed */
3520 int icaf = 0; /* Inner class allowed flags */
3521 int uaaf = CLASS_MODIFIERS; /* Usually allowed access flags */
3523 if (!quiet_flag)
3524 fprintf (stderr, " %s%s %s",
3525 (CPC_INNER_P () ? "inner" : ""),
3526 (is_interface ? "interface" : "class"),
3527 IDENTIFIER_POINTER (qualified_name));
3529 /* Scope of an interface/class type name:
3530 - Can't be imported by a single type import
3531 - Can't already exists in the package */
3532 if (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (raw_name)
3533 && (node = find_name_in_single_imports (raw_name))
3534 && !CPC_INNER_P ())
3536 parse_error_context
3537 (cl, "%s name %qs clashes with imported type %qs",
3538 (is_interface ? "Interface" : "Class"),
3539 IDENTIFIER_POINTER (raw_name), IDENTIFIER_POINTER (node));
3540 return 1;
3542 if (decl && CLASS_COMPLETE_P (decl))
3544 classitf_redefinition_error ((is_interface ? "Interface" : "Class"),
3545 qualified_name, decl, cl);
3546 return 1;
3549 if (check_inner_class_redefinition (raw_name, cl))
3550 return 1;
3552 /* If public, file name should match class/interface name, except
3553 when dealing with an inner class */
3554 if (!CPC_INNER_P () && (flags & ACC_PUBLIC ))
3556 const char *fname = input_filename;
3557 const char *f;
3559 for (f = fname + strlen (fname);
3560 f != fname && ! IS_DIR_SEPARATOR (*f);
3561 f--)
3563 if (IS_DIR_SEPARATOR (*f))
3564 f++;
3565 if (strncmp (IDENTIFIER_POINTER (raw_name),
3566 f , IDENTIFIER_LENGTH (raw_name)) ||
3567 f [IDENTIFIER_LENGTH (raw_name)] != '.')
3568 parse_error_context
3569 (cl, "Public %s %qs must be defined in a file called %<%s.java%>",
3570 (is_interface ? "interface" : "class"),
3571 IDENTIFIER_POINTER (qualified_name),
3572 IDENTIFIER_POINTER (raw_name));
3575 /* Static classes can be declared only in top level classes. Note:
3576 once static, a inner class is a top level class. */
3577 if (flags & ACC_STATIC)
3579 /* Catch the specific error of declaring an class inner class
3580 with no toplevel enclosing class. Prevent check_modifiers from
3581 complaining a second time */
3582 if (CPC_INNER_P () && !TOPLEVEL_CLASS_DECL_P (GET_CPC()))
3584 parse_error_context (cl, "Inner class %qs can't be static. Static classes can only occur in interfaces and top-level classes",
3585 IDENTIFIER_POINTER (qualified_name));
3586 sca = ACC_STATIC;
3588 /* Else, in the context of a top-level class declaration, let
3589 `check_modifiers' do its job, otherwise, give it a go */
3590 else
3591 sca = (GET_CPC_LIST () ? ACC_STATIC : 0);
3594 /* Inner classes can be declared private or protected
3595 within their enclosing classes. */
3596 if (CPC_INNER_P ())
3598 /* A class which is local to a block can't be public, private,
3599 protected or static. But it is created final, so allow this
3600 one. */
3601 if (current_function_decl)
3602 icaf = sca = uaaf = ACC_FINAL;
3603 else
3605 check_modifiers_consistency (flags);
3606 icaf = ACC_PROTECTED;
3607 if (! CLASS_INTERFACE (GET_CPC ()))
3608 icaf |= ACC_PRIVATE;
3612 if (is_interface)
3614 if (CPC_INNER_P ())
3615 uaaf = INTERFACE_INNER_MODIFIERS;
3616 else
3617 uaaf = INTERFACE_MODIFIERS;
3619 check_modifiers ("Illegal modifier %qs for interface declaration",
3620 flags, uaaf);
3622 else
3623 check_modifiers ((current_function_decl ?
3624 "Illegal modifier %qs for local class declaration" :
3625 "Illegal modifier %qs for class declaration"),
3626 flags, uaaf|sca|icaf);
3627 return 0;
3630 /* Construct a nested class name. If the final component starts with
3631 a digit, return true. Otherwise return false. */
3632 static int
3633 make_nested_class_name (tree cpc_list)
3635 tree name;
3637 if (!cpc_list)
3638 return 0;
3640 make_nested_class_name (TREE_CHAIN (cpc_list));
3642 /* Pick the qualified name when dealing with the first upmost
3643 enclosing class */
3644 name = (TREE_CHAIN (cpc_list)
3645 ? TREE_PURPOSE (cpc_list) : DECL_NAME (TREE_VALUE (cpc_list)));
3646 obstack_grow (&temporary_obstack,
3647 IDENTIFIER_POINTER (name), IDENTIFIER_LENGTH (name));
3648 obstack_1grow (&temporary_obstack, '$');
3650 return ISDIGIT (IDENTIFIER_POINTER (name)[0]);
3653 /* Can't redefine a class already defined in an earlier scope. */
3655 static int
3656 check_inner_class_redefinition (tree raw_name, tree cl)
3658 tree scope_list;
3660 for (scope_list = GET_CPC_LIST (); scope_list;
3661 scope_list = GET_NEXT_ENCLOSING_CPC (scope_list))
3662 if (raw_name == GET_CPC_UN_NODE (scope_list))
3664 parse_error_context
3665 (cl, "The class name %qs is already defined in this scope. An inner class may not have the same simple name as any of its enclosing classes",
3666 IDENTIFIER_POINTER (raw_name));
3667 return 1;
3669 return 0;
3672 /* Tries to find a decl for CLASS_TYPE within ENCLOSING. May return an
3673 invisible/non-accessible matching decl when an accessible one could not be
3674 found, in order to give a better error message when accessibility is
3675 checked later. */
3677 static tree
3678 resolve_inner_class (tree context, tree cl, tree enclosing, tree class_type)
3680 tree local_super = NULL_TREE;
3681 tree candidate = NULL_TREE;
3683 /* This hash table is used to register the classes we're going
3684 through when searching the current class as an inner class, in
3685 order to detect circular references. */
3686 htab_t circularity_hash = htab_create (20, htab_hash_pointer, htab_eq_pointer,
3687 NULL);
3689 while (enclosing)
3691 tree decl;
3693 *htab_find_slot (circularity_hash, enclosing, INSERT) = enclosing;
3695 if ((decl = find_as_inner_class (enclosing, class_type, cl)))
3697 if (inner_class_accessible (decl, context))
3699 candidate = decl;
3700 break;
3702 else
3703 if (candidate == NULL_TREE)
3704 candidate = decl;
3707 /* Now go to the upper classes, bail out if necessary. We will
3708 analyze the returned SUPER and act accordingly (see
3709 do_resolve_class). */
3710 if (JPRIMITIVE_TYPE_P (TREE_TYPE (enclosing))
3711 || TREE_TYPE (enclosing) == void_type_node)
3713 parse_error_context (cl, "Qualifier must be a reference");
3714 enclosing = NULL_TREE;
3715 break;
3717 local_super = CLASSTYPE_SUPER (TREE_TYPE (enclosing));
3718 if (!local_super || local_super == object_type_node)
3719 break;
3721 if (TREE_CODE (local_super) == POINTER_TYPE)
3722 local_super = do_resolve_class (NULL, NULL, local_super, NULL, NULL);
3723 else
3724 local_super = TYPE_NAME (local_super);
3726 /* We may not have checked for circular inheritance yet, so do so
3727 here to prevent an infinite loop. */
3728 if (htab_find (circularity_hash, local_super) != NULL)
3730 if (!cl)
3731 cl = lookup_cl (enclosing);
3733 parse_error_context
3734 (cl, "Cyclic inheritance involving %s",
3735 IDENTIFIER_POINTER (DECL_NAME (enclosing)));
3736 enclosing = NULL_TREE;
3738 else
3739 enclosing = local_super;
3742 htab_delete (circularity_hash);
3744 /* We failed, but we might have found a matching class that wasn't
3745 accessible. Return that to get a better error message. */
3746 return candidate;
3749 /* Within ENCLOSING, find a decl for NAME and return it. NAME can be
3750 qualified. */
3752 static tree
3753 find_as_inner_class (tree enclosing, tree name, tree cl)
3755 tree qual, to_return;
3756 if (!enclosing)
3757 return NULL_TREE;
3759 name = TYPE_NAME (name);
3761 /* First search: within the scope of `enclosing', search for name */
3762 if (QUALIFIED_P (name) && cl && EXPR_WFL_NODE (cl) == name)
3763 qual = EXPR_WFL_QUALIFICATION (cl);
3764 else if (cl)
3765 qual = build_tree_list (cl, NULL_TREE);
3766 else
3767 qual = build_tree_list (build_unknown_wfl (name), NULL_TREE);
3769 if ((to_return = find_as_inner_class_do (qual, enclosing)))
3770 return to_return;
3772 /* We're dealing with a qualified name. Try to resolve thing until
3773 we get something that is an enclosing class. */
3774 if (QUALIFIED_P (name) && cl && EXPR_WFL_NODE (cl) == name)
3776 tree acc = NULL_TREE, decl = NULL_TREE, ptr;
3778 for (qual = EXPR_WFL_QUALIFICATION (cl); qual && !decl;
3779 qual = TREE_CHAIN (qual))
3781 acc = merge_qualified_name (acc,
3782 EXPR_WFL_NODE (TREE_PURPOSE (qual)));
3783 BUILD_PTR_FROM_NAME (ptr, acc);
3784 decl = do_resolve_class (NULL_TREE, NULL_TREE, ptr, NULL_TREE, cl);
3787 /* A NULL qual and a decl means that the search ended
3788 successfully?!? We have to do something then. FIXME */
3790 if (decl)
3791 enclosing = decl;
3792 else
3793 qual = EXPR_WFL_QUALIFICATION (cl);
3795 /* Otherwise, create a qual for the other part of the resolution. */
3796 else
3797 qual = build_tree_list (build_unknown_wfl (name), NULL_TREE);
3799 return find_as_inner_class_do (qual, enclosing);
3802 /* We go inside the list of sub classes and try to find a way
3803 through. */
3805 static tree
3806 find_as_inner_class_do (tree qual, tree enclosing)
3808 if (!qual)
3809 return NULL_TREE;
3811 for (; qual && enclosing; qual = TREE_CHAIN (qual))
3813 tree name_to_match = EXPR_WFL_NODE (TREE_PURPOSE (qual));
3814 tree next_enclosing = NULL_TREE;
3815 tree inner_list;
3817 for (inner_list = DECL_INNER_CLASS_LIST (enclosing);
3818 inner_list; inner_list = TREE_CHAIN (inner_list))
3820 if (TREE_VALUE (inner_list) == name_to_match)
3822 next_enclosing = TREE_PURPOSE (inner_list);
3823 break;
3826 enclosing = next_enclosing;
3829 return (!qual && enclosing ? enclosing : NULL_TREE);
3832 static void
3833 link_nested_class_to_enclosing (void)
3835 if (GET_ENCLOSING_CPC ())
3837 tree enclosing = GET_ENCLOSING_CPC_CONTEXT ();
3838 DECL_INNER_CLASS_LIST (enclosing) =
3839 tree_cons (GET_CPC (), GET_CPC_UN (),
3840 DECL_INNER_CLASS_LIST (enclosing));
3844 static tree
3845 maybe_make_nested_class_name (tree name)
3847 tree id = NULL_TREE;
3849 if (CPC_INNER_P ())
3851 /* If we're in a function, we must append a number to create the
3852 nested class name. However, we don't do this if the class we
3853 are constructing is anonymous, because in that case we'll
3854 already have a number as the class name. */
3855 if (! make_nested_class_name (GET_CPC_LIST ())
3856 && current_function_decl != NULL_TREE
3857 && ! ISDIGIT (IDENTIFIER_POINTER (name)[0]))
3859 char buf[10];
3860 sprintf (buf, "%d", anonymous_class_counter);
3861 ++anonymous_class_counter;
3862 obstack_grow (&temporary_obstack, buf, strlen (buf));
3863 obstack_1grow (&temporary_obstack, '$');
3865 obstack_grow0 (&temporary_obstack,
3866 IDENTIFIER_POINTER (name),
3867 IDENTIFIER_LENGTH (name));
3868 id = get_identifier (obstack_finish (&temporary_obstack));
3869 if (ctxp->package)
3870 QUALIFIED_P (id) = 1;
3872 return id;
3875 /* If DECL is NULL, create and push a new DECL, record the current
3876 line CL and do other maintenance things. */
3878 static tree
3879 maybe_create_class_interface_decl (tree decl, tree raw_name,
3880 tree qualified_name, tree cl)
3882 if (!decl)
3883 decl = push_class (make_class (), qualified_name);
3885 /* Take care of the file and line business */
3886 #ifdef USE_MAPPED_LOCATION
3887 DECL_SOURCE_LOCATION (decl) = EXPR_LOCATION (cl);
3888 #else
3889 DECL_SOURCE_FILE (decl) = EXPR_WFL_FILENAME (cl);
3890 DECL_SOURCE_LINE (decl) = EXPR_WFL_LINENO (cl);
3891 #endif
3892 CLASS_FROM_SOURCE_P (TREE_TYPE (decl)) = 1;
3893 CLASS_PARSED_P (TREE_TYPE (decl)) = 1;
3894 #ifdef USE_MAPPED_LOCATION
3896 tree tmp = maybe_get_identifier (EXPR_FILENAME (cl));
3897 CLASS_FROM_CURRENTLY_COMPILED_P (TREE_TYPE (decl)) =
3898 tmp && IS_A_COMMAND_LINE_FILENAME_P (tmp);
3900 #else
3901 CLASS_FROM_CURRENTLY_COMPILED_P (TREE_TYPE (decl)) =
3902 IS_A_COMMAND_LINE_FILENAME_P (EXPR_WFL_FILENAME_NODE (cl));
3903 #endif
3905 PUSH_CPC (decl, raw_name);
3906 DECL_CONTEXT (decl) = GET_ENCLOSING_CPC_CONTEXT ();
3908 /* Link the declaration to the already seen ones */
3909 TREE_CHAIN (decl) = ctxp->class_list;
3910 ctxp->class_list = decl;
3912 /* Create a new nodes in the global lists */
3913 gclass_list = tree_cons (NULL_TREE, decl, gclass_list);
3914 all_class_list = tree_cons (NULL_TREE, decl, all_class_list);
3916 /* Install a new dependency list element */
3917 create_jdep_list (ctxp);
3919 /* We keep the compilation unit imports in the class so that
3920 they can be used later to resolve type dependencies that
3921 aren't necessary to solve now. */
3922 TYPE_IMPORT_LIST (TREE_TYPE (decl)) = ctxp->import_list;
3923 TYPE_IMPORT_DEMAND_LIST (TREE_TYPE (decl)) = ctxp->import_demand_list;
3925 TYPE_PACKAGE (TREE_TYPE (decl)) = ctxp->package;
3927 SOURCE_FRONTEND_DEBUG (("Defining class/interface %s",
3928 IDENTIFIER_POINTER (qualified_name)));
3929 return decl;
3932 static void
3933 add_superinterfaces (tree decl, tree interface_list)
3935 tree node;
3936 /* Superinterface(s): if present and defined, parser_check_super_interface ()
3937 takes care of ensuring that:
3938 - This is an accessible interface type,
3939 - Circularity detection.
3940 parser_add_interface is then called. If present but not defined,
3941 the check operation is delayed until the super interface gets
3942 defined. */
3943 for (node = interface_list; node; node = TREE_CHAIN (node))
3945 tree current = TREE_PURPOSE (node);
3946 tree idecl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (current));
3947 if (idecl && CLASS_LOADED_P (TREE_TYPE (idecl)))
3949 if (!parser_check_super_interface (idecl, decl, current))
3950 parser_add_interface (decl, idecl, current);
3952 else
3953 register_incomplete_type (JDEP_INTERFACE,
3954 current, decl, NULL_TREE);
3958 /* Create an interface in pass1 and return its decl. Return the
3959 interface's decl in pass 2. */
3961 static tree
3962 create_interface (int flags, tree id, tree super)
3964 tree raw_name = EXPR_WFL_NODE (id);
3965 tree q_name = parser_qualified_classname (raw_name);
3966 tree decl = IDENTIFIER_CLASS_VALUE (q_name);
3968 /* Certain syntax errors are making SUPER be like ID. Avoid this
3969 case. */
3970 if (ctxp->class_err && id == super)
3971 super = NULL;
3973 EXPR_WFL_NODE (id) = q_name; /* Keep source location, even if refined. */
3975 /* Basic checks: scope, redefinition, modifiers */
3976 if (check_class_interface_creation (1, flags, raw_name, q_name, decl, id))
3978 PUSH_ERROR ();
3979 return NULL_TREE;
3982 /* Suspend the current parsing context if we're parsing an inner
3983 interface */
3984 if (CPC_INNER_P ())
3986 java_parser_context_suspend ();
3987 /* Interface members are public. */
3988 if (CLASS_INTERFACE (GET_CPC ()))
3989 flags |= ACC_PUBLIC;
3992 /* Push a new context for (static) initialized upon declaration fields */
3993 java_parser_context_push_initialized_field ();
3995 /* Interface modifiers check
3996 - public/abstract allowed (already done at that point)
3997 - abstract is obsolete (comes first, it's a warning, or should be)
3998 - Can't use twice the same (checked in the modifier rule) */
3999 if ((flags & ACC_ABSTRACT) && flag_redundant)
4000 parse_warning_context
4001 (MODIFIER_WFL (ABSTRACT_TK),
4002 "Redundant use of %<abstract%> modifier. Interface %qs is implicitly abstract", IDENTIFIER_POINTER (raw_name));
4004 /* Create a new decl if DECL is NULL, otherwise fix it */
4005 decl = maybe_create_class_interface_decl (decl, raw_name, q_name, id);
4007 /* Interfaces are always abstract. */
4008 flags |= ACC_ABSTRACT;
4010 /* Inner interfaces are always static. */
4011 if (INNER_CLASS_DECL_P (decl))
4012 flags |= ACC_STATIC;
4014 /* Set super info and mark the class a complete */
4015 set_super_info (ACC_INTERFACE | flags, TREE_TYPE (decl),
4016 object_type_node, ctxp->interface_number);
4017 ctxp->interface_number = 0;
4018 CLASS_COMPLETE_P (decl) = 1;
4019 add_superinterfaces (decl, super);
4021 /* Eventually sets the @deprecated tag flag */
4022 CHECK_DEPRECATED (decl);
4024 return decl;
4027 /* Patch anonymous class CLASS, by either extending or implementing
4028 DEP. */
4030 static void
4031 patch_anonymous_class (tree type_decl, tree class_decl, tree wfl)
4033 tree class = TREE_TYPE (class_decl);
4034 tree type = TREE_TYPE (type_decl);
4035 tree binfo = TYPE_BINFO (class);
4037 /* If it's an interface, implement it */
4038 if (CLASS_INTERFACE (type_decl))
4040 if (parser_check_super_interface (type_decl, class_decl, wfl))
4041 return;
4043 if (!VEC_space (tree, BINFO_BASE_BINFOS (binfo), 1))
4045 /* Extend the binfo - by reallocating and copying it. */
4046 tree new_binfo;
4047 tree base_binfo;
4048 int i;
4050 new_binfo = make_tree_binfo ((BINFO_N_BASE_BINFOS (binfo) + 1) * 2);
4051 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
4052 BINFO_BASE_APPEND (new_binfo, base_binfo);
4053 CLASS_HAS_SUPER_FLAG (new_binfo) = CLASS_HAS_SUPER_FLAG (binfo);
4054 BINFO_VTABLE (new_binfo) = BINFO_VTABLE (binfo);
4055 TYPE_BINFO (class) = new_binfo;
4058 /* And add the interface */
4059 parser_add_interface (class_decl, type_decl, wfl);
4061 /* Otherwise, it's a type we want to extend */
4062 else
4064 if (parser_check_super (type_decl, class_decl, wfl))
4065 return;
4066 BINFO_TYPE (BINFO_BASE_BINFO (binfo, 0)) = type;
4070 /* Create an anonymous class which extends/implements TYPE_NAME, and return
4071 its decl. */
4073 static tree
4074 create_anonymous_class (tree type_name)
4076 char buffer [80];
4077 tree super = NULL_TREE, itf = NULL_TREE;
4078 tree id, type_decl, class;
4080 /* The unqualified name of the anonymous class. It's just a number. */
4081 sprintf (buffer, "%d", anonymous_class_counter++);
4082 id = build_wfl_node (get_identifier (buffer));
4083 EXPR_WFL_LINECOL (id) = EXPR_WFL_LINECOL (type_name);
4085 /* We know about the type to extend/implement. We go ahead */
4086 if ((type_decl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (type_name))))
4088 /* Create a class which either implements on extends the designated
4089 class. The class bears an inaccessible name. */
4090 if (CLASS_INTERFACE (type_decl))
4092 /* It's OK to modify it here. It's been already used and
4093 shouldn't be reused */
4094 ctxp->interface_number = 1;
4095 /* Interfaces should presented as a list of WFLs */
4096 itf = build_tree_list (type_name, NULL_TREE);
4098 else
4099 super = type_name;
4102 class = create_class (ACC_FINAL, id, super, itf);
4104 /* We didn't know anything about the stuff. We register a dependence. */
4105 if (!type_decl)
4106 register_incomplete_type (JDEP_ANONYMOUS, type_name, class, NULL_TREE);
4108 ANONYMOUS_CLASS_P (TREE_TYPE (class)) = 1;
4109 return class;
4112 /* Create a class in pass1 and return its decl. Return class
4113 interface's decl in pass 2. */
4115 static tree
4116 create_class (int flags, tree id, tree super, tree interfaces)
4118 tree raw_name = EXPR_WFL_NODE (id);
4119 tree class_id, decl;
4120 tree super_decl_type;
4122 /* Certain syntax errors are making SUPER be like ID. Avoid this
4123 case. */
4124 if (ctxp->class_err && id == super)
4125 super = NULL;
4127 class_id = parser_qualified_classname (raw_name);
4128 decl = IDENTIFIER_CLASS_VALUE (class_id);
4129 EXPR_WFL_NODE (id) = class_id;
4131 /* Basic check: scope, redefinition, modifiers */
4132 if (check_class_interface_creation (0, flags, raw_name, class_id, decl, id))
4134 PUSH_ERROR ();
4135 return NULL_TREE;
4138 /* Suspend the current parsing context if we're parsing an inner
4139 class or an anonymous class. */
4140 if (CPC_INNER_P ())
4142 java_parser_context_suspend ();
4143 /* Interface members are public. */
4144 if (CLASS_INTERFACE (GET_CPC ()))
4145 flags |= ACC_PUBLIC;
4148 /* Push a new context for (static) initialized upon declaration fields */
4149 java_parser_context_push_initialized_field ();
4151 /* Class modifier check:
4152 - Allowed modifier (already done at that point)
4153 - abstract AND final forbidden
4154 - Public classes defined in the correct file */
4155 if ((flags & ACC_ABSTRACT) && (flags & ACC_FINAL))
4156 parse_error_context
4157 (id, "Class %qs can't be declared both abstract and final",
4158 IDENTIFIER_POINTER (raw_name));
4160 /* Create a new decl if DECL is NULL, otherwise fix it */
4161 decl = maybe_create_class_interface_decl (decl, raw_name, class_id, id);
4163 /* If SUPER exists, use it, otherwise use Object */
4164 if (super)
4166 /* java.lang.Object can't extend anything. */
4167 if (TREE_TYPE (IDENTIFIER_CLASS_VALUE (class_id)) == object_type_node)
4169 parse_error_context (id, "%<java.lang.Object%> can't extend anything");
4170 return NULL_TREE;
4173 super_decl_type =
4174 register_incomplete_type (JDEP_SUPER, super, decl, NULL_TREE);
4176 else if (TREE_TYPE (decl) != object_type_node)
4177 super_decl_type = object_type_node;
4178 /* We're defining java.lang.Object */
4179 else
4180 super_decl_type = NULL_TREE;
4182 /* A class nested in an interface is implicitly static. */
4183 if (INNER_CLASS_DECL_P (decl)
4184 && CLASS_INTERFACE (TYPE_NAME (TREE_TYPE (DECL_CONTEXT (decl)))))
4186 flags |= ACC_STATIC;
4189 /* Set super info and mark the class as complete. */
4190 set_super_info (flags, TREE_TYPE (decl), super_decl_type,
4191 ctxp->interface_number);
4192 ctxp->interface_number = 0;
4193 CLASS_COMPLETE_P (decl) = 1;
4194 add_superinterfaces (decl, interfaces);
4196 /* TYPE_VFIELD' is a compiler-generated field used to point to
4197 virtual function tables. In gcj, every class has a common base
4198 virtual function table in java.lang.object. */
4199 TYPE_VFIELD (TREE_TYPE (decl)) = TYPE_VFIELD (object_type_node);
4201 /* Add the private this$<n> field, Replicate final locals still in
4202 scope as private final fields mangled like val$<local_name>.
4203 This does not occur for top level (static) inner classes. */
4204 if (PURE_INNER_CLASS_DECL_P (decl))
4205 add_inner_class_fields (decl, current_function_decl);
4207 /* Eventually sets the @deprecated tag flag */
4208 CHECK_DEPRECATED (decl);
4210 /* Reset the anonymous class counter when declaring non inner classes */
4211 if (!INNER_CLASS_DECL_P (decl))
4212 anonymous_class_counter = 1;
4214 return decl;
4217 /* End a class declaration: register the statements used to create
4218 finit$ and <clinit>, pop the current class and resume the prior
4219 parser context if necessary. */
4221 static void
4222 end_class_declaration (int resume)
4224 /* If an error occurred, context weren't pushed and won't need to be
4225 popped by a resume. */
4226 int no_error_occurred = ctxp->next && GET_CPC () != error_mark_node;
4228 if (GET_CPC () != error_mark_node)
4229 dump_java_tree (TDI_class, GET_CPC ());
4231 java_parser_context_pop_initialized_field ();
4232 POP_CPC ();
4233 if (resume && no_error_occurred)
4234 java_parser_context_resume ();
4236 /* We're ending a class declaration, this is a good time to reset
4237 the interface cout. Note that might have been already done in
4238 create_interface, but if at that time an inner class was being
4239 dealt with, the interface count was reset in a context created
4240 for the sake of handling inner classes declaration. */
4241 ctxp->interface_number = 0;
4244 static void
4245 add_inner_class_fields (tree class_decl, tree fct_decl)
4247 tree block, marker, f;
4249 f = add_field (TREE_TYPE (class_decl),
4250 build_current_thisn (TREE_TYPE (class_decl)),
4251 build_pointer_type (TREE_TYPE (DECL_CONTEXT (class_decl))),
4252 ACC_PRIVATE);
4253 FIELD_THISN (f) = 1;
4255 if (!fct_decl)
4256 return;
4258 for (block = GET_CURRENT_BLOCK (fct_decl);
4259 block && TREE_CODE (block) == BLOCK; block = BLOCK_SUPERCONTEXT (block))
4261 tree decl;
4262 for (decl = BLOCK_EXPR_DECLS (block); decl; decl = TREE_CHAIN (decl))
4264 tree name, pname;
4265 tree wfl, init, list;
4267 /* Avoid non final arguments. */
4268 if (!LOCAL_FINAL_P (decl))
4269 continue;
4271 MANGLE_OUTER_LOCAL_VARIABLE_NAME (name, DECL_NAME (decl));
4272 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID (pname, DECL_NAME (decl));
4273 wfl = build_wfl_node (name);
4274 init = build_wfl_node (pname);
4275 /* Build an initialization for the field: it will be
4276 initialized by a parameter added to finit$, bearing a
4277 mangled name of the field itself (param$<n>.) The
4278 parameter is provided to finit$ by the constructor
4279 invoking it (hence the constructor will also feature a
4280 hidden parameter, set to the value of the outer context
4281 local at the time the inner class is created.)
4283 Note: we take into account all possible locals that can
4284 be accessed by the inner class. It's actually not trivial
4285 to minimize these aliases down to the ones really
4286 used. One way to do that would be to expand all regular
4287 methods first, then finit$ to get a picture of what's
4288 used. It works with the exception that we would have to
4289 go back on all constructor invoked in regular methods to
4290 have their invocation reworked (to include the right amount
4291 of alias initializer parameters.)
4293 The only real way around, I think, is a first pass to
4294 identify locals really used in the inner class. We leave
4295 the flag FIELD_LOCAL_ALIAS_USED around for that future
4296 use.
4298 On the other hand, it only affect local inner classes,
4299 whose constructors (and finit$ call) will be featuring
4300 unnecessary arguments. It's easy for a developer to keep
4301 this number of parameter down by using the `final'
4302 keyword only when necessary. For the time being, we can
4303 issue a warning on unnecessary finals. FIXME */
4304 init = build_assignment (ASSIGN_TK, EXPR_WFL_LINECOL (wfl),
4305 wfl, init);
4307 /* Register the field. The TREE_LIST holding the part
4308 initialized/initializer will be marked ARG_FINAL_P so
4309 that the created field can be marked
4310 FIELD_LOCAL_ALIAS. */
4311 list = build_tree_list (wfl, init);
4312 ARG_FINAL_P (list) = 1;
4313 register_fields (ACC_PRIVATE | ACC_FINAL, TREE_TYPE (decl), list);
4317 if (!CPC_INITIALIZER_STMT (ctxp))
4318 return;
4320 /* If we ever registered an alias field, insert and marker to
4321 remember where the list ends. The second part of the list (the one
4322 featuring initialized fields) so it can be later reversed to
4323 enforce 8.5. The marker will be removed during that operation. */
4324 marker = build_tree_list (NULL_TREE, NULL_TREE);
4325 TREE_CHAIN (marker) = CPC_INITIALIZER_STMT (ctxp);
4326 SET_CPC_INITIALIZER_STMT (ctxp, marker);
4329 /* Can't use lookup_field () since we don't want to load the class and
4330 can't set the CLASS_LOADED_P flag */
4332 static tree
4333 find_field (tree class, tree name)
4335 tree decl;
4336 for (decl = TYPE_FIELDS (class); decl; decl = TREE_CHAIN (decl))
4338 if (DECL_NAME (decl) == name)
4339 return decl;
4341 return NULL_TREE;
4344 /* Wrap around lookup_field that doesn't potentially upset the value
4345 of CLASS */
4347 static tree
4348 lookup_field_wrapper (tree class, tree name)
4350 tree type = class;
4351 tree decl = NULL_TREE;
4352 java_parser_context_save_global ();
4354 /* Last chance: if we're within the context of an inner class, we
4355 might be trying to access a local variable defined in an outer
4356 context. We try to look for it now. */
4357 if (INNER_CLASS_TYPE_P (class) && TREE_CODE (name) == IDENTIFIER_NODE)
4359 tree new_name;
4360 MANGLE_OUTER_LOCAL_VARIABLE_NAME (new_name, name);
4361 decl = lookup_field (&type, new_name);
4362 if (decl && decl != error_mark_node)
4363 FIELD_LOCAL_ALIAS_USED (decl) = 1;
4365 if (!decl || decl == error_mark_node)
4367 type = class;
4368 decl = lookup_field (&type, name);
4371 /* If the field still hasn't been found, try the next enclosing context. */
4372 if (!decl && INNER_CLASS_TYPE_P (class))
4374 tree outer_type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class)));
4375 decl = lookup_field_wrapper (outer_type, name);
4378 java_parser_context_restore_global ();
4379 return decl == error_mark_node ? NULL : decl;
4382 /* Find duplicate field within the same class declarations and report
4383 the error. Returns 1 if a duplicated field was found, 0
4384 otherwise. */
4386 static int
4387 duplicate_declaration_error_p (tree new_field_name, tree new_type, tree cl)
4389 /* This might be modified to work with method decl as well */
4390 tree decl = find_field (TREE_TYPE (GET_CPC ()), new_field_name);
4391 if (decl)
4393 char *t1 = xstrdup (purify_type_name
4394 ((TREE_CODE (new_type) == POINTER_TYPE
4395 && TREE_TYPE (new_type) == NULL_TREE) ?
4396 IDENTIFIER_POINTER (TYPE_NAME (new_type)) :
4397 lang_printable_name (new_type, 1)));
4398 /* The type may not have been completed by the time we report
4399 the error */
4400 char *t2 = xstrdup (purify_type_name
4401 ((TREE_CODE (TREE_TYPE (decl)) == POINTER_TYPE
4402 && TREE_TYPE (TREE_TYPE (decl)) == NULL_TREE) ?
4403 IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE (decl))) :
4404 lang_printable_name (TREE_TYPE (decl), 1)));
4405 parse_error_context
4406 (cl, "Duplicate variable declaration: %<%s %s%> was %<%s %s%> (%s:%d)",
4407 t1, IDENTIFIER_POINTER (new_field_name),
4408 t2, IDENTIFIER_POINTER (DECL_NAME (decl)),
4409 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
4410 free (t1);
4411 free (t2);
4412 return 1;
4414 return 0;
4417 /* Field registration routine. If TYPE doesn't exist, field
4418 declarations are linked to the undefined TYPE dependency list, to
4419 be later resolved in java_complete_class () */
4421 static void
4422 register_fields (int flags, tree type, tree variable_list)
4424 tree current, saved_type;
4425 tree class_type = NULL_TREE;
4426 location_t saved_location = input_location;
4427 int must_chain = 0;
4428 tree wfl = NULL_TREE;
4430 if (GET_CPC ())
4431 class_type = TREE_TYPE (GET_CPC ());
4433 if (!class_type || class_type == error_mark_node)
4434 return;
4436 /* If we're adding fields to interfaces, those fields are public,
4437 static, final */
4438 if (CLASS_INTERFACE (TYPE_NAME (class_type)))
4440 OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (PUBLIC_TK),
4441 flags, ACC_PUBLIC, "interface field(s)");
4442 OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (STATIC_TK),
4443 flags, ACC_STATIC, "interface field(s)");
4444 OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (FINAL_TK),
4445 flags, ACC_FINAL, "interface field(s)");
4446 check_modifiers ("Illegal interface member modifier %qs", flags,
4447 INTERFACE_FIELD_MODIFIERS);
4448 flags |= (ACC_PUBLIC | ACC_STATIC | ACC_FINAL);
4451 /* Obtain a suitable type for resolution, if necessary */
4452 SET_TYPE_FOR_RESOLUTION (type, wfl, must_chain);
4454 /* If TYPE is fully resolved and we don't have a reference, make one */
4455 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4457 for (current = variable_list, saved_type = type; current;
4458 current = TREE_CHAIN (current), type = saved_type)
4460 tree real_type;
4461 tree field_decl;
4462 tree cl = TREE_PURPOSE (current);
4463 tree init = TREE_VALUE (current);
4464 tree current_name = EXPR_WFL_NODE (cl);
4466 /* Can't declare non-final static fields in inner classes */
4467 if ((flags & ACC_STATIC) && !TOPLEVEL_CLASS_TYPE_P (class_type)
4468 && !(flags & ACC_FINAL))
4469 parse_error_context
4470 (cl, "Field %qs can't be static in inner class %qs unless it is final",
4471 IDENTIFIER_POINTER (EXPR_WFL_NODE (cl)),
4472 lang_printable_name (class_type, 0));
4474 /* Process NAME, as it may specify extra dimension(s) for it */
4475 type = build_array_from_name (type, wfl, current_name, &current_name);
4477 /* Type adjustment. We may have just readjusted TYPE because
4478 the variable specified more dimensions. Make sure we have
4479 a reference if we can and don't have one already. Also
4480 change the name if we have an init. */
4481 if (type != saved_type)
4483 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4484 if (init)
4485 EXPR_WFL_NODE (TREE_OPERAND (init, 0)) = current_name;
4488 real_type = GET_REAL_TYPE (type);
4489 /* Check for redeclarations */
4490 if (duplicate_declaration_error_p (current_name, real_type, cl))
4491 continue;
4493 /* Set input_line to the line the field was found and create a
4494 declaration for it. Eventually sets the @deprecated tag flag. */
4495 #ifdef USE_MAPPED_LOCATION
4496 input_location = EXPR_LOCATION (cl);
4497 #else
4498 input_line = EXPR_WFL_LINENO (cl);
4499 #endif
4500 field_decl = add_field (class_type, current_name, real_type, flags);
4501 CHECK_DEPRECATED_NO_RESET (field_decl);
4503 /* If the field denotes a final instance variable, then we
4504 allocate a LANG_DECL_SPECIFIC part to keep track of its
4505 initialization. We also mark whether the field was
4506 initialized upon its declaration. We don't do that if the
4507 created field is an alias to a final local. */
4508 if (!ARG_FINAL_P (current) && (flags & ACC_FINAL))
4510 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (field_decl);
4511 DECL_FIELD_FINAL_WFL (field_decl) = cl;
4514 /* If the couple initializer/initialized is marked ARG_FINAL_P,
4515 we mark the created field FIELD_LOCAL_ALIAS, so that we can
4516 hide parameters to this inner class finit$ and
4517 constructors. It also means that the field isn't final per
4518 say. */
4519 if (ARG_FINAL_P (current))
4521 FIELD_LOCAL_ALIAS (field_decl) = 1;
4522 FIELD_FINAL (field_decl) = 0;
4525 /* Check if we must chain. */
4526 if (must_chain)
4527 register_incomplete_type (JDEP_FIELD, wfl, field_decl, type);
4529 /* If we have an initialization value tied to the field */
4530 if (init)
4532 /* The field is declared static */
4533 if (flags & ACC_STATIC)
4535 /* We include the field and its initialization part into
4536 a list used to generate <clinit>. After <clinit> is
4537 walked, field initializations will be processed and
4538 fields initialized with known constants will be taken
4539 out of <clinit> and have their DECL_INITIAL set
4540 appropriately. */
4541 TREE_CHAIN (init) = CPC_STATIC_INITIALIZER_STMT (ctxp);
4542 SET_CPC_STATIC_INITIALIZER_STMT (ctxp, init);
4543 if (TREE_OPERAND (init, 1)
4544 && TREE_CODE (TREE_OPERAND (init, 1)) == NEW_ARRAY_INIT)
4545 TREE_STATIC (TREE_OPERAND (init, 1)) = 1;
4547 /* A non-static field declared with an immediate initialization is
4548 to be initialized in <init>, if any. This field is remembered
4549 to be processed at the time of the generation of <init>. */
4550 else
4552 TREE_CHAIN (init) = CPC_INITIALIZER_STMT (ctxp);
4553 SET_CPC_INITIALIZER_STMT (ctxp, init);
4555 MODIFY_EXPR_FROM_INITIALIZATION_P (init) = 1;
4556 DECL_INITIAL (field_decl) = TREE_OPERAND (init, 1);
4560 CLEAR_DEPRECATED;
4561 input_location = saved_location;
4564 /* Generate finit$, using the list of initialized fields to populate
4565 its body. finit$'s parameter(s) list is adjusted to include the
4566 one(s) used to initialized the field(s) caching outer context
4567 local(s). */
4569 static tree
4570 generate_finit (tree class_type)
4572 int count = 0;
4573 tree list = TYPE_FINIT_STMT_LIST (class_type);
4574 tree mdecl, current, parms;
4576 parms = build_alias_initializer_parameter_list (AIPL_FUNCTION_CREATION,
4577 class_type, NULL_TREE,
4578 &count);
4579 CRAFTED_PARAM_LIST_FIXUP (parms);
4580 mdecl = create_artificial_method (class_type, ACC_PRIVATE, void_type_node,
4581 finit_identifier_node, parms);
4582 fix_method_argument_names (parms, mdecl);
4583 layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
4584 mdecl, NULL_TREE);
4585 DECL_FUNCTION_NAP (mdecl) = count;
4586 start_artificial_method_body (mdecl);
4588 for (current = list; current; current = TREE_CHAIN (current))
4589 java_method_add_stmt (mdecl,
4590 build_debugable_stmt (EXPR_WFL_LINECOL (current),
4591 current));
4592 end_artificial_method_body (mdecl);
4593 return mdecl;
4596 /* Generate a function to run the instance initialization code. The
4597 private method is called `instinit$'. Unless we're dealing with an
4598 anonymous class, we determine whether all ctors of CLASS_TYPE
4599 declare a checked exception in their `throws' clause in order to
4600 see whether it's necessary to encapsulate the instance initializer
4601 statements in a try/catch/rethrow sequence. */
4603 static tree
4604 generate_instinit (tree class_type)
4606 tree current;
4607 tree compound = NULL_TREE;
4608 tree parms = tree_cons (this_identifier_node,
4609 build_pointer_type (class_type), end_params_node);
4610 tree mdecl = create_artificial_method (class_type, ACC_PRIVATE,
4611 void_type_node,
4612 instinit_identifier_node, parms);
4614 layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
4615 mdecl, NULL_TREE);
4617 /* Gather all the statements in a compound */
4618 for (current = TYPE_II_STMT_LIST (class_type);
4619 current; current = TREE_CHAIN (current))
4620 compound = add_stmt_to_compound (compound, NULL_TREE, current);
4622 /* We need to encapsulate COMPOUND by a try/catch statement to
4623 rethrow exceptions that might occur in the instance initializer.
4624 We do that only if all ctors of CLASS_TYPE are set to catch a
4625 checked exception. This doesn't apply to anonymous classes (since
4626 they don't have declared ctors.) */
4627 if (!ANONYMOUS_CLASS_P (class_type) &&
4628 ctors_unchecked_throws_clause_p (class_type))
4630 compound = encapsulate_with_try_catch (0, exception_type_node, compound,
4631 build1 (THROW_EXPR, NULL_TREE,
4632 build_wfl_node (wpv_id)));
4633 DECL_FUNCTION_THROWS (mdecl) = build_tree_list (NULL_TREE,
4634 exception_type_node);
4637 start_artificial_method_body (mdecl);
4638 java_method_add_stmt (mdecl, compound);
4639 end_artificial_method_body (mdecl);
4641 return mdecl;
4644 /* FIXME */
4645 static tree
4646 build_instinit_invocation (tree class_type)
4648 tree to_return = NULL_TREE;
4650 if (TYPE_II_STMT_LIST (class_type))
4652 tree parm = build_tree_list (NULL_TREE,
4653 build_wfl_node (this_identifier_node));
4654 to_return =
4655 build_method_invocation (build_wfl_node (instinit_identifier_node),
4656 parm);
4658 return to_return;
4661 /* Shared across method_declarator and method_header to remember the
4662 patch stage that was reached during the declaration of the method.
4663 A method DECL is built differently is there is no patch
4664 (JDEP_NO_PATCH) or a patch (JDEP_METHOD or JDEP_METHOD_RETURN)
4665 pending on the currently defined method. */
4667 static int patch_stage;
4669 /* Check the method declaration and add the method to its current
4670 class. If the argument list is known to contain incomplete types,
4671 the method is partially added and the registration will be resume
4672 once the method arguments resolved. If TYPE is NULL, we're dealing
4673 with a constructor. */
4675 static tree
4676 method_header (int flags, tree type, tree mdecl, tree throws)
4678 tree type_wfl = NULL_TREE;
4679 tree meth_name = NULL_TREE;
4680 tree current, orig_arg, this_class = NULL;
4681 tree id, meth;
4682 location_t saved_location;
4683 int constructor_ok = 0, must_chain;
4684 int count;
4686 if (mdecl == error_mark_node)
4687 return error_mark_node;
4688 meth = TREE_VALUE (mdecl);
4689 id = TREE_PURPOSE (mdecl);
4691 check_modifiers_consistency (flags);
4693 if (GET_CPC ())
4694 this_class = TREE_TYPE (GET_CPC ());
4696 if (!this_class || this_class == error_mark_node)
4697 return NULL_TREE;
4699 /* There are some forbidden modifiers for an abstract method and its
4700 class must be abstract as well. */
4701 if (type && (flags & ACC_ABSTRACT))
4703 ABSTRACT_CHECK (flags, ACC_PRIVATE, id, "Private");
4704 ABSTRACT_CHECK (flags, ACC_STATIC, id, "Static");
4705 ABSTRACT_CHECK (flags, ACC_FINAL, id, "Final");
4706 ABSTRACT_CHECK (flags, ACC_NATIVE, id, "Native");
4707 ABSTRACT_CHECK (flags, ACC_SYNCHRONIZED, id, "Synchronized");
4708 ABSTRACT_CHECK (flags, ACC_STRICT, id, "Strictfp");
4709 if (!CLASS_ABSTRACT (TYPE_NAME (this_class))
4710 && !CLASS_INTERFACE (TYPE_NAME (this_class)))
4711 parse_error_context
4712 (id,
4713 "Class %qs must be declared abstract to define abstract method %qs",
4714 IDENTIFIER_POINTER (DECL_NAME (GET_CPC ())),
4715 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4718 /* A native method can't be strictfp. */
4719 if ((flags & ACC_NATIVE) && (flags & ACC_STRICT))
4720 parse_error_context (id, "native method %qs can't be strictfp",
4721 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4722 /* No such thing as a transient or volatile method. */
4723 if ((flags & ACC_TRANSIENT))
4724 parse_error_context (id, "method %qs can't be transient",
4725 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4726 if ((flags & ACC_VOLATILE))
4727 parse_error_context (id, "method %qs can't be volatile",
4728 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4730 /* Things to be checked when declaring a constructor */
4731 if (!type)
4733 int ec = java_error_count;
4734 /* 8.6: Constructor declarations: we might be trying to define a
4735 method without specifying a return type. */
4736 if (EXPR_WFL_NODE (id) != GET_CPC_UN ())
4737 parse_error_context
4738 (id, "Invalid method declaration, return type required");
4739 /* 8.6.3: Constructor modifiers */
4740 else
4742 JCONSTRUCTOR_CHECK (flags, ACC_ABSTRACT, id, "abstract");
4743 JCONSTRUCTOR_CHECK (flags, ACC_STATIC, id, "static");
4744 JCONSTRUCTOR_CHECK (flags, ACC_FINAL, id, "final");
4745 JCONSTRUCTOR_CHECK (flags, ACC_NATIVE, id, "native");
4746 JCONSTRUCTOR_CHECK (flags, ACC_SYNCHRONIZED, id, "synchronized");
4747 JCONSTRUCTOR_CHECK (flags, ACC_STRICT, id, "strictfp");
4749 /* If we found error here, we don't consider it's OK to tread
4750 the method definition as a constructor, for the rest of this
4751 function */
4752 if (ec == java_error_count)
4753 constructor_ok = 1;
4756 /* Method declared within the scope of an interface are implicitly
4757 abstract and public. Conflicts with other erroneously provided
4758 modifiers are checked right after. */
4760 if (CLASS_INTERFACE (TYPE_NAME (this_class)))
4762 /* If FLAGS isn't set because of a modifier, turn the
4763 corresponding modifier WFL to NULL so we issue a warning on
4764 the obsolete use of the modifier */
4765 if (!(flags & ACC_PUBLIC))
4766 MODIFIER_WFL (PUBLIC_TK) = NULL;
4767 if (!(flags & ACC_ABSTRACT))
4768 MODIFIER_WFL (ABSTRACT_TK) = NULL;
4769 flags |= ACC_PUBLIC;
4770 flags |= ACC_ABSTRACT;
4773 /* Inner class can't declare static methods */
4774 if ((flags & ACC_STATIC) && !TOPLEVEL_CLASS_TYPE_P (this_class))
4776 parse_error_context
4777 (id, "Method %qs can't be static in inner class %qs. Only members of interfaces and top-level classes can be static",
4778 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)),
4779 lang_printable_name (this_class, 0));
4782 /* Modifiers context reset moved up, so abstract method declaration
4783 modifiers can be later checked. */
4785 /* Set constructor returned type to void and method name to <init>,
4786 unless we found an error identifier the constructor (in which
4787 case we retain the original name) */
4788 if (!type)
4790 type = void_type_node;
4791 if (constructor_ok)
4792 meth_name = init_identifier_node;
4794 else
4795 meth_name = EXPR_WFL_NODE (id);
4797 /* Do the returned type resolution and registration if necessary */
4798 SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
4800 if (meth_name)
4801 type = build_array_from_name (type, type_wfl, meth_name, &meth_name);
4802 EXPR_WFL_NODE (id) = meth_name;
4803 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4805 if (must_chain)
4807 patch_stage = JDEP_METHOD_RETURN;
4808 register_incomplete_type (patch_stage, type_wfl, id, type);
4809 TREE_TYPE (meth) = GET_REAL_TYPE (type);
4811 else
4812 TREE_TYPE (meth) = type;
4814 saved_location = input_location;
4815 /* When defining an abstract or interface method, the curly
4816 bracket at level 1 doesn't exist because there is no function
4817 body */
4818 #ifdef USE_MAPPED_LOCATION
4819 input_location = (ctxp->first_ccb_indent1 ? ctxp->first_ccb_indent1 :
4820 EXPR_LOCATION (id));
4821 #else
4822 input_line = (ctxp->first_ccb_indent1 ? (int) ctxp->first_ccb_indent1 :
4823 EXPR_WFL_LINENO (id));
4824 #endif
4826 /* Remember the original argument list */
4827 orig_arg = TYPE_ARG_TYPES (meth);
4829 if (patch_stage) /* includes ret type and/or all args */
4831 jdep *jdep;
4832 meth = add_method_1 (this_class, flags, meth_name, meth);
4833 /* Patch for the return type */
4834 if (patch_stage == JDEP_METHOD_RETURN)
4836 jdep = CLASSD_LAST (ctxp->classd_list);
4837 JDEP_GET_PATCH (jdep) = &TREE_TYPE (TREE_TYPE (meth));
4839 /* This is the stop JDEP. METH allows the function's signature
4840 to be computed. */
4841 register_incomplete_type (JDEP_METHOD_END, NULL_TREE, meth, NULL_TREE);
4843 else
4844 meth = add_method (this_class, flags, meth_name,
4845 build_java_signature (meth));
4847 /* Remember final parameters */
4848 MARK_FINAL_PARMS (meth, orig_arg);
4850 /* Fix the method argument list so we have the argument name
4851 information */
4852 fix_method_argument_names (orig_arg, meth);
4854 /* Register the parameter number and re-install the current line
4855 number */
4856 DECL_MAX_LOCALS (meth) = ctxp->formal_parameter_number+1;
4857 input_location = saved_location;
4859 /* Register exception specified by the `throws' keyword for
4860 resolution and set the method decl appropriate field to the list.
4861 Note: the grammar ensures that what we get here are class
4862 types. */
4863 if (throws)
4865 throws = nreverse (throws);
4866 for (current = throws; current; current = TREE_CHAIN (current))
4868 register_incomplete_type (JDEP_EXCEPTION, TREE_VALUE (current),
4869 NULL_TREE, NULL_TREE);
4870 JDEP_GET_PATCH (CLASSD_LAST (ctxp->classd_list)) =
4871 &TREE_VALUE (current);
4873 DECL_FUNCTION_THROWS (meth) = throws;
4876 if (TREE_TYPE (GET_CPC ()) != object_type_node)
4877 DECL_FUNCTION_WFL (meth) = id;
4879 /* Set the flag if we correctly processed a constructor */
4880 if (constructor_ok)
4882 DECL_CONSTRUCTOR_P (meth) = 1;
4883 /* Compute and store the number of artificial parameters declared
4884 for this constructor */
4885 for (count = 0, current = TYPE_FIELDS (this_class); current;
4886 current = TREE_CHAIN (current))
4887 if (FIELD_LOCAL_ALIAS (current))
4888 count++;
4889 DECL_FUNCTION_NAP (meth) = count;
4892 /* Eventually set the @deprecated tag flag */
4893 CHECK_DEPRECATED (meth);
4895 return meth;
4898 static void
4899 fix_method_argument_names (tree orig_arg, tree meth)
4901 tree arg = TYPE_ARG_TYPES (TREE_TYPE (meth));
4902 if (TREE_CODE (TREE_TYPE (meth)) == METHOD_TYPE)
4904 TREE_PURPOSE (arg) = this_identifier_node;
4905 arg = TREE_CHAIN (arg);
4907 while (orig_arg != end_params_node)
4909 TREE_PURPOSE (arg) = TREE_PURPOSE (orig_arg);
4910 orig_arg = TREE_CHAIN (orig_arg);
4911 arg = TREE_CHAIN (arg);
4915 /* Complete the method declaration with METHOD_BODY. */
4917 static void
4918 finish_method_declaration (tree method_body)
4920 int flags;
4922 if (!current_function_decl)
4923 return;
4925 flags = get_access_flags_from_decl (current_function_decl);
4927 /* 8.4.5 Method Body */
4928 if ((flags & ACC_ABSTRACT || flags & ACC_NATIVE) && method_body)
4930 tree name = DECL_NAME (current_function_decl);
4931 parse_error_context (DECL_FUNCTION_WFL (current_function_decl),
4932 "%s method %qs can't have a body defined",
4933 (METHOD_NATIVE (current_function_decl) ?
4934 "Native" : "Abstract"),
4935 IDENTIFIER_POINTER (name));
4936 method_body = NULL_TREE;
4938 else if (!(flags & ACC_ABSTRACT) && !(flags & ACC_NATIVE) && !method_body)
4940 tree name = DECL_NAME (current_function_decl);
4941 parse_error_context
4942 (DECL_FUNCTION_WFL (current_function_decl),
4943 "Non native and non abstract method %qs must have a body defined",
4944 IDENTIFIER_POINTER (name));
4945 method_body = NULL_TREE;
4948 if (flag_emit_class_files && method_body
4949 && TREE_CODE (method_body) == NOP_EXPR
4950 && TREE_TYPE (current_function_decl)
4951 && TREE_TYPE (TREE_TYPE (current_function_decl)) == void_type_node)
4952 method_body = build1 (RETURN_EXPR, void_type_node, NULL);
4954 BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (current_function_decl)) = method_body;
4955 maybe_absorb_scoping_blocks ();
4956 /* Exit function's body */
4957 exit_block ();
4958 /* Merge last line of the function with first line, directly in the
4959 function decl. It will be used to emit correct debug info. */
4960 DECL_FUNCTION_LAST_LINE (current_function_decl) = ctxp->last_ccb_indent1;
4962 /* Since function's argument's list are shared, reset the
4963 ARG_FINAL_P parameter that might have been set on some of this
4964 function parameters. */
4965 UNMARK_FINAL_PARMS (current_function_decl);
4967 /* So we don't have an irrelevant function declaration context for
4968 the next static block we'll see. */
4969 current_function_decl = NULL_TREE;
4972 /* Build a an error message for constructor circularity errors. */
4974 static char *
4975 constructor_circularity_msg (tree from, tree to)
4977 static char string [4096];
4978 char *t = xstrdup (lang_printable_name (from, 2));
4979 sprintf (string, "'%s' invokes '%s'", t, lang_printable_name (to, 2));
4980 free (t);
4981 return string;
4984 /* Verify a circular call to METH. Return 1 if an error is found, 0
4985 otherwise. */
4987 static GTY(()) tree vcc_list;
4988 static int
4989 verify_constructor_circularity (tree meth, tree current)
4991 tree c;
4993 for (c = DECL_CONSTRUCTOR_CALLS (current); c; c = TREE_CHAIN (c))
4995 if (TREE_VALUE (c) == meth)
4997 char *t;
4998 if (vcc_list)
5000 tree liste;
5001 vcc_list = nreverse (vcc_list);
5002 for (liste = vcc_list; liste; liste = TREE_CHAIN (liste))
5004 parse_error_context
5005 (TREE_PURPOSE (TREE_PURPOSE (liste)), "%s",
5006 constructor_circularity_msg
5007 (TREE_VALUE (liste), TREE_VALUE (TREE_PURPOSE (liste))));
5008 java_error_count--;
5011 t = xstrdup (lang_printable_name (meth, 2));
5012 parse_error_context (TREE_PURPOSE (c),
5013 "%s: recursive invocation of constructor %qs",
5014 constructor_circularity_msg (current, meth), t);
5015 free (t);
5016 vcc_list = NULL_TREE;
5017 return 1;
5020 for (c = DECL_CONSTRUCTOR_CALLS (current); c; c = TREE_CHAIN (c))
5022 vcc_list = tree_cons (c, current, vcc_list);
5023 if (verify_constructor_circularity (meth, TREE_VALUE (c)))
5024 return 1;
5025 vcc_list = TREE_CHAIN (vcc_list);
5027 return 0;
5030 /* Check modifiers that can be declared but exclusively */
5032 static void
5033 check_modifiers_consistency (int flags)
5035 int acc_count = 0;
5036 tree cl = NULL_TREE;
5038 THIS_MODIFIER_ONLY (flags, ACC_PUBLIC, PUBLIC_TK, acc_count, cl);
5039 THIS_MODIFIER_ONLY (flags, ACC_PRIVATE, PRIVATE_TK, acc_count, cl);
5040 THIS_MODIFIER_ONLY (flags, ACC_PROTECTED, PROTECTED_TK, acc_count, cl);
5041 if (acc_count > 1)
5042 parse_error_context
5043 (cl, "Inconsistent member declaration. At most one of %<public%>, %<private%>, or %<protected%> may be specified");
5045 acc_count = 0;
5046 cl = NULL_TREE;
5047 THIS_MODIFIER_ONLY (flags, ACC_FINAL, FINAL_TK, acc_count, cl);
5048 THIS_MODIFIER_ONLY (flags, ACC_VOLATILE, VOLATILE_TK, acc_count, cl);
5049 if (acc_count > 1)
5050 parse_error_context (cl,
5051 "Inconsistent member declaration. At most one of %<final%> or %<volatile%> may be specified");
5054 /* Check the methode header METH for abstract specifics features */
5056 static void
5057 check_abstract_method_header (tree meth)
5059 int flags = get_access_flags_from_decl (meth);
5061 OBSOLETE_MODIFIER_WARNING2 (MODIFIER_WFL (ABSTRACT_TK), flags,
5062 ACC_ABSTRACT, "abstract method",
5063 IDENTIFIER_POINTER (DECL_NAME (meth)));
5064 OBSOLETE_MODIFIER_WARNING2 (MODIFIER_WFL (PUBLIC_TK), flags,
5065 ACC_PUBLIC, "abstract method",
5066 IDENTIFIER_POINTER (DECL_NAME (meth)));
5068 check_modifiers ("Illegal modifier %qs for interface method",
5069 flags, INTERFACE_METHOD_MODIFIERS);
5072 /* Create a FUNCTION_TYPE node and start augmenting it with the
5073 declared function arguments. Arguments type that can't be resolved
5074 are left as they are, but the returned node is marked as containing
5075 incomplete types. */
5077 static tree
5078 method_declarator (tree id, tree list)
5080 tree arg_types = NULL_TREE, current, node;
5081 tree meth = make_node (FUNCTION_TYPE);
5082 jdep *jdep;
5084 patch_stage = JDEP_NO_PATCH;
5086 if (GET_CPC () == error_mark_node)
5087 return error_mark_node;
5089 /* If we're dealing with an inner class constructor, we hide the
5090 this$<n> decl in the name field of its parameter declaration. We
5091 also might have to hide the outer context local alias
5092 initializers. Not done when the class is a toplevel class. */
5093 if (PURE_INNER_CLASS_DECL_P (GET_CPC ())
5094 && EXPR_WFL_NODE (id) == GET_CPC_UN ())
5096 tree aliases_list, type, thisn;
5097 /* First the aliases, linked to the regular parameters */
5098 aliases_list =
5099 build_alias_initializer_parameter_list (AIPL_FUNCTION_DECLARATION,
5100 TREE_TYPE (GET_CPC ()),
5101 NULL_TREE, NULL);
5102 list = chainon (nreverse (aliases_list), list);
5104 /* Then this$<n> */
5105 type = TREE_TYPE (DECL_CONTEXT (GET_CPC ()));
5106 thisn = build_current_thisn (TREE_TYPE (GET_CPC ()));
5107 list = tree_cons (build_wfl_node (thisn), build_pointer_type (type),
5108 list);
5111 for (current = list; current; current = TREE_CHAIN (current))
5113 int must_chain = 0;
5114 tree wfl_name = TREE_PURPOSE (current);
5115 tree type = TREE_VALUE (current);
5116 tree name = EXPR_WFL_NODE (wfl_name);
5117 tree already, arg_node;
5118 tree type_wfl = NULL_TREE;
5119 tree real_type;
5121 /* Obtain a suitable type for resolution, if necessary */
5122 SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
5124 /* Process NAME, as it may specify extra dimension(s) for it */
5125 type = build_array_from_name (type, type_wfl, name, &name);
5126 EXPR_WFL_NODE (wfl_name) = name;
5128 real_type = GET_REAL_TYPE (type);
5129 if (TREE_CODE (real_type) == RECORD_TYPE)
5131 real_type = promote_type (real_type);
5132 if (TREE_CODE (type) == TREE_LIST)
5133 TREE_PURPOSE (type) = real_type;
5136 /* Check redefinition */
5137 for (already = arg_types; already; already = TREE_CHAIN (already))
5138 if (TREE_PURPOSE (already) == name)
5140 parse_error_context
5141 (wfl_name, "Variable %qs is used more than once in the argument list of method %qs",
5142 IDENTIFIER_POINTER (name),
5143 IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
5144 break;
5147 /* If we've an incomplete argument type, we know there is a location
5148 to patch when the type get resolved, later. */
5149 jdep = NULL;
5150 if (must_chain)
5152 patch_stage = JDEP_METHOD;
5153 type = register_incomplete_type (patch_stage,
5154 type_wfl, wfl_name, type);
5155 jdep = CLASSD_LAST (ctxp->classd_list);
5156 JDEP_MISC (jdep) = id;
5159 /* The argument node: a name and a (possibly) incomplete type. */
5160 arg_node = build_tree_list (name, real_type);
5161 /* Remember arguments declared final. */
5162 ARG_FINAL_P (arg_node) = ARG_FINAL_P (current);
5164 if (jdep)
5165 JDEP_GET_PATCH (jdep) = &TREE_VALUE (arg_node);
5166 TREE_CHAIN (arg_node) = arg_types;
5167 arg_types = arg_node;
5169 TYPE_ARG_TYPES (meth) = chainon (nreverse (arg_types), end_params_node);
5170 node = build_tree_list (id, meth);
5171 return node;
5174 static int
5175 unresolved_type_p (tree wfl, tree *returned)
5177 if (TREE_CODE (wfl) == EXPR_WITH_FILE_LOCATION)
5179 if (returned)
5181 tree decl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (wfl));
5182 if (decl && current_class && (decl == TYPE_NAME (current_class)))
5183 *returned = TREE_TYPE (decl);
5184 else if (GET_CPC_UN () == EXPR_WFL_NODE (wfl))
5185 *returned = TREE_TYPE (GET_CPC ());
5186 else
5187 *returned = NULL_TREE;
5189 return 1;
5191 if (returned)
5192 *returned = wfl;
5193 return 0;
5196 /* From NAME, build a qualified identifier node using the
5197 qualification from the current package definition. */
5199 static tree
5200 parser_qualified_classname (tree name)
5202 tree nested_class_name;
5204 if ((nested_class_name = maybe_make_nested_class_name (name)))
5205 return nested_class_name;
5207 if (ctxp->package)
5208 return merge_qualified_name (ctxp->package, name);
5209 else
5210 return name;
5213 /* Called once the type a interface extends is resolved. Returns 0 if
5214 everything is OK. */
5216 static int
5217 parser_check_super_interface (tree super_decl, tree this_decl, tree this_wfl)
5219 tree super_type = TREE_TYPE (super_decl);
5221 /* Has to be an interface */
5222 if (!CLASS_INTERFACE (super_decl))
5224 parse_error_context
5225 (this_wfl, "%s %qs can't implement/extend %s %qs",
5226 (CLASS_INTERFACE (TYPE_NAME (TREE_TYPE (this_decl))) ?
5227 "Interface" : "Class"),
5228 IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5229 (TYPE_ARRAY_P (super_type) ? "array" : "class"),
5230 IDENTIFIER_POINTER (DECL_NAME (super_decl)));
5231 return 1;
5234 /* Check top-level interface access. Inner classes are subject to member
5235 access rules (6.6.1). */
5236 if (! INNER_CLASS_P (super_type)
5237 && check_pkg_class_access (DECL_NAME (super_decl),
5238 NULL_TREE, true, this_decl))
5239 return 1;
5241 SOURCE_FRONTEND_DEBUG (("Completing interface %s with %s",
5242 IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5243 IDENTIFIER_POINTER (DECL_NAME (super_decl))));
5244 return 0;
5247 /* Makes sure that SUPER_DECL is suitable to extend THIS_DECL. Returns
5248 0 if everything is OK. */
5250 static int
5251 parser_check_super (tree super_decl, tree this_decl, tree wfl)
5253 tree super_type = TREE_TYPE (super_decl);
5255 /* SUPER should be a CLASS (neither an array nor an interface) */
5256 if (TYPE_ARRAY_P (super_type) || CLASS_INTERFACE (TYPE_NAME (super_type)))
5258 parse_error_context
5259 (wfl, "Class %qs can't subclass %s %qs",
5260 IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5261 (CLASS_INTERFACE (TYPE_NAME (super_type)) ? "interface" : "array"),
5262 IDENTIFIER_POINTER (DECL_NAME (super_decl)));
5263 return 1;
5266 if (CLASS_FINAL (TYPE_NAME (super_type)))
5268 parse_error_context (wfl, "Can't subclass final classes: %s",
5269 IDENTIFIER_POINTER (DECL_NAME (super_decl)));
5270 return 1;
5273 /* Check top-level class scope. Inner classes are subject to member access
5274 rules (6.6.1). */
5275 if (! INNER_CLASS_P (super_type)
5276 && (check_pkg_class_access (DECL_NAME (super_decl), wfl, true, NULL_TREE)))
5277 return 1;
5279 SOURCE_FRONTEND_DEBUG (("Completing class %s with %s",
5280 IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5281 IDENTIFIER_POINTER (DECL_NAME (super_decl))));
5282 return 0;
5285 /* Create a new dependency list and link it (in a LIFO manner) to the
5286 CTXP list of type dependency list. */
5288 static void
5289 create_jdep_list (struct parser_ctxt *ctxp)
5291 jdeplist *new = xmalloc (sizeof (jdeplist));
5292 new->first = new->last = NULL;
5293 new->next = ctxp->classd_list;
5294 ctxp->classd_list = new;
5297 static jdeplist *
5298 reverse_jdep_list (struct parser_ctxt *ctxp)
5300 jdeplist *prev = NULL, *current, *next;
5301 for (current = ctxp->classd_list; current; current = next)
5303 next = current->next;
5304 current->next = prev;
5305 prev = current;
5307 return prev;
5310 /* Create a fake pointer based on the ID stored in
5311 TYPE_NAME. TYPE_NAME can be a WFL or a incomplete type asking to be
5312 registered again. */
5314 static tree
5315 obtain_incomplete_type (tree type_name)
5317 tree ptr = NULL_TREE, name;
5319 if (TREE_CODE (type_name) == EXPR_WITH_FILE_LOCATION)
5320 name = EXPR_WFL_NODE (type_name);
5321 else if (INCOMPLETE_TYPE_P (type_name))
5322 name = TYPE_NAME (type_name);
5323 else
5324 abort ();
5326 /* Workaround from build_pointer_type for incomplete types. */
5327 BUILD_PTR_FROM_NAME (ptr, name);
5328 TYPE_MODE (ptr) = ptr_mode;
5329 layout_type (ptr);
5331 return ptr;
5334 /* Register a incomplete type whose name is WFL. Reuse PTR if PTR is
5335 non NULL instead of computing a new fake type based on WFL. The new
5336 dependency is inserted in the current type dependency list, in FIFO
5337 manner. */
5339 static tree
5340 register_incomplete_type (int kind, tree wfl, tree decl, tree ptr)
5342 jdep *new = xmalloc (sizeof (jdep));
5344 if (!ptr && kind != JDEP_METHOD_END) /* JDEP_METHOD_END is a mere marker */
5345 ptr = obtain_incomplete_type (wfl);
5347 JDEP_KIND (new) = kind;
5348 JDEP_DECL (new) = decl;
5349 JDEP_TO_RESOLVE (new) = ptr;
5350 JDEP_WFL (new) = wfl;
5351 JDEP_CHAIN (new) = NULL;
5352 JDEP_MISC (new) = NULL_TREE;
5353 /* For some dependencies, set the enclosing class of the current
5354 class to be the enclosing context */
5355 if ((kind == JDEP_INTERFACE || kind == JDEP_ANONYMOUS || kind == JDEP_SUPER)
5356 && GET_ENCLOSING_CPC ())
5357 JDEP_ENCLOSING (new) = TREE_VALUE (GET_ENCLOSING_CPC ());
5358 else
5359 JDEP_ENCLOSING (new) = GET_CPC ();
5360 JDEP_GET_PATCH (new) = (tree *)NULL;
5362 JDEP_INSERT (ctxp->classd_list, new);
5364 return ptr;
5367 /* This checks for circular references with innerclasses. We start
5368 from SOURCE and should never reach TARGET. Extended/implemented
5369 types in SOURCE have their enclosing context checked not to reach
5370 TARGET. When the last enclosing context of SOURCE is reached, its
5371 extended/implemented types are also checked not to reach TARGET.
5372 In case of error, WFL of the offending type is returned; NULL_TREE
5373 otherwise. */
5375 static tree
5376 check_inner_circular_reference (tree source, tree target)
5378 tree base_binfo;
5379 tree ctx, cl;
5380 int i;
5382 for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (source), i, base_binfo); i++)
5384 tree su;
5386 /* We can end up with a NULL_TREE or an incomplete type here if
5387 we encountered previous type resolution errors. It's safe to
5388 simply ignore these cases. */
5389 su = BINFO_TYPE (base_binfo);
5390 if (INCOMPLETE_TYPE_P (su))
5391 continue;
5393 if (inherits_from_p (su, target))
5394 return lookup_cl (TYPE_NAME (su));
5396 for (ctx = DECL_CONTEXT (TYPE_NAME (su)); ctx; ctx = DECL_CONTEXT (ctx))
5398 /* An enclosing context shouldn't be TARGET */
5399 if (ctx == TYPE_NAME (target))
5400 return lookup_cl (TYPE_NAME (su));
5402 /* When we reach the enclosing last context, start a check
5403 on it, with the same target */
5404 if (! DECL_CONTEXT (ctx) &&
5405 (cl = check_inner_circular_reference (TREE_TYPE (ctx), target)))
5406 return cl;
5409 return NULL_TREE;
5412 /* Explore TYPE's `extends' clause member(s) and return the WFL of the
5413 offending type if a circularity is detected. NULL_TREE is returned
5414 otherwise. TYPE can be an interface or a class. */
5416 static tree
5417 check_circular_reference (tree type)
5419 tree base_binfo;
5420 int i;
5422 if (!BINFO_N_BASE_BINFOS (TYPE_BINFO (type)))
5423 return NULL_TREE;
5425 if (! CLASS_INTERFACE (TYPE_NAME (type)))
5427 if (inherits_from_p (CLASSTYPE_SUPER (type), type))
5428 return lookup_cl (TYPE_NAME (type));
5429 return NULL_TREE;
5432 for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (type), i, base_binfo); i++)
5434 if (BINFO_TYPE (base_binfo) != object_type_node
5435 && interface_of_p (type, BINFO_TYPE (base_binfo)))
5436 return lookup_cl (TYPE_NAME (BINFO_TYPE (base_binfo)));
5438 return NULL_TREE;
5441 void
5442 java_check_circular_reference (void)
5444 tree current;
5445 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
5447 tree type = TREE_TYPE (current);
5448 tree cl;
5450 cl = check_circular_reference (type);
5451 if (! cl)
5452 cl = check_inner_circular_reference (type, type);
5453 if (cl)
5454 parse_error_context (cl, "Cyclic class inheritance%s",
5455 (cyclic_inheritance_report ?
5456 cyclic_inheritance_report : ""));
5460 /* Augment the parameter list PARM with parameters crafted to
5461 initialize outer context locals aliases. Through ARTIFICIAL, a
5462 count is kept of the number of crafted parameters. MODE governs
5463 what eventually gets created: something suitable for a function
5464 creation or a function invocation, either the constructor or
5465 finit$. */
5467 static tree
5468 build_alias_initializer_parameter_list (int mode, tree class_type, tree parm,
5469 int *artificial)
5471 tree field;
5472 tree additional_parms = NULL_TREE;
5474 for (field = TYPE_FIELDS (class_type); field; field = TREE_CHAIN (field))
5475 if (FIELD_LOCAL_ALIAS (field))
5477 const char *buffer = IDENTIFIER_POINTER (DECL_NAME (field));
5478 tree purpose = NULL_TREE, value = NULL_TREE, name = NULL_TREE;
5479 tree mangled_id;
5481 switch (mode)
5483 case AIPL_FUNCTION_DECLARATION:
5484 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (mangled_id,
5485 &buffer [4]);
5486 purpose = build_wfl_node (mangled_id);
5487 if (TREE_CODE (TREE_TYPE (field)) == POINTER_TYPE)
5488 value = build_wfl_node (TYPE_NAME (TREE_TYPE (field)));
5489 else
5490 value = TREE_TYPE (field);
5491 break;
5493 case AIPL_FUNCTION_CREATION:
5494 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (purpose,
5495 &buffer [4]);
5496 value = TREE_TYPE (field);
5497 break;
5499 case AIPL_FUNCTION_FINIT_INVOCATION:
5500 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (mangled_id,
5501 &buffer [4]);
5502 /* Now, this is wrong. purpose should always be the NAME
5503 of something and value its matching value (decl, type,
5504 etc...) FIXME -- but there is a lot to fix. */
5506 /* When invoked for this kind of operation, we already
5507 know whether a field is used or not. */
5508 purpose = TREE_TYPE (field);
5509 value = build_wfl_node (mangled_id);
5510 break;
5512 case AIPL_FUNCTION_CTOR_INVOCATION:
5513 /* There are two case: the constructor invocation happens
5514 outside the local inner, in which case, locales from the outer
5515 context are directly used.
5517 Otherwise, we fold to using the alias directly. */
5518 if (class_type == current_class)
5519 value = field;
5520 else
5522 name = get_identifier (&buffer[4]);
5523 value = IDENTIFIER_LOCAL_VALUE (name);
5525 break;
5527 additional_parms = tree_cons (purpose, value, additional_parms);
5528 if (artificial)
5529 *artificial +=1;
5531 if (additional_parms)
5533 if (ANONYMOUS_CLASS_P (class_type)
5534 && mode == AIPL_FUNCTION_CTOR_INVOCATION)
5535 additional_parms = nreverse (additional_parms);
5536 parm = chainon (additional_parms, parm);
5539 return parm;
5542 /* Craft a constructor for CLASS_DECL -- what we should do when none
5543 where found. ARGS is non NULL when a special signature must be
5544 enforced. This is the case for anonymous classes. */
5546 static tree
5547 craft_constructor (tree class_decl, tree args)
5549 tree class_type = TREE_TYPE (class_decl);
5550 tree parm = NULL_TREE;
5551 /* Inherit access flags for the constructor from its enclosing class. */
5552 int valid_ctor_flags = ACC_PUBLIC | ACC_PROTECTED | ACC_PRIVATE;
5553 int flags = (get_access_flags_from_decl (class_decl) & valid_ctor_flags);
5554 int i = 0, artificial = 0;
5555 tree decl, ctor_name;
5556 char buffer [80];
5558 ctor_name = init_identifier_node;
5560 /* If we're dealing with an inner class constructor, we hide the
5561 this$<n> decl in the name field of its parameter declaration. */
5562 if (PURE_INNER_CLASS_TYPE_P (class_type))
5564 tree type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class_type)));
5565 parm = tree_cons (build_current_thisn (class_type),
5566 build_pointer_type (type), parm);
5568 /* Some more arguments to be hidden here. The values of the local
5569 variables of the outer context that the inner class needs to see. */
5570 parm = build_alias_initializer_parameter_list (AIPL_FUNCTION_CREATION,
5571 class_type, parm,
5572 &artificial);
5575 /* Then if there are any args to be enforced, enforce them now */
5576 for (; args && args != end_params_node; args = TREE_CHAIN (args))
5578 /* If we see a `void *', we need to change it to Object. */
5579 if (TREE_VALUE (args) == TREE_TYPE (null_pointer_node))
5580 TREE_VALUE (args) = object_ptr_type_node;
5582 sprintf (buffer, "parm%d", i++);
5583 parm = tree_cons (get_identifier (buffer), TREE_VALUE (args), parm);
5586 CRAFTED_PARAM_LIST_FIXUP (parm);
5587 decl = create_artificial_method (class_type, flags, void_type_node,
5588 ctor_name, parm);
5589 fix_method_argument_names (parm, decl);
5590 /* Now, mark the artificial parameters. */
5591 DECL_FUNCTION_NAP (decl) = artificial;
5592 DECL_FUNCTION_SYNTHETIC_CTOR (decl) = DECL_CONSTRUCTOR_P (decl) = 1;
5593 DECL_INLINE (decl) = 1;
5594 return decl;
5598 /* Fix the constructors. This will be called right after circular
5599 references have been checked. It is necessary to fix constructors
5600 early even if no code generation will take place for that class:
5601 some generated constructor might be required by the class whose
5602 compilation triggered this one to be simply loaded. */
5604 void
5605 java_fix_constructors (void)
5607 tree current;
5609 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
5611 tree class_type = TREE_TYPE (current);
5612 int saw_ctor = 0;
5613 tree decl;
5615 if (CLASS_INTERFACE (TYPE_NAME (class_type)))
5616 continue;
5618 output_class = current_class = class_type;
5619 for (decl = TYPE_METHODS (class_type); decl; decl = TREE_CHAIN (decl))
5621 if (DECL_CONSTRUCTOR_P (decl))
5623 fix_constructors (decl);
5624 saw_ctor = 1;
5628 /* Anonymous class constructor can't be generated that early. */
5629 if (!saw_ctor && !ANONYMOUS_CLASS_P (class_type))
5630 craft_constructor (current, NULL_TREE);
5634 /* safe_layout_class just makes sure that we can load a class without
5635 disrupting the current_class, input_file, input_line, etc, information
5636 about the class processed currently. */
5638 void
5639 safe_layout_class (tree class)
5641 tree save_current_class = current_class;
5642 location_t save_location = input_location;
5644 layout_class (class);
5646 current_class = save_current_class;
5647 input_location = save_location;
5650 static tree
5651 jdep_resolve_class (jdep *dep)
5653 tree decl;
5655 /* Set the correct context for class resolution. */
5656 current_class = TREE_TYPE (JDEP_ENCLOSING (dep));
5658 if (JDEP_RESOLVED_P (dep))
5659 decl = JDEP_RESOLVED_DECL (dep);
5660 else
5662 decl = resolve_class (JDEP_ENCLOSING (dep), JDEP_TO_RESOLVE (dep),
5663 JDEP_DECL (dep), JDEP_WFL (dep));
5664 JDEP_RESOLVED (dep, decl);
5665 /* If there is no WFL, that's ok. We generate this warning
5666 elsewhere. */
5667 if (decl && JDEP_WFL (dep) != NULL_TREE)
5668 check_deprecation (JDEP_WFL (dep), decl);
5671 if (!decl)
5672 complete_class_report_errors (dep);
5673 else if (INNER_CLASS_DECL_P (decl))
5675 tree inner = TREE_TYPE (decl);
5676 if (! CLASS_LOADED_P (inner))
5678 safe_layout_class (inner);
5679 if (TYPE_SIZE (inner) == error_mark_node)
5680 TYPE_SIZE (inner) = NULL_TREE;
5682 check_inner_class_access (decl, JDEP_ENCLOSING (dep), JDEP_WFL (dep));
5684 return decl;
5687 /* Complete unsatisfied class declaration and their dependencies */
5689 void
5690 java_complete_class (void)
5692 tree cclass;
5693 jdeplist *cclassd;
5694 int error_found;
5695 tree type;
5697 /* Process imports */
5698 process_imports ();
5700 /* Reverse things so we have the right order */
5701 ctxp->class_list = nreverse (ctxp->class_list);
5702 ctxp->classd_list = reverse_jdep_list (ctxp);
5704 for (cclassd = ctxp->classd_list, cclass = ctxp->class_list;
5705 cclass && cclassd;
5706 cclass = TREE_CHAIN (cclass), cclassd = CLASSD_CHAIN (cclassd))
5708 jdep *dep;
5710 for (dep = CLASSD_FIRST (cclassd); dep; dep = JDEP_CHAIN (dep))
5712 tree decl;
5713 if (!(decl = jdep_resolve_class (dep)))
5714 continue;
5716 /* Now it's time to patch */
5717 switch (JDEP_KIND (dep))
5719 case JDEP_SUPER:
5720 /* Simply patch super */
5721 if (parser_check_super (decl, JDEP_DECL (dep), JDEP_WFL (dep)))
5722 continue;
5723 BINFO_TYPE (BINFO_BASE_BINFO
5724 (TYPE_BINFO (TREE_TYPE (JDEP_DECL (dep))), 0))
5725 = TREE_TYPE (decl);
5726 break;
5728 case JDEP_FIELD:
5730 /* We do part of the job done in add_field */
5731 tree field_decl = JDEP_DECL (dep);
5732 tree field_type = TREE_TYPE (decl);
5733 if (TREE_CODE (field_type) == RECORD_TYPE)
5734 field_type = promote_type (field_type);
5735 TREE_TYPE (field_decl) = field_type;
5736 DECL_ALIGN (field_decl) = 0;
5737 DECL_USER_ALIGN (field_decl) = 0;
5738 layout_decl (field_decl, 0);
5739 SOURCE_FRONTEND_DEBUG
5740 (("Completed field/var decl '%s' with '%s'",
5741 IDENTIFIER_POINTER (DECL_NAME (field_decl)),
5742 IDENTIFIER_POINTER (DECL_NAME (decl))));
5743 break;
5745 case JDEP_METHOD: /* We start patching a method */
5746 case JDEP_METHOD_RETURN:
5747 error_found = 0;
5748 while (1)
5750 if (decl)
5752 type = TREE_TYPE(decl);
5753 if (TREE_CODE (type) == RECORD_TYPE)
5754 type = promote_type (type);
5755 JDEP_APPLY_PATCH (dep, type);
5756 SOURCE_FRONTEND_DEBUG
5757 (((JDEP_KIND (dep) == JDEP_METHOD_RETURN ?
5758 "Completing fct '%s' with ret type '%s'":
5759 "Completing arg '%s' with type '%s'"),
5760 IDENTIFIER_POINTER (EXPR_WFL_NODE
5761 (JDEP_DECL_WFL (dep))),
5762 IDENTIFIER_POINTER (DECL_NAME (decl))));
5764 else
5765 error_found = 1;
5766 dep = JDEP_CHAIN (dep);
5767 if (JDEP_KIND (dep) == JDEP_METHOD_END)
5768 break;
5769 else
5770 decl = jdep_resolve_class (dep);
5772 if (!error_found)
5774 tree mdecl = JDEP_DECL (dep), signature;
5775 /* Recompute and reset the signature, check first that
5776 all types are now defined. If they're not,
5777 don't build the signature. */
5778 if (check_method_types_complete (mdecl))
5780 signature = build_java_signature (TREE_TYPE (mdecl));
5781 set_java_signature (TREE_TYPE (mdecl), signature);
5784 else
5785 continue;
5786 break;
5788 case JDEP_INTERFACE:
5789 if (parser_check_super_interface (decl, JDEP_DECL (dep),
5790 JDEP_WFL (dep)))
5791 continue;
5792 parser_add_interface (JDEP_DECL (dep), decl, JDEP_WFL (dep));
5793 break;
5795 case JDEP_PARM:
5796 case JDEP_VARIABLE:
5797 type = TREE_TYPE(decl);
5798 if (TREE_CODE (type) == RECORD_TYPE)
5799 type = promote_type (type);
5800 JDEP_APPLY_PATCH (dep, type);
5801 break;
5803 case JDEP_TYPE:
5804 JDEP_APPLY_PATCH (dep, TREE_TYPE (decl));
5805 SOURCE_FRONTEND_DEBUG
5806 (("Completing a random type dependency on a '%s' node",
5807 tree_code_name [TREE_CODE (JDEP_DECL (dep))]));
5808 break;
5810 case JDEP_EXCEPTION:
5811 JDEP_APPLY_PATCH (dep, TREE_TYPE (decl));
5812 SOURCE_FRONTEND_DEBUG
5813 (("Completing '%s' 'throws' argument node",
5814 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep)))));
5815 break;
5817 case JDEP_ANONYMOUS:
5818 patch_anonymous_class (decl, JDEP_DECL (dep), JDEP_WFL (dep));
5819 break;
5821 default:
5822 abort ();
5826 return;
5829 /* Resolve class CLASS_TYPE. Handle the case of trying to resolve an
5830 array. */
5832 static tree
5833 resolve_class (tree enclosing, tree class_type, tree decl, tree cl)
5835 tree tname = TYPE_NAME (class_type);
5836 tree resolved_type = TREE_TYPE (class_type);
5837 int array_dims = 0;
5838 tree resolved_type_decl;
5840 if (resolved_type != NULL_TREE)
5842 tree resolved_type_decl = TYPE_NAME (resolved_type);
5843 if (resolved_type_decl == NULL_TREE
5844 || TREE_CODE (resolved_type_decl) == IDENTIFIER_NODE)
5846 resolved_type_decl = build_decl (TYPE_DECL,
5847 TYPE_NAME (class_type),
5848 resolved_type);
5850 return resolved_type_decl;
5853 /* 1- Check to see if we have an array. If true, find what we really
5854 want to resolve */
5855 if ((array_dims = build_type_name_from_array_name (tname,
5856 &TYPE_NAME (class_type))))
5857 WFL_STRIP_BRACKET (cl, cl);
5859 /* 2- Resolve the bare type */
5860 if (!(resolved_type_decl = do_resolve_class (enclosing, NULL_TREE, class_type,
5861 decl, cl)))
5862 return NULL_TREE;
5863 resolved_type = TREE_TYPE (resolved_type_decl);
5865 /* 3- If we have an array, reconstruct the array down to its nesting */
5866 if (array_dims)
5868 for (; array_dims; array_dims--)
5869 resolved_type = build_java_array_type (resolved_type, -1);
5870 resolved_type_decl = TYPE_NAME (resolved_type);
5872 TREE_TYPE (class_type) = resolved_type;
5873 return resolved_type_decl;
5876 /* Effectively perform the resolution of class CLASS_TYPE. DECL or CL
5877 are used to report error messages; CL must either be NULL_TREE or a
5878 WFL wrapping a class. Do not try to replace TYPE_NAME (class_type)
5879 by a variable, since it is changed by find_in_imports{_on_demand}
5880 and (but it doesn't really matter) qualify_and_find. */
5882 tree
5883 do_resolve_class (tree enclosing, tree import_type, tree class_type, tree decl,
5884 tree cl)
5886 tree new_class_decl = NULL_TREE;
5887 tree saved_enclosing_type = enclosing ? TREE_TYPE (enclosing) : NULL_TREE;
5888 tree candidate = NULL_TREE;
5889 tree decl_result;
5891 if (QUALIFIED_P (TYPE_NAME (class_type)))
5893 /* If the type name is of the form `Q . Id', then Q is either a
5894 package name or a class name. First we try to find Q as a
5895 class and then treat Id as a member type. If we can't find Q
5896 as a class then we fall through. */
5897 tree q, left, left_type, right;
5898 if (split_qualified_name (&left, &right, TYPE_NAME (class_type)) == 0)
5900 BUILD_PTR_FROM_NAME (left_type, left);
5901 q = do_resolve_class (enclosing, import_type, left_type, decl, cl);
5902 if (q)
5904 enclosing = q;
5905 saved_enclosing_type = TREE_TYPE (q);
5906 BUILD_PTR_FROM_NAME (class_type, right);
5911 if (enclosing)
5913 tree context = enclosing;
5915 /* 0- Search in the current class as an inner class.
5916 Maybe some code here should be added to load the class or
5917 something, at least if the class isn't an inner class and ended
5918 being loaded from class file. FIXME. */
5919 while (enclosing)
5921 new_class_decl = resolve_inner_class (context, cl, enclosing, class_type);
5923 if (new_class_decl)
5925 if (inner_class_accessible (new_class_decl, context))
5926 break;
5927 else
5928 if (candidate == NULL_TREE)
5929 candidate = new_class_decl;
5930 new_class_decl = NULL_TREE;
5933 /* Now that we've looked through all superclasses, try the enclosing
5934 context. */
5935 enclosing = DECL_CONTEXT (enclosing);
5938 if (new_class_decl)
5939 return new_class_decl;
5942 /* 1- Check for the type in single imports. Look at enclosing classes and,
5943 if we're laying out a superclass, at the import list for the subclass.
5944 This will change TYPE_NAME() if something relevant is found. */
5945 if (import_type && TYPE_IMPORT_LIST (import_type))
5946 find_in_imports (import_type, class_type);
5947 find_in_imports (saved_enclosing_type, class_type);
5949 /* 2- And check for the type in the current compilation unit */
5950 if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type))))
5952 if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)))
5953 load_class (TYPE_NAME (class_type), 0);
5954 return IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
5957 /* 3- Search according to the current package definition */
5958 if (!QUALIFIED_P (TYPE_NAME (class_type)))
5960 if ((new_class_decl = qualify_and_find (class_type,
5961 TYPE_PACKAGE (current_class), TYPE_NAME (class_type))))
5962 return new_class_decl;
5965 /* 4- Check the import on demands. Don't allow bar.baz to be
5966 imported from foo.* */
5967 if (!QUALIFIED_P (TYPE_NAME (class_type)))
5969 if (import_type
5970 && TYPE_IMPORT_DEMAND_LIST (import_type)
5971 && find_in_imports_on_demand (import_type, class_type))
5972 return NULL_TREE;
5973 if (find_in_imports_on_demand (saved_enclosing_type, class_type))
5974 return NULL_TREE;
5977 /* If found in find_in_imports_on_demand, the type has already been
5978 loaded. */
5979 if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type))))
5980 return new_class_decl;
5982 /* 5- Check another compilation unit that bears the name of type */
5983 load_class (TYPE_NAME (class_type), 0);
5985 if (!cl)
5986 cl = lookup_cl (decl);
5988 /* If we don't have a value for CL, then we're being called recursively.
5989 We can't check package access just yet, but it will be taken care of
5990 by the caller. */
5991 if (cl)
5993 if (check_pkg_class_access (TYPE_NAME (class_type), cl, true, NULL_TREE))
5994 return NULL_TREE;
5997 /* 6- Last call for a resolution */
5998 decl_result = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
6000 /* The final lookup might have registered a.b.c into a.b$c If we
6001 failed at the first lookup, progressively change the name if
6002 applicable and use the matching DECL instead. */
6003 if (!decl_result && QUALIFIED_P (TYPE_NAME (class_type)))
6005 char *separator;
6006 tree name = TYPE_NAME (class_type);
6007 char *namebuffer = alloca (IDENTIFIER_LENGTH (name) + 1);
6009 strcpy (namebuffer, IDENTIFIER_POINTER (name));
6011 do {
6013 /* Reach the last '.', and if applicable, replace it by a `$' and
6014 see if this exists as a type. */
6015 if ((separator = strrchr (namebuffer, '.')))
6017 *separator = '$';
6018 name = get_identifier (namebuffer);
6019 decl_result = IDENTIFIER_CLASS_VALUE (name);
6021 } while (!decl_result && separator);
6023 if (decl_result)
6024 return decl_result;
6025 else
6026 return candidate;
6029 static tree
6030 qualify_and_find (tree class_type, tree package, tree name)
6032 tree new_qualified = merge_qualified_name (package, name);
6033 tree new_class_decl;
6035 if (!IDENTIFIER_CLASS_VALUE (new_qualified))
6036 load_class (new_qualified, 0);
6037 if ((new_class_decl = IDENTIFIER_CLASS_VALUE (new_qualified)))
6039 if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)))
6040 load_class (TREE_TYPE (new_class_decl), 0);
6041 TYPE_NAME (class_type) = new_qualified;
6042 return IDENTIFIER_CLASS_VALUE (new_qualified);
6044 return NULL_TREE;
6047 /* Resolve NAME and lay it out (if not done and if not the current
6048 parsed class). Return a decl node. This function is meant to be
6049 called when type resolution is necessary during the walk pass. */
6051 static tree
6052 resolve_and_layout (tree something, tree cl)
6054 tree decl, decl_type;
6056 /* Don't do that on the current class */
6057 if (something == current_class)
6058 return TYPE_NAME (current_class);
6060 /* Don't do anything for void and other primitive types */
6061 if (JPRIMITIVE_TYPE_P (something) || something == void_type_node)
6062 return NULL_TREE;
6064 /* Pointer types can be reall pointer types or fake pointers. When
6065 finding a real pointer, recheck for primitive types */
6066 if (TREE_CODE (something) == POINTER_TYPE)
6068 if (TREE_TYPE (something))
6070 something = TREE_TYPE (something);
6071 if (JPRIMITIVE_TYPE_P (something) || something == void_type_node)
6072 return NULL_TREE;
6074 else
6075 something = TYPE_NAME (something);
6078 /* Don't do anything for arrays of primitive types */
6079 if (TREE_CODE (something) == RECORD_TYPE && TYPE_ARRAY_P (something)
6080 && JPRIMITIVE_TYPE_P (TYPE_ARRAY_ELEMENT (something)))
6081 return NULL_TREE;
6083 /* Something might be a WFL */
6084 if (TREE_CODE (something) == EXPR_WITH_FILE_LOCATION)
6085 something = EXPR_WFL_NODE (something);
6087 /* Otherwise, if something is not and IDENTIFIER_NODE, it can be a
6088 TYPE_DECL or a real TYPE. */
6089 else if (TREE_CODE (something) != IDENTIFIER_NODE)
6090 something = (TREE_CODE (TYPE_NAME (something)) == TYPE_DECL ?
6091 DECL_NAME (TYPE_NAME (something)) : TYPE_NAME (something));
6093 if (!(decl = resolve_no_layout (something, cl)))
6094 return NULL_TREE;
6096 /* Resolve and layout if necessary */
6097 decl_type = TREE_TYPE (decl);
6098 layout_class_methods (decl_type);
6099 /* Check methods */
6100 if (CLASS_FROM_SOURCE_P (decl_type))
6101 java_check_methods (decl);
6102 /* Layout the type if necessary */
6103 if (decl_type != current_class && !CLASS_LOADED_P (decl_type))
6104 safe_layout_class (decl_type);
6106 return decl;
6109 /* Resolve a class, returns its decl but doesn't perform any
6110 layout. The current parsing context is saved and restored */
6112 static tree
6113 resolve_no_layout (tree name, tree cl)
6115 tree ptr, decl;
6116 BUILD_PTR_FROM_NAME (ptr, name);
6117 java_parser_context_save_global ();
6118 decl = resolve_class (TYPE_NAME (current_class), ptr, NULL_TREE, cl);
6119 java_parser_context_restore_global ();
6121 return decl;
6124 /* Called when reporting errors. Skip the '[]'s in a complex array
6125 type description that failed to be resolved. purify_type_name can't
6126 use an identifier tree. */
6128 static const char *
6129 purify_type_name (const char *name)
6131 int len = strlen (name);
6132 int bracket_found;
6134 STRING_STRIP_BRACKETS (name, len, bracket_found);
6135 if (bracket_found)
6137 char *stripped_name = xmemdup (name, len, len+1);
6138 stripped_name [len] = '\0';
6139 return stripped_name;
6141 return name;
6144 /* The type CURRENT refers to can't be found. We print error messages. */
6146 static void
6147 complete_class_report_errors (jdep *dep)
6149 const char *name;
6151 if (!JDEP_WFL (dep))
6152 return;
6154 name = IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep)));
6155 switch (JDEP_KIND (dep))
6157 case JDEP_SUPER:
6158 parse_error_context
6159 (JDEP_WFL (dep), "Superclass %qs of class %qs not found",
6160 purify_type_name (name),
6161 IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6162 break;
6163 case JDEP_FIELD:
6164 parse_error_context
6165 (JDEP_WFL (dep), "Type %qs not found in declaration of field %qs",
6166 purify_type_name (name),
6167 IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6168 break;
6169 case JDEP_METHOD: /* Covers arguments */
6170 parse_error_context
6171 (JDEP_WFL (dep), "Type %qs not found in the declaration of the argument %qs of method %qs",
6172 purify_type_name (name),
6173 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_DECL_WFL (dep))),
6174 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_MISC (dep))));
6175 break;
6176 case JDEP_METHOD_RETURN: /* Covers return type */
6177 parse_error_context
6178 (JDEP_WFL (dep), "Type %qs not found in the declaration of the return type of method %qs",
6179 purify_type_name (name),
6180 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_DECL_WFL (dep))));
6181 break;
6182 case JDEP_INTERFACE:
6183 parse_error_context
6184 (JDEP_WFL (dep), "Superinterface %qs of %s %qs not found",
6185 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep))),
6186 (CLASS_OR_INTERFACE (JDEP_DECL (dep), "class", "interface")),
6187 IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6188 break;
6189 case JDEP_VARIABLE:
6190 parse_error_context
6191 (JDEP_WFL (dep), "Type %qs not found in the declaration of the local variable %qs",
6192 purify_type_name (IDENTIFIER_POINTER
6193 (EXPR_WFL_NODE (JDEP_WFL (dep)))),
6194 IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6195 break;
6196 case JDEP_EXCEPTION: /* As specified by `throws' */
6197 parse_error_context
6198 (JDEP_WFL (dep), "Class %qs not found in %<throws%>",
6199 IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep))));
6200 break;
6201 default:
6202 /* Fix for -Wall. Just break doing nothing. The error will be
6203 caught later */
6204 break;
6208 /* Return a static string containing the DECL prototype string. If
6209 DECL is a constructor, use the class name instead of the form
6210 <init> */
6212 static const char *
6213 get_printable_method_name (tree decl)
6215 const char *to_return;
6216 tree name = NULL_TREE;
6218 if (DECL_CONSTRUCTOR_P (decl))
6220 name = DECL_NAME (decl);
6221 DECL_NAME (decl) = DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl)));
6224 to_return = lang_printable_name (decl, 2);
6225 if (DECL_CONSTRUCTOR_P (decl))
6226 DECL_NAME (decl) = name;
6228 return to_return;
6231 /* Track method being redefined inside the same class. As a side
6232 effect, set DECL_NAME to an IDENTIFIER (prior entering this
6233 function it's a FWL, so we can track errors more accurately.) */
6235 static int
6236 check_method_redefinition (tree class, tree method)
6238 tree redef, sig;
6240 /* There's no need to verify <clinit> and finit$ and instinit$ */
6241 if (DECL_CLINIT_P (method)
6242 || DECL_FINIT_P (method) || DECL_INSTINIT_P (method))
6243 return 0;
6245 sig = TYPE_ARGUMENT_SIGNATURE (TREE_TYPE (method));
6246 for (redef = TYPE_METHODS (class); redef; redef = TREE_CHAIN (redef))
6248 if (redef == method)
6249 break;
6250 if (DECL_NAME (redef) == DECL_NAME (method)
6251 && sig == TYPE_ARGUMENT_SIGNATURE (TREE_TYPE (redef))
6252 && !DECL_ARTIFICIAL (method))
6254 parse_error_context
6255 (DECL_FUNCTION_WFL (method), "Duplicate %s declaration %qs",
6256 (DECL_CONSTRUCTOR_P (redef) ? "constructor" : "method"),
6257 get_printable_method_name (redef));
6258 return 1;
6261 return 0;
6264 /* Return 1 if check went ok, 0 otherwise. */
6265 static int
6266 check_abstract_method_definitions (int do_interface, tree class_decl,
6267 tree type)
6269 tree class = TREE_TYPE (class_decl);
6270 tree method, end_type;
6271 int ok = 1;
6273 end_type = (do_interface ? object_type_node : type);
6274 for (method = TYPE_METHODS (type); method; method = TREE_CHAIN (method))
6276 tree other_super, other_method, method_sig, method_name;
6277 int found = 0;
6278 int end_type_reached = 0;
6280 if (!METHOD_ABSTRACT (method) || METHOD_FINAL (method))
6281 continue;
6283 /* Now verify that somewhere in between TYPE and CLASS,
6284 abstract method METHOD gets a non abstract definition
6285 that is inherited by CLASS. */
6287 method_sig = build_java_signature (TREE_TYPE (method));
6288 method_name = DECL_NAME (method);
6289 if (TREE_CODE (method_name) == EXPR_WITH_FILE_LOCATION)
6290 method_name = EXPR_WFL_NODE (method_name);
6292 other_super = class;
6293 do {
6294 if (other_super == end_type)
6295 end_type_reached = 1;
6297 /* Method search */
6298 for (other_method = TYPE_METHODS (other_super); other_method;
6299 other_method = TREE_CHAIN (other_method))
6301 tree s = build_java_signature (TREE_TYPE (other_method));
6302 tree other_name = DECL_NAME (other_method);
6304 if (TREE_CODE (other_name) == EXPR_WITH_FILE_LOCATION)
6305 other_name = EXPR_WFL_NODE (other_name);
6306 if (!DECL_CLINIT_P (other_method)
6307 && !DECL_CONSTRUCTOR_P (other_method)
6308 && method_name == other_name
6309 && method_sig == s
6310 && !METHOD_ABSTRACT (other_method))
6312 found = 1;
6313 break;
6316 other_super = CLASSTYPE_SUPER (other_super);
6317 } while (!end_type_reached);
6319 /* Report that abstract METHOD didn't find an implementation
6320 that CLASS can use. */
6321 if (!found)
6323 char *t = xstrdup (lang_printable_name
6324 (TREE_TYPE (TREE_TYPE (method)), 0));
6325 tree ccn = DECL_NAME (TYPE_NAME (DECL_CONTEXT (method)));
6327 parse_error_context
6328 (lookup_cl (class_decl),
6329 "Class %qs doesn't define the abstract method %<%s %s%> from %s %<%s%>. This method must be defined or %s %qs must be declared abstract",
6330 IDENTIFIER_POINTER (DECL_NAME (class_decl)),
6331 t, lang_printable_name (method, 2),
6332 (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))) ?
6333 "interface" : "class"),
6334 IDENTIFIER_POINTER (ccn),
6335 (CLASS_INTERFACE (class_decl) ? "interface" : "class"),
6336 IDENTIFIER_POINTER (DECL_NAME (class_decl)));
6337 ok = 0;
6338 free (t);
6342 if (ok && do_interface)
6344 /* Check for implemented interfaces. */
6345 int i;
6346 tree base_binfo;
6348 for (i = 1;
6349 ok && BINFO_BASE_ITERATE (TYPE_BINFO (type), i, base_binfo);
6350 i++)
6351 ok = check_abstract_method_definitions (1, class_decl,
6352 BINFO_TYPE (base_binfo));
6355 return ok;
6358 /* Check that CLASS_DECL somehow implements all inherited abstract
6359 methods. */
6361 static void
6362 java_check_abstract_method_definitions (tree class_decl)
6364 tree class = TREE_TYPE (class_decl);
6365 tree super, base_binfo;
6366 int i;
6368 if (CLASS_ABSTRACT (class_decl))
6369 return;
6371 /* Check for inherited types */
6372 super = class;
6373 do {
6374 super = CLASSTYPE_SUPER (super);
6375 check_abstract_method_definitions (0, class_decl, super);
6376 } while (super != object_type_node);
6378 /* Check for implemented interfaces. */
6379 for (i = 1; BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
6380 check_abstract_method_definitions (1, class_decl, BINFO_TYPE (base_binfo));
6383 /* Check all the types method DECL uses and return 1 if all of them
6384 are now complete, 0 otherwise. This is used to check whether its
6385 safe to build a method signature or not. */
6387 static int
6388 check_method_types_complete (tree decl)
6390 tree type = TREE_TYPE (decl);
6391 tree args;
6393 if (!INCOMPLETE_TYPE_P (TREE_TYPE (type)))
6394 return 0;
6396 args = TYPE_ARG_TYPES (type);
6397 if (TREE_CODE (type) == METHOD_TYPE)
6398 args = TREE_CHAIN (args);
6399 for (; args != end_params_node; args = TREE_CHAIN (args))
6400 if (INCOMPLETE_TYPE_P (TREE_VALUE (args)))
6401 return 0;
6403 return 1;
6406 /* Visible interface to check methods contained in CLASS_DECL */
6408 void
6409 java_check_methods (tree class_decl)
6411 if (CLASS_METHOD_CHECKED_P (TREE_TYPE (class_decl)))
6412 return;
6414 if (CLASS_INTERFACE (class_decl))
6415 java_check_abstract_methods (class_decl);
6416 else
6417 java_check_regular_methods (class_decl);
6419 CLASS_METHOD_CHECKED_P (TREE_TYPE (class_decl)) = 1;
6422 /* Like not_accessible_p, but doesn't refer to the current class at
6423 all. */
6424 static bool
6425 hack_is_accessible_p (tree member, tree from_where)
6427 int flags = get_access_flags_from_decl (member);
6429 if (from_where == DECL_CONTEXT (member)
6430 || (flags & ACC_PUBLIC))
6431 return true;
6433 if ((flags & ACC_PROTECTED))
6435 if (inherits_from_p (from_where, DECL_CONTEXT (member)))
6436 return true;
6439 if ((flags & ACC_PRIVATE))
6440 return false;
6442 /* Package private, or protected. */
6443 return in_same_package (TYPE_NAME (from_where),
6444 TYPE_NAME (DECL_CONTEXT (member)));
6447 /* Check all the methods of CLASS_DECL. Methods are first completed
6448 then checked according to regular method existence rules. If no
6449 constructor for CLASS_DECL were encountered, then build its
6450 declaration. */
6451 static void
6452 java_check_regular_methods (tree class_decl)
6454 int saw_constructor = ANONYMOUS_CLASS_P (TREE_TYPE (class_decl));
6455 tree method;
6456 tree class = TREE_TYPE (class_decl);
6457 tree found = NULL_TREE;
6458 tree mthrows;
6460 /* It is not necessary to check methods defined in java.lang.Object */
6461 if (class == object_type_node)
6462 return;
6464 if (!TYPE_NVIRTUALS (class))
6465 TYPE_METHODS (class) = nreverse (TYPE_METHODS (class));
6467 /* Should take interfaces into account. FIXME */
6468 for (method = TYPE_METHODS (class); method; method = TREE_CHAIN (method))
6470 tree sig;
6471 tree method_wfl = DECL_FUNCTION_WFL (method);
6472 int aflags;
6474 /* Check for redefinitions */
6475 if (check_method_redefinition (class, method))
6476 continue;
6478 /* We verify things thrown by the method. They must inherit from
6479 java.lang.Throwable. */
6480 for (mthrows = DECL_FUNCTION_THROWS (method);
6481 mthrows; mthrows = TREE_CHAIN (mthrows))
6483 if (!inherits_from_p (TREE_VALUE (mthrows), throwable_type_node))
6484 parse_error_context
6485 (TREE_PURPOSE (mthrows), "Class %qs in %<throws%> clause must be a subclass of class %<java.lang.Throwable%>",
6486 IDENTIFIER_POINTER
6487 (DECL_NAME (TYPE_NAME (TREE_VALUE (mthrows)))));
6490 /* If we see one constructor a mark so we don't generate the
6491 default one. Also skip other verifications: constructors
6492 can't be inherited hence hidden or overridden. */
6493 if (DECL_CONSTRUCTOR_P (method))
6495 saw_constructor = 1;
6496 continue;
6499 sig = build_java_argument_signature (TREE_TYPE (method));
6500 found = lookup_argument_method_generic (class, DECL_NAME (method), sig,
6501 SEARCH_SUPER | SEARCH_INTERFACE);
6503 /* Inner class can't declare static methods */
6504 if (METHOD_STATIC (method) && !TOPLEVEL_CLASS_DECL_P (class_decl))
6506 char *t = xstrdup (lang_printable_name (class, 0));
6507 parse_error_context
6508 (method_wfl, "Method %qs can't be static in inner class %qs. Only members of interfaces and top-level classes can be static",
6509 lang_printable_name (method, 2), t);
6510 free (t);
6513 /* Nothing overrides or it's a private method. */
6514 if (!found)
6515 continue;
6516 if (METHOD_PRIVATE (found))
6518 found = NULL_TREE;
6519 continue;
6522 /* If `found' is declared in an interface, make sure the
6523 modifier matches. */
6524 if (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (found)))
6525 && clinit_identifier_node != DECL_NAME (found)
6526 && !METHOD_PUBLIC (method))
6528 tree found_decl = TYPE_NAME (DECL_CONTEXT (found));
6529 parse_error_context (method_wfl, "Class %qs must override %qs with a public method in order to implement interface %qs",
6530 IDENTIFIER_POINTER (DECL_NAME (class_decl)),
6531 lang_printable_name (found, 0),
6532 IDENTIFIER_POINTER (DECL_NAME (found_decl)));
6535 /* Can't override a method with the same name and different return
6536 types. */
6537 if (TREE_TYPE (TREE_TYPE (found)) != TREE_TYPE (TREE_TYPE (method)))
6539 char *t = xstrdup
6540 (lang_printable_name (TREE_TYPE (TREE_TYPE (found)), 2));
6541 parse_error_context
6542 (method_wfl,
6543 "Method %qs was defined with return type %qs in class %qs",
6544 lang_printable_name (found, 2), t,
6545 IDENTIFIER_POINTER
6546 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6547 free (t);
6550 aflags = get_access_flags_from_decl (found);
6552 /* Can't override final. Can't override static. */
6553 if (METHOD_FINAL (found) || METHOD_STATIC (found))
6555 /* Static *can* override static */
6556 if (METHOD_STATIC (found) && METHOD_STATIC (method))
6557 continue;
6558 parse_error_context
6559 (method_wfl,
6560 "%s methods can't be overridden. Method %qs is %s in class %qs",
6561 (METHOD_FINAL (found) ? "Final" : "Static"),
6562 lang_printable_name (found, 2),
6563 (METHOD_FINAL (found) ? "final" : "static"),
6564 IDENTIFIER_POINTER
6565 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6566 continue;
6569 /* Static method can't override instance method. */
6570 if (METHOD_STATIC (method))
6572 parse_error_context
6573 (method_wfl,
6574 "Instance methods can't be overridden by a static method. Method %qs is an instance method in class %qs",
6575 lang_printable_name (found, 2),
6576 IDENTIFIER_POINTER
6577 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6578 continue;
6581 /* - Overriding/hiding public must be public
6582 - Overriding/hiding protected must be protected or public
6583 - If the overridden or hidden method has default (package)
6584 access, then the overriding or hiding method must not be
6585 private; otherwise, a compile-time error occurs. If
6586 `found' belongs to an interface, things have been already
6587 taken care of. */
6588 if (!CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (found)))
6589 && ((METHOD_PUBLIC (found) && !METHOD_PUBLIC (method))
6590 || (METHOD_PROTECTED (found)
6591 && !(METHOD_PUBLIC (method) || METHOD_PROTECTED (method)))
6592 || (!(aflags & (ACC_PUBLIC | ACC_PRIVATE | ACC_STATIC))
6593 && METHOD_PRIVATE (method))))
6595 parse_error_context
6596 (method_wfl,
6597 "Methods can't be overridden to be more private. Method %qs is not %s in class %qs", lang_printable_name (method, 2),
6598 (METHOD_PUBLIC (method) ? "public" :
6599 (METHOD_PRIVATE (method) ? "private" : "protected")),
6600 IDENTIFIER_POINTER (DECL_NAME
6601 (TYPE_NAME (DECL_CONTEXT (found)))));
6602 continue;
6605 /* Check this method against all the other implementations it
6606 overrides. Here we only check the class hierarchy; the rest
6607 of the checking is done later. If this method is just a
6608 Miranda method, we can skip the check. */
6609 if (! METHOD_INVISIBLE (method))
6610 check_concrete_throws_clauses (class, method, DECL_NAME (method), sig);
6613 /* The above throws clause check only looked at superclasses. Now
6614 we must also make sure that all methods declared in interfaces
6615 have compatible throws clauses. FIXME: there are more efficient
6616 ways to organize this checking; we should implement one. */
6617 check_interface_throws_clauses (class, class);
6619 if (!TYPE_NVIRTUALS (class))
6620 TYPE_METHODS (class) = nreverse (TYPE_METHODS (class));
6622 /* Search for inherited abstract method not yet implemented in this
6623 class. */
6624 java_check_abstract_method_definitions (class_decl);
6626 if (!saw_constructor)
6627 abort ();
6630 /* Check to make sure that all the methods in all the interfaces
6631 implemented by CLASS_DECL are compatible with the concrete
6632 implementations available in CHECK_CLASS_DECL. */
6633 static void
6634 check_interface_throws_clauses (tree check_class_decl, tree class_decl)
6636 for (; class_decl != NULL_TREE; class_decl = CLASSTYPE_SUPER (class_decl))
6638 int i;
6640 if (! CLASS_LOADED_P (class_decl))
6642 if (CLASS_FROM_SOURCE_P (class_decl))
6643 safe_layout_class (class_decl);
6644 else
6645 load_class (class_decl, 1);
6648 for (i = BINFO_N_BASE_BINFOS (TYPE_BINFO (class_decl)) - 1; i > 0; --i)
6650 tree interface
6651 = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (class_decl), i));
6652 tree iface_method;
6654 for (iface_method = TYPE_METHODS (interface);
6655 iface_method != NULL_TREE;
6656 iface_method = TREE_CHAIN (iface_method))
6658 tree sig, method;
6660 /* First look for a concrete method implemented or
6661 inherited by this class. No need to search
6662 interfaces here, since we're already looking through
6663 all of them. */
6664 sig = build_java_argument_signature (TREE_TYPE (iface_method));
6665 method
6666 = lookup_argument_method_generic (check_class_decl,
6667 DECL_NAME (iface_method),
6668 sig, SEARCH_VISIBLE);
6669 /* If we don't find an implementation, that is ok. Any
6670 potential errors from that are diagnosed elsewhere.
6671 Also, multiple inheritance with conflicting throws
6672 clauses is fine in the absence of a concrete
6673 implementation. */
6674 if (method != NULL_TREE && !METHOD_ABSTRACT (method)
6675 && !METHOD_INVISIBLE (iface_method))
6677 tree method_wfl = DECL_FUNCTION_WFL (method);
6678 check_throws_clauses (method, method_wfl, iface_method);
6682 /* Now check superinterfaces. */
6683 check_interface_throws_clauses (check_class_decl, interface);
6688 /* Check throws clauses of a method against the clauses of all the
6689 methods it overrides. We do this by searching up the class
6690 hierarchy, examining all matching accessible methods. */
6691 static void
6692 check_concrete_throws_clauses (tree class, tree self_method,
6693 tree name, tree signature)
6695 tree method = lookup_argument_method_generic (class, name, signature,
6696 SEARCH_SUPER | SEARCH_VISIBLE);
6697 while (method != NULL_TREE)
6699 if (! METHOD_INVISIBLE (method) && hack_is_accessible_p (method, class))
6700 check_throws_clauses (self_method, DECL_FUNCTION_WFL (self_method),
6701 method);
6703 method = lookup_argument_method_generic (DECL_CONTEXT (method),
6704 name, signature,
6705 SEARCH_SUPER | SEARCH_VISIBLE);
6709 /* Generate an error if the `throws' clause of METHOD (if any) is
6710 incompatible with the `throws' clause of FOUND (if any). */
6711 static void
6712 check_throws_clauses (tree method, tree method_wfl, tree found)
6714 tree mthrows;
6716 for (mthrows = DECL_FUNCTION_THROWS (method);
6717 mthrows; mthrows = TREE_CHAIN (mthrows))
6719 tree fthrows;
6721 /* We don't verify unchecked expressions */
6722 if (IS_UNCHECKED_EXCEPTION_P (TREE_VALUE (mthrows)))
6723 continue;
6724 /* Checked expression must be compatible */
6725 for (fthrows = DECL_FUNCTION_THROWS (found);
6726 fthrows; fthrows = TREE_CHAIN (fthrows))
6728 if (inherits_from_p (TREE_VALUE (mthrows), TREE_VALUE (fthrows)))
6729 break;
6731 if (!fthrows)
6733 parse_error_context
6734 (method_wfl, "Invalid checked exception class %qs in %<throws%> clause. The exception must be a subclass of an exception thrown by %qs from class %qs",
6735 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (TREE_VALUE (mthrows)))),
6736 lang_printable_name (found, 2),
6737 IDENTIFIER_POINTER
6738 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6743 /* Check abstract method of interface INTERFACE */
6744 static void
6745 java_check_abstract_methods (tree interface_decl)
6747 int i;
6748 tree method, found;
6749 tree interface = TREE_TYPE (interface_decl);
6750 tree base_binfo;
6752 for (method = TYPE_METHODS (interface); method; method = TREE_CHAIN (method))
6754 /* 2- Check for double definition inside the defining interface */
6755 if (check_method_redefinition (interface, method))
6756 continue;
6758 /* 3- Overriding is OK as far as we preserve the return type. */
6759 found = lookup_java_interface_method2 (interface, method);
6760 if (found)
6762 char *t;
6763 t = xstrdup (lang_printable_name (TREE_TYPE (TREE_TYPE (found)), 2));
6764 parse_error_context
6765 (DECL_FUNCTION_WFL (found),
6766 "Method %qs was defined with return type %qs in class %qs",
6767 lang_printable_name (found, 2), t,
6768 IDENTIFIER_POINTER
6769 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6770 free (t);
6771 continue;
6775 /* 4- Inherited methods can't differ by their returned types */
6776 for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (interface), i, base_binfo); i++)
6778 tree sub_interface_method, sub_interface;
6780 sub_interface = BINFO_TYPE (base_binfo);
6781 for (sub_interface_method = TYPE_METHODS (sub_interface);
6782 sub_interface_method;
6783 sub_interface_method = TREE_CHAIN (sub_interface_method))
6785 found = lookup_java_interface_method2 (interface,
6786 sub_interface_method);
6787 if (found && (found != sub_interface_method))
6789 parse_error_context
6790 (lookup_cl (sub_interface_method),
6791 "Interface %qs inherits method %qs from interface %qs. This method is redefined with a different return type in interface %qs",
6792 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (interface))),
6793 lang_printable_name (found, 2),
6794 IDENTIFIER_POINTER
6795 (DECL_NAME (TYPE_NAME
6796 (DECL_CONTEXT (sub_interface_method)))),
6797 IDENTIFIER_POINTER
6798 (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6804 /* Lookup methods in interfaces using their name and partial
6805 signature. Return a matching method only if their types differ. */
6807 static tree
6808 lookup_java_interface_method2 (tree class, tree method_decl)
6810 int i;
6811 tree base_binfo;
6812 tree to_return;
6814 for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
6816 if ((BINFO_TYPE (base_binfo) != object_type_node)
6817 && (to_return =
6818 lookup_java_method2 (BINFO_TYPE (base_binfo), method_decl, 1)))
6819 return to_return;
6821 for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
6823 to_return = lookup_java_interface_method2
6824 (BINFO_TYPE (base_binfo), method_decl);
6825 if (to_return)
6826 return to_return;
6829 return NULL_TREE;
6832 /* Lookup method using their name and partial signature. Return a
6833 matching method only if their types differ. */
6835 static tree
6836 lookup_java_method2 (tree clas, tree method_decl, int do_interface)
6838 tree method, method_signature, method_name, method_type, name;
6840 method_signature = build_java_argument_signature (TREE_TYPE (method_decl));
6841 name = DECL_NAME (method_decl);
6842 method_name = (TREE_CODE (name) == EXPR_WITH_FILE_LOCATION ?
6843 EXPR_WFL_NODE (name) : name);
6844 method_type = TREE_TYPE (TREE_TYPE (method_decl));
6846 while (clas != NULL_TREE)
6848 for (method = TYPE_METHODS (clas);
6849 method != NULL_TREE; method = TREE_CHAIN (method))
6851 tree method_sig = build_java_argument_signature (TREE_TYPE (method));
6852 tree name = DECL_NAME (method);
6853 if ((TREE_CODE (name) == EXPR_WITH_FILE_LOCATION ?
6854 EXPR_WFL_NODE (name) : name) == method_name
6855 && method_sig == method_signature
6856 && TREE_TYPE (TREE_TYPE (method)) != method_type)
6857 return method;
6859 clas = (do_interface ? NULL_TREE : CLASSTYPE_SUPER (clas));
6861 return NULL_TREE;
6864 /* Return the line that matches DECL line number, and try its best to
6865 position the column number. Used during error reports.
6866 FUTURE/FIXME: return source_location instead of node. */
6868 static GTY(()) tree cl_v;
6869 static tree
6870 lookup_cl (tree decl)
6872 #ifndef USE_MAPPED_LOCATION
6873 char *line, *found;
6874 #endif
6876 if (!decl)
6877 return NULL_TREE;
6879 if (cl_v == NULL_TREE)
6881 cl_v = build_unknown_wfl (NULL_TREE);
6884 #ifdef USE_MAPPED_LOCATION
6885 SET_EXPR_LOCATION (cl_v, DECL_SOURCE_LOCATION (decl));
6886 #else
6887 EXPR_WFL_FILENAME_NODE (cl_v) = get_identifier (DECL_SOURCE_FILE (decl));
6888 EXPR_WFL_SET_LINECOL (cl_v, DECL_SOURCE_LINE (decl), -1);
6890 line = java_get_line_col (EXPR_WFL_FILENAME (cl_v),
6891 EXPR_WFL_LINENO (cl_v), EXPR_WFL_COLNO (cl_v));
6893 found = strstr ((const char *)line,
6894 (const char *)IDENTIFIER_POINTER (DECL_NAME (decl)));
6895 if (found)
6896 EXPR_WFL_SET_LINECOL (cl_v, EXPR_WFL_LINENO (cl_v), found - line);
6897 #endif
6899 return cl_v;
6902 /* Look for a simple name in the single-type import list */
6904 static tree
6905 find_name_in_single_imports (tree name)
6907 tree node;
6909 for (node = ctxp->import_list; node; node = TREE_CHAIN (node))
6910 if (TREE_VALUE (node) == name)
6911 return (EXPR_WFL_NODE (TREE_PURPOSE (node)));
6913 return NULL_TREE;
6916 /* Process all single-type import. */
6918 static int
6919 process_imports (void)
6921 tree import;
6922 int error_found;
6924 for (import = ctxp->import_list; import; import = TREE_CHAIN (import))
6926 tree to_be_found = EXPR_WFL_NODE (TREE_PURPOSE (import));
6927 char *original_name;
6929 /* Don't load twice something already defined. */
6930 if (IDENTIFIER_CLASS_VALUE (to_be_found))
6931 continue;
6933 original_name = xmemdup (IDENTIFIER_POINTER (to_be_found),
6934 IDENTIFIER_LENGTH (to_be_found),
6935 IDENTIFIER_LENGTH (to_be_found) + 1);
6937 while (1)
6939 tree left;
6941 QUALIFIED_P (to_be_found) = 1;
6942 load_class (to_be_found, 0);
6943 error_found =
6944 check_pkg_class_access (to_be_found, TREE_PURPOSE (import), true, NULL_TREE);
6946 /* We found it, we can bail out */
6947 if (IDENTIFIER_CLASS_VALUE (to_be_found))
6949 check_deprecation (TREE_PURPOSE (import),
6950 IDENTIFIER_CLASS_VALUE (to_be_found));
6951 break;
6954 /* We haven't found it. Maybe we're trying to access an
6955 inner class. The only way for us to know is to try again
6956 after having dropped a qualifier. If we can't break it further,
6957 we have an error. */
6958 if (split_qualified_name (&left, NULL, to_be_found))
6959 break;
6961 to_be_found = left;
6963 if (!IDENTIFIER_CLASS_VALUE (to_be_found))
6965 parse_error_context (TREE_PURPOSE (import),
6966 "Class or interface %qs not found in import",
6967 original_name);
6968 error_found = 1;
6971 free (original_name);
6972 if (error_found)
6973 return 1;
6975 return 0;
6978 /* Possibly find and mark a class imported by a single-type import
6979 statement. */
6981 static void
6982 find_in_imports (tree enclosing_type, tree class_type)
6984 tree import;
6985 if (enclosing_type && TYPE_IMPORT_LIST (enclosing_type))
6986 import = TYPE_IMPORT_LIST (enclosing_type);
6987 else
6988 import = ctxp->import_list;
6990 while (import)
6992 if (TREE_VALUE (import) == TYPE_NAME (class_type))
6994 TYPE_NAME (class_type) = EXPR_WFL_NODE (TREE_PURPOSE (import));
6995 QUALIFIED_P (TYPE_NAME (class_type)) = 1;
6996 return;
6998 import = TREE_CHAIN (import);
7002 static int
7003 note_possible_classname (const char *name, int len)
7005 tree node;
7006 if (len > 5 && strncmp (&name [len-5], ".java", 5) == 0)
7007 len = len - 5;
7008 else if (len > 6 && strncmp (&name [len-6], ".class", 6) == 0)
7009 len = len - 6;
7010 else
7011 return 0;
7012 node = ident_subst (name, len, "", '/', '.', "");
7013 IS_A_CLASSFILE_NAME (node) = 1; /* Or soon to be */
7014 QUALIFIED_P (node) = strchr (name, '/') ? 1 : 0;
7015 return 1;
7018 /* Read a import directory, gathering potential match for further type
7019 references. Indifferently reads a filesystem or a ZIP archive
7020 directory. */
7022 static void
7023 read_import_dir (tree wfl)
7025 tree package_id = EXPR_WFL_NODE (wfl);
7026 const char *package_name = IDENTIFIER_POINTER (package_id);
7027 int package_length = IDENTIFIER_LENGTH (package_id);
7028 DIR *dirp = NULL;
7029 JCF *saved_jcf = current_jcf;
7031 int found = 0;
7032 int k;
7033 void *entry;
7034 struct buffer filename[1];
7036 if (IS_AN_IMPORT_ON_DEMAND_P (package_id))
7037 return;
7038 IS_AN_IMPORT_ON_DEMAND_P (package_id) = 1;
7040 BUFFER_INIT (filename);
7041 buffer_grow (filename, package_length + 100);
7043 for (entry = jcf_path_start (); entry != NULL; entry = jcf_path_next (entry))
7045 const char *entry_name = jcf_path_name (entry);
7046 int entry_length = strlen (entry_name);
7047 if (jcf_path_is_zipfile (entry))
7049 ZipFile *zipf;
7050 buffer_grow (filename, entry_length);
7051 memcpy (filename->data, entry_name, entry_length - 1);
7052 filename->data[entry_length-1] = '\0';
7053 zipf = opendir_in_zip ((const char *) filename->data, jcf_path_is_system (entry));
7054 if (zipf == NULL)
7055 error ("malformed .zip archive in CLASSPATH: %s", entry_name);
7056 else
7058 ZipDirectory *zipd = (ZipDirectory *) zipf->central_directory;
7059 BUFFER_RESET (filename);
7060 for (k = 0; k < package_length; k++)
7062 char ch = package_name[k];
7063 *filename->ptr++ = ch == '.' ? '/' : ch;
7065 *filename->ptr++ = '/';
7067 for (k = 0; k < zipf->count; k++, zipd = ZIPDIR_NEXT (zipd))
7069 const char *current_entry = ZIPDIR_FILENAME (zipd);
7070 int current_entry_len = zipd->filename_length;
7072 if (current_entry_len >= BUFFER_LENGTH (filename)
7073 && strncmp ((const char *) filename->data, current_entry,
7074 BUFFER_LENGTH (filename)) != 0)
7075 continue;
7076 found |= note_possible_classname (current_entry,
7077 current_entry_len);
7081 else
7083 BUFFER_RESET (filename);
7084 buffer_grow (filename, entry_length + package_length + 4);
7085 strcpy ((char *) filename->data, entry_name);
7086 filename->ptr = filename->data + entry_length;
7087 for (k = 0; k < package_length; k++)
7089 char ch = package_name[k];
7090 *filename->ptr++ = ch == '.' ? '/' : ch;
7092 *filename->ptr = '\0';
7094 dirp = opendir ((const char *) filename->data);
7095 if (dirp == NULL)
7096 continue;
7097 *filename->ptr++ = '/';
7098 for (;;)
7100 int len;
7101 const char *d_name;
7102 struct dirent *direntp = readdir (dirp);
7103 if (!direntp)
7104 break;
7105 d_name = direntp->d_name;
7106 len = strlen (direntp->d_name);
7107 buffer_grow (filename, len+1);
7108 strcpy ((char *) filename->ptr, d_name);
7109 found |= note_possible_classname ((const char *) filename->data + entry_length,
7110 package_length+len+1);
7112 if (dirp)
7113 closedir (dirp);
7117 free (filename->data);
7119 /* Here we should have a unified way of retrieving an entry, to be
7120 indexed. */
7121 if (!found)
7123 static int first = 1;
7124 if (first)
7126 error ("Can't find default package %qs. Check the CLASSPATH environment variable and the access to the archives", package_name);
7127 java_error_count++;
7128 first = 0;
7130 else
7131 parse_error_context (wfl, "Package %qs not found in import",
7132 package_name);
7133 current_jcf = saved_jcf;
7134 return;
7136 current_jcf = saved_jcf;
7139 /* Possibly find a type in the import on demands specified
7140 types. Returns 1 if an error occurred, 0 otherwise. Run through the
7141 entire list, to detected potential double definitions. */
7143 static int
7144 find_in_imports_on_demand (tree enclosing_type, tree class_type)
7146 tree class_type_name = TYPE_NAME (class_type);
7147 tree cl = NULL_TREE;
7148 int seen_once = -1; /* -1 when not set, 1 if seen once, >1 otherwise. */
7149 int to_return = -1; /* -1 when not set, 0 or 1 otherwise */
7150 tree node;
7151 tree import;
7153 if (enclosing_type && TYPE_IMPORT_DEMAND_LIST (enclosing_type))
7154 import = TYPE_IMPORT_DEMAND_LIST (enclosing_type);
7155 else
7156 import = ctxp->import_demand_list;
7158 for (; import; import = TREE_CHAIN (import))
7160 location_t saved_location = input_location;
7161 int access_check;
7162 const char *id_name;
7163 tree decl, type_name_copy;
7165 obstack_grow (&temporary_obstack,
7166 IDENTIFIER_POINTER (EXPR_WFL_NODE (TREE_PURPOSE (import))),
7167 IDENTIFIER_LENGTH (EXPR_WFL_NODE (TREE_PURPOSE (import))));
7168 obstack_1grow (&temporary_obstack, '.');
7169 obstack_grow0 (&temporary_obstack,
7170 IDENTIFIER_POINTER (class_type_name),
7171 IDENTIFIER_LENGTH (class_type_name));
7172 id_name = obstack_finish (&temporary_obstack);
7174 if (! (node = maybe_get_identifier (id_name)))
7175 continue;
7177 /* Setup input_line so that it refers to the line of the import (in
7178 case we parse a class file and encounter errors */
7179 #ifdef USE_MAPPED_LOCATION
7180 input_location = EXPR_LOCATION (TREE_PURPOSE (import));
7181 #else
7182 input_line = EXPR_WFL_LINENO (TREE_PURPOSE (import));
7183 #endif
7185 type_name_copy = TYPE_NAME (class_type);
7186 TYPE_NAME (class_type) = node;
7187 QUALIFIED_P (node) = 1;
7188 decl = IDENTIFIER_CLASS_VALUE (node);
7189 access_check = -1;
7190 /* If there is no DECL set for the class or if the class isn't
7191 loaded and not seen in source yet, then load */
7192 if (!decl || ! CLASS_LOADED_P (TREE_TYPE (decl)))
7194 load_class (node, 0);
7195 decl = IDENTIFIER_CLASS_VALUE (node);
7197 if (decl && ! INNER_CLASS_P (TREE_TYPE (decl)))
7198 access_check = check_pkg_class_access (node, TREE_PURPOSE (import),
7199 false, NULL_TREE);
7200 else
7201 /* 6.6.1: Inner classes are subject to member access rules. */
7202 access_check = 0;
7204 input_location = saved_location;
7206 /* If the loaded class is not accessible or couldn't be loaded,
7207 we restore the original TYPE_NAME and process the next
7208 import. */
7209 if (access_check || !decl)
7211 TYPE_NAME (class_type) = type_name_copy;
7212 continue;
7215 /* If the loaded class is accessible, we keep a tab on it to
7216 detect and report multiple inclusions. */
7217 if (IS_A_CLASSFILE_NAME (node))
7219 if (seen_once < 0)
7221 cl = TREE_PURPOSE (import);
7222 seen_once = 1;
7224 else if (seen_once >= 0)
7226 tree location = (cl ? cl : TREE_PURPOSE (import));
7227 tree package = (cl ? EXPR_WFL_NODE (cl) :
7228 EXPR_WFL_NODE (TREE_PURPOSE (import)));
7229 seen_once++;
7230 parse_error_context
7231 (location,
7232 "Type %qs also potentially defined in package %qs",
7233 IDENTIFIER_POINTER (TYPE_NAME (class_type)),
7234 IDENTIFIER_POINTER (package));
7237 to_return = access_check;
7240 if (seen_once == 1)
7241 return to_return;
7242 else
7243 return (seen_once < 0 ? 0 : seen_once); /* It's ok not to have found */
7246 static tree
7247 resolve_package (tree pkg, tree *next, tree *type_name)
7249 tree current;
7250 tree decl = NULL_TREE;
7251 *type_name = NULL_TREE;
7253 /* The trick is to determine when the package name stops and were
7254 the name of something contained in the package starts. Then we
7255 return a fully qualified name of what we want to get. */
7257 *next = EXPR_WFL_QUALIFICATION (pkg);
7259 /* Try to progressively construct a type name */
7260 if (TREE_CODE (pkg) == EXPR_WITH_FILE_LOCATION)
7261 for (current = EXPR_WFL_QUALIFICATION (pkg);
7262 current; current = TREE_CHAIN (current))
7264 /* If we don't have what we're expecting, exit now. TYPE_NAME
7265 will be null and the error caught later. */
7266 if (TREE_CODE (QUAL_WFL (current)) != EXPR_WITH_FILE_LOCATION)
7267 break;
7268 *type_name =
7269 merge_qualified_name (*type_name, EXPR_WFL_NODE (QUAL_WFL (current)));
7270 if ((decl = resolve_no_layout (*type_name, NULL_TREE)))
7272 /* resolve_package should be used in a loop, hence we
7273 point at this one to naturally process the next one at
7274 the next iteration. */
7275 *next = current;
7276 break;
7279 return decl;
7282 /* Check accessibility of inner class DECL, from the context ENCLOSING_DECL,
7283 according to member access rules. */
7285 static bool
7286 inner_class_accessible (tree decl, tree enclosing_decl)
7288 tree enclosing_decl_type;
7290 enclosing_decl_type = TREE_TYPE (enclosing_decl);
7292 if (CLASS_PRIVATE (decl))
7294 /* Access is permitted only within the body of the top-level
7295 class in which DECL is declared. */
7296 tree top_level = decl;
7297 while (DECL_CONTEXT (top_level))
7298 top_level = DECL_CONTEXT (top_level);
7299 while (DECL_CONTEXT (enclosing_decl))
7300 enclosing_decl = DECL_CONTEXT (enclosing_decl);
7301 if (top_level == enclosing_decl)
7302 return true;
7304 else if (CLASS_PROTECTED (decl))
7306 tree decl_context;
7307 /* Access is permitted from within the same package... */
7308 if (in_same_package (decl, enclosing_decl))
7309 return true;
7311 /* ... or from within the body of a subtype of the context in which
7312 DECL is declared. */
7313 decl_context = DECL_CONTEXT (decl);
7314 while (enclosing_decl)
7316 if (CLASS_INTERFACE (decl))
7318 if (interface_of_p (TREE_TYPE (decl_context),
7319 enclosing_decl_type))
7320 return true;
7322 else
7324 /* Eww. The order of the arguments is different!! */
7325 if (inherits_from_p (enclosing_decl_type,
7326 TREE_TYPE (decl_context)))
7327 return true;
7329 enclosing_decl = DECL_CONTEXT (enclosing_decl);
7332 else if (! CLASS_PUBLIC (decl))
7334 /* Access is permitted only from within the same package as DECL. */
7335 if (in_same_package (decl, enclosing_decl))
7336 return true;
7338 else
7339 /* Class is public. */
7340 return true;
7342 return false;
7345 /* Check accessibility of inner classes according to member access rules.
7346 DECL is the inner class, ENCLOSING_DECL is the class from which the
7347 access is being attempted. */
7349 static void
7350 check_inner_class_access (tree decl, tree enclosing_decl, tree cl)
7352 const char *access;
7354 /* We don't issue an error message when CL is null. CL can be null
7355 as a result of processing a JDEP crafted by source_start_java_method
7356 for the purpose of patching its parm decl. But the error would
7357 have been already trapped when fixing the method's signature.
7358 DECL can also be NULL in case of earlier errors. */
7359 if (!decl || !cl)
7360 return;
7362 if (inner_class_accessible (decl, enclosing_decl))
7363 return;
7365 if (CLASS_PRIVATE (decl))
7366 access = "private";
7367 else if (CLASS_PROTECTED (decl))
7368 access = "protected";
7369 else
7370 access = "non-public";
7372 parse_error_context (cl, "Nested %s %s is %s; cannot be accessed from here",
7373 (CLASS_INTERFACE (decl) ? "interface" : "class"),
7374 lang_printable_name (decl, 2), access);
7377 /* Accessibility check for top-level classes. If CLASS_NAME is in a
7378 foreign package, it must be PUBLIC. Return 0 if no access
7379 violations were found, 1 otherwise. If VERBOSE is true and an error
7380 was found, it is reported and accounted for. If CL is NULL then
7381 look it up with THIS_DECL. */
7383 static int
7384 check_pkg_class_access (tree class_name, tree cl, bool verbose, tree this_decl)
7386 tree type;
7388 if (!IDENTIFIER_CLASS_VALUE (class_name))
7389 return 0;
7391 if (!(type = TREE_TYPE (IDENTIFIER_CLASS_VALUE (class_name))))
7392 return 0;
7394 if (!CLASS_PUBLIC (TYPE_NAME (type)))
7396 /* Access to a private class within the same package is
7397 allowed. */
7398 tree l, r;
7399 split_qualified_name (&l, &r, class_name);
7400 if (!QUALIFIED_P (class_name) && !ctxp->package)
7401 /* Both in the empty package. */
7402 return 0;
7403 if (l == ctxp->package)
7404 /* Both in the same package. */
7405 return 0;
7407 if (verbose)
7408 parse_error_context
7409 (cl == NULL ? lookup_cl (this_decl): cl,
7410 "Can't access %s %qs. Only public classes and interfaces in other packages can be accessed",
7411 (CLASS_INTERFACE (TYPE_NAME (type)) ? "interface" : "class"),
7412 IDENTIFIER_POINTER (class_name));
7413 return 1;
7415 return 0;
7418 /* Local variable declaration. */
7420 static void
7421 declare_local_variables (int modifier, tree type, tree vlist)
7423 tree decl, current, saved_type;
7424 tree type_wfl = NULL_TREE;
7425 int must_chain = 0;
7426 int final_p = 0;
7428 /* Push a new block if statements were seen between the last time we
7429 pushed a block and now. Keep a count of blocks to close */
7430 if (BLOCK_EXPR_BODY (GET_CURRENT_BLOCK (current_function_decl)))
7432 tree b = enter_block ();
7433 BLOCK_IS_IMPLICIT (b) = 1;
7436 if (modifier)
7438 size_t i;
7439 for (i = 0; i < ARRAY_SIZE (ctxp->modifier_ctx); i++)
7440 if (1 << i & modifier)
7441 break;
7442 if (modifier == ACC_FINAL)
7443 final_p = 1;
7444 else
7446 parse_error_context
7447 (ctxp->modifier_ctx [i],
7448 "Only %<final%> is allowed as a local variables modifier");
7449 return;
7453 /* Obtain an incomplete type if TYPE is not complete. TYPE_WFL will
7454 hold the TYPE value if a new incomplete has to be created (as
7455 opposed to being found already existing and reused). */
7456 SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
7458 /* If TYPE is fully resolved and we don't have a reference, make one */
7459 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
7461 /* Go through all the declared variables */
7462 for (current = vlist, saved_type = type; current;
7463 current = TREE_CHAIN (current), type = saved_type)
7465 tree other, real_type;
7466 tree wfl = TREE_PURPOSE (current);
7467 tree name = EXPR_WFL_NODE (wfl);
7468 tree init = TREE_VALUE (current);
7470 /* Process NAME, as it may specify extra dimension(s) for it */
7471 type = build_array_from_name (type, type_wfl, name, &name);
7473 /* Variable redefinition check */
7474 if ((other = lookup_name_in_blocks (name)))
7476 variable_redefinition_error (wfl, name, TREE_TYPE (other),
7477 DECL_SOURCE_LINE (other));
7478 continue;
7481 /* Type adjustment. We may have just readjusted TYPE because
7482 the variable specified more dimensions. Make sure we have
7483 a reference if we can and don't have one already. */
7484 PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
7486 real_type = GET_REAL_TYPE (type);
7487 /* Never layout this decl. This will be done when its scope
7488 will be entered */
7489 decl = build_decl (VAR_DECL, name, real_type);
7490 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
7491 DECL_FINAL (decl) = final_p;
7492 BLOCK_CHAIN_DECL (decl);
7494 /* Don't try to use an INIT statement when an error was found */
7495 if (init && java_error_count)
7496 init = NULL_TREE;
7498 /* Remember it if this is an initialized-upon-declaration final
7499 variable. */
7500 if (init && final_p)
7502 DECL_LOCAL_FINAL_IUD (decl) = 1;
7505 /* Add the initialization function to the current function's code */
7506 if (init)
7508 /* Name might have been readjusted */
7509 EXPR_WFL_NODE (TREE_OPERAND (init, 0)) = name;
7510 MODIFY_EXPR_FROM_INITIALIZATION_P (init) = 1;
7511 java_method_add_stmt (current_function_decl,
7512 build_debugable_stmt (EXPR_WFL_LINECOL (init),
7513 init));
7516 /* Setup dependency the type of the decl */
7517 if (must_chain)
7519 jdep *dep;
7520 register_incomplete_type (JDEP_VARIABLE, type_wfl, decl, type);
7521 dep = CLASSD_LAST (ctxp->classd_list);
7522 JDEP_GET_PATCH (dep) = &TREE_TYPE (decl);
7525 SOURCE_FRONTEND_DEBUG (("Defined locals"));
7528 /* Called during parsing. Build decls from argument list. */
7530 static void
7531 source_start_java_method (tree fndecl)
7533 tree tem;
7534 tree parm_decl;
7535 int i;
7537 if (!fndecl)
7538 return;
7540 current_function_decl = fndecl;
7542 /* New scope for the function */
7543 enter_block ();
7544 for (tem = TYPE_ARG_TYPES (TREE_TYPE (fndecl)), i = 0;
7545 tem != end_params_node; tem = TREE_CHAIN (tem), i++)
7547 tree type = TREE_VALUE (tem);
7548 tree name = TREE_PURPOSE (tem);
7550 /* If type is incomplete. Create an incomplete decl and ask for
7551 the decl to be patched later */
7552 if (INCOMPLETE_TYPE_P (type))
7554 jdep *jdep;
7555 tree real_type = GET_REAL_TYPE (type);
7556 parm_decl = build_decl (PARM_DECL, name, real_type);
7557 type = obtain_incomplete_type (type);
7558 register_incomplete_type (JDEP_PARM, NULL_TREE, NULL_TREE, type);
7559 jdep = CLASSD_LAST (ctxp->classd_list);
7560 JDEP_MISC (jdep) = name;
7561 JDEP_GET_PATCH (jdep) = &TREE_TYPE (parm_decl);
7563 else
7564 parm_decl = build_decl (PARM_DECL, name, type);
7566 /* Remember if a local variable was declared final (via its
7567 TREE_LIST of type/name.) Set DECL_FINAL accordingly. */
7568 if (ARG_FINAL_P (tem))
7570 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (parm_decl);
7571 DECL_FINAL (parm_decl) = 1;
7574 BLOCK_CHAIN_DECL (parm_decl);
7576 tem = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl));
7577 BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl)) =
7578 nreverse (tem);
7579 DECL_ARG_SLOT_COUNT (current_function_decl) = i;
7580 DECL_MAX_LOCALS (current_function_decl) = i;
7583 /* Called during parsing. Creates an artificial method declaration. */
7585 static tree
7586 create_artificial_method (tree class, int flags, tree type,
7587 tree name, tree args)
7589 tree mdecl;
7590 location_t save_location = input_location;
7592 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (class));
7593 mdecl = make_node (FUNCTION_TYPE);
7594 TREE_TYPE (mdecl) = type;
7595 TYPE_ARG_TYPES (mdecl) = args;
7596 /* We used to compute the signature of MDECL here and then use
7597 add_method(), but that failed because our caller might modify
7598 the type of the returned method, which trashes the cache in
7599 get_type_from_signature(). */
7600 mdecl = add_method_1 (class, flags, name, mdecl);
7601 input_location = save_location;
7602 DECL_ARTIFICIAL (mdecl) = 1;
7603 return mdecl;
7606 /* Starts the body if an artificial method. */
7608 static void
7609 start_artificial_method_body (tree mdecl)
7611 #ifdef USE_MAPPED_LOCATION
7612 DECL_SOURCE_LOCATION (mdecl) = ctxp->file_start_location;
7613 DECL_FUNCTION_LAST_LINE (mdecl) = ctxp->file_start_location;
7614 #else
7615 DECL_SOURCE_LINE (mdecl) = 1;
7616 DECL_FUNCTION_LAST_LINE (mdecl) = 1;
7617 #endif
7618 source_start_java_method (mdecl);
7619 enter_block ();
7622 static void
7623 end_artificial_method_body (tree mdecl)
7625 /* exit_block modifies DECL_FUNCTION_BODY (current_function_decl).
7626 It has to be evaluated first. (if mdecl is current_function_decl,
7627 we have an undefined behavior if no temporary variable is used.) */
7628 tree b = exit_block ();
7629 BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (mdecl)) = b;
7630 exit_block ();
7633 /* Dump a tree of some kind. This is a convenience wrapper for the
7634 dump_* functions in tree-dump.c. */
7635 static void
7636 dump_java_tree (enum tree_dump_index phase, tree t)
7638 FILE *stream;
7639 int flags;
7641 stream = dump_begin (phase, &flags);
7642 flags |= TDF_SLIM;
7643 if (stream)
7645 dump_node (t, flags, stream);
7646 dump_end (phase, stream);
7650 /* Terminate a function and expand its body. */
7652 static void
7653 source_end_java_method (void)
7655 tree fndecl = current_function_decl;
7657 if (!fndecl)
7658 return;
7660 java_parser_context_save_global ();
7661 #ifdef USE_MAPPED_LOCATION
7662 input_location = ctxp->last_ccb_indent1;
7663 #else
7664 input_line = ctxp->last_ccb_indent1;
7665 #endif
7667 /* Turn function bodies with only a NOP expr null, so they don't get
7668 generated at all and we won't get warnings when using the -W
7669 -Wall flags. */
7670 if (IS_EMPTY_STMT (BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl))))
7671 BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl)) = NULL_TREE;
7673 if (BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl))
7674 && ! flag_emit_class_files)
7675 finish_method (fndecl);
7677 current_function_decl = NULL_TREE;
7678 java_parser_context_restore_global ();
7679 current_function_decl = NULL_TREE;
7682 /* Record EXPR in the current function block. Complements compound
7683 expression second operand if necessary. */
7685 tree
7686 java_method_add_stmt (tree fndecl, tree expr)
7688 if (!GET_CURRENT_BLOCK (fndecl))
7689 return NULL_TREE;
7690 return add_stmt_to_block (GET_CURRENT_BLOCK (fndecl), NULL_TREE, expr);
7693 static tree
7694 add_stmt_to_block (tree b, tree type, tree stmt)
7696 tree body = BLOCK_EXPR_BODY (b), c;
7698 if (java_error_count)
7699 return body;
7701 if ((c = add_stmt_to_compound (body, type, stmt)) == body)
7702 return body;
7704 BLOCK_EXPR_BODY (b) = c;
7705 TREE_SIDE_EFFECTS (c) = 1;
7706 return c;
7709 /* Lays out the methods for the classes seen so far. */
7711 void
7712 java_layout_seen_class_methods (void)
7714 tree previous_list = all_class_list;
7715 tree end = NULL_TREE;
7716 tree current;
7718 while (1)
7720 for (current = previous_list;
7721 current != end; current = TREE_CHAIN (current))
7723 tree decl = TREE_VALUE (current);
7724 tree cls = TREE_TYPE (decl);
7726 input_location = DECL_SOURCE_LOCATION (decl);
7728 if (! CLASS_LOADED_P (cls))
7729 load_class (cls, 0);
7731 layout_class_methods (cls);
7734 /* Note that new classes might have been added while laying out
7735 methods, changing the value of all_class_list. */
7737 if (previous_list != all_class_list)
7739 end = previous_list;
7740 previous_list = all_class_list;
7742 else
7743 break;
7747 static GTY(()) tree stop_reordering;
7748 void
7749 java_reorder_fields (void)
7751 tree current;
7753 for (current = gclass_list; current; current = TREE_CHAIN (current))
7755 output_class = current_class = TREE_TYPE (TREE_VALUE (current));
7757 if (current_class == stop_reordering)
7758 break;
7760 /* Reverse the fields, but leave the dummy field in front.
7761 Fields are already ordered for Object and Class */
7762 if (TYPE_FIELDS (current_class) && current_class != object_type_node
7763 && current_class != class_type_node)
7765 /* If the dummy field is there, reverse the right fields and
7766 just layout the type for proper fields offset */
7767 if (!DECL_NAME (TYPE_FIELDS (current_class)))
7769 tree fields = TYPE_FIELDS (current_class);
7770 TREE_CHAIN (fields) = nreverse (TREE_CHAIN (fields));
7771 TYPE_SIZE (current_class) = NULL_TREE;
7773 /* We don't have a dummy field, we need to layout the class,
7774 after having reversed the fields */
7775 else
7777 TYPE_FIELDS (current_class) =
7778 nreverse (TYPE_FIELDS (current_class));
7779 TYPE_SIZE (current_class) = NULL_TREE;
7783 /* There are cases were gclass_list will be empty. */
7784 if (gclass_list)
7785 stop_reordering = TREE_TYPE (TREE_VALUE (gclass_list));
7788 /* Layout the methods of all classes loaded in one way or another.
7789 Check methods of source parsed classes. Then reorder the
7790 fields and layout the classes or the type of all source parsed
7791 classes */
7793 void
7794 java_layout_classes (void)
7796 tree current;
7797 int save_error_count = java_error_count;
7799 /* Layout the methods of all classes seen so far */
7800 java_layout_seen_class_methods ();
7801 java_parse_abort_on_error ();
7802 all_class_list = NULL_TREE;
7804 /* Then check the methods of all parsed classes */
7805 for (current = gclass_list; current; current = TREE_CHAIN (current))
7806 if (CLASS_FROM_SOURCE_P (TREE_TYPE (TREE_VALUE (current))))
7807 java_check_methods (TREE_VALUE (current));
7808 java_parse_abort_on_error ();
7810 for (current = gclass_list; current; current = TREE_CHAIN (current))
7812 output_class = current_class = TREE_TYPE (TREE_VALUE (current));
7813 layout_class (current_class);
7815 /* Error reported by the caller */
7816 if (java_error_count)
7817 return;
7820 /* We might have reloaded classes durign the process of laying out
7821 classes for code generation. We must layout the methods of those
7822 late additions, as constructor checks might use them */
7823 java_layout_seen_class_methods ();
7824 java_parse_abort_on_error ();
7827 /* Expand methods in the current set of classes remembered for
7828 generation. */
7830 static void
7831 java_complete_expand_classes (void)
7833 tree current;
7835 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
7836 if (!INNER_CLASS_DECL_P (current))
7837 java_complete_expand_class (current);
7840 /* Expand the methods found in OUTER, starting first by OUTER's inner
7841 classes, if any. */
7843 static void
7844 java_complete_expand_class (tree outer)
7846 tree inner_list;
7848 /* We need to go after all inner classes and start expanding them,
7849 starting with most nested ones. We have to do that because nested
7850 classes might add functions to outer classes */
7852 for (inner_list = DECL_INNER_CLASS_LIST (outer);
7853 inner_list; inner_list = TREE_CHAIN (inner_list))
7854 java_complete_expand_class (TREE_PURPOSE (inner_list));
7856 java_complete_expand_methods (outer);
7859 /* Expand methods registered in CLASS_DECL. The general idea is that
7860 we expand regular methods first. This allows us get an estimate on
7861 how outer context local alias fields are really used so we can add
7862 to the constructor just enough code to initialize them properly (it
7863 also lets us generate finit$ correctly.) Then we expand the
7864 constructors and then <clinit>. */
7866 static void
7867 java_complete_expand_methods (tree class_decl)
7869 tree clinit, decl, first_decl;
7871 output_class = current_class = TREE_TYPE (class_decl);
7873 /* Pre-expand <clinit> to figure whether we really need it or
7874 not. If we do need it, we pre-expand the static fields so they're
7875 ready to be used somewhere else. <clinit> will be fully expanded
7876 after we processed the constructors. */
7877 first_decl = TYPE_METHODS (current_class);
7878 clinit = maybe_generate_pre_expand_clinit (current_class);
7880 /* Then generate finit$ (if we need to) because constructors will
7881 try to use it.*/
7882 if (TYPE_FINIT_STMT_LIST (current_class))
7883 java_complete_expand_method (generate_finit (current_class));
7885 /* Then generate instinit$ (if we need to) because constructors will
7886 try to use it. */
7887 if (TYPE_II_STMT_LIST (current_class))
7888 java_complete_expand_method (generate_instinit (current_class));
7890 /* Now do the constructors */
7891 for (decl = first_decl ; !java_error_count && decl; decl = TREE_CHAIN (decl))
7893 if (!DECL_CONSTRUCTOR_P (decl))
7894 continue;
7895 java_complete_expand_method (decl);
7898 /* First, do the ordinary methods. */
7899 for (decl = first_decl; decl; decl = TREE_CHAIN (decl))
7901 /* Ctors aren't part of this batch. */
7902 if (DECL_CONSTRUCTOR_P (decl) || DECL_CLINIT_P (decl))
7903 continue;
7905 /* Skip abstract or native methods -- but do handle native
7906 methods when generating JNI stubs. */
7907 if (METHOD_ABSTRACT (decl) || (! flag_jni && METHOD_NATIVE (decl)))
7909 DECL_FUNCTION_BODY (decl) = NULL_TREE;
7910 continue;
7913 if (METHOD_NATIVE (decl))
7915 tree body;
7916 current_function_decl = decl;
7917 body = build_jni_stub (decl);
7918 BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (decl)) = body;
7921 java_complete_expand_method (decl);
7924 /* If there is indeed a <clinit>, fully expand it now */
7925 if (clinit)
7927 /* Prevent the use of `this' inside <clinit> */
7928 ctxp->explicit_constructor_p = 1;
7929 java_complete_expand_method (clinit);
7930 ctxp->explicit_constructor_p = 0;
7933 /* We might have generated a class$ that we now want to expand */
7934 if (TYPE_DOT_CLASS (current_class))
7935 java_complete_expand_method (TYPE_DOT_CLASS (current_class));
7937 /* Now verify constructor circularity (stop after the first one we
7938 prove wrong.) */
7939 if (!CLASS_INTERFACE (class_decl))
7940 for (decl = TYPE_METHODS (current_class); decl; decl = TREE_CHAIN (decl))
7941 if (DECL_CONSTRUCTOR_P (decl)
7942 && verify_constructor_circularity (decl, decl))
7943 break;
7946 /* Attempt to create <clinit>. Pre-expand static fields so they can be
7947 safely used in some other methods/constructors. */
7949 static tree
7950 maybe_generate_pre_expand_clinit (tree class_type)
7952 tree current, mdecl;
7954 if (!TYPE_CLINIT_STMT_LIST (class_type))
7955 return NULL_TREE;
7957 /* Go through all static fields and pre expand them */
7958 for (current = TYPE_FIELDS (class_type); current;
7959 current = TREE_CHAIN (current))
7960 if (FIELD_STATIC (current))
7961 build_field_ref (NULL_TREE, class_type, DECL_NAME (current));
7963 /* Then build the <clinit> method */
7964 mdecl = create_artificial_method (class_type, ACC_STATIC, void_type_node,
7965 clinit_identifier_node, end_params_node);
7966 layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
7967 mdecl, NULL_TREE);
7968 start_artificial_method_body (mdecl);
7970 /* We process the list of assignment we produced as the result of
7971 the declaration of initialized static field and add them as
7972 statement to the <clinit> method. */
7973 for (current = TYPE_CLINIT_STMT_LIST (class_type); current;
7974 current = TREE_CHAIN (current))
7976 tree stmt = current;
7977 /* We build the assignment expression that will initialize the
7978 field to its value. There are strict rules on static
7979 initializers (8.5). FIXME */
7980 if (TREE_CODE (stmt) != BLOCK && !IS_EMPTY_STMT (stmt))
7981 stmt = build_debugable_stmt (EXPR_WFL_LINECOL (stmt), stmt);
7982 java_method_add_stmt (mdecl, stmt);
7985 end_artificial_method_body (mdecl);
7987 /* Now we want to place <clinit> as the last method (because we need
7988 it at least for interface so that it doesn't interfere with the
7989 dispatch table based lookup. */
7990 if (TREE_CHAIN (TYPE_METHODS (class_type)))
7992 current = TREE_CHAIN (TYPE_METHODS (class_type));
7993 TYPE_METHODS (class_type) = current;
7995 while (TREE_CHAIN (current))
7996 current = TREE_CHAIN (current);
7998 TREE_CHAIN (current) = mdecl;
7999 TREE_CHAIN (mdecl) = NULL_TREE;
8002 return mdecl;
8005 /* Analyzes a method body and look for something that isn't a
8006 MODIFY_EXPR with a constant value. */
8008 static int
8009 analyze_clinit_body (tree this_class, tree bbody)
8011 while (bbody)
8012 switch (TREE_CODE (bbody))
8014 case BLOCK:
8015 bbody = BLOCK_EXPR_BODY (bbody);
8016 break;
8018 case EXPR_WITH_FILE_LOCATION:
8019 bbody = EXPR_WFL_NODE (bbody);
8020 break;
8022 case COMPOUND_EXPR:
8023 if (analyze_clinit_body (this_class, TREE_OPERAND (bbody, 0)))
8024 return 1;
8025 bbody = TREE_OPERAND (bbody, 1);
8026 break;
8028 case MODIFY_EXPR:
8029 /* If we're generating to class file and we're dealing with an
8030 array initialization, we return 1 to keep <clinit> */
8031 if (TREE_CODE (TREE_OPERAND (bbody, 1)) == NEW_ARRAY_INIT
8032 && flag_emit_class_files)
8033 return 1;
8035 /* There are a few cases where we're required to keep
8036 <clinit>:
8037 - If this is an assignment whose operand is not constant,
8038 - If this is an assignment to a non-initialized field,
8039 - If this field is not a member of the current class.
8041 return (! TREE_CONSTANT (TREE_OPERAND (bbody, 1))
8042 || ! DECL_INITIAL (TREE_OPERAND (bbody, 0))
8043 || DECL_CONTEXT (TREE_OPERAND (bbody, 0)) != this_class);
8045 default:
8046 return 1;
8048 return 0;
8052 /* See whether we could get rid of <clinit>. Criteria are: all static
8053 final fields have constant initial values and the body of <clinit>
8054 is empty. Return 1 if <clinit> was discarded, 0 otherwise. */
8056 static int
8057 maybe_yank_clinit (tree mdecl)
8059 tree type, current;
8060 tree fbody, bbody;
8062 if (!DECL_CLINIT_P (mdecl))
8063 return 0;
8065 /* If the body isn't empty, then we keep <clinit>. Note that if
8066 we're emitting classfiles, this isn't enough not to rule it
8067 out. */
8068 fbody = DECL_FUNCTION_BODY (mdecl);
8069 bbody = BLOCK_EXPR_BODY (fbody);
8070 if (bbody && bbody != error_mark_node)
8071 bbody = BLOCK_EXPR_BODY (bbody);
8072 else
8073 return 0;
8074 if (bbody && ! flag_emit_class_files && !IS_EMPTY_STMT (bbody))
8075 return 0;
8077 type = DECL_CONTEXT (mdecl);
8078 current = TYPE_FIELDS (type);
8080 for (current = (current ? TREE_CHAIN (current) : current);
8081 current; current = TREE_CHAIN (current))
8083 tree f_init;
8085 /* We're not interested in non-static fields. */
8086 if (!FIELD_STATIC (current))
8087 continue;
8089 /* Nor in fields without initializers. */
8090 f_init = DECL_INITIAL (current);
8091 if (f_init == NULL_TREE)
8092 continue;
8094 /* Anything that isn't String or a basic type is ruled out -- or
8095 if we know how to deal with it (when doing things natively) we
8096 should generated an empty <clinit> so that SUID are computed
8097 correctly. */
8098 if (! JSTRING_TYPE_P (TREE_TYPE (current))
8099 && ! JNUMERIC_TYPE_P (TREE_TYPE (current)))
8100 return 0;
8102 if (! FIELD_FINAL (current) || ! TREE_CONSTANT (f_init))
8103 return 0;
8106 /* Now we analyze the method body and look for something that
8107 isn't a MODIFY_EXPR */
8108 if (bbody && !IS_EMPTY_STMT (bbody) && analyze_clinit_body (type, bbody))
8109 return 0;
8111 /* Get rid of <clinit> in the class' list of methods */
8112 if (TYPE_METHODS (type) == mdecl)
8113 TYPE_METHODS (type) = TREE_CHAIN (mdecl);
8114 else
8115 for (current = TYPE_METHODS (type); current;
8116 current = TREE_CHAIN (current))
8117 if (TREE_CHAIN (current) == mdecl)
8119 TREE_CHAIN (current) = TREE_CHAIN (mdecl);
8120 break;
8123 return 1;
8126 /* Install the argument from MDECL. Suitable to completion and
8127 expansion of mdecl's body. */
8129 void
8130 start_complete_expand_method (tree mdecl)
8132 tree tem;
8134 pushlevel (1); /* Prepare for a parameter push */
8135 tem = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl));
8136 DECL_ARGUMENTS (mdecl) = tem;
8138 for (; tem; tem = TREE_CHAIN (tem))
8140 /* TREE_CHAIN (tem) will change after pushdecl. */
8141 tree next = TREE_CHAIN (tem);
8142 tree type = TREE_TYPE (tem);
8143 if (targetm.calls.promote_prototypes (type)
8144 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
8145 && INTEGRAL_TYPE_P (type))
8146 type = integer_type_node;
8147 DECL_ARG_TYPE (tem) = type;
8148 layout_decl (tem, 0);
8149 pushdecl (tem);
8150 /* Re-install the next so that the list is kept and the loop
8151 advances. */
8152 TREE_CHAIN (tem) = next;
8154 pushdecl_force_head (DECL_ARGUMENTS (mdecl));
8155 input_location = DECL_SOURCE_LOCATION (mdecl);
8156 build_result_decl (mdecl);
8160 /* Complete and expand a method. */
8162 static void
8163 java_complete_expand_method (tree mdecl)
8165 tree fbody, block_body, exception_copy;
8167 current_function_decl = mdecl;
8168 /* Fix constructors before expanding them */
8169 if (DECL_CONSTRUCTOR_P (mdecl))
8170 fix_constructors (mdecl);
8172 /* Expand functions that have a body */
8173 if (!DECL_FUNCTION_BODY (mdecl))
8174 return;
8176 fbody = DECL_FUNCTION_BODY (mdecl);
8177 block_body = BLOCK_EXPR_BODY (fbody);
8178 exception_copy = NULL_TREE;
8180 current_function_decl = mdecl;
8182 if (! quiet_flag)
8183 fprintf (stderr, " [%s.",
8184 lang_printable_name (DECL_CONTEXT (mdecl), 0));
8185 announce_function (mdecl);
8186 if (! quiet_flag)
8187 fprintf (stderr, "]");
8189 /* Prepare the function for tree completion */
8190 start_complete_expand_method (mdecl);
8192 /* Install the current this */
8193 current_this = (!METHOD_STATIC (mdecl) ?
8194 BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (mdecl)) : NULL_TREE);
8196 /* Install exceptions thrown with `throws' */
8197 PUSH_EXCEPTIONS (DECL_FUNCTION_THROWS (mdecl));
8199 if (block_body != NULL_TREE)
8201 block_body = java_complete_tree (block_body);
8203 /* Before we check initialization, attached all class initialization
8204 variable to the block_body */
8205 htab_traverse (DECL_FUNCTION_INIT_TEST_TABLE (mdecl),
8206 attach_init_test_initialization_flags, block_body);
8208 if (! METHOD_NATIVE (mdecl))
8210 check_for_initialization (block_body, mdecl);
8212 /* Go through all the flags marking the initialization of
8213 static variables and see whether they're definitively
8214 assigned, in which case the type is remembered as
8215 definitively initialized in MDECL. */
8216 if (STATIC_CLASS_INIT_OPT_P ())
8218 /* Always register the context as properly initialized in
8219 MDECL. This used with caution helps removing extra
8220 initialization of self. */
8221 if (METHOD_STATIC (mdecl))
8223 *(htab_find_slot
8224 (DECL_FUNCTION_INITIALIZED_CLASS_TABLE (mdecl),
8225 DECL_CONTEXT (mdecl), INSERT)) = DECL_CONTEXT (mdecl);
8229 ctxp->explicit_constructor_p = 0;
8232 BLOCK_EXPR_BODY (fbody) = block_body;
8234 /* If we saw a return but couldn't evaluate it properly, we'll have
8235 an error_mark_node here. */
8236 if (block_body != error_mark_node
8237 && (block_body == NULL_TREE || CAN_COMPLETE_NORMALLY (block_body))
8238 && TREE_CODE (TREE_TYPE (TREE_TYPE (mdecl))) != VOID_TYPE)
8239 missing_return_error (current_function_decl);
8241 /* See if we can get rid of <clinit> if MDECL happens to be <clinit> */
8242 maybe_yank_clinit (mdecl);
8244 /* Pop the current level, with special measures if we found errors. */
8245 if (java_error_count)
8246 pushdecl_force_head (DECL_ARGUMENTS (mdecl));
8247 poplevel (1, 0, 1);
8249 /* Pop the exceptions and sanity check */
8250 POP_EXCEPTIONS();
8251 if (currently_caught_type_list)
8252 abort ();
8255 /* For with each class for which there's code to generate. */
8257 static void
8258 java_expand_method_bodies (tree class)
8260 tree decl;
8261 for (decl = TYPE_METHODS (class); decl; decl = TREE_CHAIN (decl))
8263 tree block;
8265 if (! DECL_FUNCTION_BODY (decl))
8266 continue;
8268 current_function_decl = decl;
8270 block = BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (decl));
8272 /* Save the function body for gimplify and inlining. */
8273 DECL_SAVED_TREE (decl) = block;
8275 /* It's time to assign the variable flagging static class
8276 initialization based on which classes invoked static methods
8277 are definitely initializing. This should be flagged. */
8278 if (STATIC_CLASS_INIT_OPT_P ())
8280 tree list = DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (decl);
8281 for (; list != NULL_TREE; list = TREE_CHAIN (list))
8283 /* Executed for each statement calling a static function.
8284 LIST is a TREE_LIST whose PURPOSE is the called function
8285 and VALUE is a compound whose second operand can be patched
8286 with static class initialization flag assignments. */
8288 tree called_method = TREE_PURPOSE (list);
8289 tree compound = TREE_VALUE (list);
8290 tree assignment_compound_list
8291 = build_tree_list (called_method, NULL);
8293 /* For each class definitely initialized in
8294 CALLED_METHOD, fill ASSIGNMENT_COMPOUND with
8295 assignment to the class initialization flag. */
8296 htab_traverse (DECL_FUNCTION_INITIALIZED_CLASS_TABLE (called_method),
8297 emit_test_initialization,
8298 assignment_compound_list);
8300 if (TREE_VALUE (assignment_compound_list))
8301 TREE_OPERAND (compound, 1)
8302 = TREE_VALUE (assignment_compound_list);
8306 /* Expand the function body. */
8307 source_end_java_method ();
8313 /* This section of the code deals with accessing enclosing context
8314 fields either directly by using the relevant access to this$<n> or
8315 by invoking an access method crafted for that purpose. */
8317 /* Build the necessary access across nested class boundaries.
8318 This routine could be optimized to cache previous result
8319 (decl, current_class and returned access). When an access method
8320 needs to be generated, it always takes the form of a read. It might
8321 be later turned into a write by calling nested_field_access_fix. */
8323 static tree
8324 build_nested_field_access (tree id, tree decl)
8326 tree access = NULL_TREE;
8327 tree ctx = NULL_TREE;
8328 tree decl_ctx = DECL_CONTEXT (decl);
8329 bool is_static = FIELD_STATIC (decl);
8331 if (DECL_CONTEXT (TYPE_NAME (current_class)))
8332 ctx = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current_class)));
8334 /* For non-static fields, if the immediate enclosing context of the
8335 current class is the field decl's class or inherits from it,
8336 build the access as `this$<n>.<field>'. Note that we will break
8337 the `private' barrier if we're not emitting bytecodes. */
8338 if (!is_static
8339 && ctx
8340 && (ctx == decl_ctx || inherits_from_p (ctx, decl_ctx))
8341 && (!FIELD_PRIVATE (decl) || !flag_emit_class_files))
8343 tree thisn = build_current_thisn (current_class);
8344 access = make_qualified_primary (build_wfl_node (thisn),
8345 id, EXPR_WFL_LINECOL (id));
8347 /* Otherwise, generate and use accessor methods for the field as
8348 needed. */
8349 else
8351 int lc = EXPR_WFL_LINECOL (id);
8353 /* Now we chain the required number of calls to the access$0 to
8354 get a hold to the enclosing instance we need for a non-static
8355 field, and then we build the field access. */
8356 if (!is_static)
8357 access = build_access_to_thisn (current_class, decl_ctx, lc);
8359 /* If the field is private and we're generating bytecode, then
8360 we generate an access method. */
8361 if (FIELD_PRIVATE (decl) && flag_emit_class_files)
8363 tree name = build_nested_field_access_methods (decl);
8364 access = build_nested_field_access_expr (lc, decl_ctx,
8365 name, access, NULL_TREE);
8367 /* Otherwise we use `access$(this$<j>). ... access$(this$<i>).<field>'
8368 for non-static fields.
8369 Once again we break the `private' access rule from a foreign
8370 class. */
8371 else if (is_static)
8373 tree class_name = DECL_NAME (TYPE_NAME (decl_ctx));
8374 access
8375 = make_qualified_primary (build_wfl_node (class_name), id, lc);
8377 else
8378 access = make_qualified_primary (access, id, lc);
8381 return resolve_expression_name (access, NULL);
8384 /* Return a nonzero value if DECL describes a member access across nested
8385 class boundaries. That is, DECL is in a class that either encloses,
8386 is enclosed by or shares a common enclosing class with the class
8387 TYPE. */
8389 static int
8390 nested_member_access_p (tree type, tree decl)
8392 bool is_static = false;
8393 tree decl_type = DECL_CONTEXT (decl);
8394 tree type_root, decl_type_root;
8396 if (decl_type == type
8397 || (TREE_CODE (decl) != FIELD_DECL
8398 && TREE_CODE (decl) != VAR_DECL
8399 && TREE_CODE (decl) != FUNCTION_DECL))
8400 return 0;
8402 if (!INNER_CLASS_TYPE_P (type)
8403 && !(TREE_CODE (decl_type) == RECORD_TYPE
8404 && INNER_CLASS_TYPE_P (decl_type)))
8405 return 0;
8407 is_static = (TREE_CODE (decl) == FUNCTION_DECL)
8408 ? METHOD_STATIC (decl)
8409 : FIELD_STATIC (decl);
8411 /* If TYPE extends the declaration context of the non-static
8412 member we're trying to access, then this isn't a nested member
8413 access we need to worry about. */
8414 if (!is_static && inherits_from_p (type, decl_type))
8415 return 0;
8417 for (type_root = type;
8418 DECL_CONTEXT (TYPE_NAME (type_root));
8419 type_root = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type_root))))
8421 if (type_root == decl_type)
8422 return 1;
8425 if (TREE_CODE (decl_type) == RECORD_TYPE
8426 && INNER_CLASS_TYPE_P (decl_type))
8428 for (decl_type_root = decl_type;
8429 DECL_CONTEXT (TYPE_NAME (decl_type_root));
8430 decl_type_root
8431 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (decl_type_root))))
8433 if (decl_type_root == type)
8434 return 1;
8437 else
8438 decl_type_root = decl_type;
8440 if (type_root == decl_type_root)
8441 return 1;
8443 /* Before we give up, see whether it is a non-static field
8444 inherited from the enclosing context we are considering. */
8445 if (!DECL_CONTEXT (TYPE_NAME (type_root))
8446 && !is_static
8447 && inherits_from_p (type_root, decl_type))
8448 return 1;
8450 return 0;
8453 /* Return a nonzero value if NODE represents a cross-nested-class
8454 access that has already been expanded. As a side effect, it returns
8455 the name of the field being accessed and the argument passed to the
8456 access function, suitable for a regeneration of the access method
8457 call if necessary. */
8459 static int
8460 nested_field_expanded_access_p (tree node, tree *name, tree *arg_type,
8461 tree *arg)
8463 int identified = 0;
8465 if (TREE_CODE (node) != CALL_EXPR)
8466 return 0;
8468 /* Well, GCJ generates slightly different tree nodes when compiling
8469 to native or bytecodes. It's the case for function calls. */
8471 if (flag_emit_class_files
8472 && TREE_CODE (node) == CALL_EXPR
8473 && NESTED_FIELD_ACCESS_IDENTIFIER_P (DECL_NAME (TREE_OPERAND (node, 0))))
8474 identified = 1;
8475 else if (!flag_emit_class_files)
8477 node = TREE_OPERAND (node, 0);
8479 if (node && TREE_OPERAND (node, 0)
8480 && TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR)
8482 node = TREE_OPERAND (node, 0);
8483 if (TREE_OPERAND (node, 0)
8484 && TREE_CODE (TREE_OPERAND (node, 0)) == FUNCTION_DECL
8485 && (NESTED_FIELD_ACCESS_IDENTIFIER_P
8486 (DECL_NAME (TREE_OPERAND (node, 0)))))
8487 identified = 1;
8491 if (identified && name && arg_type && arg)
8493 tree argument = TREE_OPERAND (node, 1);
8494 *name = DECL_NAME (TREE_OPERAND (node, 0));
8496 /* The accessors for static fields do not take in a this$<n> argument,
8497 so we take the class name from the accessor's context instead. */
8498 if (argument)
8500 *arg_type = TREE_TYPE (TREE_TYPE (TREE_VALUE (argument)));
8501 *arg = TREE_VALUE (argument);
8503 else
8505 *arg_type = DECL_CONTEXT (TREE_OPERAND (node, 0));
8506 *arg = NULL_TREE;
8509 return identified;
8512 /* Detect in NODE cross-nested-class field read access and
8513 transform it into a write with RHS as an argument. This function
8514 is called from the java_complete_lhs when an assignment to a LHS can
8515 be identified. */
8517 static tree
8518 nested_field_access_fix (tree wfl, tree node, tree rhs)
8520 tree name, arg_type, arg;
8522 if (nested_field_expanded_access_p (node, &name, &arg_type, &arg))
8524 node = build_nested_field_access_expr (EXPR_WFL_LINECOL (wfl),
8525 arg_type, name, arg, rhs);
8526 return java_complete_tree (node);
8528 return NULL_TREE;
8531 /* Construct the expression that calls an access method:
8532 <type>.access$<n>(<arg1> [, <arg2>]);
8534 ARG2 can be NULL and will be omitted in that case. It will denote a
8535 read access. */
8537 static tree
8538 build_nested_field_access_expr (int lc, tree type, tree access_method_name,
8539 tree arg1, tree arg2)
8541 tree args, cn, access;
8543 if (arg1)
8544 args = build_tree_list (NULL_TREE, arg1);
8545 else
8546 args = NULL_TREE;
8548 if (arg2)
8550 if (args)
8551 args = tree_cons (NULL_TREE, arg2, args);
8552 else
8553 args = build_tree_list (NULL_TREE, arg2);
8556 access
8557 = build_method_invocation (build_wfl_node (access_method_name), args);
8558 cn = build_wfl_node (DECL_NAME (TYPE_NAME (type)));
8560 return make_qualified_primary (cn, access, lc);
8563 /* Build the name of a synthetic accessor used to access class members
8564 across nested class boundaries. */
8566 static tree
8567 build_new_access_id (void)
8569 static int access_n_counter = 1;
8570 char buffer [128];
8572 sprintf (buffer, "access$%d", access_n_counter++);
8573 return get_identifier (buffer);
8576 /* Create the static access functions for the cross-nested-class field DECL.
8577 We define a read:
8578 TREE_TYPE (<field>) access$<n> (DECL_CONTEXT (<field>) inst$) {
8579 return inst$.field;
8581 and a write access:
8582 TREE_TYPE (<field>) access$<n> (DECL_CONTEXT (<field>) inst$,
8583 TREE_TYPE (<field>) value$) {
8584 return inst$.field = value$;
8586 For static fields, these methods are generated without the instance
8587 parameter.
8588 We should have a usage flag on the DECL so we can lazily turn the ones
8589 we're using for code generation. FIXME.
8592 static tree
8593 build_nested_field_access_methods (tree decl)
8595 tree id, args, stmt, mdecl, class_name = NULL_TREE;
8596 bool is_static = FIELD_STATIC (decl);
8598 if (FIELD_NESTED_ACCESS_P (decl))
8599 return FIELD_NESTED_ACCESS (decl);
8601 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
8603 /* Create the identifier and a function named after it. */
8604 id = build_new_access_id ();
8606 /* The identifier is marked as bearing the name of a generated write
8607 access function for outer field accessed from inner classes. */
8608 NESTED_FIELD_ACCESS_IDENTIFIER_P (id) = 1;
8610 /* Create the read access. */
8611 if (!is_static)
8613 args = build_tree_list (inst_id,
8614 build_pointer_type (DECL_CONTEXT (decl)));
8615 TREE_CHAIN (args) = end_params_node;
8616 stmt = make_qualified_primary (build_wfl_node (inst_id),
8617 build_wfl_node (DECL_NAME (decl)), 0);
8619 else
8621 args = end_params_node;
8622 class_name = DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl)));
8623 stmt = make_qualified_primary (build_wfl_node (class_name),
8624 build_wfl_node (DECL_NAME (decl)), 0);
8626 stmt = build_return (0, stmt);
8627 mdecl = build_nested_field_access_method (DECL_CONTEXT (decl),
8628 TREE_TYPE (decl), id, args, stmt);
8629 DECL_FUNCTION_ACCESS_DECL (mdecl) = decl;
8631 /* Create the write access method. No write access for final variable */
8632 if (!FIELD_FINAL (decl))
8634 if (!is_static)
8636 args = build_tree_list (inst_id,
8637 build_pointer_type (DECL_CONTEXT (decl)));
8638 TREE_CHAIN (args) = build_tree_list (wpv_id, TREE_TYPE (decl));
8639 TREE_CHAIN (TREE_CHAIN (args)) = end_params_node;
8640 stmt = make_qualified_primary (build_wfl_node (inst_id),
8641 build_wfl_node (DECL_NAME (decl)),
8644 else
8646 args = build_tree_list (wpv_id, TREE_TYPE (decl));
8647 TREE_CHAIN (args) = end_params_node;
8648 stmt = make_qualified_primary (build_wfl_node (class_name),
8649 build_wfl_node (DECL_NAME (decl)),
8652 stmt = build_return (0, build_assignment (ASSIGN_TK, 0, stmt,
8653 build_wfl_node (wpv_id)));
8654 mdecl = build_nested_field_access_method (DECL_CONTEXT (decl),
8655 TREE_TYPE (decl), id,
8656 args, stmt);
8658 DECL_FUNCTION_ACCESS_DECL (mdecl) = decl;
8660 /* Return the access name */
8661 return FIELD_NESTED_ACCESS (decl) = id;
8664 /* Build a field access method NAME. */
8666 static tree
8667 build_nested_field_access_method (tree class, tree type, tree name,
8668 tree args, tree body)
8670 tree saved_current_function_decl, mdecl;
8672 /* Create the method */
8673 mdecl = create_artificial_method (class, ACC_STATIC, type, name, args);
8674 fix_method_argument_names (args, mdecl);
8675 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8677 /* Attach the method body. */
8678 saved_current_function_decl = current_function_decl;
8679 start_artificial_method_body (mdecl);
8680 java_method_add_stmt (mdecl, body);
8681 end_artificial_method_body (mdecl);
8682 current_function_decl = saved_current_function_decl;
8684 return mdecl;
8688 /* This section deals with building access function necessary for
8689 certain kinds of method invocation across nested class boundaries. */
8691 static tree
8692 build_nested_method_access_method (tree decl)
8694 tree saved_current_function_decl, mdecl;
8695 tree args = NULL_TREE, call_args = NULL_TREE;
8696 tree carg, id, body, class;
8697 char buffer [80];
8698 int parm_id_count = 0;
8700 /* Test this abort with an access to a private field */
8701 if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "access$"))
8702 abort ();
8704 /* Check the cache first */
8705 if (DECL_FUNCTION_INNER_ACCESS (decl))
8706 return DECL_FUNCTION_INNER_ACCESS (decl);
8708 class = DECL_CONTEXT (decl);
8710 /* Obtain an access identifier and mark it */
8711 id = build_new_access_id ();
8712 NESTED_FIELD_ACCESS_IDENTIFIER_P (id) = 1;
8714 carg = TYPE_ARG_TYPES (TREE_TYPE (decl));
8715 /* Create the arguments, as much as the original */
8716 for (; carg && carg != end_params_node;
8717 carg = TREE_CHAIN (carg))
8719 sprintf (buffer, "write_parm_value$%d", parm_id_count++);
8720 args = chainon (args, build_tree_list (get_identifier (buffer),
8721 TREE_VALUE (carg)));
8723 args = chainon (args, end_params_node);
8725 /* Create the method */
8726 mdecl = create_artificial_method (class, ACC_STATIC,
8727 TREE_TYPE (TREE_TYPE (decl)), id, args);
8728 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8729 /* There is a potential bug here. We should be able to use
8730 fix_method_argument_names, but then arg names get mixed up and
8731 eventually a constructor will have its this$0 altered and the
8732 outer context won't be assignment properly. The testcase is
8733 stub.java FIXME */
8734 TYPE_ARG_TYPES (TREE_TYPE (mdecl)) = args;
8736 /* Attach the method body. */
8737 saved_current_function_decl = current_function_decl;
8738 start_artificial_method_body (mdecl);
8740 /* The actual method invocation uses the same args. When invoking a
8741 static methods that way, we don't want to skip the first argument. */
8742 carg = args;
8743 if (!METHOD_STATIC (decl))
8744 carg = TREE_CHAIN (carg);
8745 for (; carg && carg != end_params_node; carg = TREE_CHAIN (carg))
8746 call_args = tree_cons (NULL_TREE, build_wfl_node (TREE_PURPOSE (carg)),
8747 call_args);
8749 body = build_method_invocation (build_wfl_node (DECL_NAME (decl)),
8750 call_args);
8751 if (!METHOD_STATIC (decl))
8752 body = make_qualified_primary (build_wfl_node (TREE_PURPOSE (args)),
8753 body, 0);
8754 if (TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
8755 body = build_return (0, body);
8756 java_method_add_stmt (mdecl,body);
8757 end_artificial_method_body (mdecl);
8758 current_function_decl = saved_current_function_decl;
8760 /* Back tag the access function so it know what it accesses. */
8761 DECL_FUNCTION_ACCESS_DECL (decl) = mdecl;
8763 /* Tag the current method so it knows it has an access generated. */
8764 return DECL_FUNCTION_INNER_ACCESS (decl) = mdecl;
8768 /* This section of the code deals with building expressions to access
8769 the enclosing instance of an inner class. The enclosing instance is
8770 kept in a generated field called this$<n>, with <n> being the
8771 inner class nesting level (starting from 0.) */
8773 /* Build an access to a given this$<n>, always chaining access call to
8774 others. Access methods to this$<n> are build on the fly if
8775 necessary. This CAN'T be used to solely access this$<n-1> from
8776 this$<n> (which alway yield to special cases and optimization, see
8777 for example build_nested_field_access). */
8779 static tree
8780 build_access_to_thisn (tree from, tree to, int lc)
8782 tree access = NULL_TREE;
8784 while (from != to && PURE_INNER_CLASS_TYPE_P (from))
8786 if (!access)
8788 access = build_current_thisn (from);
8789 access = build_wfl_node (access);
8791 else
8793 tree access0_wfl, cn;
8795 maybe_build_thisn_access_method (from);
8796 access0_wfl = build_wfl_node (access0_identifier_node);
8797 cn = build_wfl_node (DECL_NAME (TYPE_NAME (from)));
8798 EXPR_WFL_LINECOL (access0_wfl) = lc;
8799 access = build_tree_list (NULL_TREE, access);
8800 access = build_method_invocation (access0_wfl, access);
8801 access = make_qualified_primary (cn, access, lc);
8804 /* If FROM isn't an inner class, that's fine, we've done enough.
8805 What we're looking for can be accessed from there. */
8806 from = DECL_CONTEXT (TYPE_NAME (from));
8807 if (!from)
8808 break;
8809 from = TREE_TYPE (from);
8811 return access;
8814 /* Build an access function to the this$<n> local to TYPE. NULL_TREE
8815 is returned if nothing needs to be generated. Otherwise, the method
8816 generated and a method decl is returned.
8818 NOTE: These generated methods should be declared in a class file
8819 attribute so that they can't be referred to directly. */
8821 static tree
8822 maybe_build_thisn_access_method (tree type)
8824 tree mdecl, args, stmt, rtype;
8825 tree saved_current_function_decl;
8827 /* If TYPE is a top-level class, no access method is required.
8828 If there already is such an access method, bail out. */
8829 if (CLASS_ACCESS0_GENERATED_P (type) || !PURE_INNER_CLASS_TYPE_P (type))
8830 return NULL_TREE;
8832 /* We generate the method. The method looks like:
8833 static <outer_of_type> access$0 (<type> inst$) { return inst$.this$<n>; }
8835 args = build_tree_list (inst_id, build_pointer_type (type));
8836 TREE_CHAIN (args) = end_params_node;
8837 rtype = build_pointer_type (TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))));
8838 mdecl = create_artificial_method (type, ACC_STATIC, rtype,
8839 access0_identifier_node, args);
8840 fix_method_argument_names (args, mdecl);
8841 layout_class_method (type, NULL_TREE, mdecl, NULL_TREE);
8842 stmt = build_current_thisn (type);
8843 stmt = make_qualified_primary (build_wfl_node (inst_id),
8844 build_wfl_node (stmt), 0);
8845 stmt = build_return (0, stmt);
8847 saved_current_function_decl = current_function_decl;
8848 start_artificial_method_body (mdecl);
8849 java_method_add_stmt (mdecl, stmt);
8850 end_artificial_method_body (mdecl);
8851 current_function_decl = saved_current_function_decl;
8853 CLASS_ACCESS0_GENERATED_P (type) = 1;
8855 return mdecl;
8858 /* Craft an correctly numbered `this$<n>'string. this$0 is used for
8859 the first level of innerclassing. this$1 for the next one, etc...
8860 This function can be invoked with TYPE to NULL, available and then
8861 has to count the parser context. */
8863 static GTY(()) tree saved_thisn;
8864 static GTY(()) tree saved_type;
8866 static tree
8867 build_current_thisn (tree type)
8869 static int saved_i = -1;
8870 static int saved_type_i = 0;
8871 tree decl;
8872 char buffer [24];
8873 int i = 0;
8875 if (type)
8877 if (type == saved_type)
8878 i = saved_type_i;
8879 else
8881 for (i = -1, decl = DECL_CONTEXT (TYPE_NAME (type));
8882 decl; decl = DECL_CONTEXT (decl), i++)
8885 saved_type = type;
8886 saved_type_i = i;
8889 else
8890 i = list_length (GET_CPC_LIST ())-2;
8892 if (i == saved_i)
8893 return saved_thisn;
8895 sprintf (buffer, "this$%d", i);
8896 saved_i = i;
8897 saved_thisn = get_identifier (buffer);
8898 return saved_thisn;
8901 /* Return the assignment to the hidden enclosing context `this$<n>'
8902 by the second incoming parameter to the innerclass constructor. The
8903 form used is `this.this$<n> = this$<n>;'. */
8905 static tree
8906 build_thisn_assign (void)
8908 if (current_class && PURE_INNER_CLASS_TYPE_P (current_class))
8910 tree thisn = build_current_thisn (current_class);
8911 tree lhs = make_qualified_primary (build_wfl_node (this_identifier_node),
8912 build_wfl_node (thisn), 0);
8913 tree rhs = build_wfl_node (thisn);
8914 #ifdef USE_MAPPED_LOCATION
8915 SET_EXPR_LOCATION (lhs, input_location);
8916 #else
8917 EXPR_WFL_SET_LINECOL (lhs, input_line, 0);
8918 #endif
8919 return build_assignment (ASSIGN_TK, EXPR_WFL_LINECOL (lhs), lhs, rhs);
8921 return NULL_TREE;
8925 /* Building the synthetic `class$' used to implement the `.class' 1.1
8926 extension for non primitive types. This method looks like:
8928 static Class class$(String type) throws NoClassDefFoundError
8930 try {return (java.lang.Class.forName (String));}
8931 catch (ClassNotFoundException e) {
8932 throw new NoClassDefFoundError(e.getMessage());}
8933 } */
8935 static GTY(()) tree get_message_wfl;
8936 static GTY(()) tree type_parm_wfl;
8938 static tree
8939 build_dot_class_method (tree class)
8941 #define BWF(S) build_wfl_node (get_identifier ((S)))
8942 #ifdef USE_MAPPED_LOCATION
8943 #define MQN(X,Y) make_qualified_name ((X), (Y), UNKNOWN_LOCATION)
8944 #else
8945 #define MQN(X,Y) make_qualified_name ((X), (Y), 0)
8946 #endif
8947 tree args, tmp, saved_current_function_decl, mdecl, qual_name;
8948 tree stmt, throw_stmt;
8950 if (!get_message_wfl)
8952 get_message_wfl = build_wfl_node (get_identifier ("getMessage"));
8953 type_parm_wfl = build_wfl_node (get_identifier ("type$"));
8956 /* Build the arguments */
8957 args = build_tree_list (get_identifier ("type$"),
8958 build_pointer_type (string_type_node));
8959 TREE_CHAIN (args) = end_params_node;
8961 /* Build the qualified name java.lang.Class.forName */
8962 tmp = MQN (MQN (MQN (BWF ("java"),
8963 BWF ("lang")), BWF ("Class")), BWF ("forName"));
8965 /* Create the "class$" function */
8966 mdecl = create_artificial_method (class, ACC_STATIC,
8967 build_pointer_type (class_type_node),
8968 classdollar_identifier_node, args);
8969 qual_name = MQN (MQN (BWF ("java"), BWF ("lang")),
8970 BWF ("NoClassDefFoundError"));
8971 DECL_FUNCTION_THROWS (mdecl) = build_tree_list (NULL_TREE, qual_name);
8972 register_incomplete_type (JDEP_EXCEPTION, qual_name, NULL_TREE, NULL_TREE);
8973 JDEP_GET_PATCH (CLASSD_LAST (ctxp->classd_list)) =
8974 &TREE_VALUE (DECL_FUNCTION_THROWS (mdecl));
8976 /* We start by building the try block. We need to build:
8977 return (java.lang.Class.forName (type)); */
8978 stmt = build_method_invocation (tmp,
8979 build_tree_list (NULL_TREE, type_parm_wfl));
8980 stmt = build_return (0, stmt);
8982 /* Now onto the catch block. We start by building the expression
8983 throwing a new exception: throw new NoClassDefFoundError (_.getMessage) */
8984 #ifdef USE_MAPPED_LOCATION
8985 throw_stmt = make_qualified_name (build_wfl_node (wpv_id),
8986 get_message_wfl, UNKNOWN_LOCATION);
8987 #else
8988 throw_stmt = make_qualified_name (build_wfl_node (wpv_id),
8989 get_message_wfl, 0);
8990 #endif
8991 throw_stmt = build_method_invocation (throw_stmt, NULL_TREE);
8993 /* Build new NoClassDefFoundError (_.getMessage) */
8994 throw_stmt = build_new_invocation
8995 (build_wfl_node (get_identifier ("NoClassDefFoundError")),
8996 build_tree_list (build_pointer_type (string_type_node), throw_stmt));
8998 /* Build the throw, (it's too early to use BUILD_THROW) */
8999 throw_stmt = build1 (THROW_EXPR, NULL_TREE, throw_stmt);
9001 /* Encapsulate STMT in a try block. The catch clause executes THROW_STMT */
9002 qual_name = MQN (MQN (BWF ("java"), BWF ("lang")),
9003 BWF ("ClassNotFoundException"));
9004 stmt = encapsulate_with_try_catch (0, qual_name, stmt, throw_stmt);
9006 fix_method_argument_names (args, mdecl);
9007 layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
9008 saved_current_function_decl = current_function_decl;
9009 start_artificial_method_body (mdecl);
9010 java_method_add_stmt (mdecl, stmt);
9011 end_artificial_method_body (mdecl);
9012 current_function_decl = saved_current_function_decl;
9013 TYPE_DOT_CLASS (class) = mdecl;
9015 return mdecl;
9018 static tree
9019 build_dot_class_method_invocation (tree this_class, tree type)
9021 tree dot_class_method = TYPE_DOT_CLASS (this_class);
9022 tree sig_id, s, t;
9024 if (TYPE_ARRAY_P (type))
9025 sig_id = build_java_signature (type);
9026 else
9027 sig_id = DECL_NAME (TYPE_NAME (type));
9029 /* Ensure that the proper name separator is used */
9030 sig_id = unmangle_classname (IDENTIFIER_POINTER (sig_id),
9031 IDENTIFIER_LENGTH (sig_id));
9033 s = build_string (IDENTIFIER_LENGTH (sig_id),
9034 IDENTIFIER_POINTER (sig_id));
9035 t = build_method_invocation (build_wfl_node (DECL_NAME (dot_class_method)),
9036 build_tree_list (NULL_TREE, s));
9037 if (DECL_CONTEXT (dot_class_method) != this_class)
9039 tree class_name = DECL_NAME (TYPE_NAME (DECL_CONTEXT (dot_class_method)));
9040 t = make_qualified_primary (build_wfl_node (class_name), t, 0);
9042 return t;
9045 /* This section of the code deals with constructor. */
9047 /* Craft a body for default constructor. Patch existing constructor
9048 bodies with call to super() and field initialization statements if
9049 necessary. */
9051 static void
9052 fix_constructors (tree mdecl)
9054 tree iii; /* Instance Initializer Invocation */
9055 tree *bodyp = &DECL_FUNCTION_BODY (mdecl);
9056 tree thisn_assign, compound = NULL_TREE;
9057 tree class_type = DECL_CONTEXT (mdecl);
9059 if (DECL_FIXED_CONSTRUCTOR_P (mdecl))
9060 return;
9061 DECL_FIXED_CONSTRUCTOR_P (mdecl) = 1;
9063 if (!*bodyp)
9065 /* It is an error for the compiler to generate a default
9066 constructor if the superclass doesn't have a constructor that
9067 takes no argument, or the same args for an anonymous class */
9068 tree sdecl = get_constructor_super (mdecl);
9069 if (sdecl == NULL_TREE)
9071 tree sclass_decl = TYPE_NAME (CLASSTYPE_SUPER (class_type));
9072 tree save = DECL_NAME (mdecl);
9073 const char *n = IDENTIFIER_POINTER (DECL_NAME (sclass_decl));
9074 DECL_NAME (mdecl) = DECL_NAME (sclass_decl);
9075 parse_error_context
9076 (lookup_cl (TYPE_NAME (class_type)),
9077 "No constructor matching %qs found in class %qs",
9078 lang_printable_name (mdecl, 2), n);
9079 DECL_NAME (mdecl) = save;
9082 if (ANONYMOUS_CLASS_P (class_type))
9084 /* Copy throws clause from the super constructor. */
9085 tree throws = DECL_FUNCTION_THROWS (sdecl);
9086 DECL_FUNCTION_THROWS (mdecl) = copy_list (throws);
9089 /* The constructor body must be crafted by hand. It's the
9090 constructor we defined when we realize we didn't have the
9091 CLASSNAME() constructor */
9092 start_artificial_method_body (mdecl);
9094 /* Insert an assignment to the this$<n> hidden field, if
9095 necessary */
9096 if ((thisn_assign = build_thisn_assign ()))
9097 java_method_add_stmt (mdecl, thisn_assign);
9099 /* We don't generate a super constructor invocation if we're
9100 compiling java.lang.Object. build_super_invocation takes care
9101 of that. */
9102 java_method_add_stmt (mdecl, build_super_invocation (mdecl));
9104 /* FIXME */
9105 if ((iii = build_instinit_invocation (class_type)))
9106 java_method_add_stmt (mdecl, iii);
9108 end_artificial_method_body (mdecl);
9110 /* Search for an explicit constructor invocation */
9111 else
9113 int found = 0;
9114 int invokes_this = 0;
9115 tree main_block = BLOCK_EXPR_BODY (*bodyp);
9117 while (*bodyp)
9119 tree body = *bodyp;
9120 switch (TREE_CODE (body))
9122 case CALL_EXPR:
9123 found = CALL_EXPLICIT_CONSTRUCTOR_P (body);
9124 if (CALL_THIS_CONSTRUCTOR_P (body))
9125 invokes_this = 1;
9126 break;
9127 case COMPOUND_EXPR:
9128 case EXPR_WITH_FILE_LOCATION:
9129 bodyp = &TREE_OPERAND (body, 0);
9130 continue;
9131 case BLOCK:
9132 bodyp = &BLOCK_EXPR_BODY (body);
9133 continue;
9134 default:
9135 break;
9137 break;
9140 /* Generate the assignment to this$<n>, if necessary */
9141 if ((thisn_assign = build_thisn_assign ()))
9142 compound = add_stmt_to_compound (compound, NULL_TREE, thisn_assign);
9144 /* The constructor is missing an invocation of super() */
9145 if (!found)
9146 compound = add_stmt_to_compound (compound, NULL_TREE,
9147 build_super_invocation (mdecl));
9148 /* Explicit super() invocation should take place before the
9149 instance initializer blocks. */
9150 else
9152 compound = add_stmt_to_compound (compound, NULL_TREE, *bodyp);
9153 *bodyp = build_java_empty_stmt ();
9156 DECL_INIT_CALLS_THIS (mdecl) = invokes_this;
9158 /* Insert the instance initializer block right after. */
9159 if (!invokes_this && (iii = build_instinit_invocation (class_type)))
9160 compound = add_stmt_to_compound (compound, NULL_TREE, iii);
9162 /* Fix the constructor main block if we're adding extra stmts */
9163 if (compound)
9165 compound = add_stmt_to_compound (compound, NULL_TREE,
9166 BLOCK_EXPR_BODY (main_block));
9167 BLOCK_EXPR_BODY (main_block) = compound;
9172 /* Browse constructors in the super class, searching for a constructor
9173 that doesn't take any argument. Return the constructor if one is found,
9174 NULL_TREE otherwise. If the current class is an anonymous inner class,
9175 look for something that has the same signature. */
9176 static tree
9177 get_constructor_super (tree mdecl)
9179 tree class = CLASSTYPE_SUPER (current_class);
9180 int super_inner = PURE_INNER_CLASS_TYPE_P (class);
9181 tree sdecl;
9183 if (!class)
9184 return NULL_TREE;
9186 if (ANONYMOUS_CLASS_P (current_class))
9188 tree mdecl_arg_type;
9189 SKIP_THIS_AND_ARTIFICIAL_PARMS (mdecl_arg_type, mdecl);
9190 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
9191 if (DECL_CONSTRUCTOR_P (sdecl))
9193 tree m_arg_type;
9194 tree arg_type = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
9195 if (super_inner)
9196 arg_type = TREE_CHAIN (arg_type);
9197 for (m_arg_type = mdecl_arg_type;
9198 (arg_type != end_params_node
9199 && m_arg_type != end_params_node);
9200 arg_type = TREE_CHAIN (arg_type),
9201 m_arg_type = TREE_CHAIN (m_arg_type))
9202 if (!valid_method_invocation_conversion_p
9203 (TREE_VALUE (arg_type),
9204 TREE_VALUE (m_arg_type)))
9205 break;
9207 if (arg_type == end_params_node && m_arg_type == end_params_node)
9208 return sdecl;
9211 else
9213 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
9215 tree arg = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
9216 if (super_inner)
9217 arg = TREE_CHAIN (arg);
9218 if (DECL_CONSTRUCTOR_P (sdecl) && arg == end_params_node)
9219 return sdecl;
9222 return NULL_TREE;
9225 /* Generate code for all context remembered for code generation. */
9227 static GTY(()) tree reversed_class_list;
9228 void
9229 java_expand_classes (void)
9231 int save_error_count = 0;
9232 static struct parser_ctxt *cur_ctxp = NULL;
9233 location_t save_location;
9235 java_parse_abort_on_error ();
9236 if (!(ctxp = ctxp_for_generation))
9237 return;
9238 java_layout_classes ();
9239 java_parse_abort_on_error ();
9240 save_location = input_location;
9242 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9244 tree current;
9245 for (current = cur_ctxp->class_list;
9246 current;
9247 current = TREE_CHAIN (current))
9248 gen_indirect_dispatch_tables (TREE_TYPE (current));
9251 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9253 ctxp = cur_ctxp;
9254 input_location = ctxp->file_start_location;
9255 lang_init_source (2); /* Error msgs have method prototypes */
9256 java_complete_expand_classes (); /* Complete and expand classes */
9257 java_parse_abort_on_error ();
9259 input_location = save_location;
9261 /* Find anonymous classes and expand their constructor. This extra pass is
9262 necessary because the constructor itself is only generated when the
9263 method in which it is defined is expanded. */
9264 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9266 tree current;
9267 ctxp = cur_ctxp;
9268 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9270 output_class = current_class = TREE_TYPE (current);
9271 if (ANONYMOUS_CLASS_P (current_class))
9273 tree d;
9274 for (d = TYPE_METHODS (current_class); d; d = TREE_CHAIN (d))
9276 if (DECL_CONSTRUCTOR_P (d))
9278 java_complete_expand_method (d);
9279 break; /* There is only one constructor. */
9286 /* Expanding the constructors of anonymous classes generates access
9287 methods. Scan all the methods looking for null DECL_RESULTs --
9288 this will be the case if a method hasn't been expanded. */
9289 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9291 tree current;
9292 ctxp = cur_ctxp;
9293 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9295 tree d;
9296 output_class = current_class = TREE_TYPE (current);
9297 for (d = TYPE_METHODS (current_class); d; d = TREE_CHAIN (d))
9299 if (DECL_RESULT (d) == NULL_TREE)
9300 java_complete_expand_method (d);
9305 /* ??? Instead of all this we could iterate around the list of
9306 classes until there were no more un-expanded methods. It would
9307 take a little longer -- one pass over the whole list of methods
9308 -- but it would be simpler. Like this: */
9309 #if 0
9311 int something_changed;
9315 something_changed = 0;
9316 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9318 tree current;
9319 ctxp = cur_ctxp;
9320 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9322 tree d;
9323 output_class = current_class = TREE_TYPE (current);
9324 for (d = TYPE_METHODS (current_class); d; d = TREE_CHAIN (d))
9326 if (DECL_RESULT (d) == NULL_TREE)
9328 something_changed = 1;
9329 java_complete_expand_method (d);
9335 while (something_changed);
9337 #endif
9339 /* If we've found error at that stage, don't try to generate
9340 anything, unless we're checking the syntax only
9341 (but not using -fsyntax-only for the purpose of generating
9342 bytecode). */
9343 if (java_error_count
9344 && (!flag_syntax_only && !flag_emit_class_files))
9345 return;
9347 /* Now things are stable, go for generation of the class data. */
9349 /* We pessimistically marked all methods and fields external until
9350 we knew what set of classes we were planning to compile. Now mark
9351 those that will be generated locally as not external. */
9352 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9354 tree current;
9355 ctxp = cur_ctxp;
9356 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9357 java_mark_class_local (TREE_TYPE (current));
9360 /* Compile the classes. */
9361 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9363 tree current;
9364 reversed_class_list = NULL;
9366 ctxp = cur_ctxp;
9368 /* We write out the classes in reverse order. This ensures that
9369 inner classes are written before their containing classes,
9370 which is important for parallel builds. Otherwise, the
9371 class file for the outer class may be found, but the class
9372 file for the inner class may not be present. In that
9373 situation, the compiler cannot fall back to the original
9374 source, having already read the outer class, so we must
9375 prevent that situation. */
9376 for (current = ctxp->class_list;
9377 current;
9378 current = TREE_CHAIN (current))
9379 reversed_class_list
9380 = tree_cons (NULL_TREE, current, reversed_class_list);
9382 for (current = reversed_class_list;
9383 current;
9384 current = TREE_CHAIN (current))
9386 output_class = current_class = TREE_TYPE (TREE_VALUE (current));
9387 if (flag_emit_class_files)
9388 write_classfile (current_class);
9389 else if (! flag_syntax_only)
9390 java_expand_method_bodies (current_class);
9395 void
9396 java_finish_classes (void)
9398 static struct parser_ctxt *cur_ctxp = NULL;
9399 for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9401 tree current;
9402 ctxp = cur_ctxp;
9403 for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9405 output_class = current_class = TREE_TYPE (current);
9406 finish_class ();
9411 /* Wrap non WFL PRIMARY around a WFL and set EXPR_WFL_QUALIFICATION to
9412 a tree list node containing RIGHT. Fore coming RIGHTs will be
9413 chained to this hook. LOCATION contains the location of the
9414 separating `.' operator. */
9416 static tree
9417 make_qualified_primary (tree primary, tree right, int location)
9419 tree wfl;
9421 if (TREE_CODE (primary) != EXPR_WITH_FILE_LOCATION)
9422 wfl = build_wfl_wrap (primary, location);
9423 else
9425 wfl = primary;
9426 /* If wfl wasn't qualified, we build a first anchor */
9427 if (!EXPR_WFL_QUALIFICATION (wfl))
9428 EXPR_WFL_QUALIFICATION (wfl) = build_tree_list (wfl, NULL_TREE);
9431 /* And chain them */
9432 EXPR_WFL_LINECOL (right) = location;
9433 chainon (EXPR_WFL_QUALIFICATION (wfl), build_tree_list (right, NULL_TREE));
9434 PRIMARY_P (wfl) = 1;
9435 return wfl;
9438 /* Simple merge of two name separated by a `.' */
9440 static tree
9441 merge_qualified_name (tree left, tree right)
9443 tree node;
9444 if (!left && !right)
9445 return NULL_TREE;
9447 if (!left)
9448 return right;
9450 if (!right)
9451 return left;
9453 obstack_grow (&temporary_obstack, IDENTIFIER_POINTER (left),
9454 IDENTIFIER_LENGTH (left));
9455 obstack_1grow (&temporary_obstack, '.');
9456 obstack_grow0 (&temporary_obstack, IDENTIFIER_POINTER (right),
9457 IDENTIFIER_LENGTH (right));
9458 node = get_identifier (obstack_base (&temporary_obstack));
9459 obstack_free (&temporary_obstack, obstack_base (&temporary_obstack));
9460 QUALIFIED_P (node) = 1;
9461 return node;
9464 /* Merge the two parts of a qualified name into LEFT. Set the
9465 location information of the resulting node to LOCATION, usually
9466 inherited from the location information of the `.' operator. */
9468 static tree
9469 make_qualified_name (tree left, tree right,
9470 #ifdef USE_MAPPED_LOCATION
9471 source_location location
9472 #else
9473 int location
9474 #endif
9477 #ifdef USE_COMPONENT_REF
9478 tree node = build3 (COMPONENT_REF, NULL_TREE, left, right, NULL_TREE);
9479 SET_EXPR_LOCATION (node, location);
9480 return node;
9481 #else
9482 tree left_id = EXPR_WFL_NODE (left);
9483 tree right_id = EXPR_WFL_NODE (right);
9484 tree wfl, merge;
9486 merge = merge_qualified_name (left_id, right_id);
9488 /* Left wasn't qualified and is now qualified */
9489 #ifdef USE_MAPPED_LOCATION
9490 if (!QUALIFIED_P (left_id))
9492 tree wfl = build_expr_wfl (left_id, EXPR_LOCATION (left));
9493 EXPR_WFL_QUALIFICATION (left) = build_tree_list (wfl, NULL_TREE);
9496 wfl = build_expr_wfl (right_id, location);
9497 #else
9498 if (!QUALIFIED_P (left_id))
9500 tree wfl = build_expr_wfl (left_id, ctxp->filename, 0, 0);
9501 EXPR_WFL_LINECOL (wfl) = EXPR_WFL_LINECOL (left);
9502 EXPR_WFL_QUALIFICATION (left) = build_tree_list (wfl, NULL_TREE);
9505 wfl = build_expr_wfl (right_id, ctxp->filename, 0, 0);
9506 EXPR_WFL_LINECOL (wfl) = location;
9507 #endif
9508 chainon (EXPR_WFL_QUALIFICATION (left), build_tree_list (wfl, NULL_TREE));
9509 EXPR_WFL_NODE (left) = merge;
9510 return left;
9511 #endif
9514 /* Extract the last identifier component of the qualified in WFL. The
9515 last identifier is removed from the linked list */
9517 static tree
9518 cut_identifier_in_qualified (tree wfl)
9520 tree q;
9521 tree previous = NULL_TREE;
9522 for (q = EXPR_WFL_QUALIFICATION (wfl); ; previous = q, q = TREE_CHAIN (q))
9523 if (!TREE_CHAIN (q))
9525 if (!previous)
9526 /* Operating on a non qualified qualified WFL. */
9527 abort ();
9529 TREE_CHAIN (previous) = NULL_TREE;
9530 return TREE_PURPOSE (q);
9534 /* Resolve the expression name NAME. Return its decl. */
9536 static tree
9537 resolve_expression_name (tree id, tree *orig)
9539 tree name = EXPR_WFL_NODE (id);
9540 tree decl;
9542 /* 6.5.5.1: Simple expression names */
9543 if (!PRIMARY_P (id) && !QUALIFIED_P (name))
9545 /* 15.13.1: NAME can appear within the scope of a local variable
9546 declaration */
9547 if ((decl = IDENTIFIER_LOCAL_VALUE (name)))
9548 return decl;
9550 /* 15.13.1: NAME can appear within a class declaration */
9551 else
9553 decl = lookup_field_wrapper (current_class, name);
9554 if (decl)
9556 tree access = NULL_TREE;
9557 int fs = FIELD_STATIC (decl);
9559 /* If we're accessing an outer scope local alias, make
9560 sure we change the name of the field we're going to
9561 build access to. */
9562 if (FIELD_LOCAL_ALIAS_USED (decl))
9563 name = DECL_NAME (decl);
9565 check_deprecation (id, decl);
9567 /* Instance variable (8.3.1.1) can't appear within
9568 static method, static initializer or initializer for
9569 a static variable. */
9570 if (!fs && METHOD_STATIC (current_function_decl))
9572 static_ref_err (id, name, current_class);
9573 return error_mark_node;
9575 /* Instance variables can't appear as an argument of
9576 an explicit constructor invocation */
9577 if (!fs && ctxp->explicit_constructor_p
9578 && !enclosing_context_p (DECL_CONTEXT (decl), current_class))
9580 parse_error_context
9581 (id, "Can't reference %qs before the superclass constructor has been called", IDENTIFIER_POINTER (name));
9582 return error_mark_node;
9585 /* If we're processing an inner class and we're trying
9586 to access a field belonging to an outer class, build
9587 the access to the field.
9588 As usual, we have to treat initialized static final
9589 variables as a special case. */
9590 if (nested_member_access_p (current_class, decl)
9591 && ! (JDECL_P (decl) && CLASS_FINAL_VARIABLE_P (decl)
9592 && DECL_INITIAL (decl) != NULL_TREE
9593 && (JSTRING_TYPE_P (TREE_TYPE (decl))
9594 || JNUMERIC_TYPE_P (TREE_TYPE (decl)))
9595 && TREE_CONSTANT (DECL_INITIAL (decl))))
9597 if (!fs && CLASS_STATIC (TYPE_NAME (current_class)))
9599 static_ref_err (id, DECL_NAME (decl), current_class);
9600 return error_mark_node;
9602 access = build_nested_field_access (id, decl);
9603 if (orig)
9604 *orig = access;
9605 return access;
9608 /* Otherwise build what it takes to access the field */
9609 access = build_field_ref ((fs ? NULL_TREE : current_this),
9610 DECL_CONTEXT (decl), name);
9611 if (fs)
9612 access = maybe_build_class_init_for_field (decl, access);
9613 /* We may be asked to save the real field access node */
9614 if (orig)
9615 *orig = access;
9616 /* Last check: can we access the field? */
9617 if (not_accessible_p (current_class, decl, NULL_TREE, 0))
9619 not_accessible_field_error (id, decl);
9620 return error_mark_node;
9622 /* And we return what we got */
9623 return access;
9625 /* Fall down to error report on undefined variable */
9628 /* 6.5.5.2 Qualified Expression Names */
9629 else
9631 if (orig)
9632 *orig = NULL_TREE;
9633 qualify_ambiguous_name (id);
9634 /* 15.10.1 Field Access Using a Primary and/or Expression Name */
9635 /* 15.10.2: Accessing Superclass Members using super */
9636 return resolve_field_access (id, orig, NULL);
9639 /* We've got an error here */
9640 if (INNER_CLASS_TYPE_P (current_class))
9641 parse_error_context (id,
9642 "Local variable %qs can't be accessed from within the inner class %qs unless it is declared final",
9643 IDENTIFIER_POINTER (name),
9644 IDENTIFIER_POINTER (DECL_NAME
9645 (TYPE_NAME (current_class))));
9646 else
9647 parse_error_context (id, "Undefined variable %qs",
9648 IDENTIFIER_POINTER (name));
9650 return error_mark_node;
9653 static void
9654 static_ref_err (tree wfl, tree field_id, tree class_type)
9656 parse_error_context
9657 (wfl,
9658 "Can't make a static reference to nonstatic variable %qs in class %qs",
9659 IDENTIFIER_POINTER (field_id),
9660 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (class_type))));
9663 /* 15.10.1 Field Access Using a Primary and/or Expression Name.
9664 We return something suitable to generate the field access. We also
9665 return the field decl in FIELD_DECL and its type in FIELD_TYPE. If
9666 recipient's address can be null. */
9668 static tree
9669 resolve_field_access (tree qual_wfl, tree *field_decl, tree *field_type)
9671 int is_static = 0;
9672 tree field_ref;
9673 tree decl = NULL_TREE, where_found, type_found;
9675 if (resolve_qualified_expression_name (qual_wfl, &decl,
9676 &where_found, &type_found))
9677 return error_mark_node;
9679 /* Resolve the LENGTH field of an array here */
9680 if (DECL_P (decl) && DECL_NAME (decl) == length_identifier_node
9681 && type_found && TYPE_ARRAY_P (type_found)
9682 && ! flag_emit_class_files)
9684 tree length = build_java_array_length_access (where_found);
9685 field_ref = length;
9687 /* In case we're dealing with a static array, we need to
9688 initialize its class before the array length can be fetched. */
9689 if (TREE_CODE (where_found) == VAR_DECL && FIELD_STATIC (where_found))
9691 build_static_field_ref (where_found);
9692 field_ref = build_class_init (DECL_CONTEXT (where_found), field_ref);
9695 /* We might have been trying to resolve field.method(). In which
9696 case, the resolution is over and decl is the answer */
9697 else if (JDECL_P (decl) && IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) == decl)
9698 field_ref = decl;
9699 else if (JDECL_P (decl))
9701 if (!type_found)
9702 type_found = DECL_CONTEXT (decl);
9703 is_static = FIELD_STATIC (decl);
9704 field_ref = build_field_ref ((is_static ?
9705 NULL_TREE : where_found),
9706 type_found, DECL_NAME (decl));
9707 if (field_ref == error_mark_node)
9708 return error_mark_node;
9709 if (is_static)
9710 field_ref = maybe_build_class_init_for_field (decl, field_ref);
9712 /* If we're looking at a static field, we may need to generate a
9713 class initialization for it. This can happen when the access
9714 looks like `field.ref', where `field' is a static field in an
9715 interface we implement. */
9716 if (!flag_emit_class_files
9717 && TREE_CODE (where_found) == VAR_DECL
9718 && FIELD_STATIC (where_found))
9720 build_static_field_ref (where_found);
9721 field_ref = build_class_init (DECL_CONTEXT (where_found), field_ref);
9724 else
9725 field_ref = decl;
9727 if (field_decl)
9728 *field_decl = decl;
9729 if (field_type)
9730 *field_type = (QUAL_DECL_TYPE (decl) ?
9731 QUAL_DECL_TYPE (decl) : TREE_TYPE (decl));
9732 return field_ref;
9735 /* If NODE is an access to a static field, strip out the class
9736 initialization part and return the field decl, otherwise, return
9737 NODE. */
9739 tree
9740 extract_field_decl (tree node)
9742 if (TREE_CODE (node) == COMPOUND_EXPR)
9744 tree op1 = TREE_OPERAND (node, 1);
9745 if (TREE_CODE (op1) == COMPOUND_EXPR)
9747 tree call = TREE_OPERAND (op1, 0);
9748 if (TREE_CODE (call) == CALL_EXPR
9749 && TREE_CODE (TREE_OPERAND (call, 0)) == ADDR_EXPR
9750 && (TREE_OPERAND (TREE_OPERAND (call, 0), 0)
9751 == soft_initclass_node))
9752 return TREE_OPERAND (op1, 1);
9754 else if (JDECL_P (op1))
9755 return op1;
9757 return node;
9760 /* 6.5.5.2: Qualified Expression Names */
9762 static int
9763 resolve_qualified_expression_name (tree wfl, tree *found_decl,
9764 tree *where_found, tree *type_found)
9766 int from_type = 0; /* Field search initiated from a type */
9767 int from_super = 0, from_cast = 0, from_qualified_this = 0;
9768 int previous_call_static = 0;
9769 int is_static;
9770 tree decl = NULL_TREE, type = NULL_TREE, q;
9771 /* For certain for of inner class instantiation */
9772 tree saved_current, saved_this;
9773 #define RESTORE_THIS_AND_CURRENT_CLASS \
9774 { current_class = saved_current; current_this = saved_this;}
9776 *type_found = *where_found = NULL_TREE;
9778 for (q = EXPR_WFL_QUALIFICATION (wfl); q; q = TREE_CHAIN (q))
9780 tree qual_wfl = QUAL_WFL (q);
9781 tree ret_decl; /* for EH checking */
9782 #ifdef USE_MAPPED_LOCATION
9783 source_location location; /* for EH checking */
9784 #else
9785 int location; /* for EH checking */
9786 #endif
9788 /* 15.10.1 Field Access Using a Primary */
9789 switch (TREE_CODE (qual_wfl))
9791 case CALL_EXPR:
9792 case NEW_CLASS_EXPR:
9793 /* If the access to the function call is a non static field,
9794 build the code to access it. */
9795 if (JDECL_P (decl) && !FIELD_STATIC (decl))
9797 decl = maybe_access_field (decl, *where_found,
9798 DECL_CONTEXT (decl));
9799 if (decl == error_mark_node)
9800 return 1;
9803 /* And code for the function call */
9804 if (complete_function_arguments (qual_wfl))
9805 return 1;
9807 /* We might have to setup a new current class and a new this
9808 for the search of an inner class, relative to the type of
9809 a expression resolved as `decl'. The current values are
9810 saved and restored shortly after */
9811 saved_current = current_class;
9812 saved_this = current_this;
9813 if (decl
9814 && (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR
9815 || from_qualified_this))
9817 /* If we still have `from_qualified_this', we have the form
9818 <T>.this.f() and we need to build <T>.this */
9819 if (from_qualified_this)
9821 decl = build_access_to_thisn (current_class, type, 0);
9822 decl = java_complete_tree (decl);
9823 type = TREE_TYPE (TREE_TYPE (decl));
9825 current_class = type;
9826 current_this = decl;
9827 from_qualified_this = 0;
9830 if (from_super && TREE_CODE (qual_wfl) == CALL_EXPR)
9831 CALL_USING_SUPER (qual_wfl) = 1;
9832 #ifdef USE_MAPPED_LOCATION
9833 location = (TREE_CODE (qual_wfl) == CALL_EXPR
9834 ? EXPR_LOCATION (TREE_OPERAND (qual_wfl, 0))
9835 : UNKNOWN_LOCATION);
9836 #else
9837 location = (TREE_CODE (qual_wfl) == CALL_EXPR ?
9838 EXPR_WFL_LINECOL (TREE_OPERAND (qual_wfl, 0)) : 0);
9839 #endif
9840 *where_found = patch_method_invocation (qual_wfl, decl, type,
9841 from_super,
9842 &is_static, &ret_decl);
9843 from_super = 0;
9844 if (*where_found == error_mark_node)
9846 RESTORE_THIS_AND_CURRENT_CLASS;
9847 return 1;
9849 *type_found = type = QUAL_DECL_TYPE (*where_found);
9851 *where_found = force_evaluation_order (*where_found);
9853 /* If we're creating an inner class instance, check for that
9854 an enclosing instance is in scope */
9855 if (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR
9856 && INNER_ENCLOSING_SCOPE_CHECK (type))
9858 parse_error_context
9859 (qual_wfl, "No enclosing instance for inner class %qs is in scope%s",
9860 lang_printable_name (type, 0),
9861 (!current_this ? "" :
9862 "; an explicit one must be provided when creating this inner class"));
9863 RESTORE_THIS_AND_CURRENT_CLASS;
9864 return 1;
9867 /* In case we had to change then to resolve a inner class
9868 instantiation using a primary qualified by a `new' */
9869 RESTORE_THIS_AND_CURRENT_CLASS;
9871 #ifdef USE_MAPPED_LOCATION
9872 if (location != UNKNOWN_LOCATION)
9873 #else
9874 if (location)
9875 #endif
9877 tree arguments = NULL_TREE;
9878 if (TREE_CODE (qual_wfl) == CALL_EXPR
9879 && TREE_OPERAND (qual_wfl, 1) != NULL_TREE)
9880 arguments = TREE_VALUE (TREE_OPERAND (qual_wfl, 1));
9881 check_thrown_exceptions (location, ret_decl, arguments);
9884 /* If the previous call was static and this one is too,
9885 build a compound expression to hold the two (because in
9886 that case, previous function calls aren't transported as
9887 forcoming function's argument. */
9888 if (previous_call_static && is_static)
9890 /* We must set CAN_COMPLETE_NORMALLY for the first call
9891 since it is done nowhere else. */
9892 CAN_COMPLETE_NORMALLY (decl) = 1;
9893 decl = build2 (COMPOUND_EXPR, TREE_TYPE (*where_found),
9894 decl, *where_found);
9895 TREE_SIDE_EFFECTS (decl) = 1;
9897 else
9899 previous_call_static = is_static;
9900 decl = *where_found;
9902 from_type = 0;
9903 continue;
9905 case NEW_ARRAY_EXPR:
9906 case NEW_ANONYMOUS_ARRAY_EXPR:
9907 *where_found = decl = java_complete_tree (qual_wfl);
9908 if (decl == error_mark_node)
9909 return 1;
9910 *type_found = type = QUAL_DECL_TYPE (decl);
9911 continue;
9913 case CONVERT_EXPR:
9914 *where_found = decl = java_complete_tree (qual_wfl);
9915 if (decl == error_mark_node)
9916 return 1;
9917 *type_found = type = QUAL_DECL_TYPE (decl);
9918 from_cast = 1;
9919 continue;
9921 case CONDITIONAL_EXPR:
9922 case STRING_CST:
9923 case MODIFY_EXPR:
9924 *where_found = decl = java_complete_tree (qual_wfl);
9925 if (decl == error_mark_node)
9926 return 1;
9927 *type_found = type = QUAL_DECL_TYPE (decl);
9928 continue;
9930 case ARRAY_REF:
9931 /* If the access to the function call is a non static field,
9932 build the code to access it. */
9933 if (JDECL_P (decl) && !FIELD_STATIC (decl))
9935 decl = maybe_access_field (decl, *where_found, type);
9936 if (decl == error_mark_node)
9937 return 1;
9939 /* And code for the array reference expression */
9940 decl = java_complete_tree (qual_wfl);
9941 if (decl == error_mark_node)
9942 return 1;
9943 type = QUAL_DECL_TYPE (decl);
9944 continue;
9946 case PLUS_EXPR:
9947 if ((decl = java_complete_tree (qual_wfl)) == error_mark_node)
9948 return 1;
9949 if ((type = patch_string (decl)))
9950 decl = type;
9951 *where_found = QUAL_RESOLUTION (q) = decl;
9952 *type_found = type = TREE_TYPE (decl);
9953 break;
9955 case CLASS_LITERAL:
9956 if ((decl = java_complete_tree (qual_wfl)) == error_mark_node)
9957 return 1;
9958 *where_found = QUAL_RESOLUTION (q) = decl;
9959 *type_found = type = TREE_TYPE (decl);
9960 break;
9962 default:
9963 /* Fix for -Wall Just go to the next statement. Don't
9964 continue */
9965 break;
9968 /* If we fall here, we weren't processing a (static) function call. */
9969 previous_call_static = 0;
9971 /* It can be the keyword THIS */
9972 if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION
9973 && EXPR_WFL_NODE (qual_wfl) == this_identifier_node)
9975 if (!current_this)
9977 parse_error_context
9978 (wfl, "Keyword %<this%> used outside allowed context");
9979 return 1;
9981 if (ctxp->explicit_constructor_p
9982 && type == current_class)
9984 parse_error_context (wfl, "Can't reference %<this%> before the superclass constructor has been called");
9985 return 1;
9987 /* We have to generate code for intermediate access */
9988 if (!from_type || TREE_TYPE (TREE_TYPE (current_this)) == type)
9990 *where_found = decl = current_this;
9991 *type_found = type = QUAL_DECL_TYPE (decl);
9993 /* We're trying to access the this from somewhere else. Make sure
9994 it's allowed before doing so. */
9995 else
9997 if (!enclosing_context_p (type, current_class))
9999 char *p = xstrdup (lang_printable_name (type, 0));
10000 parse_error_context (qual_wfl, "Can't use variable %<%s.this%>: type %qs isn't an outer type of type %qs",
10001 p, p,
10002 lang_printable_name (current_class, 0));
10003 free (p);
10004 return 1;
10006 from_qualified_this = 1;
10007 /* If there's nothing else after that, we need to
10008 produce something now, otherwise, the section of the
10009 code that needs to produce <T>.this will generate
10010 what is necessary. */
10011 if (!TREE_CHAIN (q))
10013 decl = build_access_to_thisn (current_class, type, 0);
10014 *where_found = decl = java_complete_tree (decl);
10015 *type_found = type = TREE_TYPE (decl);
10019 from_type = 0;
10020 continue;
10023 /* 15.10.2 Accessing Superclass Members using SUPER */
10024 if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION
10025 && EXPR_WFL_NODE (qual_wfl) == super_identifier_node)
10027 tree node;
10028 /* Check on the restricted use of SUPER */
10029 if (METHOD_STATIC (current_function_decl)
10030 || current_class == object_type_node)
10032 parse_error_context
10033 (wfl, "Keyword %<super%> used outside allowed context");
10034 return 1;
10036 /* Otherwise, treat SUPER as (SUPER_CLASS)THIS */
10037 node = build_cast (EXPR_WFL_LINECOL (qual_wfl),
10038 CLASSTYPE_SUPER (current_class),
10039 build_this (EXPR_WFL_LINECOL (qual_wfl)));
10040 *where_found = decl = java_complete_tree (node);
10041 if (decl == error_mark_node)
10042 return 1;
10043 *type_found = type = QUAL_DECL_TYPE (decl);
10044 from_super = from_type = 1;
10045 continue;
10048 /* 15.13.1: Can't search for field name in packages, so we
10049 assume a variable/class name was meant. */
10050 if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
10052 tree name;
10053 if ((decl = resolve_package (wfl, &q, &name)))
10055 tree list;
10056 *where_found = decl;
10058 check_pkg_class_access (DECL_NAME (decl), qual_wfl, true, NULL);
10060 /* We want to be absolutely sure that the class is laid
10061 out. We're going to search something inside it. */
10062 *type_found = type = TREE_TYPE (decl);
10063 layout_class (type);
10064 from_type = 1;
10066 /* Fix them all the way down, if any are left. */
10067 if (q)
10069 list = TREE_CHAIN (q);
10070 while (list)
10072 RESOLVE_PACKAGE_NAME_P (QUAL_WFL (list)) = 0;
10073 list = TREE_CHAIN (list);
10077 else
10079 if (from_super || from_cast)
10080 parse_error_context
10081 ((from_cast ? qual_wfl : wfl),
10082 "No variable %qs defined in class %qs",
10083 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
10084 lang_printable_name (type, 0));
10085 else
10086 parse_error_context
10087 (qual_wfl, "Undefined variable or class name: %qs",
10088 IDENTIFIER_POINTER (name));
10089 return 1;
10093 /* We have a type name. It's been already resolved when the
10094 expression was qualified. */
10095 else if (RESOLVE_TYPE_NAME_P (qual_wfl) && QUAL_RESOLUTION (q))
10097 decl = QUAL_RESOLUTION (q);
10099 /* Sneak preview. If next we see a `new', we're facing a
10100 qualification which resulted in a type being selected
10101 instead of a field. Report the error. */
10102 if(TREE_CHAIN (q)
10103 && TREE_CODE (TREE_PURPOSE (TREE_CHAIN (q))) == NEW_CLASS_EXPR)
10105 parse_error_context (qual_wfl, "Undefined variable %qs",
10106 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10107 return 1;
10110 check_pkg_class_access (DECL_NAME (decl), qual_wfl, true, NULL);
10112 check_deprecation (qual_wfl, decl);
10114 type = TREE_TYPE (decl);
10115 from_type = 1;
10117 /* We resolve an expression name */
10118 else
10120 tree field_decl = NULL_TREE;
10122 /* If there exists an early resolution, use it. That occurs
10123 only once and we know that there are more things to
10124 come. Don't do that when processing something after SUPER
10125 (we need more thing to be put in place below */
10126 if (!from_super && QUAL_RESOLUTION (q))
10128 decl = QUAL_RESOLUTION (q);
10129 if (!type)
10131 if (TREE_CODE (decl) == FIELD_DECL
10132 || TREE_CODE (decl) == VAR_DECL)
10134 if (TREE_CODE (decl) == FIELD_DECL
10135 && !FIELD_STATIC (decl))
10137 if (current_this)
10138 *where_found = current_this;
10139 else
10141 static_ref_err (qual_wfl, DECL_NAME (decl),
10142 current_class);
10143 return 1;
10146 else
10148 *where_found = TREE_TYPE (decl);
10149 if (TREE_CODE (*where_found) == POINTER_TYPE)
10150 *where_found = TREE_TYPE (*where_found);
10152 if (nested_member_access_p (current_class, decl))
10153 decl = build_nested_field_access (qual_wfl, decl);
10155 else
10157 *where_found = TREE_TYPE (decl);
10158 if (TREE_CODE (*where_found) == POINTER_TYPE)
10159 *where_found = TREE_TYPE (*where_found);
10164 /* Report and error if we're using a numerical literal as a
10165 qualifier. It can only be an INTEGER_CST. */
10166 else if (TREE_CODE (qual_wfl) == INTEGER_CST)
10168 parse_error_context
10169 (wfl, "Can't use type %qs as a qualifier",
10170 lang_printable_name (TREE_TYPE (qual_wfl), 0));
10171 return 1;
10174 /* We have to search for a field, knowing the type of its
10175 container. The flag FROM_TYPE indicates that we resolved
10176 the last member of the expression as a type name, which
10177 means that for the resolution of this field, we'll look
10178 for other errors than if it was resolved as a member of
10179 an other field. */
10180 else
10182 int is_static;
10183 tree field_decl_type; /* For layout */
10185 if (!from_type && !JREFERENCE_TYPE_P (type))
10187 parse_error_context
10188 (qual_wfl, "Attempt to reference field %qs in %<%s %s%>",
10189 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
10190 lang_printable_name (type, 0),
10191 IDENTIFIER_POINTER (DECL_NAME (decl)));
10192 return 1;
10195 field_decl = lookup_field_wrapper (type,
10196 EXPR_WFL_NODE (qual_wfl));
10198 /* Maybe what we're trying to access to is an inner
10199 class, only if decl is a TYPE_DECL. */
10200 if (!field_decl && TREE_CODE (decl) == TYPE_DECL)
10202 tree ptr, inner_decl;
10204 BUILD_PTR_FROM_NAME (ptr, EXPR_WFL_NODE (qual_wfl));
10205 inner_decl = resolve_class (decl, ptr, NULL_TREE, qual_wfl);
10206 if (inner_decl)
10208 check_inner_class_access (inner_decl, decl, qual_wfl);
10209 type = TREE_TYPE (inner_decl);
10210 decl = inner_decl;
10211 from_type = 1;
10212 continue;
10216 if (field_decl == NULL_TREE)
10218 parse_error_context
10219 (qual_wfl, "No variable %qs defined in type %qs",
10220 IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
10221 GET_TYPE_NAME (type));
10222 return 1;
10224 if (field_decl == error_mark_node)
10225 return 1;
10227 /* Layout the type of field_decl, since we may need
10228 it. Don't do primitive types or loaded classes. The
10229 situation of non primitive arrays may not handled
10230 properly here. FIXME */
10231 if (TREE_CODE (TREE_TYPE (field_decl)) == POINTER_TYPE)
10232 field_decl_type = TREE_TYPE (TREE_TYPE (field_decl));
10233 else
10234 field_decl_type = TREE_TYPE (field_decl);
10235 if (!JPRIMITIVE_TYPE_P (field_decl_type)
10236 && !CLASS_LOADED_P (field_decl_type)
10237 && !TYPE_ARRAY_P (field_decl_type))
10238 resolve_and_layout (field_decl_type, NULL_TREE);
10240 /* Check on accessibility here */
10241 if (not_accessible_p (current_class, field_decl,
10242 *type_found, from_super))
10243 return not_accessible_field_error (qual_wfl,field_decl);
10244 check_deprecation (qual_wfl, field_decl);
10246 /* There are things to check when fields are accessed
10247 from type. There are no restrictions on a static
10248 declaration of the field when it is accessed from an
10249 interface */
10250 is_static = FIELD_STATIC (field_decl);
10251 if (!from_super && from_type
10252 && !TYPE_INTERFACE_P (type)
10253 && !is_static
10254 && (current_function_decl
10255 && METHOD_STATIC (current_function_decl)))
10257 static_ref_err (qual_wfl, EXPR_WFL_NODE (qual_wfl), type);
10258 return 1;
10260 from_cast = from_super = 0;
10262 /* If it's an access from a type but isn't static, we
10263 make it relative to `this'. */
10264 if (!is_static && from_type)
10265 decl = current_this;
10267 /* If we need to generate something to get a proper
10268 handle on what this field is accessed from, do it
10269 now. */
10270 if (!is_static)
10272 decl = maybe_access_field (decl, *where_found, *type_found);
10273 if (decl == error_mark_node)
10274 return 1;
10277 /* We want to keep the location where we found it, and the
10278 type we found. */
10279 *where_found = decl;
10280 *type_found = type;
10282 /* Generate the correct expression for field access from
10283 qualified this */
10284 if (from_qualified_this)
10286 field_decl
10287 = build_nested_field_access (qual_wfl, field_decl);
10288 from_qualified_this = 0;
10291 /* If needed, generate accessors for static field access. */
10292 if (is_static
10293 && FIELD_PRIVATE (field_decl)
10294 && flag_emit_class_files
10295 && nested_member_access_p (current_class, field_decl))
10296 field_decl = build_nested_field_access (qual_wfl, field_decl);
10298 /* This is the decl found and eventually the next one to
10299 search from */
10300 decl = field_decl;
10302 from_type = 0;
10303 type = QUAL_DECL_TYPE (decl);
10305 /* Sneak preview. If decl is qualified by a `new', report
10306 the error here to be accurate on the peculiar construct */
10307 if (TREE_CHAIN (q)
10308 && TREE_CODE (TREE_PURPOSE (TREE_CHAIN (q))) == NEW_CLASS_EXPR
10309 && !JREFERENCE_TYPE_P (type))
10311 parse_error_context (qual_wfl, "Attempt to reference field %<new%> in a %qs",
10312 lang_printable_name (type, 0));
10313 return 1;
10316 /* `q' might have changed due to a after package resolution
10317 re-qualification */
10318 if (!q)
10319 break;
10321 *found_decl = decl;
10322 return 0;
10325 /* 6.6 Qualified name and access control. Returns 1 if MEMBER (a decl)
10326 can't be accessed from REFERENCE (a record type). If MEMBER
10327 features a protected access, we then use WHERE which, if non null,
10328 holds the type of MEMBER's access that is checked against
10329 6.6.2.1. This function should be used when decl is a field or a
10330 method. */
10332 static int
10333 not_accessible_p (tree reference, tree member, tree where, int from_super)
10335 int access_flag = get_access_flags_from_decl (member);
10336 bool is_static = false;
10338 if (TREE_CODE (member) == FIELD_DECL ||
10339 TREE_CODE (member) == VAR_DECL)
10340 is_static = FIELD_STATIC (member);
10341 else
10342 is_static = METHOD_STATIC (member);
10344 /* Access always granted for members declared public */
10345 if (access_flag & ACC_PUBLIC)
10346 return 0;
10348 /* Check access on protected members */
10349 if (access_flag & ACC_PROTECTED)
10351 /* Access granted if it occurs from within the package
10352 containing the class in which the protected member is
10353 declared */
10354 if (class_in_current_package (DECL_CONTEXT (member)))
10355 return 0;
10357 /* If accessed with the form `super.member', then access is granted */
10358 if (from_super)
10359 return 0;
10361 /* If WHERE is active, access was made through a qualifier. For
10362 non-static members, access is granted if the type of the qualifier
10363 is or is a sublass of the type the access is made from (6.6.2.1.) */
10364 if (where && !is_static)
10366 while (reference)
10368 if (inherits_from_p (where, reference))
10369 return 0;
10370 if (INNER_CLASS_TYPE_P (reference))
10371 reference = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (reference)));
10372 else
10373 break;
10375 return 1;
10378 /* Otherwise, access is granted if occurring from within the class
10379 where member is declared, or a subclass of it. */
10380 while (reference)
10382 if (inherits_from_p (reference, DECL_CONTEXT (member)))
10383 return 0;
10384 if (INNER_CLASS_TYPE_P (reference))
10385 reference = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (reference)));
10386 else
10387 break;
10389 return 1;
10392 /* Check access on private members. Access is granted only if it
10393 occurs from within the class in which it is declared -- that does
10394 it for innerclasses too. */
10395 if (access_flag & ACC_PRIVATE)
10397 if (reference == DECL_CONTEXT (member) ||
10398 common_enclosing_context_p (DECL_CONTEXT (member), reference))
10399 return 0;
10400 return 1;
10403 /* Default access is permitted only when occurring from within the
10404 package in which the context (MEMBER) is declared. */
10405 return !class_in_current_package (DECL_CONTEXT (member));
10408 /* Test deprecated decl access. */
10409 static void
10410 check_deprecation (tree wfl, tree decl)
10412 const char *file;
10413 tree elt;
10415 if (! warn_deprecated)
10416 return;
10418 /* We want to look at the element type of arrays here, so we strip
10419 all surrounding array types. */
10420 if (TYPE_ARRAY_P (TREE_TYPE (decl)))
10422 elt = TREE_TYPE (decl);
10423 while (TYPE_ARRAY_P (elt))
10424 elt = TYPE_ARRAY_ELEMENT (elt);
10425 /* We'll end up with a pointer type, so we use TREE_TYPE to go
10426 to the record. */
10427 decl = TYPE_NAME (TREE_TYPE (elt));
10429 file = DECL_SOURCE_FILE (decl);
10431 /* Complain if the field is deprecated and the file it was defined
10432 in isn't compiled at the same time the file which contains its
10433 use is */
10434 if (DECL_DEPRECATED (decl)
10435 && !IS_A_COMMAND_LINE_FILENAME_P (get_identifier (file)))
10437 const char *the;
10438 switch (TREE_CODE (decl))
10440 case FUNCTION_DECL:
10441 the = "method";
10442 break;
10443 case FIELD_DECL:
10444 case VAR_DECL:
10445 the = "field";
10446 break;
10447 case TYPE_DECL:
10448 parse_warning_context (wfl, "The class %qs has been deprecated",
10449 IDENTIFIER_POINTER (DECL_NAME (decl)));
10450 return;
10451 default:
10452 abort ();
10454 /* Don't issue a message if the context as been deprecated as a
10455 whole. */
10456 if (! CLASS_DEPRECATED (TYPE_NAME (DECL_CONTEXT (decl))))
10457 parse_warning_context
10458 (wfl, "The %s %qs in class %qs has been deprecated",
10459 the, lang_printable_name (decl, 0),
10460 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl)))));
10464 /* Returns 1 if class was declared in the current package, 0 otherwise */
10466 static int
10467 class_in_current_package (tree class)
10469 if (TYPE_PACKAGE (current_class) == TYPE_PACKAGE (class))
10470 return 1;
10471 return 0;
10474 /* This function may generate code to access DECL from WHERE. This is
10475 done only if certain conditions meet. */
10477 static tree
10478 maybe_access_field (tree decl, tree where, tree type)
10480 if (TREE_CODE (decl) == FIELD_DECL && decl != current_this
10481 && !FIELD_STATIC (decl))
10482 decl = build_field_ref (where ? where : current_this,
10483 (type ? type : DECL_CONTEXT (decl)),
10484 DECL_NAME (decl));
10485 return decl;
10488 /* Build a method invocation, by patching PATCH. If non NULL
10489 and according to the situation, PRIMARY and WHERE may be
10490 used. IS_STATIC is set to 1 if the invoked function is static. */
10492 static tree
10493 patch_method_invocation (tree patch, tree primary, tree where, int from_super,
10494 int *is_static, tree *ret_decl)
10496 tree wfl = TREE_OPERAND (patch, 0);
10497 tree args = TREE_OPERAND (patch, 1);
10498 tree name = EXPR_WFL_NODE (wfl);
10499 tree list;
10500 int is_static_flag = 0;
10501 int is_super_init = 0;
10502 tree this_arg = NULL_TREE;
10503 int is_array_clone_call = 0;
10505 /* Should be overridden if everything goes well. Otherwise, if
10506 something fails, it should keep this value. It stop the
10507 evaluation of a bogus assignment. See java_complete_tree,
10508 MODIFY_EXPR: for the reasons why we sometimes want to keep on
10509 evaluating an assignment */
10510 TREE_TYPE (patch) = error_mark_node;
10512 /* Since lookup functions are messing with line numbers, save the
10513 context now. */
10514 java_parser_context_save_global ();
10516 /* 15.11.1: Compile-Time Step 1: Determine Class or Interface to Search */
10518 /* Resolution of qualified name, excluding constructors */
10519 if (QUALIFIED_P (name) && !CALL_CONSTRUCTOR_P (patch))
10521 tree identifier, identifier_wfl, type, resolved;
10522 /* Extract the last IDENTIFIER of the qualified
10523 expression. This is a wfl and we will use it's location
10524 data during error report. */
10525 identifier_wfl = cut_identifier_in_qualified (wfl);
10526 identifier = EXPR_WFL_NODE (identifier_wfl);
10528 /* Given the context, IDENTIFIER is syntactically qualified
10529 as a MethodName. We need to qualify what's before */
10530 qualify_ambiguous_name (wfl);
10531 resolved = resolve_field_access (wfl, NULL, NULL);
10533 if (TREE_CODE (resolved) == VAR_DECL && FIELD_STATIC (resolved)
10534 && FIELD_FINAL (resolved)
10535 && !inherits_from_p (DECL_CONTEXT (resolved), current_class)
10536 && !flag_emit_class_files)
10537 resolved = build_class_init (DECL_CONTEXT (resolved), resolved);
10539 if (resolved == error_mark_node)
10540 PATCH_METHOD_RETURN_ERROR ();
10542 type = GET_SKIP_TYPE (resolved);
10543 resolve_and_layout (type, NULL_TREE);
10545 if (JPRIMITIVE_TYPE_P (type))
10547 parse_error_context
10548 (identifier_wfl,
10549 "Can't invoke a method on primitive type %qs",
10550 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
10551 PATCH_METHOD_RETURN_ERROR ();
10554 list = lookup_method_invoke (0, identifier_wfl, type, identifier, args);
10555 args = nreverse (args);
10557 /* We're resolving a call from a type */
10558 if (TREE_CODE (resolved) == TYPE_DECL)
10560 if (CLASS_INTERFACE (resolved))
10562 parse_error_context
10563 (identifier_wfl,
10564 "Can't make static reference to method %qs in interface %qs",
10565 IDENTIFIER_POINTER (identifier),
10566 IDENTIFIER_POINTER (name));
10567 PATCH_METHOD_RETURN_ERROR ();
10569 if (list)
10571 if (METHOD_STATIC (list))
10572 maybe_use_access_method (0, &list, NULL);
10573 else
10575 char *fct_name = xstrdup (lang_printable_name (list, 2));
10576 parse_error_context
10577 (identifier_wfl,
10578 "Can't make static reference to method %<%s %s%> in class %qs",
10579 lang_printable_name (TREE_TYPE (TREE_TYPE (list)), 0),
10580 fct_name,
10581 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
10582 free (fct_name);
10583 PATCH_METHOD_RETURN_ERROR ();
10587 else
10588 this_arg = primary = resolved;
10590 if (TYPE_ARRAY_P (type) && identifier == get_identifier ("clone"))
10591 is_array_clone_call = 1;
10593 /* IDENTIFIER_WFL will be used to report any problem further */
10594 wfl = identifier_wfl;
10596 /* Resolution of simple names, names generated after a primary: or
10597 constructors */
10598 else
10600 tree class_to_search = NULL_TREE;
10601 int lc; /* Looking for Constructor */
10603 /* We search constructor in their target class */
10604 if (CALL_CONSTRUCTOR_P (patch))
10606 if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10607 class_to_search = EXPR_WFL_NODE (wfl);
10608 else if (EXPR_WFL_NODE (TREE_OPERAND (patch, 0)) ==
10609 this_identifier_node)
10610 class_to_search = NULL_TREE;
10611 else if (EXPR_WFL_NODE (TREE_OPERAND (patch, 0)) ==
10612 super_identifier_node)
10614 is_super_init = 1;
10615 if (CLASSTYPE_SUPER (current_class))
10616 class_to_search =
10617 DECL_NAME (TYPE_NAME (CLASSTYPE_SUPER (current_class)));
10618 else
10620 parse_error_context (wfl, "Can't invoke super constructor on java.lang.Object");
10621 PATCH_METHOD_RETURN_ERROR ();
10625 /* Class to search is NULL if we're searching the current one */
10626 if (class_to_search)
10628 class_to_search = resolve_and_layout (class_to_search, wfl);
10630 if (!class_to_search)
10632 parse_error_context
10633 (wfl, "Class %qs not found in type declaration",
10634 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10635 PATCH_METHOD_RETURN_ERROR ();
10638 /* Can't instantiate an abstract class, but we can
10639 invoke it's constructor. It's use within the `new'
10640 context is denied here. */
10641 if (CLASS_ABSTRACT (class_to_search)
10642 && TREE_CODE (patch) == NEW_CLASS_EXPR)
10644 parse_error_context
10645 (wfl, "Class %qs is an abstract class. It can't be instantiated",
10646 IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10647 PATCH_METHOD_RETURN_ERROR ();
10650 class_to_search = TREE_TYPE (class_to_search);
10652 else
10653 class_to_search = current_class;
10654 lc = 1;
10656 /* This is a regular search in the local class, unless an
10657 alternate class is specified. */
10658 else
10660 if (where != NULL_TREE)
10661 class_to_search = where;
10662 else if (QUALIFIED_P (name))
10663 class_to_search = current_class;
10664 else
10666 class_to_search = current_class;
10668 for (;;)
10670 if (has_method (class_to_search, name))
10671 break;
10672 if (! INNER_CLASS_TYPE_P (class_to_search))
10674 parse_error_context (wfl,
10675 "No method named %qs in scope",
10676 IDENTIFIER_POINTER (name));
10677 PATCH_METHOD_RETURN_ERROR ();
10679 class_to_search
10680 = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class_to_search)));
10683 lc = 0;
10686 /* NAME is a simple identifier or comes from a primary. Search
10687 in the class whose declaration contain the method being
10688 invoked. */
10689 resolve_and_layout (class_to_search, NULL_TREE);
10691 list = lookup_method_invoke (lc, wfl, class_to_search, name, args);
10692 /* Don't continue if no method were found, as the next statement
10693 can't be executed then. */
10694 if (!list)
10695 PATCH_METHOD_RETURN_ERROR ();
10697 if (TYPE_ARRAY_P (class_to_search)
10698 && DECL_NAME (list) == get_identifier ("clone"))
10699 is_array_clone_call = 1;
10701 /* Check for static reference of non static methods. */
10702 if (check_for_static_method_reference (wfl, patch, list,
10703 class_to_search, primary))
10704 PATCH_METHOD_RETURN_ERROR ();
10706 /* Check for inner classes creation from illegal contexts */
10707 if (lc && (INNER_CLASS_TYPE_P (class_to_search)
10708 && !CLASS_STATIC (TYPE_NAME (class_to_search)))
10709 && INNER_ENCLOSING_SCOPE_CHECK (class_to_search)
10710 && !DECL_INIT_P (current_function_decl))
10712 parse_error_context
10713 (wfl, "No enclosing instance for inner class %qs is in scope%s",
10714 lang_printable_name (class_to_search, 0),
10715 (!current_this ? "" :
10716 "; an explicit one must be provided when creating this inner class"));
10717 PATCH_METHOD_RETURN_ERROR ();
10720 /* Non static methods are called with the current object extra
10721 argument. If PATCH is a `new TYPE()', the argument is the value
10722 returned by the object allocator. If method is resolved as a
10723 primary, use the primary otherwise use the current THIS. */
10724 args = nreverse (args);
10725 if (TREE_CODE (patch) != NEW_CLASS_EXPR)
10727 this_arg = primary ? primary : current_this;
10729 /* If we're using an access method, things are different.
10730 There are two family of cases:
10732 1) We're not generating bytecodes:
10734 - LIST is non-static. Its invocation is transformed from
10735 x(a1,...,an) into this$<n>.x(a1,....an).
10736 - LIST is static. Its invocation is transformed from
10737 x(a1,...,an) into TYPE_OF(this$<n>).x(a1,....an)
10739 2) We're generating bytecodes:
10741 - LIST is non-static. Its invocation is transformed from
10742 x(a1,....,an) into access$<n>(this$<n>,a1,...,an).
10743 - LIST is static. Its invocation is transformed from
10744 x(a1,....,an) into TYPE_OF(this$<n>).x(a1,....an).
10746 Of course, this$<n> can be arbitrarily complex, ranging from
10747 this$0 (the immediate outer context) to
10748 access$0(access$0(...(this$0))).
10750 maybe_use_access_method returns a nonzero value if the
10751 this_arg has to be moved into the (then generated) stub
10752 argument list. In the meantime, the selected function
10753 might have been replaced by a generated stub. */
10754 if (METHOD_STATIC (list))
10755 maybe_use_access_method (0, &list, NULL);
10756 else if (!primary &&
10757 maybe_use_access_method (is_super_init, &list, &this_arg))
10759 args = tree_cons (NULL_TREE, this_arg, args);
10760 this_arg = NULL_TREE; /* So it doesn't get chained twice */
10765 /* Merge point of all resolution schemes. If we have nothing, this
10766 is an error, already signaled */
10767 if (!list)
10768 PATCH_METHOD_RETURN_ERROR ();
10770 /* Check accessibility, position the is_static flag, build and
10771 return the call */
10772 if (not_accessible_p (DECL_CONTEXT (current_function_decl), list,
10773 (primary ? TREE_TYPE (TREE_TYPE (primary)) :
10774 NULL_TREE), from_super)
10775 /* Calls to clone() on array types are permitted as a special-case. */
10776 && !is_array_clone_call)
10778 const char *const fct_name = IDENTIFIER_POINTER (DECL_NAME (list));
10779 const char *const access =
10780 accessibility_string (get_access_flags_from_decl (list));
10781 const char *const klass =
10782 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (list))));
10783 const char *const refklass =
10784 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class)));
10785 const char *const what = (DECL_CONSTRUCTOR_P (list)
10786 ? "constructor" : "method");
10787 parse_error_context (wfl,
10788 "Can't access %s %s %<%s.%s%> from %qs",
10789 access, what, klass, fct_name, refklass);
10790 PATCH_METHOD_RETURN_ERROR ();
10793 /* Deprecation check: check whether the method being invoked or the
10794 instance-being-created's type are deprecated. */
10795 if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10796 check_deprecation (wfl, TYPE_NAME (DECL_CONTEXT (list)));
10797 check_deprecation (wfl, list);
10799 /* If invoking a innerclass constructor, there are hidden parameters
10800 to pass */
10801 if (TREE_CODE (patch) == NEW_CLASS_EXPR
10802 && PURE_INNER_CLASS_TYPE_P (DECL_CONTEXT (list)))
10804 /* And make sure we add the accessed local variables to be saved
10805 in field aliases. */
10806 args = build_alias_initializer_parameter_list
10807 (AIPL_FUNCTION_CTOR_INVOCATION, DECL_CONTEXT (list), args, NULL);
10809 /* Secretly pass the current_this/primary as a second argument */
10810 if (primary || current_this)
10812 tree extra_arg;
10813 tree this_type = (current_this ?
10814 TREE_TYPE (TREE_TYPE (current_this)) : NULL_TREE);
10815 /* Method's (list) enclosing context */
10816 tree mec = DECL_CONTEXT (TYPE_NAME (DECL_CONTEXT (list)));
10817 /* If we have a primary, use it. */
10818 if (primary)
10819 extra_arg = primary;
10820 /* The current `this' is an inner class but isn't a direct
10821 enclosing context for the inner class we're trying to
10822 create. Build an access to the proper enclosing context
10823 and use it. */
10824 else if (current_this && PURE_INNER_CLASS_TYPE_P (this_type)
10825 && this_type != TREE_TYPE (mec))
10828 extra_arg = build_access_to_thisn (current_class,
10829 TREE_TYPE (mec), 0);
10830 extra_arg = java_complete_tree (extra_arg);
10832 /* Otherwise, just use the current `this' as an enclosing
10833 context. */
10834 else
10835 extra_arg = current_this;
10836 args = tree_cons (NULL_TREE, extra_arg, args);
10838 else
10839 args = tree_cons (NULL_TREE, integer_zero_node, args);
10842 /* This handles the situation where a constructor invocation needs
10843 to have an enclosing context passed as a second parameter (the
10844 constructor is one of an inner class). */
10845 if ((is_super_init ||
10846 (TREE_CODE (patch) == CALL_EXPR && name == this_identifier_node))
10847 && PURE_INNER_CLASS_TYPE_P (DECL_CONTEXT (list)))
10849 tree dest = TYPE_NAME (DECL_CONTEXT (list));
10850 tree extra_arg =
10851 build_access_to_thisn (current_class, DECL_CONTEXT (dest), 0);
10852 extra_arg = java_complete_tree (extra_arg);
10853 args = tree_cons (NULL_TREE, extra_arg, args);
10856 is_static_flag = METHOD_STATIC (list);
10857 if (! is_static_flag && this_arg != NULL_TREE)
10858 args = tree_cons (NULL_TREE, this_arg, args);
10860 /* In the context of an explicit constructor invocation, we can't
10861 invoke any method relying on `this'. Exceptions are: we're
10862 invoking a static function, primary exists and is not the current
10863 this, we're creating a new object. */
10864 if (ctxp->explicit_constructor_p
10865 && !is_static_flag
10866 && (!primary || primary == current_this)
10867 && (TREE_CODE (patch) != NEW_CLASS_EXPR))
10869 parse_error_context (wfl, "Can't reference %<this%> before the superclass constructor has been called");
10870 PATCH_METHOD_RETURN_ERROR ();
10872 java_parser_context_restore_global ();
10873 if (is_static)
10874 *is_static = is_static_flag;
10875 /* Sometimes, we want the decl of the selected method. Such as for
10876 EH checking */
10877 if (ret_decl)
10878 *ret_decl = list;
10879 patch = patch_invoke (patch, list, args);
10881 /* Now is a good time to insert the call to finit$ */
10882 if (is_super_init && CLASS_HAS_FINIT_P (current_class))
10884 tree finit_parms, finit_call;
10886 /* Prepare to pass hidden parameters to finit$, if any. */
10887 finit_parms = build_alias_initializer_parameter_list
10888 (AIPL_FUNCTION_FINIT_INVOCATION, current_class, NULL_TREE, NULL);
10890 finit_call =
10891 build_method_invocation (build_wfl_node (finit_identifier_node),
10892 finit_parms);
10894 /* Generate the code used to initialize fields declared with an
10895 initialization statement and build a compound statement along
10896 with the super constructor invocation. */
10897 CAN_COMPLETE_NORMALLY (patch) = 1;
10898 patch = build2 (COMPOUND_EXPR, void_type_node, patch,
10899 java_complete_tree (finit_call));
10901 return patch;
10904 /* Check that we're not trying to do a static reference to a method in
10905 non static method. Return 1 if it's the case, 0 otherwise. */
10907 static int
10908 check_for_static_method_reference (tree wfl, tree node, tree method,
10909 tree where, tree primary)
10911 if (METHOD_STATIC (current_function_decl)
10912 && !METHOD_STATIC (method) && !primary && !CALL_CONSTRUCTOR_P (node))
10914 char *fct_name = xstrdup (lang_printable_name (method, 0));
10915 parse_error_context
10916 (wfl, "Can't make static reference to method %<%s %s%> in class %qs",
10917 lang_printable_name (TREE_TYPE (TREE_TYPE (method)), 0), fct_name,
10918 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (where))));
10919 free (fct_name);
10920 return 1;
10922 return 0;
10925 /* Fix the invocation of *MDECL if necessary in the case of an
10926 invocation across a nested class. *THIS_ARG might be modified
10927 appropriately and an alternative access to *MDECL might be
10928 returned. */
10930 static int
10931 maybe_use_access_method (int is_super_init, tree *mdecl, tree *this_arg)
10933 tree ctx;
10934 tree md = *mdecl, ta = NULL_TREE;
10935 int to_return = 0;
10936 int non_static_context = !METHOD_STATIC (md);
10938 if (is_super_init
10939 || DECL_FINIT_P (md)
10940 || DECL_INSTINIT_P (md)
10941 || !nested_member_access_p (current_class, md))
10942 return 0;
10944 /* If we're calling a method found in an enclosing class, generate
10945 what it takes to retrieve the right `this'. Don't do that if we're
10946 invoking a static method. Note that if MD's type is unrelated to
10947 CURRENT_CLASS, then the current this can be used. */
10949 if (non_static_context
10950 && !inherits_from_p (current_class, DECL_CONTEXT (md))
10951 && DECL_CONTEXT (TYPE_NAME (current_class)))
10953 ta = *this_arg;
10954 ctx = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current_class)));
10955 if (inherits_from_p (ctx, DECL_CONTEXT (md)))
10957 ta = build_current_thisn (current_class);
10958 ta = build_wfl_node (ta);
10960 else
10962 tree type = ctx;
10963 while (type)
10965 maybe_build_thisn_access_method (type);
10966 if (inherits_from_p (type, DECL_CONTEXT (md)))
10968 ta = build_access_to_thisn (ctx, type, 0);
10969 break;
10971 type = (DECL_CONTEXT (TYPE_NAME (type)) ?
10972 TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))) : NULL_TREE);
10975 ta = java_complete_tree (ta);
10978 /* We might have to use an access method to get to MD. We can
10979 break the method access rule as long as we're not generating
10980 bytecode. */
10981 if (METHOD_PRIVATE (md) && flag_emit_class_files)
10983 md = build_nested_method_access_method (md);
10984 to_return = 1;
10987 *mdecl = md;
10988 if (this_arg)
10989 *this_arg = ta;
10991 /* Returning a nonzero value indicates we were doing a non static
10992 method invocation that is now a static invocation. It will have
10993 callee displace `this' to insert it in the regular argument
10994 list. */
10995 return (non_static_context && to_return);
10998 /* Patch an invoke expression METHOD and ARGS, based on its invocation
10999 mode. */
11001 static tree
11002 patch_invoke (tree patch, tree method, tree args)
11004 tree dtable, func;
11005 tree original_call, t, ta;
11006 tree check = NULL_TREE;
11008 /* Last step for args: convert build-in types. If we're dealing with
11009 a new TYPE() type call, the first argument to the constructor
11010 isn't found in the incoming argument list, but delivered by
11011 `new' */
11012 t = TYPE_ARG_TYPES (TREE_TYPE (method));
11013 if (TREE_CODE (patch) == NEW_CLASS_EXPR)
11014 t = TREE_CHAIN (t);
11015 for (ta = args; t != end_params_node && ta;
11016 t = TREE_CHAIN (t), ta = TREE_CHAIN (ta))
11017 if (JPRIMITIVE_TYPE_P (TREE_TYPE (TREE_VALUE (ta))) &&
11018 TREE_TYPE (TREE_VALUE (ta)) != TREE_VALUE (t))
11019 TREE_VALUE (ta) = convert (TREE_VALUE (t), TREE_VALUE (ta));
11021 /* Resolve unresolved returned type issues */
11022 t = TREE_TYPE (TREE_TYPE (method));
11023 if (TREE_CODE (t) == POINTER_TYPE && !CLASS_LOADED_P (TREE_TYPE (t)))
11024 resolve_and_layout (TREE_TYPE (t), NULL);
11026 if (flag_emit_class_files)
11027 func = method;
11028 else
11030 switch (invocation_mode (method, CALL_USING_SUPER (patch)))
11032 case INVOKE_VIRTUAL:
11033 dtable = invoke_build_dtable (0, args);
11034 func = build_invokevirtual (dtable, method);
11035 break;
11037 case INVOKE_NONVIRTUAL:
11038 /* If the object for the method call is null, we throw an
11039 exception. We don't do this if the object is the current
11040 method's `this'. In other cases we just rely on an
11041 optimization pass to eliminate redundant checks. */
11042 if (TREE_VALUE (args) != current_this)
11044 /* We use a save_expr here to make sure we only evaluate
11045 the new `self' expression once. */
11046 tree save_arg = save_expr (TREE_VALUE (args));
11047 TREE_VALUE (args) = save_arg;
11048 check = java_check_reference (save_arg, 1);
11050 /* Fall through. */
11052 case INVOKE_SUPER:
11053 case INVOKE_STATIC:
11055 tree signature = build_java_signature (TREE_TYPE (method));
11056 func = build_known_method_ref (method, TREE_TYPE (method),
11057 DECL_CONTEXT (method),
11058 signature, args);
11060 break;
11062 case INVOKE_INTERFACE:
11063 dtable = invoke_build_dtable (1, args);
11064 func = build_invokeinterface (dtable, method);
11065 break;
11067 default:
11068 abort ();
11071 /* Ensure self_type is initialized, (invokestatic). FIXME */
11072 func = build1 (NOP_EXPR, build_pointer_type (TREE_TYPE (method)), func);
11075 TREE_TYPE (patch) = TREE_TYPE (TREE_TYPE (method));
11076 TREE_OPERAND (patch, 0) = func;
11077 TREE_OPERAND (patch, 1) = args;
11078 patch = check_for_builtin (method, patch);
11079 original_call = patch;
11081 /* We're processing a `new TYPE ()' form. New is called and its
11082 returned value is the first argument to the constructor. We build
11083 a COMPOUND_EXPR and use saved expression so that the overall NEW
11084 expression value is a pointer to a newly created and initialized
11085 class. */
11086 if (TREE_CODE (original_call) == NEW_CLASS_EXPR)
11088 tree class = DECL_CONTEXT (method);
11089 tree c1, saved_new, new;
11090 tree alloc_node;
11092 if (flag_emit_class_files)
11094 TREE_TYPE (patch) = build_pointer_type (class);
11095 return patch;
11097 if (!TYPE_SIZE (class))
11098 safe_layout_class (class);
11099 alloc_node =
11100 (class_has_finalize_method (class) ? alloc_object_node
11101 : alloc_no_finalizer_node);
11102 new = build3 (CALL_EXPR, promote_type (class),
11103 build_address_of (alloc_node),
11104 build_tree_list (NULL_TREE, build_class_ref (class)),
11105 NULL_TREE);
11106 saved_new = save_expr (new);
11107 c1 = build_tree_list (NULL_TREE, saved_new);
11108 TREE_CHAIN (c1) = TREE_OPERAND (original_call, 1);
11109 TREE_OPERAND (original_call, 1) = c1;
11110 TREE_SET_CODE (original_call, CALL_EXPR);
11111 patch = build2 (COMPOUND_EXPR, TREE_TYPE (new), patch, saved_new);
11114 /* If CHECK is set, then we are building a check to see if the object
11115 is NULL. */
11116 if (check != NULL_TREE)
11118 /* We have to call force_evaluation_order now because creating a
11119 COMPOUND_EXPR wraps the arg list in a way that makes it
11120 unrecognizable by force_evaluation_order later. Yuk. */
11121 patch = build2 (COMPOUND_EXPR, TREE_TYPE (patch), check,
11122 force_evaluation_order (patch));
11123 TREE_SIDE_EFFECTS (patch) = 1;
11126 /* In order to be able to modify PATCH later, we SAVE_EXPR it and
11127 put it as the first expression of a COMPOUND_EXPR. The second
11128 expression being an empty statement to be later patched if
11129 necessary. We remember a TREE_LIST (the PURPOSE is the method,
11130 the VALUE is the compound) in a hashtable and return a
11131 COMPOUND_EXPR built so that the result of the evaluation of the
11132 original PATCH node is returned. */
11133 if (STATIC_CLASS_INIT_OPT_P ()
11134 && current_function_decl && METHOD_STATIC (method))
11136 tree list;
11137 tree fndecl = current_function_decl;
11138 /* We have to call force_evaluation_order now because creating a
11139 COMPOUND_EXPR wraps the arg list in a way that makes it
11140 unrecognizable by force_evaluation_order later. Yuk. */
11141 tree save = force_evaluation_order (patch);
11142 tree type = TREE_TYPE (patch);
11144 patch = build2 (COMPOUND_EXPR, type, save, build_java_empty_stmt ());
11145 list = tree_cons (method, patch,
11146 DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (fndecl));
11148 DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (fndecl) = list;
11150 patch = build2 (COMPOUND_EXPR, type, patch, save);
11153 return patch;
11156 static int
11157 invocation_mode (tree method, int super)
11159 int access = get_access_flags_from_decl (method);
11161 if (super)
11162 return INVOKE_SUPER;
11164 if (access & ACC_STATIC)
11165 return INVOKE_STATIC;
11167 /* We have to look for a constructor before we handle nonvirtual
11168 calls; otherwise the constructor will look nonvirtual. */
11169 if (DECL_CONSTRUCTOR_P (method))
11170 return INVOKE_STATIC;
11172 if (access & ACC_PRIVATE)
11173 return INVOKE_NONVIRTUAL;
11175 /* Binary compatibility: just because it's final today, that doesn't
11176 mean it'll be final tomorrow. */
11177 if (! flag_indirect_dispatch
11178 || DECL_CONTEXT (method) == object_type_node)
11180 if (access & ACC_FINAL)
11181 return INVOKE_NONVIRTUAL;
11183 if (CLASS_FINAL (TYPE_NAME (DECL_CONTEXT (method))))
11184 return INVOKE_NONVIRTUAL;
11187 if (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))))
11188 return INVOKE_INTERFACE;
11190 return INVOKE_VIRTUAL;
11193 /* Retrieve a refined list of matching methods. It covers the step
11194 15.11.2 (Compile-Time Step 2) */
11196 static tree
11197 lookup_method_invoke (int lc, tree cl, tree class, tree name, tree arg_list)
11199 tree atl = end_params_node; /* Arg Type List */
11200 tree method, signature, list, node;
11201 const char *candidates; /* Used for error report */
11202 char *dup;
11204 /* Fix the arguments */
11205 for (node = arg_list; node; node = TREE_CHAIN (node))
11207 tree current_arg = TREE_TYPE (TREE_VALUE (node));
11208 /* Non primitive type may have to be resolved */
11209 if (!JPRIMITIVE_TYPE_P (current_arg))
11210 resolve_and_layout (current_arg, NULL_TREE);
11211 /* And promoted */
11212 if (TREE_CODE (current_arg) == RECORD_TYPE)
11213 current_arg = promote_type (current_arg);
11214 /* If we're building an anonymous constructor call, and one of
11215 the arguments has array type, cast it to a size-less array
11216 type. This prevents us from getting a strange gcj-specific
11217 "sized array" signature in the constructor's signature. */
11218 if (lc && ANONYMOUS_CLASS_P (class)
11219 && TREE_CODE (current_arg) == POINTER_TYPE
11220 && TYPE_ARRAY_P (TREE_TYPE (current_arg)))
11222 tree elt = TYPE_ARRAY_ELEMENT (TREE_TYPE (current_arg));
11223 current_arg = build_pointer_type (build_java_array_type (elt, -1));
11225 atl = tree_cons (NULL_TREE, current_arg, atl);
11228 /* Presto. If we're dealing with an anonymous class and a
11229 constructor call, generate the right constructor now, since we
11230 know the arguments' types. */
11232 if (lc && ANONYMOUS_CLASS_P (class))
11234 tree mdecl = craft_constructor (TYPE_NAME (class), atl);
11235 /* The anonymous class may have already been laid out, so make sure
11236 the new constructor is laid out here. */
11237 layout_class_method (class, CLASSTYPE_SUPER (class), mdecl, NULL_TREE);
11240 /* Find all candidates and then refine the list, searching for the
11241 most specific method. */
11242 list = find_applicable_accessible_methods_list (lc, class, name, atl);
11243 list = find_most_specific_methods_list (list);
11244 if (list && !TREE_CHAIN (list))
11245 return TREE_VALUE (list);
11247 /* Issue an error. List candidates if any. Candidates are listed
11248 only if accessible (non accessible methods may end-up here for
11249 the sake of a better error report). */
11250 candidates = NULL;
11251 if (list)
11253 tree current;
11254 obstack_grow (&temporary_obstack, ". Candidates are:\n", 18);
11255 for (current = list; current; current = TREE_CHAIN (current))
11257 tree cm = TREE_VALUE (current);
11258 char string [4096];
11259 if (!cm || not_accessible_p (class, cm, NULL_TREE, 0))
11260 continue;
11261 sprintf
11262 (string, " '%s' in '%s'%s",
11263 get_printable_method_name (cm),
11264 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (cm)))),
11265 (TREE_CHAIN (current) ? "\n" : ""));
11266 obstack_grow (&temporary_obstack, string, strlen (string));
11268 obstack_1grow (&temporary_obstack, '\0');
11269 candidates = obstack_finish (&temporary_obstack);
11271 /* Issue the error message */
11272 method = make_node (FUNCTION_TYPE);
11273 TYPE_ARG_TYPES (method) = atl;
11274 signature = build_java_argument_signature (method);
11275 dup = xstrdup (lang_printable_name (class, 0));
11276 parse_error_context (cl, "Can't find %s %<%s(%s)%> in type %qs%s",
11277 (lc ? "constructor" : "method"),
11278 (lc ? dup : IDENTIFIER_POINTER (name)),
11279 IDENTIFIER_POINTER (signature), dup,
11280 (candidates ? candidates : ""));
11281 free (dup);
11282 return NULL_TREE;
11285 /* 15.11.2.1: Find Methods that are Applicable and Accessible. LC is 1
11286 when we're looking for a constructor. */
11288 static tree
11289 find_applicable_accessible_methods_list (int lc, tree class, tree name,
11290 tree arglist)
11292 static htab_t searched_classes;
11293 static int search_not_done = 0;
11294 tree list = NULL_TREE, all_list = NULL_TREE;
11295 tree base_binfo;
11296 int i;
11298 /* Check the hash table to determine if this class has been searched
11299 already. */
11300 if (searched_classes)
11302 if (htab_find (searched_classes, class) != NULL)
11303 return NULL;
11305 else
11307 searched_classes = htab_create (10, htab_hash_pointer,
11308 htab_eq_pointer, NULL);
11311 search_not_done++;
11312 *htab_find_slot (searched_classes, class, INSERT) = class;
11314 if (!CLASS_LOADED_P (class))
11316 load_class (class, 1);
11317 safe_layout_class (class);
11320 /* Search interfaces */
11321 if (TREE_CODE (TYPE_NAME (class)) == TYPE_DECL
11322 && CLASS_INTERFACE (TYPE_NAME (class)))
11324 search_applicable_methods_list (lc, TYPE_METHODS (class),
11325 name, arglist, &list, &all_list);
11326 for (i = 1; BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
11328 tree t = BINFO_TYPE (base_binfo);
11329 tree rlist;
11331 rlist = find_applicable_accessible_methods_list (lc, t, name,
11332 arglist);
11333 list = chainon (rlist, list);
11336 /* Search classes */
11337 else
11339 search_applicable_methods_list (lc, TYPE_METHODS (class),
11340 name, arglist, &list, &all_list);
11342 /* When looking finit$, class$ or instinit$, we turn LC to 1 so
11343 that we only search in class. Note that we should have found
11344 something at this point. */
11345 if (ID_FINIT_P (name) || ID_CLASSDOLLAR_P (name) || ID_INSTINIT_P (name))
11347 lc = 1;
11348 if (!list)
11349 abort ();
11352 /* We must search all interfaces of this class */
11353 if (!lc)
11355 for (i = 1;
11356 BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
11358 tree t = BINFO_TYPE (base_binfo);
11359 if (t != object_type_node)
11361 tree rlist
11362 = find_applicable_accessible_methods_list (lc, t,
11363 name, arglist);
11364 list = chainon (rlist, list);
11369 /* Search superclass */
11370 if (!lc && CLASSTYPE_SUPER (class) != NULL_TREE)
11372 tree rlist;
11373 class = CLASSTYPE_SUPER (class);
11374 rlist = find_applicable_accessible_methods_list (lc, class,
11375 name, arglist);
11376 list = chainon (rlist, list);
11380 search_not_done--;
11382 /* We're done. Reset the searched classes list and finally search
11383 java.lang.Object if it wasn't searched already. */
11384 if (!search_not_done)
11386 if (!lc
11387 && TYPE_METHODS (object_type_node)
11388 && htab_find (searched_classes, object_type_node) == NULL)
11390 search_applicable_methods_list (lc,
11391 TYPE_METHODS (object_type_node),
11392 name, arglist, &list, &all_list);
11394 htab_delete (searched_classes);
11395 searched_classes = NULL;
11398 /* Either return the list obtained or all selected (but
11399 inaccessible) methods for better error report. */
11400 return (!list ? all_list : list);
11403 /* Effectively search for the appropriate method in method */
11405 static void
11406 search_applicable_methods_list (int lc, tree method, tree name, tree arglist,
11407 tree *list, tree *all_list)
11409 for (; method; method = TREE_CHAIN (method))
11411 /* When dealing with constructor, stop here, otherwise search
11412 other classes */
11413 if (lc && !DECL_CONSTRUCTOR_P (method))
11414 continue;
11415 else if (!lc && (DECL_CONSTRUCTOR_P (method)
11416 || (DECL_NAME (method) != name)))
11417 continue;
11419 if (argument_types_convertible (method, arglist))
11421 /* Retain accessible methods only */
11422 if (!not_accessible_p (DECL_CONTEXT (current_function_decl),
11423 method, NULL_TREE, 0))
11424 *list = tree_cons (NULL_TREE, method, *list);
11425 else
11426 /* Also retain all selected method here */
11427 *all_list = tree_cons (NULL_TREE, method, *list);
11432 /* 15.11.2.2 Choose the Most Specific Method */
11434 static tree
11435 find_most_specific_methods_list (tree list)
11437 int max = 0;
11438 int abstract, candidates;
11439 tree current, new_list = NULL_TREE;
11440 for (current = list; current; current = TREE_CHAIN (current))
11442 tree method;
11443 DECL_SPECIFIC_COUNT (TREE_VALUE (current)) = 0;
11445 for (method = list; method; method = TREE_CHAIN (method))
11447 tree method_v, current_v;
11448 /* Don't test a method against itself */
11449 if (method == current)
11450 continue;
11452 method_v = TREE_VALUE (method);
11453 current_v = TREE_VALUE (current);
11455 /* Compare arguments and location where methods where declared */
11456 if (argument_types_convertible (method_v, current_v))
11458 if (valid_method_invocation_conversion_p
11459 (DECL_CONTEXT (method_v), DECL_CONTEXT (current_v)))
11461 int v = (DECL_SPECIFIC_COUNT (current_v) += 1);
11462 max = (v > max ? v : max);
11468 /* Review the list and select the maximally specific methods */
11469 for (current = list, abstract = -1, candidates = -1;
11470 current; current = TREE_CHAIN (current))
11471 if (DECL_SPECIFIC_COUNT (TREE_VALUE (current)) == max)
11473 new_list = tree_cons (NULL_TREE, TREE_VALUE (current), new_list);
11474 abstract += (METHOD_ABSTRACT (TREE_VALUE (current)) ? 1 : 0);
11475 candidates++;
11478 /* If we have several and they're all abstract, just pick the
11479 closest one. */
11480 if (candidates > 0 && candidates == abstract)
11482 /* FIXME: merge the throws clauses. There is no convenient way
11483 to do this in gcj right now, since ideally we'd like to
11484 introduce a new METHOD_DECL here, but that is really not
11485 possible. */
11486 new_list = nreverse (new_list);
11487 TREE_CHAIN (new_list) = NULL_TREE;
11488 return new_list;
11491 /* We have several (we couldn't find a most specific), all but one
11492 are abstract, we pick the only non abstract one. */
11493 if (candidates > 0 && (candidates == abstract+1))
11495 for (current = new_list; current; current = TREE_CHAIN (current))
11496 if (!METHOD_ABSTRACT (TREE_VALUE (current)))
11498 TREE_CHAIN (current) = NULL_TREE;
11499 new_list = current;
11503 /* If we can't find one, lower expectations and try to gather multiple
11504 maximally specific methods */
11505 while (!new_list && max)
11507 while (--max > 0)
11509 if (DECL_SPECIFIC_COUNT (TREE_VALUE (current)) == max)
11510 new_list = tree_cons (NULL_TREE, TREE_VALUE (current), new_list);
11514 return new_list;
11517 /* Make sure that the type of each M2_OR_ARGLIST arguments can be
11518 converted by method invocation conversion (5.3) to the type of the
11519 corresponding parameter of M1. Implementation expects M2_OR_ARGLIST
11520 to change less often than M1. */
11522 static GTY(()) tree m2_arg_value;
11523 static GTY(()) tree m2_arg_cache;
11525 static int
11526 argument_types_convertible (tree m1, tree m2_or_arglist)
11528 tree m1_arg, m2_arg;
11530 SKIP_THIS_AND_ARTIFICIAL_PARMS (m1_arg, m1)
11532 if (m2_arg_value == m2_or_arglist)
11533 m2_arg = m2_arg_cache;
11534 else
11536 /* M2_OR_ARGLIST can be a function DECL or a raw list of
11537 argument types */
11538 if (m2_or_arglist && TREE_CODE (m2_or_arglist) == FUNCTION_DECL)
11540 m2_arg = TYPE_ARG_TYPES (TREE_TYPE (m2_or_arglist));
11541 if (!METHOD_STATIC (m2_or_arglist))
11542 m2_arg = TREE_CHAIN (m2_arg);
11544 else
11545 m2_arg = m2_or_arglist;
11547 m2_arg_value = m2_or_arglist;
11548 m2_arg_cache = m2_arg;
11551 while (m1_arg != end_params_node && m2_arg != end_params_node)
11553 resolve_and_layout (TREE_VALUE (m1_arg), NULL_TREE);
11554 if (!valid_method_invocation_conversion_p (TREE_VALUE (m1_arg),
11555 TREE_VALUE (m2_arg)))
11556 break;
11557 m1_arg = TREE_CHAIN (m1_arg);
11558 m2_arg = TREE_CHAIN (m2_arg);
11560 return m1_arg == end_params_node && m2_arg == end_params_node;
11563 /* Qualification routines */
11565 /* Given a name x.y.z, look up x locally. If it's found, save the
11566 decl. If it's not found, mark the name as RESOLVE_PACKAGE_NAME_P,
11567 so that we later try and load the appropriate classes. */
11568 static void
11569 qualify_ambiguous_name (tree id)
11571 tree name, decl;
11573 /* We inspect the first item of the qualification list. As a sanity
11574 check, make sure that it is an identfier node. */
11575 tree qual = EXPR_WFL_QUALIFICATION (id);
11576 tree qual_wfl = QUAL_WFL (qual);
11578 if (TREE_CODE (qual_wfl) != EXPR_WITH_FILE_LOCATION)
11579 return;
11581 name = EXPR_WFL_NODE (qual_wfl);
11583 /* If we don't have an identifier, or we have a 'this' or 'super',
11584 then field access processing is all we need : there is nothing
11585 for us to do. */
11586 if (!name || TREE_CODE (name) != IDENTIFIER_NODE ||
11587 name == this_identifier_node ||
11588 name == super_identifier_node)
11589 return;
11591 /* If name appears within the scope of a local variable declaration
11592 or parameter declaration, or is a field within an enclosing
11593 class, then it is an expression name. Save the decl and let
11594 resolve_field_access do it's work. */
11595 if ((decl = IDENTIFIER_LOCAL_VALUE (name)) ||
11596 (decl = lookup_field_wrapper (current_class, name)))
11598 QUAL_RESOLUTION (qual) = decl;
11599 return;
11602 /* If name is a known class name (either declared or imported), mark
11603 us as a type name. */
11604 if ((decl = resolve_and_layout (name, NULL_TREE)))
11606 RESOLVE_TYPE_NAME_P (qual_wfl) = 1;
11607 QUAL_RESOLUTION (qual) = decl;
11610 /* Check here that NAME isn't declared by more than one
11611 type-import-on-demand declaration of the compilation unit
11612 containing NAME. FIXME */
11614 /* We couldn't find a declaration for the name. Assume for now that
11615 we have a qualified class name that needs to be loaded from an
11616 external class file. */
11617 else
11618 RESOLVE_PACKAGE_NAME_P (qual_wfl) = 1;
11620 /* Propagate the qualification across other components of the
11621 qualified name */
11622 for (qual = TREE_CHAIN (qual); qual;
11623 qual_wfl = QUAL_WFL (qual), qual = TREE_CHAIN (qual))
11625 if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
11626 RESOLVE_PACKAGE_NAME_P (QUAL_WFL (qual)) = 1;
11629 /* Store the global qualification for the ambiguous part of ID back
11630 into ID fields */
11631 if (RESOLVE_TYPE_NAME_P (qual_wfl))
11632 RESOLVE_TYPE_NAME_P (id) = 1;
11633 else if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
11634 RESOLVE_PACKAGE_NAME_P (id) = 1;
11637 /* Patch tree nodes in a function body. When a BLOCK is found, push
11638 local variable decls if present.
11639 Same as java_complete_lhs, but does resolve static finals to values. */
11641 static tree
11642 java_complete_tree (tree node)
11644 node = java_complete_lhs (node);
11645 if (JDECL_P (node) && CLASS_FINAL_VARIABLE_P (node)
11646 && DECL_INITIAL (node) != NULL_TREE)
11648 tree value = fold_constant_for_init (node, node);
11649 if (value != NULL_TREE)
11650 return value;
11652 return node;
11655 static tree
11656 java_stabilize_reference (tree node)
11658 if (TREE_CODE (node) == COMPOUND_EXPR)
11660 tree op0 = TREE_OPERAND (node, 0);
11661 tree op1 = TREE_OPERAND (node, 1);
11662 TREE_OPERAND (node, 0) = save_expr (op0);
11663 TREE_OPERAND (node, 1) = java_stabilize_reference (op1);
11664 return node;
11666 return stabilize_reference (node);
11669 /* Patch tree nodes in a function body. When a BLOCK is found, push
11670 local variable decls if present.
11671 Same as java_complete_tree, but does not resolve static finals to values. */
11673 static tree
11674 java_complete_lhs (tree node)
11676 tree nn, cn, wfl_op1, wfl_op2, wfl_op3;
11677 int flag;
11679 /* CONVERT_EXPR always has its type set, even though it needs to be
11680 worked out. */
11681 if (TREE_TYPE (node) && TREE_CODE (node) != CONVERT_EXPR)
11682 return node;
11684 /* The switch block implements cases processing container nodes
11685 first. Contained nodes are always written back. Leaves come
11686 next and return a value. */
11687 switch (TREE_CODE (node))
11689 case BLOCK:
11691 /* 1- Block section.
11692 Set the local values on decl names so we can identify them
11693 faster when they're referenced. At that stage, identifiers
11694 are legal so we don't check for declaration errors. */
11695 for (cn = BLOCK_EXPR_DECLS (node); cn; cn = TREE_CHAIN (cn))
11697 DECL_CONTEXT (cn) = current_function_decl;
11698 IDENTIFIER_LOCAL_VALUE (DECL_NAME (cn)) = cn;
11700 if (BLOCK_EXPR_BODY (node) == NULL_TREE)
11701 CAN_COMPLETE_NORMALLY (node) = 1;
11702 else
11704 tree stmt = BLOCK_EXPR_BODY (node);
11705 tree *ptr;
11706 int error_seen = 0;
11707 if (TREE_CODE (stmt) == COMPOUND_EXPR)
11709 /* Re-order from (((A; B); C); ...; Z) to
11710 (A; (B; (C ; (...; Z)))).
11711 This makes it easier to scan the statements left-to-right
11712 without using recursion (which might overflow the stack
11713 if the block has many statements. */
11714 for (;;)
11716 tree left = TREE_OPERAND (stmt, 0);
11717 if (TREE_CODE (left) != COMPOUND_EXPR)
11718 break;
11719 TREE_OPERAND (stmt, 0) = TREE_OPERAND (left, 1);
11720 TREE_OPERAND (left, 1) = stmt;
11721 stmt = left;
11723 BLOCK_EXPR_BODY (node) = stmt;
11726 /* Now do the actual complete, without deep recursion for
11727 long blocks. */
11728 ptr = &BLOCK_EXPR_BODY (node);
11729 while (TREE_CODE (*ptr) == COMPOUND_EXPR
11730 && !IS_EMPTY_STMT (TREE_OPERAND (*ptr, 1)))
11732 tree cur = java_complete_tree (TREE_OPERAND (*ptr, 0));
11733 tree *next = &TREE_OPERAND (*ptr, 1);
11734 TREE_OPERAND (*ptr, 0) = cur;
11735 if (IS_EMPTY_STMT (cur))
11737 /* Optimization; makes it easier to detect empty bodies.
11738 Most useful for <clinit> with all-constant initializer. */
11739 *ptr = *next;
11740 continue;
11742 if (TREE_CODE (cur) == ERROR_MARK)
11743 error_seen++;
11744 else if (! CAN_COMPLETE_NORMALLY (cur))
11746 wfl_op2 = *next;
11747 for (;;)
11749 if (TREE_CODE (wfl_op2) == BLOCK)
11750 wfl_op2 = BLOCK_EXPR_BODY (wfl_op2);
11751 else if (TREE_CODE (wfl_op2) == COMPOUND_EXPR)
11752 wfl_op2 = TREE_OPERAND (wfl_op2, 0);
11753 else
11754 break;
11756 if (TREE_CODE (wfl_op2) != CASE_EXPR
11757 && TREE_CODE (wfl_op2) != DEFAULT_EXPR)
11758 unreachable_stmt_error (*ptr);
11760 if (TREE_TYPE (*ptr) == NULL_TREE)
11761 TREE_TYPE (*ptr) = void_type_node;
11762 ptr = next;
11764 *ptr = java_complete_tree (*ptr);
11766 if (TREE_CODE (*ptr) == ERROR_MARK || error_seen > 0)
11767 return error_mark_node;
11768 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (*ptr);
11770 /* Turn local bindings to null */
11771 for (cn = BLOCK_EXPR_DECLS (node); cn; cn = TREE_CHAIN (cn))
11772 IDENTIFIER_LOCAL_VALUE (DECL_NAME (cn)) = NULL_TREE;
11774 TREE_TYPE (node) = void_type_node;
11775 break;
11777 /* 2- They are expressions but ultimately deal with statements */
11779 case THROW_EXPR:
11780 wfl_op1 = TREE_OPERAND (node, 0);
11781 COMPLETE_CHECK_OP_0 (node);
11782 /* 14.19 A throw statement cannot complete normally. */
11783 CAN_COMPLETE_NORMALLY (node) = 0;
11784 return patch_throw_statement (node, wfl_op1);
11786 case SYNCHRONIZED_EXPR:
11787 wfl_op1 = TREE_OPERAND (node, 0);
11788 return patch_synchronized_statement (node, wfl_op1);
11790 case TRY_EXPR:
11791 return patch_try_statement (node);
11793 case TRY_FINALLY_EXPR:
11794 COMPLETE_CHECK_OP_0 (node);
11795 COMPLETE_CHECK_OP_1 (node);
11796 if (IS_EMPTY_STMT (TREE_OPERAND (node, 0)))
11797 /* Reduce try/finally nodes with an empty try block. */
11798 return TREE_OPERAND (node, 1);
11799 if (IS_EMPTY_STMT (TREE_OPERAND (node, 1)))
11800 /* Likewise for an empty finally block. */
11801 return TREE_OPERAND (node, 0);
11802 CAN_COMPLETE_NORMALLY (node)
11803 = (CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0))
11804 && CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1)));
11805 TREE_TYPE (node) = TREE_TYPE (TREE_OPERAND (node, 0));
11806 return node;
11808 case LABELED_BLOCK_EXPR:
11809 PUSH_LABELED_BLOCK (node);
11810 if (LABELED_BLOCK_BODY (node))
11811 COMPLETE_CHECK_OP_1 (node);
11812 TREE_TYPE (node) = void_type_node;
11813 POP_LABELED_BLOCK ();
11815 if (IS_EMPTY_STMT (LABELED_BLOCK_BODY (node)))
11817 LABELED_BLOCK_BODY (node) = NULL_TREE;
11818 CAN_COMPLETE_NORMALLY (node) = 1;
11820 else if (CAN_COMPLETE_NORMALLY (LABELED_BLOCK_BODY (node)))
11821 CAN_COMPLETE_NORMALLY (node) = 1;
11822 return node;
11824 case EXIT_BLOCK_EXPR:
11825 return patch_bc_statement (node);
11827 case CASE_EXPR:
11828 cn = java_complete_tree (TREE_OPERAND (node, 0));
11829 if (cn == error_mark_node)
11830 return cn;
11832 /* First, the case expression must be constant. Values of final
11833 fields are accepted. */
11834 nn = fold_constant_for_init (cn, NULL_TREE);
11835 if (nn != NULL_TREE)
11836 cn = nn;
11838 cn = fold (cn);
11839 if ((TREE_CODE (cn) == COMPOUND_EXPR
11840 || TREE_CODE (cn) == COMPONENT_REF)
11841 && JDECL_P (TREE_OPERAND (cn, 1))
11842 && FIELD_FINAL (TREE_OPERAND (cn, 1))
11843 && DECL_INITIAL (TREE_OPERAND (cn, 1)))
11845 cn = fold_constant_for_init (DECL_INITIAL (TREE_OPERAND (cn, 1)),
11846 TREE_OPERAND (cn, 1));
11848 /* Accept final locals too. */
11849 else if (TREE_CODE (cn) == VAR_DECL && DECL_FINAL (cn)
11850 && DECL_INITIAL (cn))
11851 cn = fold_constant_for_init (DECL_INITIAL (cn), cn);
11853 if (!TREE_CONSTANT (cn))
11855 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11856 parse_error_context (node, "Constant expression required");
11857 return error_mark_node;
11860 nn = ctxp->current_loop;
11862 /* It must be assignable to the type of the switch expression. */
11863 if (!try_builtin_assignconv (NULL_TREE,
11864 TREE_TYPE (TREE_OPERAND (nn, 0)), cn))
11866 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11867 parse_error_context
11868 (wfl_operator,
11869 "Incompatible type for case. Can't convert %qs to %<int%>",
11870 lang_printable_name (TREE_TYPE (cn), 0));
11871 return error_mark_node;
11874 cn = fold (convert (int_type_node, cn));
11875 TREE_CONSTANT_OVERFLOW (cn) = 0;
11876 CAN_COMPLETE_NORMALLY (cn) = 1;
11878 /* Save the label on a list so that we can later check for
11879 duplicates. */
11880 case_label_list = tree_cons (node, cn, case_label_list);
11882 /* Multiple instance of a case label bearing the same value is
11883 checked later. The case expression is all right so far. */
11884 if (TREE_CODE (cn) == VAR_DECL)
11885 cn = DECL_INITIAL (cn);
11886 TREE_OPERAND (node, 0) = cn;
11887 TREE_TYPE (node) = void_type_node;
11888 CAN_COMPLETE_NORMALLY (node) = 1;
11889 TREE_SIDE_EFFECTS (node) = 1;
11890 break;
11892 case DEFAULT_EXPR:
11893 nn = ctxp->current_loop;
11894 /* Only one default label is allowed per switch statement */
11895 if (SWITCH_HAS_DEFAULT (nn))
11897 #ifdef USE_MAPPED_LOCATION
11898 SET_EXPR_LOCATION (wfl_operator, EXPR_LOCATION (node));
11899 #else
11900 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11901 #endif
11902 parse_error_context (wfl_operator,
11903 "Duplicate case label: %<default%>");
11904 return error_mark_node;
11906 else
11907 SWITCH_HAS_DEFAULT (nn) = 1;
11908 TREE_TYPE (node) = void_type_node;
11909 TREE_SIDE_EFFECTS (node) = 1;
11910 CAN_COMPLETE_NORMALLY (node) = 1;
11911 break;
11913 case SWITCH_EXPR:
11914 case LOOP_EXPR:
11915 PUSH_LOOP (node);
11916 /* Check whether the loop was enclosed in a labeled
11917 statement. If not, create one, insert the loop in it and
11918 return the node */
11919 nn = patch_loop_statement (node);
11921 /* Anyways, walk the body of the loop */
11922 if (TREE_CODE (node) == LOOP_EXPR)
11923 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11924 /* Switch statement: walk the switch expression and the cases */
11925 else
11926 node = patch_switch_statement (node);
11928 if (node == error_mark_node || TREE_OPERAND (node, 0) == error_mark_node)
11929 nn = error_mark_node;
11930 else
11932 TREE_TYPE (nn) = TREE_TYPE (node) = void_type_node;
11933 /* If we returned something different, that's because we
11934 inserted a label. Pop the label too. */
11935 if (nn != node)
11937 if (CAN_COMPLETE_NORMALLY (node))
11938 CAN_COMPLETE_NORMALLY (nn) = 1;
11939 POP_LABELED_BLOCK ();
11942 POP_LOOP ();
11943 return nn;
11945 case EXIT_EXPR:
11946 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11947 return patch_exit_expr (node);
11949 case COND_EXPR:
11950 /* Condition */
11951 TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11952 if (TREE_OPERAND (node, 0) == error_mark_node)
11953 return error_mark_node;
11954 /* then-else branches */
11955 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
11956 if (TREE_OPERAND (node, 1) == error_mark_node)
11957 return error_mark_node;
11959 /* This is a special case due to build_assertion(). When
11960 assertions are disabled we build a COND_EXPR in which
11961 Operand 1 is the body of the assertion. If that happens to
11962 be a string concatenation we'll need to patch it here. */
11963 tree patched = patch_string (TREE_OPERAND (node, 1));
11964 if (patched)
11965 TREE_OPERAND (node, 1) = patched;
11967 TREE_OPERAND (node, 2) = java_complete_tree (TREE_OPERAND (node, 2));
11968 if (TREE_OPERAND (node, 2) == error_mark_node)
11969 return error_mark_node;
11970 return patch_if_else_statement (node);
11971 break;
11973 case CONDITIONAL_EXPR:
11974 /* Condition */
11975 wfl_op1 = TREE_OPERAND (node, 0);
11976 COMPLETE_CHECK_OP_0 (node);
11977 wfl_op2 = TREE_OPERAND (node, 1);
11978 COMPLETE_CHECK_OP_1 (node);
11979 wfl_op3 = TREE_OPERAND (node, 2);
11980 COMPLETE_CHECK_OP_2 (node);
11981 return patch_conditional_expr (node, wfl_op1, wfl_op2);
11983 /* 3- Expression section */
11984 case COMPOUND_EXPR:
11985 wfl_op2 = TREE_OPERAND (node, 1);
11986 TREE_OPERAND (node, 0) = nn =
11987 java_complete_tree (TREE_OPERAND (node, 0));
11988 if (IS_EMPTY_STMT (wfl_op2))
11989 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (nn);
11990 else
11992 if (! CAN_COMPLETE_NORMALLY (nn) && TREE_CODE (nn) != ERROR_MARK)
11994 /* An unreachable condition in a do-while statement
11995 is *not* (technically) an unreachable statement. */
11996 nn = wfl_op2;
11997 if (TREE_CODE (nn) == EXPR_WITH_FILE_LOCATION)
11998 nn = EXPR_WFL_NODE (nn);
11999 /* NN can be NULL_TREE exactly when UPDATE is, in
12000 finish_for_loop. */
12001 if (nn != NULL_TREE && TREE_CODE (nn) != EXIT_EXPR)
12003 SET_WFL_OPERATOR (wfl_operator, node, wfl_op2);
12004 if (SUPPRESS_UNREACHABLE_ERROR (nn))
12006 /* Perhaps this warning should have an
12007 associated flag. The code being compiled is
12008 pedantically correct, but useless. */
12009 parse_warning_context (wfl_operator,
12010 "Unreachable statement");
12012 else
12013 parse_error_context (wfl_operator,
12014 "Unreachable statement");
12017 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
12018 if (TREE_OPERAND (node, 1) == error_mark_node)
12019 return error_mark_node;
12020 /* Even though we might allow the case where the first
12021 operand doesn't return normally, we still should compute
12022 CAN_COMPLETE_NORMALLY correctly. */
12023 CAN_COMPLETE_NORMALLY (node)
12024 = (CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0))
12025 && CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1)));
12027 TREE_TYPE (node) = TREE_TYPE (TREE_OPERAND (node, 1));
12028 break;
12030 case RETURN_EXPR:
12031 /* CAN_COMPLETE_NORMALLY (node) = 0; */
12032 return patch_return (node);
12034 case EXPR_WITH_FILE_LOCATION:
12035 if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
12036 || TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
12038 node = resolve_expression_name (node, NULL);
12039 if (node == error_mark_node)
12040 return node;
12041 CAN_COMPLETE_NORMALLY (node) = 1;
12043 else
12045 tree body;
12046 location_t save_location = input_location;
12047 #ifdef USE_MAPPED_LOCATION
12048 input_location = EXPR_LOCATION (node);
12049 if (input_location == UNKNOWN_LOCATION)
12050 input_location = save_location;
12051 #else
12052 input_line = EXPR_WFL_LINENO (node);
12053 #endif
12054 body = java_complete_tree (EXPR_WFL_NODE (node));
12055 input_location = save_location;
12056 EXPR_WFL_NODE (node) = body;
12057 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (body);
12058 CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (body);
12059 if (IS_EMPTY_STMT (body) || TREE_CONSTANT (body))
12061 /* Makes it easier to constant fold, detect empty bodies. */
12062 return body;
12064 if (body == error_mark_node)
12066 /* Its important for the evaluation of assignment that
12067 this mark on the TREE_TYPE is propagated. */
12068 TREE_TYPE (node) = error_mark_node;
12069 return error_mark_node;
12071 else
12072 TREE_TYPE (node) = TREE_TYPE (EXPR_WFL_NODE (node));
12075 break;
12077 case NEW_ARRAY_EXPR:
12078 /* Patch all the dimensions */
12079 flag = 0;
12080 for (cn = TREE_OPERAND (node, 1); cn; cn = TREE_CHAIN (cn))
12082 int location = EXPR_WFL_LINECOL (TREE_VALUE (cn));
12083 tree dim = convert (int_type_node,
12084 java_complete_tree (TREE_VALUE (cn)));
12085 if (dim == error_mark_node)
12087 flag = 1;
12088 continue;
12090 else
12092 TREE_VALUE (cn) = dim;
12093 /* Setup the location of the current dimension, for
12094 later error report. */
12095 #ifdef USE_MAPPED_LOCATION
12096 TREE_PURPOSE (cn) = expr_add_location (NULL_TREE, location, 0);
12097 #else
12098 TREE_PURPOSE (cn) =
12099 build_expr_wfl (NULL_TREE, input_filename, 0, 0);
12100 EXPR_WFL_LINECOL (TREE_PURPOSE (cn)) = location;
12101 #endif
12104 /* They complete the array creation expression, if no errors
12105 were found. */
12106 CAN_COMPLETE_NORMALLY (node) = 1;
12107 return (flag ? error_mark_node
12108 : force_evaluation_order (patch_newarray (node)));
12110 case NEW_ANONYMOUS_ARRAY_EXPR:
12111 /* Create the array type if necessary. */
12112 if (ANONYMOUS_ARRAY_DIMS_SIG (node))
12114 tree type = ANONYMOUS_ARRAY_BASE_TYPE (node);
12115 if (!(type = resolve_type_during_patch (type)))
12116 return error_mark_node;
12117 type = build_array_from_name (type, NULL_TREE,
12118 ANONYMOUS_ARRAY_DIMS_SIG (node), NULL);
12119 ANONYMOUS_ARRAY_BASE_TYPE (node) = build_pointer_type (type);
12121 node = patch_new_array_init (ANONYMOUS_ARRAY_BASE_TYPE (node),
12122 ANONYMOUS_ARRAY_INITIALIZER (node));
12123 if (node == error_mark_node)
12124 return error_mark_node;
12125 CAN_COMPLETE_NORMALLY (node) = 1;
12126 return node;
12128 case NEW_CLASS_EXPR:
12129 case CALL_EXPR:
12130 /* Complete function's argument(s) first */
12131 if (complete_function_arguments (node))
12132 return error_mark_node;
12133 else
12135 tree decl, wfl = TREE_OPERAND (node, 0);
12136 int in_this = CALL_THIS_CONSTRUCTOR_P (node);
12137 int from_super = (EXPR_WFL_NODE (TREE_OPERAND (node, 0)) ==
12138 super_identifier_node);
12139 tree arguments;
12140 #ifdef USE_MAPPED_LOCATION
12141 source_location location = EXPR_LOCATION (node);
12142 #else
12143 int location = EXPR_WFL_LINECOL (node);
12144 #endif
12146 node = patch_method_invocation (node, NULL_TREE, NULL_TREE,
12147 from_super, 0, &decl);
12148 if (node == error_mark_node)
12149 return error_mark_node;
12151 if (TREE_CODE (node) == CALL_EXPR
12152 && TREE_OPERAND (node, 1) != NULL_TREE)
12153 arguments = TREE_VALUE (TREE_OPERAND (node, 1));
12154 else
12155 arguments = NULL_TREE;
12156 check_thrown_exceptions (location, decl, arguments);
12157 /* If we call this(...), register signature and positions */
12158 if (in_this)
12159 DECL_CONSTRUCTOR_CALLS (current_function_decl) =
12160 tree_cons (wfl, decl,
12161 DECL_CONSTRUCTOR_CALLS (current_function_decl));
12162 CAN_COMPLETE_NORMALLY (node) = 1;
12163 return force_evaluation_order (node);
12166 case MODIFY_EXPR:
12167 /* Save potential wfls */
12168 wfl_op1 = TREE_OPERAND (node, 0);
12169 TREE_OPERAND (node, 0) = nn = java_complete_lhs (wfl_op1);
12171 if (MODIFY_EXPR_FROM_INITIALIZATION_P (node)
12172 && TREE_CODE (nn) == VAR_DECL && TREE_STATIC (nn)
12173 && DECL_INITIAL (nn) != NULL_TREE)
12175 tree value;
12177 value = fold_constant_for_init (nn, nn);
12179 /* When we have a primitype type, or a string and we're not
12180 emitting a class file, we actually don't want to generate
12181 anything for the assignment. */
12182 if (value != NULL_TREE &&
12183 (JPRIMITIVE_TYPE_P (TREE_TYPE (value)) ||
12184 (TREE_TYPE (value) == string_ptr_type_node &&
12185 ! flag_emit_class_files)))
12187 /* Prepare node for patch_assignment */
12188 TREE_OPERAND (node, 1) = value;
12189 /* Call patch assignment to verify the assignment */
12190 if (patch_assignment (node, wfl_op1) == error_mark_node)
12191 return error_mark_node;
12192 /* Set DECL_INITIAL properly (a conversion might have
12193 been decided by patch_assignment) and return the
12194 empty statement. */
12195 else
12197 tree patched = patch_string (TREE_OPERAND (node, 1));
12198 if (patched)
12199 DECL_INITIAL (nn) = patched;
12200 else
12201 DECL_INITIAL (nn) = TREE_OPERAND (node, 1);
12202 DECL_FIELD_FINAL_IUD (nn) = 1;
12203 return build_java_empty_stmt ();
12206 if (! flag_emit_class_files)
12207 DECL_INITIAL (nn) = NULL_TREE;
12209 wfl_op2 = TREE_OPERAND (node, 1);
12211 if (TREE_OPERAND (node, 0) == error_mark_node)
12212 return error_mark_node;
12214 flag = COMPOUND_ASSIGN_P (wfl_op2);
12215 if (flag)
12217 /* This might break when accessing outer field from inner
12218 class. TESTME, FIXME */
12219 tree lvalue = java_stabilize_reference (TREE_OPERAND (node, 0));
12221 /* Hand stabilize the lhs on both places */
12222 TREE_OPERAND (node, 0) = lvalue;
12223 TREE_OPERAND (TREE_OPERAND (node, 1), 0) =
12224 (flag_emit_class_files ? lvalue : save_expr (lvalue));
12226 /* 15.25.2.a: Left hand is not an array access. FIXME */
12227 /* Now complete the RHS. We write it back later on. */
12228 nn = java_complete_tree (TREE_OPERAND (node, 1));
12230 if ((cn = patch_string (nn)))
12231 nn = cn;
12233 /* The last part of the rewrite for E1 op= E2 is to have
12234 E1 = (T)(E1 op E2), with T being the type of E1. */
12235 nn = java_complete_tree (build_cast (EXPR_WFL_LINECOL (wfl_op2),
12236 TREE_TYPE (lvalue), nn));
12238 /* If the assignment is compound and has reference type,
12239 then ensure the LHS has type String and nothing else. */
12240 if (JREFERENCE_TYPE_P (TREE_TYPE (lvalue))
12241 && ! JSTRING_TYPE_P (TREE_TYPE (lvalue)))
12242 parse_error_context (wfl_op2,
12243 "Incompatible type for %<+=%>. Can't convert %qs to %<java.lang.String%>",
12244 lang_printable_name (TREE_TYPE (lvalue), 0));
12246 /* 15.25.2.b: Left hand is an array access. FIXME */
12249 /* If we're about to patch a NEW_ARRAY_INIT, we call a special
12250 function to complete this RHS. Note that a NEW_ARRAY_INIT
12251 might have been already fully expanded if created as a result
12252 of processing an anonymous array initializer. We avoid doing
12253 the operation twice by testing whether the node already bears
12254 a type. */
12255 else if (TREE_CODE (wfl_op2) == NEW_ARRAY_INIT && !TREE_TYPE (wfl_op2))
12256 nn = patch_new_array_init (TREE_TYPE (TREE_OPERAND (node, 0)),
12257 TREE_OPERAND (node, 1));
12258 /* Otherwise we simply complete the RHS */
12259 else
12260 nn = java_complete_tree (TREE_OPERAND (node, 1));
12262 if (nn == error_mark_node)
12263 return error_mark_node;
12265 /* Write back the RHS as we evaluated it. */
12266 TREE_OPERAND (node, 1) = nn;
12268 /* In case we're handling = with a String as a RHS, we need to
12269 produce a String out of the RHS (it might still be a
12270 STRING_CST or a StringBuffer at this stage */
12271 if ((nn = patch_string (TREE_OPERAND (node, 1))))
12272 TREE_OPERAND (node, 1) = nn;
12274 if ((nn = nested_field_access_fix (wfl_op1, TREE_OPERAND (node, 0),
12275 TREE_OPERAND (node, 1))))
12277 /* We return error_mark_node if nested_field_access_fix
12278 detects we write into a final. */
12279 if (nn == error_mark_node)
12280 return error_mark_node;
12281 node = nn;
12283 else
12285 node = patch_assignment (node, wfl_op1);
12286 if (node == error_mark_node)
12287 return error_mark_node;
12288 /* Reorganize the tree if necessary. */
12289 if (flag && (!JREFERENCE_TYPE_P (TREE_TYPE (node))
12290 || JSTRING_P (TREE_TYPE (node))))
12291 node = java_refold (node);
12294 /* Seek to set DECL_INITIAL to a proper value, since it might have
12295 undergone a conversion in patch_assignment. We do that only when
12296 it's necessary to have DECL_INITIAL properly set. */
12297 nn = TREE_OPERAND (node, 0);
12298 if (TREE_CODE (nn) == VAR_DECL
12299 && DECL_INITIAL (nn) && CONSTANT_VALUE_P (DECL_INITIAL (nn))
12300 && FIELD_STATIC (nn) && FIELD_FINAL (nn)
12301 && (JPRIMITIVE_TYPE_P (TREE_TYPE (nn))
12302 || TREE_TYPE (nn) == string_ptr_type_node))
12303 DECL_INITIAL (nn) = TREE_OPERAND (node, 1);
12305 CAN_COMPLETE_NORMALLY (node) = 1;
12306 return node;
12308 case MULT_EXPR:
12309 case PLUS_EXPR:
12310 case MINUS_EXPR:
12311 case LSHIFT_EXPR:
12312 case RSHIFT_EXPR:
12313 case URSHIFT_EXPR:
12314 case BIT_AND_EXPR:
12315 case BIT_XOR_EXPR:
12316 case BIT_IOR_EXPR:
12317 case TRUNC_MOD_EXPR:
12318 case TRUNC_DIV_EXPR:
12319 case RDIV_EXPR:
12320 case TRUTH_ANDIF_EXPR:
12321 case TRUTH_ORIF_EXPR:
12322 case EQ_EXPR:
12323 case NE_EXPR:
12324 case GT_EXPR:
12325 case GE_EXPR:
12326 case LT_EXPR:
12327 case LE_EXPR:
12328 /* Operands 0 and 1 are WFL in certain cases only. patch_binop
12329 knows how to handle those cases. */
12330 wfl_op1 = TREE_OPERAND (node, 0);
12331 wfl_op2 = TREE_OPERAND (node, 1);
12333 CAN_COMPLETE_NORMALLY (node) = 1;
12334 /* Don't complete string nodes if dealing with the PLUS operand. */
12335 if (TREE_CODE (node) != PLUS_EXPR || !JSTRING_P (wfl_op1))
12337 nn = java_complete_tree (wfl_op1);
12338 if (nn == error_mark_node)
12339 return error_mark_node;
12341 TREE_OPERAND (node, 0) = nn;
12343 if (TREE_CODE (node) != PLUS_EXPR || !JSTRING_P (wfl_op2))
12345 nn = java_complete_tree (wfl_op2);
12346 if (nn == error_mark_node)
12347 return error_mark_node;
12349 TREE_OPERAND (node, 1) = nn;
12351 return patch_binop (node, wfl_op1, wfl_op2, 0);
12353 case INSTANCEOF_EXPR:
12354 wfl_op1 = TREE_OPERAND (node, 0);
12355 COMPLETE_CHECK_OP_0 (node);
12356 return patch_binop (node, wfl_op1, TREE_OPERAND (node, 1), 0);
12358 case UNARY_PLUS_EXPR:
12359 case NEGATE_EXPR:
12360 case TRUTH_NOT_EXPR:
12361 case BIT_NOT_EXPR:
12362 case PREDECREMENT_EXPR:
12363 case PREINCREMENT_EXPR:
12364 case POSTDECREMENT_EXPR:
12365 case POSTINCREMENT_EXPR:
12366 case CONVERT_EXPR:
12367 /* There are cases were wfl_op1 is a WFL. patch_unaryop knows
12368 how to handle those cases. */
12369 wfl_op1 = TREE_OPERAND (node, 0);
12370 CAN_COMPLETE_NORMALLY (node) = 1;
12371 TREE_OPERAND (node, 0) = java_complete_tree (wfl_op1);
12372 if (TREE_OPERAND (node, 0) == error_mark_node)
12373 return error_mark_node;
12374 node = patch_unaryop (node, wfl_op1);
12375 CAN_COMPLETE_NORMALLY (node) = 1;
12376 break;
12378 case ARRAY_REF:
12379 /* There are cases were wfl_op1 is a WFL. patch_array_ref knows
12380 how to handle those cases. */
12381 wfl_op1 = TREE_OPERAND (node, 0);
12382 TREE_OPERAND (node, 0) = java_complete_tree (wfl_op1);
12383 if (TREE_OPERAND (node, 0) == error_mark_node)
12384 return error_mark_node;
12385 if (!flag_emit_class_files)
12386 TREE_OPERAND (node, 0) = save_expr (TREE_OPERAND (node, 0));
12387 /* The same applies to wfl_op2 */
12388 wfl_op2 = TREE_OPERAND (node, 1);
12389 TREE_OPERAND (node, 1) = java_complete_tree (wfl_op2);
12390 if (TREE_OPERAND (node, 1) == error_mark_node)
12391 return error_mark_node;
12392 if (!flag_emit_class_files)
12393 TREE_OPERAND (node, 1) = save_expr (TREE_OPERAND (node, 1));
12394 return patch_array_ref (node);
12396 case RECORD_TYPE:
12397 return node;;
12399 case COMPONENT_REF:
12400 /* The first step in the re-write of qualified name handling. FIXME.
12401 So far, this is only to support PRIMTYPE.class ->
12402 PRIMCLASS.TYPE. */
12404 tree prim_class = TREE_OPERAND (node, 0);
12405 tree name = TREE_OPERAND (node, 1);
12406 tree field;
12408 gcc_assert (TREE_CODE (prim_class) == NOP_EXPR);
12409 prim_class = java_complete_tree (TREE_TYPE (prim_class));
12410 gcc_assert (TREE_CODE (prim_class) == RECORD_TYPE);
12411 field = lookup_field_wrapper (prim_class, name);
12413 if (field == NULL_TREE)
12415 error ("missing static field %qs", IDENTIFIER_POINTER (name));
12416 return error_mark_node;
12418 if (! FIELD_STATIC (field))
12420 error ("not a static field %qs", IDENTIFIER_POINTER (name));
12421 return error_mark_node;
12423 return field;
12425 break;
12427 case THIS_EXPR:
12428 /* Can't use THIS in a static environment */
12429 if (!current_this)
12431 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12432 parse_error_context (wfl_operator,
12433 "Keyword %<this%> used outside allowed context");
12434 TREE_TYPE (node) = error_mark_node;
12435 return error_mark_node;
12437 if (ctxp->explicit_constructor_p)
12439 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12440 parse_error_context
12441 (wfl_operator, "Can't reference %<this%> or %<super%> before the superclass constructor has been called");
12442 TREE_TYPE (node) = error_mark_node;
12443 return error_mark_node;
12445 return current_this;
12447 case CLASS_LITERAL:
12448 CAN_COMPLETE_NORMALLY (node) = 1;
12449 node = patch_incomplete_class_ref (node);
12450 if (node == error_mark_node)
12451 return error_mark_node;
12452 break;
12454 default:
12455 CAN_COMPLETE_NORMALLY (node) = 1;
12456 /* Ok: may be we have a STRING_CST or a crafted `StringBuffer'
12457 and it's time to turn it into the appropriate String object */
12458 if ((nn = patch_string (node)))
12459 node = nn;
12460 else
12461 internal_error ("No case for %s", tree_code_name [TREE_CODE (node)]);
12463 return node;
12466 /* Complete function call's argument. Return a nonzero value is an
12467 error was found. */
12469 static int
12470 complete_function_arguments (tree node)
12472 int flag = 0;
12473 tree cn;
12475 ctxp->explicit_constructor_p += (CALL_EXPLICIT_CONSTRUCTOR_P (node) ? 1 : 0);
12476 for (cn = TREE_OPERAND (node, 1); cn; cn = TREE_CHAIN (cn))
12478 tree wfl = TREE_VALUE (cn), parm, temp;
12479 parm = java_complete_tree (wfl);
12481 if (parm == error_mark_node)
12483 flag = 1;
12484 continue;
12486 /* If we have a string literal that we haven't transformed yet or a
12487 crafted string buffer, as a result of the use of the String
12488 `+' operator. Build `parm.toString()' and expand it. */
12489 if ((temp = patch_string (parm)))
12490 parm = temp;
12492 TREE_VALUE (cn) = parm;
12494 ctxp->explicit_constructor_p -= (CALL_EXPLICIT_CONSTRUCTOR_P (node) ? 1 : 0);
12495 return flag;
12498 /* Sometimes (for loops and variable initialized during their
12499 declaration), we want to wrap a statement around a WFL and turn it
12500 debugable. */
12502 static tree
12503 build_debugable_stmt (int location, tree stmt)
12505 if (TREE_CODE (stmt) != EXPR_WITH_FILE_LOCATION)
12507 #ifdef USE_MAPPED_LOCATION
12508 stmt = expr_add_location (stmt, location, 1);
12509 #else
12510 stmt = build_expr_wfl (stmt, input_filename, 0, 0);
12511 EXPR_WFL_LINECOL (stmt) = location;
12512 JAVA_MAYBE_GENERATE_DEBUG_INFO (stmt);
12513 #endif
12515 return stmt;
12518 static tree
12519 build_expr_block (tree body, tree decls)
12521 tree node = make_node (BLOCK);
12522 BLOCK_EXPR_DECLS (node) = decls;
12523 BLOCK_EXPR_BODY (node) = body;
12524 if (body)
12525 TREE_TYPE (node) = TREE_TYPE (body);
12526 TREE_SIDE_EFFECTS (node) = 1;
12527 return node;
12530 /* Create a new function block and link it appropriately to current
12531 function block chain */
12533 static tree
12534 enter_block (void)
12536 tree b = build_expr_block (NULL_TREE, NULL_TREE);
12538 /* Link block B supercontext to the previous block. The current
12539 function DECL is used as supercontext when enter_a_block is called
12540 for the first time for a given function. The current function body
12541 (DECL_FUNCTION_BODY) is set to be block B. */
12543 tree fndecl = current_function_decl;
12545 if (!fndecl) {
12546 BLOCK_SUPERCONTEXT (b) = current_static_block;
12547 current_static_block = b;
12550 else if (!DECL_FUNCTION_BODY (fndecl))
12552 BLOCK_SUPERCONTEXT (b) = fndecl;
12553 DECL_FUNCTION_BODY (fndecl) = b;
12555 else
12557 BLOCK_SUPERCONTEXT (b) = DECL_FUNCTION_BODY (fndecl);
12558 DECL_FUNCTION_BODY (fndecl) = b;
12560 return b;
12563 /* Exit a block by changing the current function body
12564 (DECL_FUNCTION_BODY) to the current block super context, only if
12565 the block being exited isn't the method's top level one. */
12567 static tree
12568 exit_block (void)
12570 tree b;
12571 if (current_function_decl)
12573 b = DECL_FUNCTION_BODY (current_function_decl);
12574 if (BLOCK_SUPERCONTEXT (b) != current_function_decl)
12575 DECL_FUNCTION_BODY (current_function_decl) = BLOCK_SUPERCONTEXT (b);
12577 else
12579 b = current_static_block;
12581 if (BLOCK_SUPERCONTEXT (b))
12582 current_static_block = BLOCK_SUPERCONTEXT (b);
12584 return b;
12587 /* Lookup for NAME in the nested function's blocks, all the way up to
12588 the current toplevel one. It complies with Java's local variable
12589 scoping rules. */
12591 static tree
12592 lookup_name_in_blocks (tree name)
12594 tree b = GET_CURRENT_BLOCK (current_function_decl);
12596 while (b != current_function_decl)
12598 tree current;
12600 /* Paranoid sanity check. To be removed */
12601 if (TREE_CODE (b) != BLOCK)
12602 abort ();
12604 for (current = BLOCK_EXPR_DECLS (b); current;
12605 current = TREE_CHAIN (current))
12606 if (DECL_NAME (current) == name)
12607 return current;
12608 b = BLOCK_SUPERCONTEXT (b);
12610 return NULL_TREE;
12613 static void
12614 maybe_absorb_scoping_blocks (void)
12616 while (BLOCK_IS_IMPLICIT (GET_CURRENT_BLOCK (current_function_decl)))
12618 tree b = exit_block ();
12619 java_method_add_stmt (current_function_decl, b);
12620 SOURCE_FRONTEND_DEBUG (("Absorbing scoping block at line %d", input_line));
12625 /* This section of the source is reserved to build_* functions that
12626 are building incomplete tree nodes and the patch_* functions that
12627 are completing them. */
12629 /* Wrap a non WFL node around a WFL. */
12631 static tree
12632 build_wfl_wrap (tree node, int location)
12634 tree wfl, node_to_insert = node;
12636 /* We want to process THIS . xxx symbolically, to keep it consistent
12637 with the way we're processing SUPER. A THIS from a primary as a
12638 different form than a SUPER. Turn THIS into something symbolic */
12639 if (TREE_CODE (node) == THIS_EXPR)
12640 node_to_insert = wfl = build_wfl_node (this_identifier_node);
12641 else
12642 #ifdef USE_MAPPED_LOCATION
12643 wfl = build_unknown_wfl (NULL_TREE);
12645 SET_EXPR_LOCATION (wfl, location);
12646 #else
12647 wfl = build_expr_wfl (NULL_TREE, ctxp->filename, 0, 0);
12649 EXPR_WFL_LINECOL (wfl) = location;
12650 #endif
12651 EXPR_WFL_QUALIFICATION (wfl) = build_tree_list (node_to_insert, NULL_TREE);
12652 return wfl;
12655 /* Build a super() constructor invocation. Returns an empty statement if
12656 we're currently dealing with the class java.lang.Object. */
12658 static tree
12659 build_super_invocation (tree mdecl)
12661 if (DECL_CONTEXT (mdecl) == object_type_node)
12662 return build_java_empty_stmt ();
12663 else
12665 tree super_wfl = build_wfl_node (super_identifier_node);
12666 tree a = NULL_TREE, t;
12668 /* This is called after parsing is done, so the parser context
12669 won't be accurate. Set location info from current_class decl. */
12670 tree class_wfl = lookup_cl (TYPE_NAME (current_class));
12671 EXPR_WFL_LINECOL (super_wfl) = EXPR_WFL_LINECOL (class_wfl);
12673 /* If we're dealing with an anonymous class, pass the arguments
12674 of the crafted constructor along. */
12675 if (ANONYMOUS_CLASS_P (DECL_CONTEXT (mdecl)))
12677 SKIP_THIS_AND_ARTIFICIAL_PARMS (t, mdecl);
12678 for (; t != end_params_node; t = TREE_CHAIN (t))
12679 a = tree_cons (NULL_TREE, build_wfl_node (TREE_PURPOSE (t)), a);
12681 return build_method_invocation (super_wfl, a);
12685 /* Build a SUPER/THIS qualified method invocation. */
12687 static tree
12688 build_this_super_qualified_invocation (int use_this, tree name, tree args,
12689 int lloc, int rloc)
12691 tree invok;
12692 tree wfl =
12693 build_wfl_node (use_this ? this_identifier_node : super_identifier_node);
12694 EXPR_WFL_LINECOL (wfl) = lloc;
12695 invok = build_method_invocation (name, args);
12696 return make_qualified_primary (wfl, invok, rloc);
12699 /* Build an incomplete CALL_EXPR node. */
12701 static tree
12702 build_method_invocation (tree name, tree args)
12704 tree call = build3 (CALL_EXPR, NULL_TREE, name, args, NULL_TREE);
12705 TREE_SIDE_EFFECTS (call) = 1;
12706 EXPR_WFL_LINECOL (call) = EXPR_WFL_LINECOL (name);
12707 return call;
12710 /* Build an incomplete new xxx(...) node. */
12712 static tree
12713 build_new_invocation (tree name, tree args)
12715 tree call = build3 (NEW_CLASS_EXPR, NULL_TREE, name, args, NULL_TREE);
12716 TREE_SIDE_EFFECTS (call) = 1;
12717 EXPR_WFL_LINECOL (call) = EXPR_WFL_LINECOL (name);
12718 return call;
12721 /* Build an incomplete assignment expression. */
12723 static tree
12724 build_assignment (int op, int op_location, tree lhs, tree rhs)
12726 tree assignment;
12727 /* Build the corresponding binop if we deal with a Compound
12728 Assignment operator. Mark the binop sub-tree as part of a
12729 Compound Assignment expression */
12730 if (op != ASSIGN_TK)
12732 rhs = build_binop (BINOP_LOOKUP (op), op_location, lhs, rhs);
12733 COMPOUND_ASSIGN_P (rhs) = 1;
12735 assignment = build2 (MODIFY_EXPR, NULL_TREE, lhs, rhs);
12736 TREE_SIDE_EFFECTS (assignment) = 1;
12737 EXPR_WFL_LINECOL (assignment) = op_location;
12738 return assignment;
12741 /* Print an INTEGER_CST node as decimal in a static buffer, and return
12742 the buffer. This is used only for string conversion. */
12743 static char *
12744 string_convert_int_cst (tree node)
12746 /* Long.MIN_VALUE is -9223372036854775808, 20 characters. */
12747 static char buffer[21];
12749 unsigned HOST_WIDE_INT lo = TREE_INT_CST_LOW (node);
12750 unsigned HOST_WIDE_INT hi = TREE_INT_CST_HIGH (node);
12751 char *p = buffer + sizeof (buffer);
12752 int neg = 0;
12754 unsigned HOST_WIDE_INT hibit = (((unsigned HOST_WIDE_INT) 1)
12755 << (HOST_BITS_PER_WIDE_INT - 1));
12757 *--p = '\0';
12759 /* If negative, note the fact and negate the value. */
12760 if ((hi & hibit))
12762 lo = ~lo;
12763 hi = ~hi;
12764 if (++lo == 0)
12765 ++hi;
12766 neg = 1;
12769 /* Divide by 10 until there are no bits left. */
12772 unsigned HOST_WIDE_INT acc = 0;
12773 unsigned HOST_WIDE_INT outhi = 0, outlo = 0;
12774 unsigned int i;
12776 /* Use long division to compute the result and the remainder. */
12777 for (i = 0; i < 2 * HOST_BITS_PER_WIDE_INT; ++i)
12779 /* Shift a bit into accumulator. */
12780 acc <<= 1;
12781 if ((hi & hibit))
12782 acc |= 1;
12784 /* Shift the value. */
12785 hi <<= 1;
12786 if ((lo & hibit))
12787 hi |= 1;
12788 lo <<= 1;
12790 /* Shift the correct bit into the result. */
12791 outhi <<= 1;
12792 if ((outlo & hibit))
12793 outhi |= 1;
12794 outlo <<= 1;
12795 if (acc >= 10)
12797 acc -= 10;
12798 outlo |= 1;
12802 /* '0' == 060 in Java, but might not be here (think EBCDIC). */
12803 *--p = '\060' + acc;
12805 hi = outhi;
12806 lo = outlo;
12808 while (hi || lo);
12810 if (neg)
12811 *--p = '\055'; /* '-' == 055 in Java, but might not be here. */
12813 return p;
12816 /* Print an INTEGER_CST node in a static buffer, and return the
12817 buffer. This is used only for error handling. */
12818 char *
12819 print_int_node (tree node)
12821 static char buffer [80];
12822 if (TREE_CONSTANT_OVERFLOW (node))
12823 sprintf (buffer, "<overflow>");
12825 if (TREE_INT_CST_HIGH (node) == 0)
12826 sprintf (buffer, HOST_WIDE_INT_PRINT_UNSIGNED,
12827 TREE_INT_CST_LOW (node));
12828 else if (TREE_INT_CST_HIGH (node) == -1
12829 && TREE_INT_CST_LOW (node) != 0)
12830 sprintf (buffer, "-" HOST_WIDE_INT_PRINT_UNSIGNED,
12831 -TREE_INT_CST_LOW (node));
12832 else
12833 sprintf (buffer, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
12834 TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
12836 return buffer;
12840 /* Return 1 if an assignment to a FINAL is attempted in a non suitable
12841 context. */
12843 /* 15.25 Assignment operators. */
12845 static tree
12846 patch_assignment (tree node, tree wfl_op1)
12848 tree rhs = TREE_OPERAND (node, 1);
12849 tree lvalue = TREE_OPERAND (node, 0), llvalue;
12850 tree lhs_type = NULL_TREE, rhs_type, new_rhs = NULL_TREE;
12851 int error_found = 0;
12852 int lvalue_from_array = 0;
12853 int is_return = 0;
12855 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12857 /* Lhs can be a named variable */
12858 if (JDECL_P (lvalue))
12860 lhs_type = TREE_TYPE (lvalue);
12862 /* Or Lhs can be an array access. */
12863 else if (TREE_CODE (lvalue) == ARRAY_REF)
12865 lhs_type = TREE_TYPE (lvalue);
12866 lvalue_from_array = 1;
12868 /* Or a field access */
12869 else if (TREE_CODE (lvalue) == COMPONENT_REF)
12870 lhs_type = TREE_TYPE (lvalue);
12871 /* Or a function return slot */
12872 else if (TREE_CODE (lvalue) == RESULT_DECL)
12874 /* If the return type is an integral type, then we create the
12875 RESULT_DECL with a promoted type, but we need to do these
12876 checks against the unpromoted type to ensure type safety. So
12877 here we look at the real type, not the type of the decl we
12878 are modifying. */
12879 lhs_type = TREE_TYPE (TREE_TYPE (current_function_decl));
12880 is_return = 1;
12882 /* Otherwise, we might want to try to write into an optimized static
12883 final, this is an of a different nature, reported further on. */
12884 else if (TREE_CODE (wfl_op1) == EXPR_WITH_FILE_LOCATION
12885 && resolve_expression_name (wfl_op1, &llvalue))
12887 lhs_type = TREE_TYPE (lvalue);
12889 else
12891 parse_error_context (wfl_op1, "Invalid left hand side of assignment");
12892 error_found = 1;
12895 rhs_type = TREE_TYPE (rhs);
12897 /* 5.1 Try the assignment conversion for builtin type. */
12898 new_rhs = try_builtin_assignconv (wfl_op1, lhs_type, rhs);
12900 /* 5.2 If it failed, try a reference conversion */
12901 if (!new_rhs)
12902 new_rhs = try_reference_assignconv (lhs_type, rhs);
12904 /* 15.25.2 If we have a compound assignment, convert RHS into the
12905 type of the LHS */
12906 else if (COMPOUND_ASSIGN_P (TREE_OPERAND (node, 1)))
12907 new_rhs = convert (lhs_type, rhs);
12909 /* Explicit cast required. This is an error */
12910 if (!new_rhs)
12912 char *t1 = xstrdup (lang_printable_name (TREE_TYPE (rhs), 0));
12913 char *t2 = xstrdup (lang_printable_name (lhs_type, 0));
12914 tree wfl;
12915 char operation [32]; /* Max size known */
12917 /* If the assignment is part of a declaration, we use the WFL of
12918 the declared variable to point out the error and call it a
12919 declaration problem. If the assignment is a genuine =
12920 operator, we call is a operator `=' problem, otherwise we
12921 call it an assignment problem. In both of these last cases,
12922 we use the WFL of the operator to indicate the error. */
12924 if (MODIFY_EXPR_FROM_INITIALIZATION_P (node))
12926 wfl = wfl_op1;
12927 strcpy (operation, "declaration");
12929 else
12931 wfl = wfl_operator;
12932 if (COMPOUND_ASSIGN_P (TREE_OPERAND (node, 1)))
12933 strcpy (operation, "assignment");
12934 else if (is_return)
12935 strcpy (operation, "'return'");
12936 else
12937 strcpy (operation, "'='");
12940 if (!valid_cast_to_p (rhs_type, lhs_type))
12941 parse_error_context
12942 (wfl, "Incompatible type for %s. Can't convert %qs to %qs",
12943 operation, t1, t2);
12944 else
12945 parse_error_context (wfl, "Incompatible type for %s. Explicit cast needed to convert %qs to %qs",
12946 operation, t1, t2);
12947 free (t1); free (t2);
12948 error_found = 1;
12951 if (error_found)
12952 return error_mark_node;
12954 /* If we're processing a `return' statement, promote the actual type
12955 to the promoted type. */
12956 if (is_return)
12957 new_rhs = convert (TREE_TYPE (lvalue), new_rhs);
12959 /* 10.10: Array Store Exception runtime check */
12960 if (!flag_emit_class_files
12961 && lvalue_from_array
12962 && JREFERENCE_TYPE_P (TYPE_ARRAY_ELEMENT (lhs_type)))
12964 tree array, store_check, base, index_expr;
12966 /* Save RHS so that it doesn't get re-evaluated by the store check. */
12967 new_rhs = save_expr (new_rhs);
12969 /* Get the INDIRECT_REF. */
12970 array = TREE_OPERAND (TREE_OPERAND (lvalue, 0), 0);
12971 /* Get the array pointer expr. */
12972 array = TREE_OPERAND (array, 0);
12973 store_check = build_java_arraystore_check (array, new_rhs);
12975 index_expr = TREE_OPERAND (lvalue, 1);
12977 if (TREE_CODE (index_expr) == COMPOUND_EXPR)
12979 /* A COMPOUND_EXPR here is a bounds check. The bounds check must
12980 happen before the store check, so prepare to insert the store
12981 check within the second operand of the existing COMPOUND_EXPR. */
12982 base = index_expr;
12984 else
12985 base = lvalue;
12987 index_expr = TREE_OPERAND (base, 1);
12988 TREE_OPERAND (base, 1) = build2 (COMPOUND_EXPR, TREE_TYPE (index_expr),
12989 store_check, index_expr);
12992 /* Final locals can be used as case values in switch
12993 statement. Prepare them for this eventuality. */
12994 if (TREE_CODE (lvalue) == VAR_DECL
12995 && DECL_FINAL (lvalue)
12996 && TREE_CONSTANT (new_rhs)
12997 && IDENTIFIER_LOCAL_VALUE (DECL_NAME (lvalue))
12998 && JINTEGRAL_TYPE_P (TREE_TYPE (lvalue))
13001 TREE_CONSTANT (lvalue) = 1;
13002 TREE_INVARIANT (lvalue) = 1;
13003 DECL_INITIAL (lvalue) = new_rhs;
13006 /* Copy the rhs if it's a reference. */
13007 if (! flag_check_references && ! flag_emit_class_files && optimize > 0)
13009 switch (TREE_CODE (new_rhs))
13011 case ARRAY_REF:
13012 case INDIRECT_REF:
13013 case COMPONENT_REF:
13014 /* Transform a = foo.bar
13015 into a = ({int tmp; tmp = foo.bar;}).
13016 We need to ensure that if a read from memory fails
13017 because of a NullPointerException, a destination variable
13018 will remain unchanged. An explicit temporary does what
13019 we need.
13021 If flag_check_references is set, this is unnecessary
13022 because we'll check each reference before doing any
13023 reads. If optimize is not set the result will never be
13024 written to a stack slot that contains the LHS. */
13026 tree tmp = build_decl (VAR_DECL, get_identifier ("<tmp>"),
13027 TREE_TYPE (new_rhs));
13028 tree block = make_node (BLOCK);
13029 tree assignment
13030 = build2 (MODIFY_EXPR, TREE_TYPE (new_rhs), tmp, fold (new_rhs));
13031 DECL_CONTEXT (tmp) = current_function_decl;
13032 TREE_TYPE (block) = TREE_TYPE (new_rhs);
13033 BLOCK_VARS (block) = tmp;
13034 BLOCK_EXPR_BODY (block) = assignment;
13035 TREE_SIDE_EFFECTS (block) = 1;
13036 new_rhs = block;
13038 break;
13039 default:
13040 break;
13044 TREE_OPERAND (node, 0) = lvalue;
13045 TREE_OPERAND (node, 1) = new_rhs;
13046 TREE_TYPE (node) = lhs_type;
13047 return node;
13050 /* Check that type SOURCE can be cast into type DEST. If the cast
13051 can't occur at all, return NULL; otherwise, return a possibly
13052 modified rhs. */
13054 static tree
13055 try_reference_assignconv (tree lhs_type, tree rhs)
13057 tree new_rhs = NULL_TREE;
13058 tree rhs_type = TREE_TYPE (rhs);
13060 if (!JPRIMITIVE_TYPE_P (rhs_type) && JREFERENCE_TYPE_P (lhs_type))
13062 /* `null' may be assigned to any reference type */
13063 if (rhs == null_pointer_node)
13064 new_rhs = null_pointer_node;
13065 /* Try the reference assignment conversion */
13066 else if (valid_ref_assignconv_cast_p (rhs_type, lhs_type, 0))
13067 new_rhs = rhs;
13068 /* This is a magic assignment that we process differently */
13069 else if (TREE_CODE (rhs) == JAVA_EXC_OBJ_EXPR)
13070 new_rhs = rhs;
13072 return new_rhs;
13075 /* Check that RHS can be converted into LHS_TYPE by the assignment
13076 conversion (5.2), for the cases of RHS being a builtin type. Return
13077 NULL_TREE if the conversion fails or if because RHS isn't of a
13078 builtin type. Return a converted RHS if the conversion is possible. */
13080 static tree
13081 try_builtin_assignconv (tree wfl_op1, tree lhs_type, tree rhs)
13083 tree new_rhs = NULL_TREE;
13084 tree rhs_type = TREE_TYPE (rhs);
13086 /* Handle boolean specially. */
13087 if (TREE_CODE (rhs_type) == BOOLEAN_TYPE
13088 || TREE_CODE (lhs_type) == BOOLEAN_TYPE)
13090 if (TREE_CODE (rhs_type) == BOOLEAN_TYPE
13091 && TREE_CODE (lhs_type) == BOOLEAN_TYPE)
13092 new_rhs = rhs;
13095 /* 5.1.1 Try Identity Conversion,
13096 5.1.2 Try Widening Primitive Conversion */
13097 else if (valid_builtin_assignconv_identity_widening_p (lhs_type, rhs_type))
13098 new_rhs = convert (lhs_type, rhs);
13100 /* Try a narrowing primitive conversion (5.1.3):
13101 - expression is a constant expression of type byte, short, char,
13102 or int, AND
13103 - variable is byte, short or char AND
13104 - The value of the expression is representable in the type of the
13105 variable */
13106 else if ((rhs_type == byte_type_node || rhs_type == short_type_node
13107 || rhs_type == char_type_node || rhs_type == int_type_node)
13108 && TREE_CONSTANT (rhs)
13109 && (lhs_type == byte_type_node || lhs_type == char_type_node
13110 || lhs_type == short_type_node))
13112 if (int_fits_type_p (rhs, lhs_type))
13113 new_rhs = convert (lhs_type, rhs);
13114 else if (wfl_op1) /* Might be called with a NULL */
13115 parse_warning_context
13116 (wfl_op1,
13117 "Constant expression %qs too wide for narrowing primitive conversion to %qs",
13118 print_int_node (rhs), lang_printable_name (lhs_type, 0));
13119 /* Reported a warning that will turn into an error further
13120 down, so we don't return */
13123 return new_rhs;
13126 /* Return 1 if RHS_TYPE can be converted to LHS_TYPE by identity
13127 conversion (5.1.1) or widening primitive conversion (5.1.2). Return
13128 0 is the conversion test fails. This implements parts the method
13129 invocation conversion (5.3). */
13131 static int
13132 valid_builtin_assignconv_identity_widening_p (tree lhs_type, tree rhs_type)
13134 /* 5.1.1: This is the identity conversion part. */
13135 if (lhs_type == rhs_type)
13136 return 1;
13138 /* Reject non primitive types and boolean conversions. */
13139 if (!JNUMERIC_TYPE_P (lhs_type) || !JNUMERIC_TYPE_P (rhs_type))
13140 return 0;
13142 /* 5.1.2: widening primitive conversion. byte, even if it's smaller
13143 than a char can't be converted into a char. Short can't too, but
13144 the < test below takes care of that */
13145 if (lhs_type == char_type_node && rhs_type == byte_type_node)
13146 return 0;
13148 /* Accept all promoted type here. Note, we can't use <= in the test
13149 below, because we still need to bounce out assignments of short
13150 to char and the likes */
13151 if (lhs_type == int_type_node
13152 && (rhs_type == promoted_byte_type_node
13153 || rhs_type == promoted_short_type_node
13154 || rhs_type == promoted_char_type_node
13155 || rhs_type == promoted_boolean_type_node))
13156 return 1;
13158 /* From here, an integral is widened if its precision is smaller
13159 than the precision of the LHS or if the LHS is a floating point
13160 type, or the RHS is a float and the RHS a double. */
13161 if ((JINTEGRAL_TYPE_P (rhs_type) && JINTEGRAL_TYPE_P (lhs_type)
13162 && (TYPE_PRECISION (rhs_type) < TYPE_PRECISION (lhs_type)))
13163 || (JINTEGRAL_TYPE_P (rhs_type) && JFLOAT_TYPE_P (lhs_type))
13164 || (rhs_type == float_type_node && lhs_type == double_type_node))
13165 return 1;
13167 return 0;
13170 /* Check that something of SOURCE type can be assigned or cast to
13171 something of DEST type at runtime. Return 1 if the operation is
13172 valid, 0 otherwise. If CAST is set to 1, we're treating the case
13173 were SOURCE is cast into DEST, which borrows a lot of the
13174 assignment check. */
13176 static int
13177 valid_ref_assignconv_cast_p (tree source, tree dest, int cast)
13179 /* SOURCE or DEST might be null if not from a declared entity. */
13180 if (!source || !dest)
13181 return 0;
13182 if (JNULLP_TYPE_P (source))
13183 return 1;
13184 if (TREE_CODE (source) == POINTER_TYPE)
13185 source = TREE_TYPE (source);
13186 if (TREE_CODE (dest) == POINTER_TYPE)
13187 dest = TREE_TYPE (dest);
13189 /* If source and dest are being compiled from bytecode, they may need to
13190 be loaded. */
13191 if (CLASS_P (source) && !CLASS_LOADED_P (source))
13193 load_class (source, 1);
13194 safe_layout_class (source);
13196 if (CLASS_P (dest) && !CLASS_LOADED_P (dest))
13198 load_class (dest, 1);
13199 safe_layout_class (dest);
13202 /* Case where SOURCE is a class type */
13203 if (TYPE_CLASS_P (source))
13205 if (TYPE_CLASS_P (dest))
13206 return (source == dest
13207 || inherits_from_p (source, dest)
13208 || (cast && inherits_from_p (dest, source)));
13209 if (TYPE_INTERFACE_P (dest))
13211 /* If doing a cast and SOURCE is final, the operation is
13212 always correct a compile time (because even if SOURCE
13213 does not implement DEST, a subclass of SOURCE might). */
13214 if (cast && !CLASS_FINAL (TYPE_NAME (source)))
13215 return 1;
13216 /* Otherwise, SOURCE must implement DEST */
13217 return interface_of_p (dest, source);
13219 /* DEST is an array, cast permitted if SOURCE is of Object type */
13220 return (cast && source == object_type_node ? 1 : 0);
13222 if (TYPE_INTERFACE_P (source))
13224 if (TYPE_CLASS_P (dest))
13226 /* If not casting, DEST must be the Object type */
13227 if (!cast)
13228 return dest == object_type_node;
13229 /* We're doing a cast. The cast is always valid is class
13230 DEST is not final, otherwise, DEST must implement SOURCE */
13231 else if (!CLASS_FINAL (TYPE_NAME (dest)))
13232 return 1;
13233 else
13234 return interface_of_p (source, dest);
13236 if (TYPE_INTERFACE_P (dest))
13238 /* If doing a cast, then if SOURCE and DEST contain method
13239 with the same signature but different return type, then
13240 this is a (compile time) error */
13241 if (cast)
13243 tree method_source, method_dest;
13244 tree source_type;
13245 tree source_sig;
13246 tree source_name;
13247 for (method_source = TYPE_METHODS (source); method_source;
13248 method_source = TREE_CHAIN (method_source))
13250 source_sig =
13251 build_java_argument_signature (TREE_TYPE (method_source));
13252 source_type = TREE_TYPE (TREE_TYPE (method_source));
13253 source_name = DECL_NAME (method_source);
13254 for (method_dest = TYPE_METHODS (dest);
13255 method_dest; method_dest = TREE_CHAIN (method_dest))
13256 if (source_sig ==
13257 build_java_argument_signature (TREE_TYPE (method_dest))
13258 && source_name == DECL_NAME (method_dest)
13259 && source_type != TREE_TYPE (TREE_TYPE (method_dest)))
13260 return 0;
13262 return 1;
13264 else
13265 return source == dest || interface_of_p (dest, source);
13267 else
13269 /* Array */
13270 return (cast
13271 && (DECL_NAME (TYPE_NAME (source))
13272 == java_lang_cloneable_identifier_node
13273 || (DECL_NAME (TYPE_NAME (source))
13274 == java_io_serializable_identifier_node)));
13277 if (TYPE_ARRAY_P (source))
13279 if (TYPE_CLASS_P (dest))
13280 return dest == object_type_node;
13281 /* Can't cast an array to an interface unless the interface is
13282 java.lang.Cloneable or java.io.Serializable. */
13283 if (TYPE_INTERFACE_P (dest))
13284 return (DECL_NAME (TYPE_NAME (dest))
13285 == java_lang_cloneable_identifier_node
13286 || (DECL_NAME (TYPE_NAME (dest))
13287 == java_io_serializable_identifier_node));
13288 else /* Arrays */
13290 tree source_element_type = TYPE_ARRAY_ELEMENT (source);
13291 tree dest_element_type = TYPE_ARRAY_ELEMENT (dest);
13293 /* In case of severe errors, they turn out null */
13294 if (!dest_element_type || !source_element_type)
13295 return 0;
13296 if (source_element_type == dest_element_type)
13297 return 1;
13298 return valid_ref_assignconv_cast_p (source_element_type,
13299 dest_element_type, cast);
13301 return 0;
13303 return 0;
13306 static int
13307 valid_cast_to_p (tree source, tree dest)
13309 if (TREE_CODE (source) == POINTER_TYPE)
13310 source = TREE_TYPE (source);
13311 if (TREE_CODE (dest) == POINTER_TYPE)
13312 dest = TREE_TYPE (dest);
13314 if (TREE_CODE (source) == RECORD_TYPE && TREE_CODE (dest) == RECORD_TYPE)
13315 return valid_ref_assignconv_cast_p (source, dest, 1);
13317 else if (JNUMERIC_TYPE_P (source) && JNUMERIC_TYPE_P (dest))
13318 return 1;
13320 else if (TREE_CODE (source) == BOOLEAN_TYPE
13321 && TREE_CODE (dest) == BOOLEAN_TYPE)
13322 return 1;
13324 return 0;
13327 static tree
13328 do_unary_numeric_promotion (tree arg)
13330 tree type = TREE_TYPE (arg);
13331 if ((TREE_CODE (type) == INTEGER_TYPE && TYPE_PRECISION (type) < 32)
13332 || TREE_CODE (type) == CHAR_TYPE)
13333 arg = convert (int_type_node, arg);
13334 return arg;
13337 /* Return a nonzero value if SOURCE can be converted into DEST using
13338 the method invocation conversion rule (5.3). */
13339 static int
13340 valid_method_invocation_conversion_p (tree dest, tree source)
13342 return ((JPRIMITIVE_TYPE_P (source) && JPRIMITIVE_TYPE_P (dest)
13343 && valid_builtin_assignconv_identity_widening_p (dest, source))
13344 || ((JREFERENCE_TYPE_P (source) || JNULLP_TYPE_P (source))
13345 && (JREFERENCE_TYPE_P (dest) || JNULLP_TYPE_P (dest))
13346 && valid_ref_assignconv_cast_p (source, dest, 0)));
13349 /* Build an incomplete binop expression. */
13351 static tree
13352 build_binop (enum tree_code op, int op_location, tree op1, tree op2)
13354 tree binop = build2 (op, NULL_TREE, op1, op2);
13355 TREE_SIDE_EFFECTS (binop) = 1;
13356 /* Store the location of the operator, for better error report. The
13357 string of the operator will be rebuild based on the OP value. */
13358 EXPR_WFL_LINECOL (binop) = op_location;
13359 return binop;
13362 /* Build the string of the operator retained by NODE. If NODE is part
13363 of a compound expression, add an '=' at the end of the string. This
13364 function is called when an error needs to be reported on an
13365 operator. The string is returned as a pointer to a static character
13366 buffer. */
13368 static char *
13369 operator_string (tree node)
13371 #define BUILD_OPERATOR_STRING(S) \
13373 sprintf (buffer, "%s%s", S, (COMPOUND_ASSIGN_P (node) ? "=" : "")); \
13374 return buffer; \
13377 static char buffer [10];
13378 switch (TREE_CODE (node))
13380 case MULT_EXPR: BUILD_OPERATOR_STRING ("*");
13381 case RDIV_EXPR: BUILD_OPERATOR_STRING ("/");
13382 case TRUNC_MOD_EXPR: BUILD_OPERATOR_STRING ("%");
13383 case PLUS_EXPR: BUILD_OPERATOR_STRING ("+");
13384 case MINUS_EXPR: BUILD_OPERATOR_STRING ("-");
13385 case LSHIFT_EXPR: BUILD_OPERATOR_STRING ("<<");
13386 case RSHIFT_EXPR: BUILD_OPERATOR_STRING (">>");
13387 case URSHIFT_EXPR: BUILD_OPERATOR_STRING (">>>");
13388 case BIT_AND_EXPR: BUILD_OPERATOR_STRING ("&");
13389 case BIT_XOR_EXPR: BUILD_OPERATOR_STRING ("^");
13390 case BIT_IOR_EXPR: BUILD_OPERATOR_STRING ("|");
13391 case TRUTH_ANDIF_EXPR: BUILD_OPERATOR_STRING ("&&");
13392 case TRUTH_ORIF_EXPR: BUILD_OPERATOR_STRING ("||");
13393 case EQ_EXPR: BUILD_OPERATOR_STRING ("==");
13394 case NE_EXPR: BUILD_OPERATOR_STRING ("!=");
13395 case GT_EXPR: BUILD_OPERATOR_STRING (">");
13396 case GE_EXPR: BUILD_OPERATOR_STRING (">=");
13397 case LT_EXPR: BUILD_OPERATOR_STRING ("<");
13398 case LE_EXPR: BUILD_OPERATOR_STRING ("<=");
13399 case UNARY_PLUS_EXPR: BUILD_OPERATOR_STRING ("+");
13400 case NEGATE_EXPR: BUILD_OPERATOR_STRING ("-");
13401 case TRUTH_NOT_EXPR: BUILD_OPERATOR_STRING ("!");
13402 case BIT_NOT_EXPR: BUILD_OPERATOR_STRING ("~");
13403 case PREINCREMENT_EXPR: /* Fall through */
13404 case POSTINCREMENT_EXPR: BUILD_OPERATOR_STRING ("++");
13405 case PREDECREMENT_EXPR: /* Fall through */
13406 case POSTDECREMENT_EXPR: BUILD_OPERATOR_STRING ("--");
13407 default:
13408 internal_error ("unregistered operator %s",
13409 tree_code_name [TREE_CODE (node)]);
13411 return NULL;
13412 #undef BUILD_OPERATOR_STRING
13415 /* Return 1 if VAR_ACCESS1 is equivalent to VAR_ACCESS2. */
13417 static int
13418 java_decl_equiv (tree var_acc1, tree var_acc2)
13420 if (JDECL_P (var_acc1))
13421 return (var_acc1 == var_acc2);
13423 return (TREE_CODE (var_acc1) == COMPONENT_REF
13424 && TREE_CODE (var_acc2) == COMPONENT_REF
13425 && TREE_OPERAND (TREE_OPERAND (var_acc1, 0), 0)
13426 == TREE_OPERAND (TREE_OPERAND (var_acc2, 0), 0)
13427 && TREE_OPERAND (var_acc1, 1) == TREE_OPERAND (var_acc2, 1));
13430 /* Return a nonzero value if CODE is one of the operators that can be
13431 used in conjunction with the `=' operator in a compound assignment. */
13433 static int
13434 binop_compound_p (enum tree_code code)
13436 int i;
13437 for (i = 0; i < BINOP_COMPOUND_CANDIDATES; i++)
13438 if (binop_lookup [i] == code)
13439 break;
13441 return i < BINOP_COMPOUND_CANDIDATES;
13444 /* Reorganize after a fold to get SAVE_EXPR to generate what we want. */
13446 static tree
13447 java_refold (tree t)
13449 tree c, b, ns, decl;
13451 if (TREE_CODE (t) != MODIFY_EXPR)
13452 return t;
13454 c = TREE_OPERAND (t, 1);
13455 if (! (c && TREE_CODE (c) == COMPOUND_EXPR
13456 && TREE_CODE (TREE_OPERAND (c, 0)) == MODIFY_EXPR
13457 && binop_compound_p (TREE_CODE (TREE_OPERAND (c, 1)))))
13458 return t;
13460 /* Now the left branch of the binary operator. */
13461 b = TREE_OPERAND (TREE_OPERAND (c, 1), 0);
13462 if (! (b && TREE_CODE (b) == NOP_EXPR
13463 && TREE_CODE (TREE_OPERAND (b, 0)) == SAVE_EXPR))
13464 return t;
13466 ns = TREE_OPERAND (TREE_OPERAND (b, 0), 0);
13467 if (! (ns && TREE_CODE (ns) == NOP_EXPR
13468 && TREE_CODE (TREE_OPERAND (ns, 0)) == SAVE_EXPR))
13469 return t;
13471 decl = TREE_OPERAND (TREE_OPERAND (ns, 0), 0);
13472 if ((JDECL_P (decl) || TREE_CODE (decl) == COMPONENT_REF)
13473 /* It's got to be the an equivalent decl */
13474 && java_decl_equiv (decl, TREE_OPERAND (TREE_OPERAND (c, 0), 0)))
13476 /* Shorten the NOP_EXPR/SAVE_EXPR path. */
13477 TREE_OPERAND (TREE_OPERAND (c, 1), 0) = TREE_OPERAND (ns, 0);
13478 /* Substitute the COMPOUND_EXPR by the BINOP_EXPR */
13479 TREE_OPERAND (t, 1) = TREE_OPERAND (c, 1);
13480 /* Change the right part of the BINOP_EXPR */
13481 TREE_OPERAND (TREE_OPERAND (t, 1), 1) = TREE_OPERAND (c, 0);
13484 return t;
13487 /* Binary operators (15.16 up to 15.18). We return error_mark_node on
13488 errors but we modify NODE so that it contains the type computed
13489 according to the expression, when it's fixed. Otherwise, we write
13490 error_mark_node as the type. It allows us to further the analysis
13491 of remaining nodes and detects more errors in certain cases. */
13493 static tree
13494 patch_binop (tree node, tree wfl_op1, tree wfl_op2, int folding)
13496 tree op1 = TREE_OPERAND (node, 0);
13497 tree op2 = TREE_OPERAND (node, 1);
13498 tree op1_type = TREE_TYPE (op1);
13499 tree op2_type = TREE_TYPE (op2);
13500 tree prom_type = NULL_TREE, cn;
13501 enum tree_code code = TREE_CODE (node);
13503 /* If 1, tell the routine that we have to return error_mark_node
13504 after checking for the initialization of the RHS */
13505 int error_found = 0;
13507 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
13509 /* If either op<n>_type are NULL, this might be early signs of an
13510 error situation, unless it's too early to tell (in case we're
13511 handling a `+', `==', `!=' or `instanceof'.) We want to set op<n>_type
13512 correctly so the error can be later on reported accurately. */
13513 if (! (code == PLUS_EXPR || code == NE_EXPR
13514 || code == EQ_EXPR || code == INSTANCEOF_EXPR))
13516 tree n;
13517 if (! op1_type)
13519 n = java_complete_tree (op1);
13520 op1_type = TREE_TYPE (n);
13522 if (! op2_type)
13524 n = java_complete_tree (op2);
13525 op2_type = TREE_TYPE (n);
13529 switch (code)
13531 /* 15.16 Multiplicative operators */
13532 case MULT_EXPR: /* 15.16.1 Multiplication Operator * */
13533 case RDIV_EXPR: /* 15.16.2 Division Operator / */
13534 case TRUNC_DIV_EXPR: /* 15.16.2 Integral type Division Operator / */
13535 case TRUNC_MOD_EXPR: /* 15.16.3 Remainder operator % */
13536 if (!JNUMERIC_TYPE_P (op1_type) || !JNUMERIC_TYPE_P (op2_type))
13538 if (!JNUMERIC_TYPE_P (op1_type))
13539 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13540 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13541 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13542 TREE_TYPE (node) = error_mark_node;
13543 error_found = 1;
13544 break;
13546 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13548 /* Detect integral division by zero */
13549 if ((code == RDIV_EXPR || code == TRUNC_MOD_EXPR)
13550 && TREE_CODE (prom_type) == INTEGER_TYPE
13551 && (op2 == integer_zero_node || op2 == long_zero_node ||
13552 (TREE_CODE (op2) == INTEGER_CST &&
13553 ! TREE_INT_CST_LOW (op2) && ! TREE_INT_CST_HIGH (op2))))
13555 parse_warning_context
13556 (wfl_operator,
13557 "Evaluating this expression will result in an arithmetic exception being thrown");
13558 TREE_CONSTANT (node) = 0;
13559 TREE_INVARIANT (node) = 0;
13562 /* Change the division operator if necessary */
13563 if (code == RDIV_EXPR && TREE_CODE (prom_type) == INTEGER_TYPE)
13564 TREE_SET_CODE (node, TRUNC_DIV_EXPR);
13566 /* Before divisions as is disappear, try to simplify and bail if
13567 applicable, otherwise we won't perform even simple
13568 simplifications like (1-1)/3. We can't do that with floating
13569 point number, folds can't handle them at this stage. */
13570 if (code == RDIV_EXPR && TREE_CONSTANT (op1) && TREE_CONSTANT (op2)
13571 && JINTEGRAL_TYPE_P (op1) && JINTEGRAL_TYPE_P (op2))
13573 TREE_TYPE (node) = prom_type;
13574 node = fold (node);
13575 if (TREE_CODE (node) != code)
13576 return node;
13579 if (TREE_CODE (prom_type) == INTEGER_TYPE
13580 && flag_use_divide_subroutine
13581 && ! flag_emit_class_files
13582 && (code == RDIV_EXPR || code == TRUNC_MOD_EXPR))
13583 return build_java_soft_divmod (TREE_CODE (node), prom_type, op1, op2);
13585 /* This one is more complicated. FLOATs are processed by a
13586 function call to soft_fmod. Duplicate the value of the
13587 COMPOUND_ASSIGN_P flag. */
13588 if (code == TRUNC_MOD_EXPR)
13590 tree mod = build_java_binop (TRUNC_MOD_EXPR, prom_type, op1, op2);
13591 COMPOUND_ASSIGN_P (mod) = COMPOUND_ASSIGN_P (node);
13592 return mod;
13594 break;
13596 /* 15.17 Additive Operators */
13597 case PLUS_EXPR: /* 15.17.1 String Concatenation Operator + */
13599 /* Operation is valid if either one argument is a string
13600 constant, a String object or a StringBuffer crafted for the
13601 purpose of the a previous usage of the String concatenation
13602 operator */
13604 if (TREE_CODE (op1) == STRING_CST
13605 || TREE_CODE (op2) == STRING_CST
13606 || JSTRING_TYPE_P (op1_type)
13607 || JSTRING_TYPE_P (op2_type)
13608 || IS_CRAFTED_STRING_BUFFER_P (op1)
13609 || IS_CRAFTED_STRING_BUFFER_P (op2))
13610 return build_string_concatenation (op1, op2);
13612 case MINUS_EXPR: /* 15.17.2 Additive Operators (+ and -) for
13613 Numeric Types */
13614 if (!JNUMERIC_TYPE_P (op1_type) || !JNUMERIC_TYPE_P (op2_type))
13616 if (!JNUMERIC_TYPE_P (op1_type))
13617 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13618 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13619 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13620 TREE_TYPE (node) = error_mark_node;
13621 error_found = 1;
13622 break;
13624 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13625 break;
13627 /* 15.18 Shift Operators */
13628 case LSHIFT_EXPR:
13629 case RSHIFT_EXPR:
13630 case URSHIFT_EXPR:
13631 if (!JINTEGRAL_TYPE_P (op1_type) || !JINTEGRAL_TYPE_P (op2_type))
13633 if (!JINTEGRAL_TYPE_P (op1_type))
13634 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op1_type);
13635 else
13637 if (JNUMERIC_TYPE_P (op2_type))
13638 parse_error_context (wfl_operator,
13639 "Incompatible type for %qs. Explicit cast needed to convert shift distance from %qs to integral",
13640 operator_string (node),
13641 lang_printable_name (op2_type, 0));
13642 else
13643 parse_error_context (wfl_operator,
13644 "Incompatible type for %qs. Can't convert shift distance from %qs to integral",
13645 operator_string (node),
13646 lang_printable_name (op2_type, 0));
13648 TREE_TYPE (node) = error_mark_node;
13649 error_found = 1;
13650 break;
13653 /* Unary numeric promotion (5.6.1) is performed on each operand
13654 separately */
13655 op1 = do_unary_numeric_promotion (op1);
13656 op2 = do_unary_numeric_promotion (op2);
13658 /* If the right hand side is of type `long', first cast it to
13659 `int'. */
13660 if (TREE_TYPE (op2) == long_type_node)
13661 op2 = build1 (CONVERT_EXPR, int_type_node, op2);
13663 /* The type of the shift expression is the type of the promoted
13664 type of the left-hand operand */
13665 prom_type = TREE_TYPE (op1);
13667 /* Shift int only up to 0x1f and long up to 0x3f */
13668 if (prom_type == int_type_node)
13669 op2 = fold_build2 (BIT_AND_EXPR, int_type_node, op2,
13670 build_int_cst (NULL_TREE, 0x1f));
13671 else
13672 op2 = fold_build2 (BIT_AND_EXPR, int_type_node, op2,
13673 build_int_cst (NULL_TREE, 0x3f));
13675 /* The >>> operator is a >> operating on unsigned quantities */
13676 if (code == URSHIFT_EXPR && (folding || ! flag_emit_class_files))
13678 tree to_return;
13679 tree utype = java_unsigned_type (prom_type);
13680 op1 = convert (utype, op1);
13682 to_return = fold_build2 (RSHIFT_EXPR, utype, op1, op2);
13683 to_return = convert (prom_type, to_return);
13684 /* Copy the original value of the COMPOUND_ASSIGN_P flag */
13685 COMPOUND_ASSIGN_P (to_return) = COMPOUND_ASSIGN_P (node);
13686 TREE_SIDE_EFFECTS (to_return)
13687 = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13688 return to_return;
13690 break;
13692 /* 15.19.1 Type Comparison Operator instanceof */
13693 case INSTANCEOF_EXPR:
13695 TREE_TYPE (node) = boolean_type_node;
13697 /* OP1_TYPE might be NULL when OP1 is a string constant. */
13698 if ((cn = patch_string (op1)))
13700 op1 = cn;
13701 op1_type = TREE_TYPE (op1);
13703 if (op1_type == NULL_TREE)
13704 abort ();
13706 if (!(op2_type = resolve_type_during_patch (op2)))
13707 return error_mark_node;
13709 /* The first operand must be a reference type or the null type */
13710 if (!JREFERENCE_TYPE_P (op1_type) && op1 != null_pointer_node)
13711 error_found = 1; /* Error reported further below */
13713 /* The second operand must be a reference type */
13714 if (!JREFERENCE_TYPE_P (op2_type))
13716 SET_WFL_OPERATOR (wfl_operator, node, wfl_op2);
13717 parse_error_context
13718 (wfl_operator, "Invalid argument %qs for %<instanceof%>",
13719 lang_printable_name (op2_type, 0));
13720 error_found = 1;
13723 if (!error_found && valid_ref_assignconv_cast_p (op1_type, op2_type, 1))
13725 /* If the first operand is null, the result is always false */
13726 if (op1 == null_pointer_node)
13727 return boolean_false_node;
13728 else if (flag_emit_class_files)
13730 TREE_OPERAND (node, 1) = op2_type;
13731 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op1);
13732 return node;
13734 /* Otherwise we have to invoke instance of to figure it out */
13735 else
13736 return build_instanceof (op1, op2_type);
13738 /* There is no way the expression operand can be an instance of
13739 the type operand. This is a compile time error. */
13740 else
13742 char *t1 = xstrdup (lang_printable_name (op1_type, 0));
13743 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
13744 parse_error_context
13745 (wfl_operator, "Impossible for %qs to be instance of %qs",
13746 t1, lang_printable_name (op2_type, 0));
13747 free (t1);
13748 error_found = 1;
13751 break;
13753 /* 15.21 Bitwise and Logical Operators */
13754 case BIT_AND_EXPR:
13755 case BIT_XOR_EXPR:
13756 case BIT_IOR_EXPR:
13757 if (JINTEGRAL_TYPE_P (op1_type) && JINTEGRAL_TYPE_P (op2_type))
13758 /* Binary numeric promotion is performed on both operand and the
13759 expression retain that type */
13760 prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13762 else if (TREE_CODE (op1_type) == BOOLEAN_TYPE
13763 && TREE_CODE (op1_type) == BOOLEAN_TYPE)
13764 /* The type of the bitwise operator expression is BOOLEAN */
13765 prom_type = boolean_type_node;
13766 else
13768 if (!JINTEGRAL_TYPE_P (op1_type))
13769 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op1_type);
13770 if (!JINTEGRAL_TYPE_P (op2_type) && (op1_type != op2_type))
13771 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op2_type);
13772 TREE_TYPE (node) = error_mark_node;
13773 error_found = 1;
13774 /* Insert a break here if adding thing before the switch's
13775 break for this case */
13777 break;
13779 /* 15.22 Conditional-And Operator */
13780 case TRUTH_ANDIF_EXPR:
13781 /* 15.23 Conditional-Or Operator */
13782 case TRUTH_ORIF_EXPR:
13783 /* Operands must be of BOOLEAN type */
13784 if (TREE_CODE (op1_type) != BOOLEAN_TYPE ||
13785 TREE_CODE (op2_type) != BOOLEAN_TYPE)
13787 if (TREE_CODE (op1_type) != BOOLEAN_TYPE)
13788 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op1_type);
13789 if (TREE_CODE (op2_type) != BOOLEAN_TYPE && (op1_type != op2_type))
13790 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op2_type);
13791 TREE_TYPE (node) = boolean_type_node;
13792 error_found = 1;
13793 break;
13795 else if (integer_zerop (op1))
13797 return code == TRUTH_ANDIF_EXPR ? op1 : op2;
13799 else if (integer_onep (op1))
13801 return code == TRUTH_ANDIF_EXPR ? op2 : op1;
13803 /* The type of the conditional operators is BOOLEAN */
13804 prom_type = boolean_type_node;
13805 break;
13807 /* 15.19.1 Numerical Comparison Operators <, <=, >, >= */
13808 case LT_EXPR:
13809 case GT_EXPR:
13810 case LE_EXPR:
13811 case GE_EXPR:
13812 /* The type of each of the operands must be a primitive numeric
13813 type */
13814 if (!JNUMERIC_TYPE_P (op1_type) || ! JNUMERIC_TYPE_P (op2_type))
13816 if (!JNUMERIC_TYPE_P (op1_type))
13817 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13818 if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13819 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13820 TREE_TYPE (node) = boolean_type_node;
13821 error_found = 1;
13822 break;
13824 /* Binary numeric promotion is performed on the operands */
13825 binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13826 /* The type of the relation expression is always BOOLEAN */
13827 prom_type = boolean_type_node;
13828 break;
13830 /* 15.20 Equality Operator */
13831 case EQ_EXPR:
13832 case NE_EXPR:
13833 /* It's time for us to patch the strings. */
13834 if ((cn = patch_string (op1)))
13836 op1 = cn;
13837 op1_type = TREE_TYPE (op1);
13839 if ((cn = patch_string (op2)))
13841 op2 = cn;
13842 op2_type = TREE_TYPE (op2);
13845 /* 15.20.1 Numerical Equality Operators == and != */
13846 /* Binary numeric promotion is performed on the operands */
13847 if (JNUMERIC_TYPE_P (op1_type) && JNUMERIC_TYPE_P (op2_type))
13848 binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13850 /* 15.20.2 Boolean Equality Operators == and != */
13851 else if (TREE_CODE (op1_type) == BOOLEAN_TYPE &&
13852 TREE_CODE (op2_type) == BOOLEAN_TYPE)
13853 ; /* Nothing to do here */
13855 /* 15.20.3 Reference Equality Operators == and != */
13856 /* Types have to be either references or the null type. If
13857 they're references, it must be possible to convert either
13858 type to the other by casting conversion. */
13859 else if ((op1 == null_pointer_node && op2 == null_pointer_node)
13860 || (op1 == null_pointer_node && JREFERENCE_TYPE_P (op2_type))
13861 || (JREFERENCE_TYPE_P (op1_type) && op2 == null_pointer_node)
13862 || (JREFERENCE_TYPE_P (op1_type) && JREFERENCE_TYPE_P (op2_type)
13863 && (valid_ref_assignconv_cast_p (op1_type, op2_type, 1)
13864 || valid_ref_assignconv_cast_p (op2_type,
13865 op1_type, 1))))
13866 ; /* Nothing to do here */
13868 /* Else we have an error figure what can't be converted into
13869 what and report the error */
13870 else
13872 char *t1;
13873 t1 = xstrdup (lang_printable_name (op1_type, 0));
13874 parse_error_context
13875 (wfl_operator,
13876 "Incompatible type for %qs. Can't convert %qs to %qs",
13877 operator_string (node), t1,
13878 lang_printable_name (op2_type, 0));
13879 free (t1);
13880 TREE_TYPE (node) = boolean_type_node;
13881 error_found = 1;
13882 break;
13884 prom_type = boolean_type_node;
13885 break;
13886 default:
13887 abort ();
13890 if (error_found)
13891 return error_mark_node;
13893 TREE_OPERAND (node, 0) = op1;
13894 TREE_OPERAND (node, 1) = op2;
13895 TREE_TYPE (node) = prom_type;
13896 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13898 /* fold does not respect side-effect order as required for Java but not C.
13899 * Also, it sometimes create SAVE_EXPRs which are bad when emitting
13900 * bytecode.
13902 if (flag_emit_class_files ? (TREE_CONSTANT (op1) && TREE_CONSTANT (op2))
13903 : ! TREE_SIDE_EFFECTS (node))
13904 node = fold (node);
13905 return node;
13908 /* Concatenate the STRING_CST CSTE and STRING. When AFTER is a non
13909 zero value, the value of CSTE comes after the valude of STRING */
13911 static tree
13912 do_merge_string_cste (tree cste, const char *string, int string_len, int after)
13914 const char *old = TREE_STRING_POINTER (cste);
13915 int old_len = TREE_STRING_LENGTH (cste);
13916 int len = old_len + string_len;
13917 char *new = alloca (len+1);
13919 if (after)
13921 memcpy (new, string, string_len);
13922 memcpy (&new [string_len], old, old_len);
13924 else
13926 memcpy (new, old, old_len);
13927 memcpy (&new [old_len], string, string_len);
13929 new [len] = '\0';
13930 return build_string (len, new);
13933 /* Tries to merge OP1 (a STRING_CST) and OP2 (if suitable). Return a
13934 new STRING_CST on success, NULL_TREE on failure. */
13936 static tree
13937 merge_string_cste (tree op1, tree op2, int after)
13939 /* Handle two string constants right away. */
13940 if (TREE_CODE (op2) == STRING_CST)
13941 return do_merge_string_cste (op1, TREE_STRING_POINTER (op2),
13942 TREE_STRING_LENGTH (op2), after);
13944 /* Reasonable integer constant can be treated right away. */
13945 if (TREE_CODE (op2) == INTEGER_CST && !TREE_CONSTANT_OVERFLOW (op2))
13947 static const char *const boolean_true = "true";
13948 static const char *const boolean_false = "false";
13949 static const char *const null_pointer = "null";
13950 char ch[4];
13951 const char *string;
13953 if (op2 == boolean_true_node)
13954 string = boolean_true;
13955 else if (op2 == boolean_false_node)
13956 string = boolean_false;
13957 else if (op2 == null_pointer_node
13958 || (integer_zerop (op2)
13959 && TREE_CODE (TREE_TYPE (op2)) == POINTER_TYPE))
13960 /* FIXME: null is not a compile-time constant, so it is only safe to
13961 merge if the overall expression is non-constant. However, this
13962 code always merges without checking the overall expression. */
13963 string = null_pointer;
13964 else if (TREE_TYPE (op2) == char_type_node)
13966 /* Convert the character into UTF-8. */
13967 unsigned int c = (unsigned int) TREE_INT_CST_LOW (op2);
13968 unsigned char *p = (unsigned char *) ch;
13969 if (0x01 <= c && c <= 0x7f)
13970 *p++ = (unsigned char) c;
13971 else if (c < 0x7ff)
13973 *p++ = (unsigned char) (c >> 6 | 0xc0);
13974 *p++ = (unsigned char) ((c & 0x3f) | 0x80);
13976 else
13978 *p++ = (unsigned char) (c >> 12 | 0xe0);
13979 *p++ = (unsigned char) (((c >> 6) & 0x3f) | 0x80);
13980 *p++ = (unsigned char) ((c & 0x3f) | 0x80);
13982 *p = '\0';
13984 string = ch;
13986 else
13987 string = string_convert_int_cst (op2);
13989 return do_merge_string_cste (op1, string, strlen (string), after);
13991 return NULL_TREE;
13994 /* Tries to statically concatenate OP1 and OP2 if possible. Either one
13995 has to be a STRING_CST and the other part must be a STRING_CST or a
13996 INTEGRAL constant. Return a new STRING_CST if the operation
13997 succeed, NULL_TREE otherwise.
13999 If the case we want to optimize for space, we might want to return
14000 NULL_TREE for each invocation of this routine. FIXME */
14002 static tree
14003 string_constant_concatenation (tree op1, tree op2)
14005 if (TREE_CODE (op1) == STRING_CST || (TREE_CODE (op2) == STRING_CST))
14007 tree string, rest;
14008 int invert;
14010 string = (TREE_CODE (op1) == STRING_CST ? op1 : op2);
14011 rest = (string == op1 ? op2 : op1);
14012 invert = (string == op1 ? 0 : 1 );
14014 /* Walk REST, only if it looks reasonable */
14015 if (TREE_CODE (rest) != STRING_CST
14016 && !IS_CRAFTED_STRING_BUFFER_P (rest)
14017 && !JSTRING_TYPE_P (TREE_TYPE (rest))
14018 && TREE_CODE (rest) == EXPR_WITH_FILE_LOCATION)
14020 rest = java_complete_tree (rest);
14021 if (rest == error_mark_node)
14022 return error_mark_node;
14023 rest = fold (rest);
14025 return merge_string_cste (string, rest, invert);
14027 return NULL_TREE;
14030 /* Implement the `+' operator. Does static optimization if possible,
14031 otherwise create (if necessary) and append elements to a
14032 StringBuffer. The StringBuffer will be carried around until it is
14033 used for a function call or an assignment. Then toString() will be
14034 called on it to turn it into a String object. */
14036 static tree
14037 build_string_concatenation (tree op1, tree op2)
14039 tree result;
14040 int side_effects = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
14042 /* Try to do some static optimization */
14043 if ((result = string_constant_concatenation (op1, op2)))
14044 return result;
14046 /* Discard empty strings on either side of the expression */
14047 if (TREE_CODE (op1) == STRING_CST && TREE_STRING_LENGTH (op1) == 0)
14049 op1 = op2;
14050 op2 = NULL_TREE;
14052 else if (TREE_CODE (op2) == STRING_CST && TREE_STRING_LENGTH (op2) == 0)
14053 op2 = NULL_TREE;
14055 /* If operands are string constant, turn then into object references */
14056 if (TREE_CODE (op1) == STRING_CST)
14057 op1 = patch_string_cst (op1);
14058 if (op2 && TREE_CODE (op2) == STRING_CST)
14059 op2 = patch_string_cst (op2);
14061 /* If either one of the constant is null and the other non null
14062 operand is a String constant, return it. */
14063 if ((TREE_CODE (op1) == STRING_CST) && !op2)
14064 return op1;
14066 /* If OP1 isn't already a StringBuffer, create and
14067 initialize a new one */
14068 if (!IS_CRAFTED_STRING_BUFFER_P (op1))
14070 /* Two solutions here:
14071 1) OP1 is a constant string reference, we call new StringBuffer(OP1)
14072 2) OP1 is something else, we call new StringBuffer().append(OP1). */
14073 if (TREE_CONSTANT (op1) && JSTRING_TYPE_P (TREE_TYPE (op1)))
14074 op1 = BUILD_STRING_BUFFER (op1);
14075 else
14077 tree aNew = BUILD_STRING_BUFFER (NULL_TREE);
14078 op1 = make_qualified_primary (aNew, BUILD_APPEND (op1), 0);
14082 if (op2)
14084 /* OP1 is no longer the last node holding a crafted StringBuffer */
14085 IS_CRAFTED_STRING_BUFFER_P (op1) = 0;
14086 /* Create a node for `{new...,xxx}.append (op2)' */
14087 op1 = make_qualified_primary (op1, BUILD_APPEND (op2), 0);
14090 /* Mark the last node holding a crafted StringBuffer */
14091 IS_CRAFTED_STRING_BUFFER_P (op1) = 1;
14093 TREE_SIDE_EFFECTS (op1) = side_effects;
14094 return op1;
14097 /* Patch the string node NODE. NODE can be a STRING_CST of a crafted
14098 StringBuffer. If no string were found to be patched, return
14099 NULL. */
14101 static tree
14102 patch_string (tree node)
14104 if (node == error_mark_node)
14105 return error_mark_node;
14106 if (TREE_CODE (node) == STRING_CST)
14107 return patch_string_cst (node);
14108 else if (IS_CRAFTED_STRING_BUFFER_P (node))
14110 int saved = ctxp->explicit_constructor_p;
14111 tree invoke = build_method_invocation (wfl_to_string, NULL_TREE);
14112 tree ret;
14113 /* Temporary disable forbid the use of `this'. */
14114 ctxp->explicit_constructor_p = 0;
14115 ret = java_complete_tree (make_qualified_primary (node, invoke, 0));
14116 /* String concatenation arguments must be evaluated in order too. */
14117 ret = force_evaluation_order (ret);
14118 /* Restore it at its previous value */
14119 ctxp->explicit_constructor_p = saved;
14120 return ret;
14122 return NULL_TREE;
14125 /* Build the internal representation of a string constant. */
14127 static tree
14128 patch_string_cst (tree node)
14130 int location;
14131 if (! flag_emit_class_files)
14133 node = get_identifier (TREE_STRING_POINTER (node));
14134 location = alloc_name_constant (CONSTANT_String, node);
14135 node = build_ref_from_constant_pool (location);
14137 TREE_CONSTANT (node) = 1;
14138 TREE_INVARIANT (node) = 1;
14140 /* ??? Guessing that the class file code can't handle casts. */
14141 if (! flag_emit_class_files)
14142 node = convert (string_ptr_type_node, node);
14143 else
14144 TREE_TYPE (node) = string_ptr_type_node;
14146 return node;
14149 /* Build an incomplete unary operator expression. */
14151 static tree
14152 build_unaryop (int op_token, int op_location, tree op1)
14154 enum tree_code op;
14155 tree unaryop;
14156 switch (op_token)
14158 case PLUS_TK: op = UNARY_PLUS_EXPR; break;
14159 case MINUS_TK: op = NEGATE_EXPR; break;
14160 case NEG_TK: op = TRUTH_NOT_EXPR; break;
14161 case NOT_TK: op = BIT_NOT_EXPR; break;
14162 default: abort ();
14165 unaryop = build1 (op, NULL_TREE, op1);
14166 TREE_SIDE_EFFECTS (unaryop) = 1;
14167 /* Store the location of the operator, for better error report. The
14168 string of the operator will be rebuild based on the OP value. */
14169 EXPR_WFL_LINECOL (unaryop) = op_location;
14170 return unaryop;
14173 /* Special case for the ++/-- operators, since they require an extra
14174 argument to build, which is set to NULL and patched
14175 later. IS_POST_P is 1 if the operator, 0 otherwise. */
14177 static tree
14178 build_incdec (int op_token, int op_location, tree op1, int is_post_p)
14180 static const enum tree_code lookup [2][2] =
14182 { PREDECREMENT_EXPR, PREINCREMENT_EXPR, },
14183 { POSTDECREMENT_EXPR, POSTINCREMENT_EXPR, },
14185 tree node = build2 (lookup [is_post_p][(op_token - DECR_TK)],
14186 NULL_TREE, op1, NULL_TREE);
14187 TREE_SIDE_EFFECTS (node) = 1;
14188 /* Store the location of the operator, for better error report. The
14189 string of the operator will be rebuild based on the OP value. */
14190 EXPR_WFL_LINECOL (node) = op_location;
14191 return node;
14194 /* Build an incomplete cast operator, based on the use of the
14195 CONVERT_EXPR. Note that TREE_TYPE of the constructed node is
14196 set. java_complete_tree is trained to walk a CONVERT_EXPR even
14197 though its type is already set. */
14199 static tree
14200 build_cast (int location, tree type, tree exp)
14202 tree node = build1 (CONVERT_EXPR, type, exp);
14203 EXPR_WFL_LINECOL (node) = location;
14204 return node;
14207 /* Build an incomplete class reference operator. */
14208 static tree
14209 build_incomplete_class_ref (int location, tree class_name)
14211 tree node = build1 (CLASS_LITERAL, NULL_TREE, class_name);
14212 tree class_decl = GET_CPC ();
14213 tree this_class = TREE_TYPE (class_decl);
14215 /* Generate the synthetic static method `class$'. (Previously we
14216 deferred this, causing different method tables to be emitted
14217 for native code and bytecode.) */
14218 if (!TYPE_DOT_CLASS (this_class)
14219 && !JPRIMITIVE_TYPE_P (class_name)
14220 && !(TREE_CODE (class_name) == VOID_TYPE))
14222 tree cpc_list = GET_CPC_LIST();
14223 tree cpc = cpc_list;
14224 tree target_class;
14226 /* For inner classes, add a 'class$' method to their outermost
14227 context, creating it if necessary. */
14229 while (GET_NEXT_ENCLOSING_CPC(cpc))
14230 cpc = GET_NEXT_ENCLOSING_CPC(cpc);
14231 class_decl = TREE_VALUE (cpc);
14233 target_class = TREE_TYPE (class_decl);
14235 if (CLASS_INTERFACE (TYPE_NAME (target_class)))
14237 /* For interfaces, adding a static 'class$' method directly
14238 is illegal. So create an inner class to contain the new
14239 method. Empirically this matches the behavior of javac. */
14240 tree t, inner;
14241 /* We want the generated inner class inside the outermost class. */
14242 GET_CPC_LIST() = cpc;
14243 t = build_wfl_node (DECL_NAME (TYPE_NAME (object_type_node)));
14244 inner = create_anonymous_class (t);
14245 target_class = TREE_TYPE (inner);
14246 end_class_declaration (1);
14247 GET_CPC_LIST() = cpc_list;
14250 if (TYPE_DOT_CLASS (target_class) == NULL_TREE)
14251 build_dot_class_method (target_class);
14253 if (this_class != target_class)
14254 TYPE_DOT_CLASS (this_class) = TYPE_DOT_CLASS (target_class);
14257 EXPR_WFL_LINECOL (node) = location;
14258 return node;
14261 /* Complete an incomplete class reference operator. */
14262 static tree
14263 patch_incomplete_class_ref (tree node)
14265 tree type = TREE_OPERAND (node, 0);
14266 tree ref_type;
14268 if (!(ref_type = resolve_type_during_patch (type)))
14269 return error_mark_node;
14271 /* If we're not emitting class files and we know ref_type is a
14272 compiled class, build a direct reference. */
14273 if ((! flag_emit_class_files && is_compiled_class (ref_type))
14274 || JPRIMITIVE_TYPE_P (ref_type)
14275 || TREE_CODE (ref_type) == VOID_TYPE)
14277 tree dot = build_class_ref (ref_type);
14278 /* A class referenced by `foo.class' is initialized. */
14279 if (!flag_emit_class_files)
14280 dot = build_class_init (ref_type, dot);
14281 return java_complete_tree (dot);
14284 /* If we're emitting class files and we have to deal with non
14285 primitive types, we invoke the synthetic static method `class$'. */
14286 ref_type = build_dot_class_method_invocation (current_class, ref_type);
14287 return java_complete_tree (ref_type);
14290 /* 15.14 Unary operators. We return error_mark_node in case of error,
14291 but preserve the type of NODE if the type is fixed. */
14293 static tree
14294 patch_unaryop (tree node, tree wfl_op)
14296 tree op = TREE_OPERAND (node, 0);
14297 tree op_type = TREE_TYPE (op);
14298 tree prom_type = NULL_TREE, value, decl;
14299 int nested_field_flag = 0;
14300 int code = TREE_CODE (node);
14301 int error_found = 0;
14303 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14305 switch (code)
14307 /* 15.13.2 Postfix Increment Operator ++ */
14308 case POSTINCREMENT_EXPR:
14309 /* 15.13.3 Postfix Increment Operator -- */
14310 case POSTDECREMENT_EXPR:
14311 /* 15.14.1 Prefix Increment Operator ++ */
14312 case PREINCREMENT_EXPR:
14313 /* 15.14.2 Prefix Decrement Operator -- */
14314 case PREDECREMENT_EXPR:
14315 op = decl = extract_field_decl (op);
14316 nested_field_flag
14317 = nested_field_expanded_access_p (op, NULL, NULL, NULL);
14318 /* We might be trying to change an outer field accessed using
14319 access method. */
14320 if (nested_field_flag)
14322 /* Retrieve the decl of the field we're trying to access. We
14323 do that by first retrieving the function we would call to
14324 access the field. It has been already verified that this
14325 field isn't final */
14326 if (flag_emit_class_files)
14327 decl = TREE_OPERAND (op, 0);
14328 else
14329 decl = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (op, 0), 0), 0);
14330 decl = DECL_FUNCTION_ACCESS_DECL (decl);
14332 /* We really should have a JAVA_ARRAY_EXPR to avoid this */
14333 else if (!JDECL_P (decl)
14334 && TREE_CODE (decl) != COMPONENT_REF
14335 && !(flag_emit_class_files && TREE_CODE (decl) == ARRAY_REF)
14336 && TREE_CODE (decl) != INDIRECT_REF
14337 && !(TREE_CODE (decl) == COMPOUND_EXPR
14338 && TREE_OPERAND (decl, 1)
14339 && (TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)))
14341 TREE_TYPE (node) = error_mark_node;
14342 error_found = 1;
14345 /* From now on, we know that op if a variable and that it has a
14346 valid wfl. We use wfl_op to locate errors related to the
14347 ++/-- operand. */
14348 if (!JNUMERIC_TYPE_P (op_type))
14350 parse_error_context
14351 (wfl_op, "Invalid argument type %qs to %qs",
14352 lang_printable_name (op_type, 0), operator_string (node));
14353 TREE_TYPE (node) = error_mark_node;
14354 error_found = 1;
14356 else
14358 /* Before the addition, binary numeric promotion is performed on
14359 both operands, if really necessary */
14360 if (JINTEGRAL_TYPE_P (op_type))
14362 value = build_int_cst (op_type, 1);
14363 TREE_TYPE (node) = op_type;
14365 else
14367 value = build_int_cst (NULL_TREE, 1);
14368 TREE_TYPE (node) =
14369 binary_numeric_promotion (op_type,
14370 TREE_TYPE (value), &op, &value);
14373 /* We remember we might be accessing an outer field */
14374 if (nested_field_flag)
14376 /* We re-generate an access to the field */
14377 value = build2 (PLUS_EXPR, TREE_TYPE (op),
14378 build_nested_field_access (wfl_op, decl), value);
14380 /* And we patch the original access$() into a write
14381 with plus_op as a rhs */
14382 return nested_field_access_fix (node, op, value);
14385 /* And write back into the node. */
14386 TREE_OPERAND (node, 0) = op;
14387 TREE_OPERAND (node, 1) = value;
14388 /* Convert the overall back into its original type, if
14389 necessary, and return */
14390 if (JINTEGRAL_TYPE_P (op_type))
14391 return fold (node);
14392 else
14393 return fold (convert (op_type, node));
14395 break;
14397 /* 15.14.3 Unary Plus Operator + */
14398 case UNARY_PLUS_EXPR:
14399 /* 15.14.4 Unary Minus Operator - */
14400 case NEGATE_EXPR:
14401 if (!JNUMERIC_TYPE_P (op_type))
14403 ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op_type);
14404 TREE_TYPE (node) = error_mark_node;
14405 error_found = 1;
14407 /* Unary numeric promotion is performed on operand */
14408 else
14410 op = do_unary_numeric_promotion (op);
14411 prom_type = TREE_TYPE (op);
14412 if (code == UNARY_PLUS_EXPR)
14413 return fold (op);
14415 break;
14417 /* 15.14.5 Bitwise Complement Operator ~ */
14418 case BIT_NOT_EXPR:
14419 if (!JINTEGRAL_TYPE_P (op_type))
14421 ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op_type);
14422 TREE_TYPE (node) = error_mark_node;
14423 error_found = 1;
14425 else
14427 op = do_unary_numeric_promotion (op);
14428 prom_type = TREE_TYPE (op);
14430 break;
14432 /* 15.14.6 Logical Complement Operator ! */
14433 case TRUTH_NOT_EXPR:
14434 if (TREE_CODE (op_type) != BOOLEAN_TYPE)
14436 ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op_type);
14437 /* But the type is known. We will report an error if further
14438 attempt of a assignment is made with this rhs */
14439 TREE_TYPE (node) = boolean_type_node;
14440 error_found = 1;
14442 else
14443 prom_type = boolean_type_node;
14444 break;
14446 /* 15.15 Cast Expression */
14447 case CONVERT_EXPR:
14448 value = patch_cast (node, wfl_operator);
14449 if (value == error_mark_node)
14451 /* If this cast is part of an assignment, we tell the code
14452 that deals with it not to complain about a mismatch,
14453 because things have been cast, anyways */
14454 TREE_TYPE (node) = error_mark_node;
14455 error_found = 1;
14457 else
14459 value = fold (value);
14460 return value;
14462 break;
14464 case NOP_EXPR:
14465 /* This can only happen when the type is already known. */
14466 gcc_assert (TREE_TYPE (node) != NULL_TREE);
14467 prom_type = TREE_TYPE (node);
14468 break;
14471 if (error_found)
14472 return error_mark_node;
14474 /* There are cases where node has been replaced by something else
14475 and we don't end up returning here: UNARY_PLUS_EXPR,
14476 CONVERT_EXPR, {POST,PRE}{INCR,DECR}EMENT_EXPR. */
14477 TREE_OPERAND (node, 0) = fold (op);
14478 TREE_TYPE (node) = prom_type;
14479 TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op);
14480 return fold (node);
14483 /* Generic type resolution that sometimes takes place during node
14484 patching. Returned the resolved type or generate an error
14485 message. Return the resolved type or NULL_TREE. */
14487 static tree
14488 resolve_type_during_patch (tree type)
14490 if (unresolved_type_p (type, NULL))
14492 tree type_decl = resolve_and_layout (EXPR_WFL_NODE (type), type);
14493 if (!type_decl)
14495 parse_error_context (type,
14496 "Class %qs not found in type declaration",
14497 IDENTIFIER_POINTER (EXPR_WFL_NODE (type)));
14498 return NULL_TREE;
14501 check_deprecation (type, type_decl);
14503 return TREE_TYPE (type_decl);
14505 return type;
14508 /* 5.5 Casting Conversion. error_mark_node is returned if an error is
14509 found. Otherwise NODE or something meant to replace it is returned. */
14511 static tree
14512 patch_cast (tree node, tree wfl_op)
14514 tree op = TREE_OPERAND (node, 0);
14515 tree cast_type = TREE_TYPE (node);
14516 tree patched, op_type;
14517 char *t1;
14519 /* Some string patching might be necessary at this stage */
14520 if ((patched = patch_string (op)))
14521 TREE_OPERAND (node, 0) = op = patched;
14522 op_type = TREE_TYPE (op);
14524 /* First resolve OP_TYPE if unresolved */
14525 if (!(cast_type = resolve_type_during_patch (cast_type)))
14526 return error_mark_node;
14528 /* Check on cast that are proven correct at compile time */
14529 if (JNUMERIC_TYPE_P (cast_type) && JNUMERIC_TYPE_P (op_type))
14531 /* Same type */
14532 if (cast_type == op_type)
14533 return node;
14535 /* A narrowing conversion from a floating-point number to an
14536 integral type requires special handling (5.1.3). */
14537 if (JFLOAT_TYPE_P (op_type) && JINTEGRAL_TYPE_P (cast_type))
14538 if (cast_type != long_type_node)
14539 op = convert (integer_type_node, op);
14541 /* Try widening/narrowing conversion. Potentially, things need
14542 to be worked out in gcc so we implement the extreme cases
14543 correctly. fold_convert() needs to be fixed. */
14544 return convert (cast_type, op);
14547 /* It's also valid to cast a boolean into a boolean */
14548 if (op_type == boolean_type_node && cast_type == boolean_type_node)
14549 return node;
14551 /* null can be casted to references */
14552 if (op == null_pointer_node && JREFERENCE_TYPE_P (cast_type))
14553 return build_null_of_type (cast_type);
14555 /* The remaining legal casts involve conversion between reference
14556 types. Check for their compile time correctness. */
14557 if (JREFERENCE_TYPE_P (op_type) && JREFERENCE_TYPE_P (cast_type)
14558 && valid_ref_assignconv_cast_p (op_type, cast_type, 1))
14560 TREE_TYPE (node) = promote_type (cast_type);
14561 /* Now, the case can be determined correct at compile time if
14562 OP_TYPE can be converted into CAST_TYPE by assignment
14563 conversion (5.2) */
14565 if (valid_ref_assignconv_cast_p (op_type, cast_type, 0))
14567 TREE_SET_CODE (node, NOP_EXPR);
14568 return node;
14571 if (flag_emit_class_files)
14573 TREE_SET_CODE (node, CONVERT_EXPR);
14574 return node;
14577 /* The cast requires a run-time check */
14578 return build3 (CALL_EXPR, promote_type (cast_type),
14579 build_address_of (soft_checkcast_node),
14580 tree_cons (NULL_TREE, build_class_ref (cast_type),
14581 build_tree_list (NULL_TREE, op)),
14582 NULL_TREE);
14585 /* Any other casts are proven incorrect at compile time */
14586 t1 = xstrdup (lang_printable_name (op_type, 0));
14587 parse_error_context (wfl_op, "Invalid cast from %qs to %qs",
14588 t1, lang_printable_name (cast_type, 0));
14589 free (t1);
14590 return error_mark_node;
14593 /* Build a null constant and give it the type TYPE. */
14595 static tree
14596 build_null_of_type (tree type)
14598 tree node = build_int_cst (promote_type (type), 0);
14599 return node;
14602 /* Build an ARRAY_REF incomplete tree node. Note that operand 1 isn't
14603 a list of indices. */
14604 static tree
14605 build_array_ref (int location, tree array, tree index)
14607 tree node = build4 (ARRAY_REF, NULL_TREE, array, index,
14608 NULL_TREE, NULL_TREE);
14609 EXPR_WFL_LINECOL (node) = location;
14610 return node;
14613 /* 15.12 Array Access Expression */
14615 static tree
14616 patch_array_ref (tree node)
14618 tree array = TREE_OPERAND (node, 0);
14619 tree array_type = TREE_TYPE (array);
14620 tree index = TREE_OPERAND (node, 1);
14621 tree index_type = TREE_TYPE (index);
14622 int error_found = 0;
14624 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14626 if (TREE_CODE (array_type) == POINTER_TYPE)
14627 array_type = TREE_TYPE (array_type);
14629 /* The array reference must be an array */
14630 if (!TYPE_ARRAY_P (array_type))
14632 parse_error_context
14633 (wfl_operator,
14634 "%<[]%> can only be applied to arrays. It can't be applied to %qs",
14635 lang_printable_name (array_type, 0));
14636 TREE_TYPE (node) = error_mark_node;
14637 error_found = 1;
14640 /* The array index undergoes unary numeric promotion. The promoted
14641 type must be int */
14642 index = do_unary_numeric_promotion (index);
14643 if (TREE_TYPE (index) != int_type_node)
14645 if (valid_cast_to_p (index_type, int_type_node))
14646 parse_error_context (wfl_operator,
14647 "Incompatible type for %<[]%>. Explicit cast needed to convert %qs to %<int%>",
14648 lang_printable_name (index_type, 0));
14649 else
14650 parse_error_context (wfl_operator,
14651 "Incompatible type for %<[]%>. Can't convert %qs to %<int%>",
14652 lang_printable_name (index_type, 0));
14653 TREE_TYPE (node) = error_mark_node;
14654 error_found = 1;
14657 if (error_found)
14658 return error_mark_node;
14660 array_type = TYPE_ARRAY_ELEMENT (array_type);
14662 if (flag_emit_class_files)
14664 TREE_OPERAND (node, 0) = array;
14665 TREE_OPERAND (node, 1) = index;
14667 else
14668 node = build_java_arrayaccess (array, array_type, index);
14669 TREE_TYPE (node) = array_type;
14670 return node;
14673 /* 15.9 Array Creation Expressions */
14675 static tree
14676 build_newarray_node (tree type, tree dims, int extra_dims)
14678 tree node = build3 (NEW_ARRAY_EXPR, NULL_TREE, type,
14679 nreverse (dims),
14680 build_int_cst (NULL_TREE, extra_dims));
14681 return node;
14684 static tree
14685 patch_newarray (tree node)
14687 tree type = TREE_OPERAND (node, 0);
14688 tree dims = TREE_OPERAND (node, 1);
14689 tree cdim, array_type;
14690 int error_found = 0;
14691 int ndims = 0;
14692 int xdims = TREE_INT_CST_LOW (TREE_OPERAND (node, 2));
14694 /* Dimension types are verified. It's better for the types to be
14695 verified in order. */
14696 for (cdim = dims, ndims = 0; cdim; cdim = TREE_CHAIN (cdim), ndims++ )
14698 int dim_error = 0;
14699 tree dim = TREE_VALUE (cdim);
14701 /* Dim might have been saved during its evaluation */
14702 dim = (TREE_CODE (dim) == SAVE_EXPR ? TREE_OPERAND (dim, 0) : dim);
14704 /* The type of each specified dimension must be an integral type. */
14705 if (!JINTEGRAL_TYPE_P (TREE_TYPE (dim)))
14706 dim_error = 1;
14708 /* Each expression undergoes an unary numeric promotion (5.6.1) and the
14709 promoted type must be int. */
14710 else
14712 dim = do_unary_numeric_promotion (dim);
14713 if (TREE_TYPE (dim) != int_type_node)
14714 dim_error = 1;
14717 /* Report errors on types here */
14718 if (dim_error)
14720 parse_error_context
14721 (TREE_PURPOSE (cdim),
14722 "Incompatible type for dimension in array creation expression. %s convert %qs to %<int%>",
14723 (valid_cast_to_p (TREE_TYPE (dim), int_type_node) ?
14724 "Explicit cast needed to" : "Can't"),
14725 lang_printable_name (TREE_TYPE (dim), 0));
14726 error_found = 1;
14729 TREE_PURPOSE (cdim) = NULL_TREE;
14732 /* Resolve array base type if unresolved */
14733 if (!(type = resolve_type_during_patch (type)))
14734 error_found = 1;
14736 if (error_found)
14738 /* We don't want further evaluation of this bogus array creation
14739 operation */
14740 TREE_TYPE (node) = error_mark_node;
14741 return error_mark_node;
14744 /* Set array_type to the actual (promoted) array type of the result. */
14745 if (TREE_CODE (type) == RECORD_TYPE)
14746 type = build_pointer_type (type);
14747 while (--xdims >= 0)
14749 type = promote_type (build_java_array_type (type, -1));
14751 dims = nreverse (dims);
14752 array_type = type;
14753 for (cdim = dims; cdim; cdim = TREE_CHAIN (cdim))
14755 type = array_type;
14756 array_type
14757 = build_java_array_type (type,
14758 TREE_CODE (cdim) == INTEGER_CST
14759 ? (HOST_WIDE_INT) TREE_INT_CST_LOW (cdim)
14760 : -1);
14761 array_type = promote_type (array_type);
14763 dims = nreverse (dims);
14765 /* The node is transformed into a function call. Things are done
14766 differently according to the number of dimensions. If the number
14767 of dimension is equal to 1, then the nature of the base type
14768 (primitive or not) matters. */
14769 if (ndims == 1)
14770 return build_new_array (type, TREE_VALUE (dims));
14772 /* Can't reuse what's already written in expr.c because it uses the
14773 JVM stack representation. Provide a build_multianewarray. FIXME */
14774 return build3 (CALL_EXPR, array_type,
14775 build_address_of (soft_multianewarray_node),
14776 tree_cons (NULL_TREE,
14777 build_class_ref (TREE_TYPE (array_type)),
14778 tree_cons (NULL_TREE,
14779 build_int_cst (NULL_TREE, ndims),
14780 dims)),
14781 NULL_TREE);
14784 /* 10.6 Array initializer. */
14786 /* Build a wfl for array element that don't have one, so we can
14787 pin-point errors. */
14789 static tree
14790 maybe_build_array_element_wfl (tree node)
14792 if (TREE_CODE (node) != EXPR_WITH_FILE_LOCATION)
14794 /* FIXME - old code used "prev_lc.line" and "elc.prev_col */
14795 return build_expr_wfl (NULL_TREE,
14796 #ifdef USE_MAPPED_LOCATION
14797 input_location
14798 #else
14799 ctxp->filename,
14800 ctxp->lexer->token_start.line,
14801 ctxp->lexer->token_start.col
14802 #endif
14805 else
14806 return NULL_TREE;
14809 /* Build a NEW_ARRAY_INIT that features a CONSTRUCTOR node. This makes
14810 identification of initialized arrays easier to detect during walk
14811 and expansion. */
14813 static tree
14814 build_new_array_init (int location, tree values)
14816 tree constructor = build_constructor_from_list (NULL_TREE,
14817 nreverse (values));
14818 tree to_return = build1 (NEW_ARRAY_INIT, NULL_TREE, constructor);
14819 EXPR_WFL_LINECOL (to_return) = location;
14820 return to_return;
14823 /* Expand a NEW_ARRAY_INIT node. Return error_mark_node if an error
14824 occurred. Otherwise return NODE after having set its type
14825 appropriately. */
14827 static tree
14828 patch_new_array_init (tree type, tree node)
14830 int error_seen = 0;
14831 tree element_type;
14832 unsigned HOST_WIDE_INT length;
14833 constructor_elt *current;
14834 int all_constant = 1;
14835 tree init = TREE_OPERAND (node, 0);
14837 if (TREE_CODE (type) != POINTER_TYPE || ! TYPE_ARRAY_P (TREE_TYPE (type)))
14839 parse_error_context (node,
14840 "Invalid array initializer for non-array type %qs",
14841 lang_printable_name (type, 1));
14842 return error_mark_node;
14844 type = TREE_TYPE (type);
14845 element_type = TYPE_ARRAY_ELEMENT (type);
14847 for (length = 0;
14848 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (init),
14849 length, current);
14850 length++)
14852 tree elt = current->value;
14853 if (elt == NULL_TREE || TREE_CODE (elt) != NEW_ARRAY_INIT)
14855 error_seen |= array_constructor_check_entry (element_type, current);
14856 elt = current->value;
14857 /* When compiling to native code, STRING_CST is converted to
14858 INDIRECT_REF, but still with a TREE_CONSTANT flag. */
14859 if (! TREE_CONSTANT (elt) || TREE_CODE (elt) == INDIRECT_REF)
14860 all_constant = 0;
14862 else
14864 current->value = patch_new_array_init (element_type, elt);
14865 current->index = NULL_TREE;
14866 all_constant = 0;
14868 if (elt && TREE_CODE (elt) == TREE_LIST
14869 && TREE_VALUE (elt) == error_mark_node)
14870 error_seen = 1;
14873 if (error_seen)
14874 return error_mark_node;
14876 /* Create a new type. We can't reuse the one we have here by
14877 patching its dimension because it originally is of dimension -1
14878 hence reused by gcc. This would prevent triangular arrays. */
14879 type = build_java_array_type (element_type, length);
14880 TREE_TYPE (init) = TREE_TYPE (TREE_CHAIN (TREE_CHAIN (TYPE_FIELDS (type))));
14881 TREE_TYPE (node) = promote_type (type);
14882 TREE_CONSTANT (init) = all_constant;
14883 TREE_INVARIANT (init) = all_constant;
14884 TREE_CONSTANT (node) = all_constant;
14885 TREE_INVARIANT (node) = all_constant;
14886 return node;
14889 /* Verify that one entry of the initializer element list can be
14890 assigned to the array base type. Report 1 if an error occurred, 0
14891 otherwise. */
14893 static int
14894 array_constructor_check_entry (tree type, constructor_elt *entry)
14896 char *array_type_string = NULL; /* For error reports */
14897 tree value, type_value, new_value, wfl_value, patched;
14898 int error_seen = 0;
14900 new_value = NULL_TREE;
14901 wfl_value = entry->value;
14903 value = java_complete_tree (entry->value);
14904 /* patch_string return error_mark_node if arg is error_mark_node */
14905 if ((patched = patch_string (value)))
14906 value = patched;
14907 if (value == error_mark_node)
14908 return 1;
14910 type_value = TREE_TYPE (value);
14912 /* At anytime, try_builtin_assignconv can report a warning on
14913 constant overflow during narrowing. */
14914 SET_WFL_OPERATOR (wfl_operator, entry->index, wfl_value);
14915 new_value = try_builtin_assignconv (wfl_operator, type, value);
14916 if (!new_value && (new_value = try_reference_assignconv (type, value)))
14917 type_value = promote_type (type);
14919 /* Check and report errors */
14920 if (!new_value)
14922 const char *const msg = (!valid_cast_to_p (type_value, type) ?
14923 "Can't" : "Explicit cast needed to");
14924 if (!array_type_string)
14925 array_type_string = xstrdup (lang_printable_name (type, 1));
14926 parse_error_context
14927 (wfl_operator, "Incompatible type for array. %s convert %qs to %qs",
14928 msg, lang_printable_name (type_value, 1), array_type_string);
14929 error_seen = 1;
14932 if (new_value)
14933 entry->value = new_value;
14935 if (array_type_string)
14936 free (array_type_string);
14938 entry->index = NULL_TREE;
14939 return error_seen;
14942 static tree
14943 build_this (int location)
14945 tree node = build_wfl_node (this_identifier_node);
14946 TREE_SET_CODE (node, THIS_EXPR);
14947 EXPR_WFL_LINECOL (node) = location;
14948 return node;
14951 /* 14.15 The return statement. It builds a modify expression that
14952 assigns the returned value to the RESULT_DECL that hold the value
14953 to be returned. */
14955 static tree
14956 build_return (int location, tree op)
14958 tree node = build1 (RETURN_EXPR, NULL_TREE, op);
14959 EXPR_WFL_LINECOL (node) = location;
14960 node = build_debugable_stmt (location, node);
14961 return node;
14964 static tree
14965 patch_return (tree node)
14967 tree return_exp = TREE_OPERAND (node, 0);
14968 tree meth = current_function_decl;
14969 tree mtype = TREE_TYPE (TREE_TYPE (current_function_decl));
14970 int error_found = 0;
14972 TREE_TYPE (node) = error_mark_node;
14973 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14975 /* It's invalid to have a return value within a function that is
14976 declared with the keyword void or that is a constructor */
14977 if (return_exp && (mtype == void_type_node || DECL_CONSTRUCTOR_P (meth)))
14978 error_found = 1;
14980 /* It's invalid to use a return statement in a static block */
14981 if (DECL_CLINIT_P (current_function_decl))
14982 error_found = 1;
14984 /* It's invalid to have a no return value within a function that
14985 isn't declared with the keyword `void' */
14986 if (!return_exp && (mtype != void_type_node && !DECL_CONSTRUCTOR_P (meth)))
14987 error_found = 2;
14989 if (DECL_INSTINIT_P (current_function_decl))
14990 error_found = 1;
14992 if (error_found)
14994 if (DECL_INSTINIT_P (current_function_decl))
14995 parse_error_context (wfl_operator,
14996 "%<return%> inside instance initializer");
14998 else if (DECL_CLINIT_P (current_function_decl))
14999 parse_error_context (wfl_operator,
15000 "%<return%> inside static initializer");
15002 else if (!DECL_CONSTRUCTOR_P (meth))
15004 char *t = xstrdup (lang_printable_name (mtype, 0));
15005 parse_error_context (wfl_operator,
15006 "%<return%> with%s value from %<%s %s%>",
15007 (error_found == 1 ? "" : "out"),
15008 t, lang_printable_name (meth, 2));
15009 free (t);
15011 else
15012 parse_error_context (wfl_operator,
15013 "%<return%> with value from constructor %qs",
15014 lang_printable_name (meth, 2));
15015 return error_mark_node;
15018 /* If we have a return_exp, build a modify expression and expand
15019 it. Note: at that point, the assignment is declared valid, but we
15020 may want to carry some more hacks */
15021 if (return_exp)
15023 tree exp = java_complete_tree (return_exp);
15024 tree modify, patched;
15026 if ((patched = patch_string (exp)))
15027 exp = patched;
15029 modify = build2 (MODIFY_EXPR, NULL_TREE, DECL_RESULT (meth), exp);
15030 EXPR_WFL_LINECOL (modify) = EXPR_WFL_LINECOL (node);
15031 modify = java_complete_tree (modify);
15033 if (modify != error_mark_node)
15035 TREE_SIDE_EFFECTS (modify) = 1;
15036 TREE_OPERAND (node, 0) = modify;
15038 else
15039 return error_mark_node;
15041 TREE_TYPE (node) = void_type_node;
15042 TREE_SIDE_EFFECTS (node) = 1;
15043 return node;
15046 /* 14.8 The if Statement */
15048 static tree
15049 build_if_else_statement (int location, tree expression, tree if_body,
15050 tree else_body)
15052 tree node;
15053 if (!else_body)
15054 else_body = build_java_empty_stmt ();
15055 node = build3 (COND_EXPR, NULL_TREE, expression, if_body, else_body);
15056 EXPR_WFL_LINECOL (node) = location;
15057 node = build_debugable_stmt (location, node);
15058 return node;
15061 static tree
15062 patch_if_else_statement (tree node)
15064 tree expression = TREE_OPERAND (node, 0);
15065 int can_complete_normally
15066 = (CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1))
15067 | CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 2)));
15069 TREE_TYPE (node) = error_mark_node;
15070 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15072 /* The type of expression must be boolean */
15073 if (TREE_TYPE (expression) != boolean_type_node
15074 && TREE_TYPE (expression) != promoted_boolean_type_node)
15076 parse_error_context
15077 (wfl_operator,
15078 "Incompatible type for %<if%>. Can't convert %qs to %<boolean%>",
15079 lang_printable_name (TREE_TYPE (expression), 0));
15080 return error_mark_node;
15083 TREE_TYPE (node) = void_type_node;
15084 TREE_SIDE_EFFECTS (node) = 1;
15085 CAN_COMPLETE_NORMALLY (node) = can_complete_normally;
15086 return node;
15089 /* 14.6 Labeled Statements */
15091 /* Action taken when a labeled statement is parsed. a new
15092 LABELED_BLOCK_EXPR is created. No statement is attached to the
15093 label, yet. LABEL can be NULL_TREE for artificially-generated blocks. */
15095 static tree
15096 build_labeled_block (int location, tree label)
15098 tree label_name ;
15099 tree label_decl, node;
15100 if (label == NULL_TREE || label == continue_identifier_node)
15101 label_name = label;
15102 else
15104 label_name = merge_qualified_name (label_id, label);
15105 /* Issue an error if we try to reuse a label that was previously
15106 declared */
15107 if (IDENTIFIER_LOCAL_VALUE (label_name))
15109 EXPR_WFL_LINECOL (wfl_operator) = location;
15110 parse_error_context (wfl_operator,
15111 "Declaration of %qs shadows a previous label declaration",
15112 IDENTIFIER_POINTER (label));
15113 EXPR_WFL_LINECOL (wfl_operator) =
15114 EXPR_WFL_LINECOL (IDENTIFIER_LOCAL_VALUE (label_name));
15115 parse_error_context (wfl_operator,
15116 "This is the location of the previous declaration of label %qs",
15117 IDENTIFIER_POINTER (label));
15118 java_error_count--;
15122 label_decl = create_label_decl (label_name);
15123 node = build2 (LABELED_BLOCK_EXPR, NULL_TREE, label_decl, NULL_TREE);
15124 EXPR_WFL_LINECOL (node) = location;
15125 TREE_SIDE_EFFECTS (node) = 1;
15126 return node;
15129 /* A labeled statement LBE is attached a statement. */
15131 static tree
15132 finish_labeled_statement (tree lbe, /* Labeled block expr */
15133 tree statement)
15135 /* In anyways, tie the loop to its statement */
15136 LABELED_BLOCK_BODY (lbe) = statement;
15137 pop_labeled_block ();
15138 POP_LABELED_BLOCK ();
15139 return lbe;
15142 /* 14.10, 14.11, 14.12 Loop Statements */
15144 /* Create an empty LOOP_EXPR and make it the last in the nested loop
15145 list. */
15147 static tree
15148 build_new_loop (tree loop_body)
15150 tree loop = build1 (LOOP_EXPR, NULL_TREE, loop_body);
15151 TREE_SIDE_EFFECTS (loop) = 1;
15152 PUSH_LOOP (loop);
15153 return loop;
15156 /* Create a loop body according to the following structure:
15157 COMPOUND_EXPR
15158 COMPOUND_EXPR (loop main body)
15159 EXIT_EXPR (this order is for while/for loops.
15160 LABELED_BLOCK_EXPR the order is reversed for do loops)
15161 LABEL_DECL (a continue occurring here branches at the
15162 BODY end of this labeled block)
15163 INCREMENT (if any)
15165 REVERSED, if nonzero, tells that the loop condition expr comes
15166 after the body, like in the do-while loop.
15168 To obtain a loop, the loop body structure described above is
15169 encapsulated within a LOOP_EXPR surrounded by a LABELED_BLOCK_EXPR:
15171 LABELED_BLOCK_EXPR
15172 LABEL_DECL (use this label to exit the loop)
15173 LOOP_EXPR
15174 <structure described above> */
15176 static tree
15177 build_loop_body (int location, tree condition, int reversed)
15179 tree first, second, body;
15181 condition = build1 (EXIT_EXPR, NULL_TREE, condition); /* Force walk */
15182 EXPR_WFL_LINECOL (condition) = location; /* For accurate error report */
15183 condition = build_debugable_stmt (location, condition);
15184 TREE_SIDE_EFFECTS (condition) = 1;
15186 body = build_labeled_block (0, continue_identifier_node);
15187 first = (reversed ? body : condition);
15188 second = (reversed ? condition : body);
15189 return build2 (COMPOUND_EXPR, NULL_TREE,
15190 build2 (COMPOUND_EXPR, NULL_TREE, first, second),
15191 build_java_empty_stmt ());
15194 /* Install CONDITION (if any) and loop BODY (using REVERSED to tell
15195 their order) on the current loop. Unlink the current loop from the
15196 loop list. */
15198 static tree
15199 finish_loop_body (int location, tree condition, tree body, int reversed)
15201 tree to_return = ctxp->current_loop;
15202 tree loop_body = LOOP_EXPR_BODY (to_return);
15203 if (condition)
15205 tree cnode = LOOP_EXPR_BODY_CONDITION_EXPR (loop_body, reversed);
15206 /* We wrapped the EXIT_EXPR around a WFL so we can debug it.
15207 The real EXIT_EXPR is one operand further. */
15208 EXPR_WFL_LINECOL (cnode) = location;
15209 if (TREE_CODE (cnode) == EXPR_WITH_FILE_LOCATION)
15211 cnode = EXPR_WFL_NODE (cnode);
15212 /* This one is for accurate error reports */
15213 EXPR_WFL_LINECOL (cnode) = location;
15215 TREE_OPERAND (cnode, 0) = condition;
15217 LOOP_EXPR_BODY_BODY_EXPR (loop_body, reversed) = body;
15218 POP_LOOP ();
15219 return to_return;
15222 /* Tailored version of finish_loop_body for FOR loops, when FOR
15223 loops feature the condition part */
15225 static tree
15226 finish_for_loop (int location, tree condition, tree update, tree body)
15228 /* Put the condition and the loop body in place */
15229 tree loop = finish_loop_body (location, condition, body, 0);
15230 /* LOOP is the current loop which has been now popped of the loop
15231 stack. Mark the update block as reachable and install it. We do
15232 this because the (current interpretation of the) JLS requires
15233 that the update expression be considered reachable even if the
15234 for loop's body doesn't complete normally. */
15235 if (update != NULL_TREE && !IS_EMPTY_STMT (update))
15237 tree up2 = update;
15238 if (TREE_CODE (up2) == EXPR_WITH_FILE_LOCATION)
15239 up2 = EXPR_WFL_NODE (up2);
15240 /* It is possible for the update expression to be an
15241 EXPR_WFL_NODE wrapping nothing. */
15242 if (up2 != NULL_TREE && !IS_EMPTY_STMT (up2))
15244 /* Try to detect constraint violations. These would be
15245 programming errors somewhere. */
15246 if (! EXPR_P (up2) || TREE_CODE (up2) == LOOP_EXPR)
15247 abort ();
15248 SUPPRESS_UNREACHABLE_ERROR (up2) = 1;
15251 LOOP_EXPR_BODY_UPDATE_BLOCK (LOOP_EXPR_BODY (loop)) = update;
15252 return loop;
15255 /* Try to find the loop a block might be related to. This comprises
15256 the case where the LOOP_EXPR is found as the second operand of a
15257 COMPOUND_EXPR, because the loop happens to have an initialization
15258 part, then expressed as the first operand of the COMPOUND_EXPR. If
15259 the search finds something, 1 is returned. Otherwise, 0 is
15260 returned. The search is assumed to start from a
15261 LABELED_BLOCK_EXPR's block. */
15263 static tree
15264 search_loop (tree statement)
15266 if (TREE_CODE (statement) == LOOP_EXPR)
15267 return statement;
15269 if (TREE_CODE (statement) == BLOCK)
15270 statement = BLOCK_SUBBLOCKS (statement);
15271 else
15272 return NULL_TREE;
15274 if (statement && TREE_CODE (statement) == COMPOUND_EXPR)
15275 while (statement && TREE_CODE (statement) == COMPOUND_EXPR)
15276 statement = TREE_OPERAND (statement, 1);
15278 return (TREE_CODE (statement) == LOOP_EXPR
15279 && FOR_LOOP_P (statement) ? statement : NULL_TREE);
15282 /* Return 1 if LOOP can be found in the labeled block BLOCK. 0 is
15283 returned otherwise. */
15285 static int
15286 labeled_block_contains_loop_p (tree block, tree loop)
15288 if (!block)
15289 return 0;
15291 if (LABELED_BLOCK_BODY (block) == loop)
15292 return 1;
15294 if (FOR_LOOP_P (loop) && search_loop (LABELED_BLOCK_BODY (block)) == loop)
15295 return 1;
15297 return 0;
15300 /* If the loop isn't surrounded by a labeled statement, create one and
15301 insert LOOP as its body. */
15303 static tree
15304 patch_loop_statement (tree loop)
15306 tree loop_label;
15308 TREE_TYPE (loop) = void_type_node;
15309 if (labeled_block_contains_loop_p (ctxp->current_labeled_block, loop))
15310 return loop;
15312 loop_label = build_labeled_block (0, NULL_TREE);
15313 /* LOOP is an EXPR node, so it should have a valid EXPR_WFL_LINECOL
15314 that LOOP_LABEL could enquire about, for a better accuracy. FIXME */
15315 LABELED_BLOCK_BODY (loop_label) = loop;
15316 PUSH_LABELED_BLOCK (loop_label);
15317 return loop_label;
15320 /* 14.13, 14.14: break and continue Statements */
15322 /* Build a break or a continue statement. a null NAME indicates an
15323 unlabeled break/continue statement. */
15325 static tree
15326 build_bc_statement (int location, int is_break, tree name)
15328 tree break_continue, label_block_expr = NULL_TREE;
15330 if (name)
15332 if (!(label_block_expr = IDENTIFIER_LOCAL_VALUE
15333 (merge_qualified_name (label_id, EXPR_WFL_NODE (name)))))
15334 /* Null means that we don't have a target for this named
15335 break/continue. In this case, we make the target to be the
15336 label name, so that the error can be reported accurately in
15337 patch_bc_statement. */
15338 label_block_expr = EXPR_WFL_NODE (name);
15340 /* Unlabeled break/continue will be handled during the
15341 break/continue patch operation */
15342 break_continue = build1 (EXIT_BLOCK_EXPR, NULL_TREE, label_block_expr);
15344 IS_BREAK_STMT_P (break_continue) = is_break;
15345 TREE_SIDE_EFFECTS (break_continue) = 1;
15346 EXPR_WFL_LINECOL (break_continue) = location;
15347 break_continue = build_debugable_stmt (location, break_continue);
15348 return break_continue;
15351 /* Verification of a break/continue statement. */
15353 static tree
15354 patch_bc_statement (tree node)
15356 tree bc_label = EXIT_BLOCK_LABELED_BLOCK (node), target_stmt;
15357 tree labeled_block = ctxp->current_labeled_block;
15358 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15360 /* Having an identifier here means that the target is unknown. */
15361 if (bc_label != NULL_TREE && TREE_CODE (bc_label) == IDENTIFIER_NODE)
15363 parse_error_context (wfl_operator, "No label definition found for %qs",
15364 IDENTIFIER_POINTER (bc_label));
15365 return error_mark_node;
15367 if (! IS_BREAK_STMT_P (node))
15369 /* It's a continue statement. */
15370 for (;; labeled_block = TREE_CHAIN (labeled_block))
15372 if (labeled_block == NULL_TREE)
15374 if (bc_label == NULL_TREE)
15375 parse_error_context (wfl_operator,
15376 "%<continue%> must be in loop");
15377 else
15378 parse_error_context
15379 (wfl_operator, "continue label %qs does not name a loop",
15380 IDENTIFIER_POINTER (bc_label));
15381 return error_mark_node;
15383 if ((DECL_NAME (LABELED_BLOCK_LABEL (labeled_block))
15384 == continue_identifier_node)
15385 && (bc_label == NULL_TREE
15386 || TREE_CHAIN (labeled_block) == bc_label))
15388 bc_label = labeled_block;
15389 break;
15393 else if (!bc_label)
15395 for (;; labeled_block = TREE_CHAIN (labeled_block))
15397 if (labeled_block == NULL_TREE)
15399 parse_error_context (wfl_operator,
15400 "%<break%> must be in loop or switch");
15401 return error_mark_node;
15403 target_stmt = LABELED_BLOCK_BODY (labeled_block);
15404 if (TREE_CODE (target_stmt) == SWITCH_EXPR
15405 || search_loop (target_stmt))
15407 bc_label = labeled_block;
15408 break;
15413 EXIT_BLOCK_LABELED_BLOCK (node) = bc_label;
15414 CAN_COMPLETE_NORMALLY (bc_label) = 1;
15416 /* Our break/continue don't return values. */
15417 TREE_TYPE (node) = void_type_node;
15418 /* Encapsulate the break within a compound statement so that it's
15419 expanded all the times by expand_expr (and not clobbered
15420 sometimes, like after a if statement) */
15421 node = add_stmt_to_compound (NULL_TREE, void_type_node, node);
15422 TREE_SIDE_EFFECTS (node) = 1;
15423 return node;
15426 /* Process the exit expression belonging to a loop. Its type must be
15427 boolean. */
15429 static tree
15430 patch_exit_expr (tree node)
15432 tree expression = TREE_OPERAND (node, 0);
15433 TREE_TYPE (node) = error_mark_node;
15434 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15436 /* The type of expression must be boolean */
15437 if (TREE_TYPE (expression) != boolean_type_node)
15439 parse_error_context
15440 (wfl_operator,
15441 "Incompatible type for loop conditional. Can't convert %qs to %<boolean%>",
15442 lang_printable_name (TREE_TYPE (expression), 0));
15443 return error_mark_node;
15445 /* Now we know things are allright, invert the condition, fold and
15446 return */
15447 TREE_OPERAND (node, 0) =
15448 fold_build1 (TRUTH_NOT_EXPR, boolean_type_node, expression);
15450 if (! integer_zerop (TREE_OPERAND (node, 0))
15451 && ctxp->current_loop != NULL_TREE
15452 && TREE_CODE (ctxp->current_loop) == LOOP_EXPR)
15453 CAN_COMPLETE_NORMALLY (ctxp->current_loop) = 1;
15454 if (! integer_onep (TREE_OPERAND (node, 0)))
15455 CAN_COMPLETE_NORMALLY (node) = 1;
15458 TREE_TYPE (node) = void_type_node;
15459 return node;
15462 /* 14.9 Switch statement */
15464 static tree
15465 patch_switch_statement (tree node)
15467 tree se = TREE_OPERAND (node, 0), se_type;
15468 tree save, iter;
15470 /* Complete the switch expression */
15471 se = TREE_OPERAND (node, 0) = java_complete_tree (se);
15472 se_type = TREE_TYPE (se);
15473 /* The type of the switch expression must be char, byte, short or
15474 int */
15475 if (! JINTEGRAL_TYPE_P (se_type) || se_type == long_type_node)
15477 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15478 parse_error_context (wfl_operator,
15479 "Incompatible type for %<switch%>. Can't convert %qs to %<int%>",
15480 lang_printable_name (se_type, 0));
15481 /* This is what java_complete_tree will check */
15482 TREE_OPERAND (node, 0) = error_mark_node;
15483 return error_mark_node;
15486 /* Save and restore the outer case label list. */
15487 save = case_label_list;
15488 case_label_list = NULL_TREE;
15490 TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
15492 /* See if we've found a duplicate label. We can't leave this until
15493 code generation, because in `--syntax-only' and `-C' modes we
15494 don't do ordinary code generation. */
15495 for (iter = case_label_list; iter != NULL_TREE; iter = TREE_CHAIN (iter))
15497 HOST_WIDE_INT val = TREE_INT_CST_LOW (TREE_VALUE (iter));
15498 tree subiter;
15499 for (subiter = TREE_CHAIN (iter);
15500 subiter != NULL_TREE;
15501 subiter = TREE_CHAIN (subiter))
15503 HOST_WIDE_INT subval = TREE_INT_CST_LOW (TREE_VALUE (subiter));
15504 if (val == subval)
15506 EXPR_WFL_LINECOL (wfl_operator)
15507 = EXPR_WFL_LINECOL (TREE_PURPOSE (iter));
15508 /* The case_label_list is in reverse order, so print the
15509 outer label first. */
15510 parse_error_context (wfl_operator, "duplicate case label: %<"
15511 HOST_WIDE_INT_PRINT_DEC "%>", subval);
15512 EXPR_WFL_LINECOL (wfl_operator)
15513 = EXPR_WFL_LINECOL (TREE_PURPOSE (subiter));
15514 parse_error_context (wfl_operator, "original label is here");
15516 break;
15521 case_label_list = save;
15523 /* Ready to return */
15524 if (TREE_CODE (TREE_OPERAND (node, 1)) == ERROR_MARK)
15526 TREE_TYPE (node) = error_mark_node;
15527 return error_mark_node;
15529 TREE_TYPE (node) = void_type_node;
15530 TREE_SIDE_EFFECTS (node) = 1;
15531 CAN_COMPLETE_NORMALLY (node)
15532 = CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1))
15533 || ! SWITCH_HAS_DEFAULT (node);
15534 return node;
15537 /* Assertions. */
15539 /* Build an assertion expression for `assert CONDITION : VALUE'; VALUE
15540 might be NULL_TREE. */
15541 static tree
15542 build_assertion (
15543 #ifdef USE_MAPPED_LOCATION
15544 source_location location,
15545 #else
15546 int location,
15547 #endif
15548 tree condition, tree value)
15550 tree node;
15551 tree klass = GET_CPC ();
15553 if (! enable_assertions (klass))
15555 condition = build2 (TRUTH_ANDIF_EXPR, NULL_TREE,
15556 boolean_false_node, condition);
15557 if (value == NULL_TREE)
15558 value = build_java_empty_stmt ();
15559 return build_if_else_statement (location, condition,
15560 value, NULL_TREE);
15563 if (! CLASS_USES_ASSERTIONS (klass))
15565 tree field, classdollar, id, call;
15566 tree class_type = TREE_TYPE (klass);
15568 field = add_field (class_type,
15569 get_identifier ("$assertionsDisabled"),
15570 boolean_type_node,
15571 ACC_PRIVATE | ACC_STATIC | ACC_FINAL);
15572 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (field);
15573 FIELD_SYNTHETIC (field) = 1;
15575 classdollar = build_incomplete_class_ref (location, class_type);
15577 /* Call CLASS.desiredAssertionStatus(). */
15578 id = build_wfl_node (get_identifier ("desiredAssertionStatus"));
15579 call = build3 (CALL_EXPR, NULL_TREE, id, NULL_TREE, NULL_TREE);
15580 call = make_qualified_primary (classdollar, call, location);
15581 TREE_SIDE_EFFECTS (call) = 1;
15583 /* Invert to obtain !CLASS.desiredAssertionStatus(). This may
15584 seem odd, but we do it to generate code identical to that of
15585 the JDK. */
15586 call = build1 (TRUTH_NOT_EXPR, NULL_TREE, call);
15587 TREE_SIDE_EFFECTS (call) = 1;
15588 DECL_INITIAL (field) = call;
15590 /* Record the initializer in the initializer statement list. */
15591 call = build2 (MODIFY_EXPR, NULL_TREE, field, call);
15592 TREE_CHAIN (call) = CPC_STATIC_INITIALIZER_STMT (ctxp);
15593 SET_CPC_STATIC_INITIALIZER_STMT (ctxp, call);
15594 MODIFY_EXPR_FROM_INITIALIZATION_P (call) = 1;
15596 CLASS_USES_ASSERTIONS (klass) = 1;
15599 if (value != NULL_TREE)
15600 value = tree_cons (NULL_TREE, value, NULL_TREE);
15602 node = build_wfl_node (get_identifier ("java"));
15603 node = make_qualified_name (node, build_wfl_node (get_identifier ("lang")),
15604 location);
15605 node = make_qualified_name (node, build_wfl_node (get_identifier ("AssertionError")),
15606 location);
15608 node = build3 (NEW_CLASS_EXPR, NULL_TREE, node, value, NULL_TREE);
15609 TREE_SIDE_EFFECTS (node) = 1;
15610 /* It is too early to use BUILD_THROW. */
15611 node = build1 (THROW_EXPR, NULL_TREE, node);
15612 TREE_SIDE_EFFECTS (node) = 1;
15614 /* We invert the condition; if we just put NODE as the `else' part
15615 then we generate weird-looking bytecode. */
15616 condition = build1 (TRUTH_NOT_EXPR, NULL_TREE, condition);
15617 /* Check $assertionsDisabled. */
15618 condition
15619 = build2 (TRUTH_ANDIF_EXPR, NULL_TREE,
15620 build1 (TRUTH_NOT_EXPR, NULL_TREE,
15621 build_wfl_node (get_identifier ("$assertionsDisabled"))),
15622 condition);
15623 node = build_if_else_statement (location, condition, node, NULL_TREE);
15624 return node;
15627 /* 14.18 The try/catch statements */
15629 /* Encapsulate TRY_STMTS' in a try catch sequence. The catch clause
15630 catches TYPE and executes CATCH_STMTS. */
15632 static tree
15633 encapsulate_with_try_catch (int location, tree type_or_name, tree try_stmts,
15634 tree catch_stmts)
15636 tree try_block, catch_clause_param, catch_block, catch;
15638 /* First build a try block */
15639 try_block = build_expr_block (try_stmts, NULL_TREE);
15641 /* Build a catch block: we need a catch clause parameter */
15642 if (TREE_CODE (type_or_name) == EXPR_WITH_FILE_LOCATION)
15644 tree catch_type = obtain_incomplete_type (type_or_name);
15645 jdep *dep;
15646 catch_clause_param = build_decl (VAR_DECL, wpv_id, catch_type);
15647 register_incomplete_type (JDEP_VARIABLE, type_or_name,
15648 catch_clause_param, catch_type);
15649 dep = CLASSD_LAST (ctxp->classd_list);
15650 JDEP_GET_PATCH (dep) = &TREE_TYPE (catch_clause_param);
15652 else
15653 catch_clause_param = build_decl (VAR_DECL, wpv_id,
15654 build_pointer_type (type_or_name));
15656 /* And a block */
15657 catch_block = build_expr_block (NULL_TREE, catch_clause_param);
15659 /* Initialize the variable and store in the block */
15660 catch = build2 (MODIFY_EXPR, NULL_TREE, catch_clause_param,
15661 build0 (JAVA_EXC_OBJ_EXPR, ptr_type_node));
15662 add_stmt_to_block (catch_block, NULL_TREE, catch);
15664 /* Add the catch statements */
15665 add_stmt_to_block (catch_block, NULL_TREE, catch_stmts);
15667 /* Now we can build a JAVA_CATCH_EXPR */
15668 catch_block = build1 (JAVA_CATCH_EXPR, NULL_TREE, catch_block);
15670 return build_try_statement (location, try_block, catch_block);
15673 static tree
15674 build_try_statement (int location, tree try_block, tree catches)
15676 tree node = build2 (TRY_EXPR, NULL_TREE, try_block, catches);
15677 EXPR_WFL_LINECOL (node) = location;
15678 return node;
15681 static tree
15682 build_try_finally_statement (int location, tree try_block, tree finally)
15684 tree node = build2 (TRY_FINALLY_EXPR, NULL_TREE, try_block, finally);
15685 EXPR_WFL_LINECOL (node) = location;
15686 return node;
15689 static tree
15690 patch_try_statement (tree node)
15692 int error_found = 0;
15693 tree try = TREE_OPERAND (node, 0);
15694 /* Exception handlers are considered in left to right order */
15695 tree catch = nreverse (TREE_OPERAND (node, 1));
15696 tree current, caught_type_list = NULL_TREE;
15698 /* Check catch clauses, if any. Every time we find an error, we try
15699 to process the next catch clause. We process the catch clause before
15700 the try block so that when processing the try block we can check thrown
15701 exceptions against the caught type list. */
15702 for (current = catch; current; current = TREE_CHAIN (current))
15704 tree carg_decl, carg_type;
15705 tree sub_current, catch_block, catch_clause;
15706 int unreachable;
15708 /* At this point, the structure of the catch clause is
15709 JAVA_CATCH_EXPR (catch node)
15710 BLOCK (with the decl of the parameter)
15711 COMPOUND_EXPR
15712 MODIFY_EXPR (assignment of the catch parameter)
15713 BLOCK (catch clause block)
15715 catch_clause = TREE_OPERAND (current, 0);
15716 carg_decl = BLOCK_EXPR_DECLS (catch_clause);
15717 carg_type = TREE_TYPE (TREE_TYPE (carg_decl));
15719 /* Catch clauses can't have more than one parameter declared,
15720 but it's already enforced by the grammar. Make sure that the
15721 only parameter of the clause statement in of class Throwable
15722 or a subclass of Throwable, but that was done earlier. The
15723 catch clause parameter type has also been resolved. */
15725 /* Just make sure that the catch clause parameter type inherits
15726 from java.lang.Throwable */
15727 if (!inherits_from_p (carg_type, throwable_type_node))
15729 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (current);
15730 parse_error_context (wfl_operator,
15731 "Can't catch class %qs. Catch clause parameter type must be a subclass of class %<java.lang.Throwable%>",
15732 lang_printable_name (carg_type, 0));
15733 error_found = 1;
15734 continue;
15737 /* Partial check for unreachable catch statement: The catch
15738 clause is reachable iff is no earlier catch block A in
15739 the try statement such that the type of the catch
15740 clause's parameter is the same as or a subclass of the
15741 type of A's parameter */
15742 unreachable = 0;
15743 for (sub_current = catch;
15744 sub_current != current; sub_current = TREE_CHAIN (sub_current))
15746 tree sub_catch_clause, decl;
15747 sub_catch_clause = TREE_OPERAND (sub_current, 0);
15748 decl = BLOCK_EXPR_DECLS (sub_catch_clause);
15750 if (inherits_from_p (carg_type, TREE_TYPE (TREE_TYPE (decl))))
15752 EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (current);
15753 parse_error_context
15754 (wfl_operator,
15755 "%<catch%> not reached because of the catch clause at line %d",
15756 EXPR_WFL_LINENO (sub_current));
15757 unreachable = error_found = 1;
15758 break;
15761 /* Complete the catch clause block */
15762 catch_block = java_complete_tree (TREE_OPERAND (current, 0));
15763 if (catch_block == error_mark_node)
15765 error_found = 1;
15766 continue;
15768 if (CAN_COMPLETE_NORMALLY (catch_block))
15769 CAN_COMPLETE_NORMALLY (node) = 1;
15770 TREE_OPERAND (current, 0) = catch_block;
15772 if (unreachable)
15773 continue;
15775 /* Things to do here: the exception must be thrown */
15777 /* Link this type to the caught type list */
15778 caught_type_list = tree_cons (NULL_TREE, carg_type, caught_type_list);
15781 PUSH_EXCEPTIONS (caught_type_list);
15782 if ((try = java_complete_tree (try)) == error_mark_node)
15783 error_found = 1;
15784 if (CAN_COMPLETE_NORMALLY (try))
15785 CAN_COMPLETE_NORMALLY (node) = 1;
15786 POP_EXCEPTIONS ();
15788 /* Verification ends here */
15789 if (error_found)
15790 return error_mark_node;
15792 TREE_OPERAND (node, 0) = try;
15793 TREE_OPERAND (node, 1) = catch;
15794 TREE_TYPE (node) = void_type_node;
15795 return node;
15798 /* 14.17 The synchronized Statement */
15800 static tree
15801 patch_synchronized_statement (tree node, tree wfl_op1)
15803 tree expr = java_complete_tree (TREE_OPERAND (node, 0));
15804 tree block = TREE_OPERAND (node, 1);
15806 tree tmp, enter, exit, expr_decl, assignment;
15808 if (expr == error_mark_node)
15810 block = java_complete_tree (block);
15811 return expr;
15814 /* We might be trying to synchronize on a STRING_CST */
15815 if ((tmp = patch_string (expr)))
15816 expr = tmp;
15818 /* The TYPE of expr must be a reference type */
15819 if (!JREFERENCE_TYPE_P (TREE_TYPE (expr)))
15821 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15822 parse_error_context (wfl_operator, "Incompatible type for %<synchronized%>. Can't convert %qs to %<java.lang.Object%>",
15823 lang_printable_name (TREE_TYPE (expr), 0));
15824 return error_mark_node;
15827 /* Generate a try-finally for the synchronized statement, except
15828 that the handler that catches all throw exception calls
15829 _Jv_MonitorExit and then rethrow the exception.
15830 The synchronized statement is then implemented as:
15833 _Jv_MonitorEnter (expression)
15834 synchronized_block
15835 _Jv_MonitorExit (expression)
15837 CATCH_ALL
15839 e = _Jv_exception_info ();
15840 _Jv_MonitorExit (expression)
15841 Throw (e);
15842 } */
15844 expr_decl = build_decl (VAR_DECL, generate_name (), TREE_TYPE (expr));
15845 BUILD_MONITOR_ENTER (enter, expr_decl);
15846 BUILD_MONITOR_EXIT (exit, expr_decl);
15847 CAN_COMPLETE_NORMALLY (enter) = 1;
15848 CAN_COMPLETE_NORMALLY (exit) = 1;
15849 assignment = build2 (MODIFY_EXPR, NULL_TREE, expr_decl, expr);
15850 TREE_SIDE_EFFECTS (assignment) = 1;
15851 node = build2 (COMPOUND_EXPR, NULL_TREE,
15852 build2 (COMPOUND_EXPR, NULL_TREE, assignment, enter),
15853 build2 (TRY_FINALLY_EXPR, NULL_TREE, block, exit));
15854 node = build_expr_block (node, expr_decl);
15856 return java_complete_tree (node);
15859 /* 14.16 The throw Statement */
15861 static tree
15862 patch_throw_statement (tree node, tree wfl_op1)
15864 tree expr = TREE_OPERAND (node, 0);
15865 tree type = TREE_TYPE (expr);
15866 int unchecked_ok = 0, tryblock_throws_ok = 0;
15868 /* Thrown expression must be assignable to java.lang.Throwable */
15869 if (!try_reference_assignconv (throwable_type_node, expr))
15871 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15872 parse_error_context (wfl_operator,
15873 "Can't throw %qs; it must be a subclass of class %<java.lang.Throwable%>",
15874 lang_printable_name (type, 0));
15875 /* If the thrown expression was a reference, we further the
15876 compile-time check. */
15877 if (!JREFERENCE_TYPE_P (type))
15878 return error_mark_node;
15881 /* At least one of the following must be true */
15883 /* The type of the throw expression is a not checked exception,
15884 i.e. is a unchecked expression. */
15885 unchecked_ok = IS_UNCHECKED_EXCEPTION_P (TREE_TYPE (type));
15887 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15888 /* An instance can't throw a checked exception unless that exception
15889 is explicitly declared in the `throws' clause of each
15890 constructor. This doesn't apply to anonymous classes, since they
15891 don't have declared constructors. */
15892 if (!unchecked_ok
15893 && DECL_INSTINIT_P (current_function_decl)
15894 && !ANONYMOUS_CLASS_P (current_class))
15896 tree current;
15897 for (current = TYPE_METHODS (current_class); current;
15898 current = TREE_CHAIN (current))
15899 if (DECL_CONSTRUCTOR_P (current)
15900 && !check_thrown_exceptions_do (TREE_TYPE (expr)))
15902 parse_error_context (wfl_operator, "Checked exception %qs can't be thrown in instance initializer (not all declared constructor are declaring it in their %<throws%> clause)",
15903 lang_printable_name (TREE_TYPE (expr), 0));
15904 return error_mark_node;
15908 /* Throw is contained in a try statement and at least one catch
15909 clause can receive the thrown expression or the current method is
15910 declared to throw such an exception. Or, the throw statement is
15911 contained in a method or constructor declaration and the type of
15912 the Expression is assignable to at least one type listed in the
15913 throws clause the declaration. */
15914 if (!unchecked_ok)
15915 tryblock_throws_ok = check_thrown_exceptions_do (TREE_TYPE (expr));
15916 if (!(unchecked_ok || tryblock_throws_ok))
15918 /* If there is a surrounding try block that has no matching
15919 clatch clause, report it first. A surrounding try block exits
15920 only if there is something after the list of checked
15921 exception thrown by the current function (if any). */
15922 if (IN_TRY_BLOCK_P ())
15923 parse_error_context (wfl_operator, "Checked exception %qs can't be caught by any of the catch clause(s) of the surrounding %<try%> block",
15924 lang_printable_name (type, 0));
15925 /* If we have no surrounding try statement and the method doesn't have
15926 any throws, report it now. FIXME */
15928 /* We report that the exception can't be throw from a try block
15929 in all circumstances but when the `throw' is inside a static
15930 block. */
15931 else if (!EXCEPTIONS_P (currently_caught_type_list)
15932 && !tryblock_throws_ok)
15934 if (DECL_CLINIT_P (current_function_decl))
15935 parse_error_context (wfl_operator,
15936 "Checked exception %qs can't be thrown in initializer",
15937 lang_printable_name (type, 0));
15938 else
15939 parse_error_context (wfl_operator,
15940 "Checked exception %qs isn't thrown from a %<try%> block",
15941 lang_printable_name (type, 0));
15943 /* Otherwise, the current method doesn't have the appropriate
15944 throws declaration */
15945 else
15946 parse_error_context (wfl_operator, "Checked exception %qs doesn't match any of current method's %<throws%> declaration(s)",
15947 lang_printable_name (type, 0));
15948 return error_mark_node;
15951 if (! flag_emit_class_files)
15952 BUILD_THROW (node, expr);
15954 return node;
15957 /* Add EXCEPTION to the throws clause of MDECL. If MDECL already throws
15958 a super-class of EXCEPTION, keep the superclass instead. If MDECL already
15959 throws a sub-class of EXCEPTION, replace the sub-class with EXCEPTION. */
15960 static void
15961 add_exception_to_throws (tree mdecl, tree exception)
15963 tree mthrows;
15965 /* Ignore unchecked exceptions. */
15966 if (IS_UNCHECKED_EXCEPTION_P (exception))
15967 return;
15969 for (mthrows = DECL_FUNCTION_THROWS (mdecl);
15970 mthrows; mthrows = TREE_CHAIN (mthrows))
15972 if (inherits_from_p (exception, TREE_VALUE (mthrows)))
15973 return;
15974 if (inherits_from_p (TREE_VALUE (mthrows), exception))
15976 TREE_VALUE (mthrows) = exception;
15977 return;
15981 mthrows = DECL_FUNCTION_THROWS (mdecl);
15982 DECL_FUNCTION_THROWS (mdecl) = build_tree_list (mthrows, exception);
15985 /* Check that exception said to be thrown by method DECL can be
15986 effectively caught from where DECL is invoked. THIS_EXPR is the
15987 expression that computes `this' for the method call. */
15988 static void
15989 check_thrown_exceptions (
15990 #ifdef USE_MAPPED_LOCATION
15991 source_location location,
15992 #else
15994 int location,
15995 #endif
15996 tree decl, tree this_expr)
15998 tree throws;
15999 int is_array_call = 0;
16001 /* Skip check within generated methods, such as access$<n>. */
16002 if (NESTED_FIELD_ACCESS_IDENTIFIER_P (DECL_NAME (current_function_decl)))
16003 return;
16005 if (this_expr != NULL_TREE
16006 && TREE_CODE (TREE_TYPE (this_expr)) == POINTER_TYPE
16007 && TYPE_ARRAY_P (TREE_TYPE (TREE_TYPE (this_expr))))
16008 is_array_call = 1;
16010 /* For all the unchecked exceptions thrown by DECL. */
16011 for (throws = DECL_FUNCTION_THROWS (decl); throws;
16012 throws = TREE_CHAIN (throws))
16013 if (!check_thrown_exceptions_do (TREE_VALUE (throws)))
16015 /* Suppress errors about cloning arrays. */
16016 if (is_array_call && DECL_NAME (decl) == get_identifier ("clone"))
16017 continue;
16019 #ifdef USE_MAPPED_LOCATION
16020 SET_EXPR_LOCATION (wfl_operator, location);
16021 #else
16022 EXPR_WFL_LINECOL (wfl_operator) = location;
16023 #endif
16024 if (ANONYMOUS_CLASS_P (DECL_CONTEXT (current_function_decl))
16025 && (DECL_FINIT_P (current_function_decl)
16026 || DECL_INIT_P (current_function_decl)
16027 || DECL_CONSTRUCTOR_P (current_function_decl)))
16029 /* Add "throws" to the initializer's exception list */
16030 tree exception = TREE_VALUE (throws);
16031 add_exception_to_throws (current_function_decl, exception);
16033 else if (DECL_FINIT_P (current_function_decl))
16035 parse_error_context
16036 (wfl_operator, "Exception %qs can't be thrown in initializer",
16037 lang_printable_name (TREE_VALUE (throws), 0));
16039 else
16041 parse_error_context
16042 (wfl_operator, "Exception %qs must be caught, or it must be declared in the %<throws%> clause of %qs",
16043 lang_printable_name (TREE_VALUE (throws), 0),
16044 (DECL_INIT_P (current_function_decl) ?
16045 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))) :
16046 IDENTIFIER_POINTER (DECL_NAME (current_function_decl))));
16051 /* Return 1 if checked EXCEPTION is caught at the current nesting level of
16052 try-catch blocks, OR is listed in the `throws' clause of the
16053 current method. */
16055 static int
16056 check_thrown_exceptions_do (tree exception)
16058 tree list = currently_caught_type_list;
16059 resolve_and_layout (exception, NULL_TREE);
16060 /* First, all the nested try-catch-finally at that stage. The
16061 last element contains `throws' clause exceptions, if any. */
16062 if (IS_UNCHECKED_EXCEPTION_P (exception))
16063 return 1;
16064 while (list)
16066 tree caught;
16067 for (caught = TREE_VALUE (list); caught; caught = TREE_CHAIN (caught))
16068 if (valid_ref_assignconv_cast_p (exception, TREE_VALUE (caught), 0))
16069 return 1;
16070 list = TREE_CHAIN (list);
16072 return 0;
16075 /* This function goes over all of CLASS_TYPE ctors and checks whether
16076 each of them features at least one unchecked exception in its
16077 `throws' clause. If it's the case, it returns `true', `false'
16078 otherwise. */
16080 static bool
16081 ctors_unchecked_throws_clause_p (tree class_type)
16083 tree current;
16085 for (current = TYPE_METHODS (class_type); current;
16086 current = TREE_CHAIN (current))
16088 bool ctu = false; /* Ctor Throws Unchecked */
16089 if (DECL_CONSTRUCTOR_P (current))
16091 tree throws;
16092 for (throws = DECL_FUNCTION_THROWS (current); throws && !ctu;
16093 throws = TREE_CHAIN (throws))
16094 if (inherits_from_p (TREE_VALUE (throws), exception_type_node))
16095 ctu = true;
16097 /* We return false as we found one ctor that is unfit. */
16098 if (!ctu && DECL_CONSTRUCTOR_P (current))
16099 return false;
16101 /* All ctors feature at least one unchecked exception in their
16102 `throws' clause. */
16103 return true;
16106 /* 15.24 Conditional Operator ?: */
16108 static tree
16109 patch_conditional_expr (tree node, tree wfl_cond, tree wfl_op1)
16111 tree cond = TREE_OPERAND (node, 0);
16112 tree op1 = TREE_OPERAND (node, 1);
16113 tree op2 = TREE_OPERAND (node, 2);
16114 tree resulting_type = NULL_TREE;
16115 tree t1, t2, patched;
16116 int error_found = 0;
16118 /* The condition and operands of ?: might be StringBuffers crafted
16119 as a result of a string concatenation. Obtain decent ones here. */
16120 if ((patched = patch_string (cond)))
16121 TREE_OPERAND (node, 0) = cond = patched;
16122 if ((patched = patch_string (op1)))
16123 TREE_OPERAND (node, 1) = op1 = patched;
16124 if ((patched = patch_string (op2)))
16125 TREE_OPERAND (node, 2) = op2 = patched;
16127 t1 = TREE_TYPE (op1);
16128 t2 = TREE_TYPE (op2);
16130 /* The first expression must be a boolean */
16131 if (TREE_TYPE (cond) != boolean_type_node)
16133 SET_WFL_OPERATOR (wfl_operator, node, wfl_cond);
16134 parse_error_context (wfl_operator,
16135 "Incompatible type for %<?:%>. Can't convert %qs to %<boolean%>",
16136 lang_printable_name (TREE_TYPE (cond), 0));
16137 error_found = 1;
16140 /* Second and third can be numeric, boolean (i.e. primitive),
16141 references or null. Anything else results in an error */
16142 if (!((JNUMERIC_TYPE_P (t1) && JNUMERIC_TYPE_P (t2))
16143 || ((JREFERENCE_TYPE_P (t1) || op1 == null_pointer_node)
16144 && (JREFERENCE_TYPE_P (t2) || op2 == null_pointer_node))
16145 || (t1 == boolean_type_node && t2 == boolean_type_node)))
16146 error_found = 1;
16148 /* Determine the type of the conditional expression. Same types are
16149 easy to deal with */
16150 else if (t1 == t2)
16151 resulting_type = t1;
16153 /* There are different rules for numeric types */
16154 else if (JNUMERIC_TYPE_P (t1))
16156 /* if byte/short found, the resulting type is short */
16157 if ((t1 == byte_type_node && t2 == short_type_node)
16158 || (t1 == short_type_node && t2 == byte_type_node))
16159 resulting_type = short_type_node;
16161 /* If t1 is a constant int and t2 is of type byte, short or char
16162 and t1's value fits in t2, then the resulting type is t2 */
16163 else if ((t1 == int_type_node && TREE_CONSTANT (TREE_OPERAND (node, 1)))
16164 && JBSC_TYPE_P (t2) && int_fits_type_p (TREE_OPERAND (node, 1), t2))
16165 resulting_type = t2;
16167 /* If t2 is a constant int and t1 is of type byte, short or char
16168 and t2's value fits in t1, then the resulting type is t1 */
16169 else if ((t2 == int_type_node && TREE_CONSTANT (TREE_OPERAND (node, 2)))
16170 && JBSC_TYPE_P (t1) && int_fits_type_p (TREE_OPERAND (node, 2), t1))
16171 resulting_type = t1;
16173 /* Otherwise, binary numeric promotion is applied and the
16174 resulting type is the promoted type of operand 1 and 2 */
16175 else
16176 resulting_type = binary_numeric_promotion (t1, t2,
16177 &TREE_OPERAND (node, 1),
16178 &TREE_OPERAND (node, 2));
16181 /* Cases of a reference and a null type */
16182 else if (JREFERENCE_TYPE_P (t1) && op2 == null_pointer_node)
16183 resulting_type = t1;
16185 else if (JREFERENCE_TYPE_P (t2) && op1 == null_pointer_node)
16186 resulting_type = t2;
16188 /* Last case: different reference types. If a type can be converted
16189 into the other one by assignment conversion, the latter
16190 determines the type of the expression */
16191 else if ((resulting_type = try_reference_assignconv (t1, op2)))
16192 resulting_type = promote_type (t1);
16194 else if ((resulting_type = try_reference_assignconv (t2, op1)))
16195 resulting_type = promote_type (t2);
16197 /* If we don't have any resulting type, we're in trouble */
16198 if (!resulting_type)
16200 char *t = xstrdup (lang_printable_name (t1, 0));
16201 SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
16202 parse_error_context (wfl_operator,
16203 "Incompatible type for %<?:%>. Can't convert %qs to %qs",
16204 t, lang_printable_name (t2, 0));
16205 free (t);
16206 error_found = 1;
16209 if (error_found)
16211 TREE_TYPE (node) = error_mark_node;
16212 return error_mark_node;
16215 TREE_TYPE (node) = resulting_type;
16216 TREE_SET_CODE (node, COND_EXPR);
16217 CAN_COMPLETE_NORMALLY (node) = 1;
16218 return node;
16221 /* Wrap EXPR with code to initialize DECL's class, if appropriate. */
16223 static tree
16224 maybe_build_class_init_for_field (tree decl, tree expr)
16226 tree clas = DECL_CONTEXT (decl);
16227 if (flag_emit_class_files)
16228 return expr;
16230 if (TREE_CODE (decl) == VAR_DECL && FIELD_STATIC (decl)
16231 && FIELD_FINAL (decl))
16233 tree init = DECL_INITIAL (decl);
16234 if (init != NULL_TREE)
16235 init = fold_constant_for_init (init, decl);
16236 if (init != NULL_TREE && CONSTANT_VALUE_P (init))
16237 return expr;
16240 return build_class_init (clas, expr);
16243 /* Try to constant fold NODE.
16244 If NODE is not a constant expression, return NULL_EXPR.
16245 CONTEXT is a static final VAR_DECL whose initializer we are folding. */
16247 static tree
16248 fold_constant_for_init (tree node, tree context)
16250 tree op0, op1, val;
16251 enum tree_code code = TREE_CODE (node);
16253 switch (code)
16255 case INTEGER_CST:
16256 if (node == null_pointer_node)
16257 return NULL_TREE;
16258 case STRING_CST:
16259 case REAL_CST:
16260 return node;
16262 case PLUS_EXPR:
16263 case MINUS_EXPR:
16264 case MULT_EXPR:
16265 case TRUNC_MOD_EXPR:
16266 case RDIV_EXPR:
16267 case LSHIFT_EXPR:
16268 case RSHIFT_EXPR:
16269 case URSHIFT_EXPR:
16270 case BIT_AND_EXPR:
16271 case BIT_XOR_EXPR:
16272 case BIT_IOR_EXPR:
16273 case TRUTH_ANDIF_EXPR:
16274 case TRUTH_ORIF_EXPR:
16275 case EQ_EXPR:
16276 case NE_EXPR:
16277 case GT_EXPR:
16278 case GE_EXPR:
16279 case LT_EXPR:
16280 case LE_EXPR:
16281 op0 = TREE_OPERAND (node, 0);
16282 op1 = TREE_OPERAND (node, 1);
16283 val = fold_constant_for_init (op0, context);
16284 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16285 return NULL_TREE;
16286 TREE_OPERAND (node, 0) = val;
16287 val = fold_constant_for_init (op1, context);
16288 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16289 return NULL_TREE;
16290 TREE_OPERAND (node, 1) = val;
16291 return patch_binop (node, op0, op1, 1);
16293 case UNARY_PLUS_EXPR:
16294 case NEGATE_EXPR:
16295 case TRUTH_NOT_EXPR:
16296 case BIT_NOT_EXPR:
16297 case CONVERT_EXPR:
16298 case NOP_EXPR:
16299 op0 = TREE_OPERAND (node, 0);
16300 val = fold_constant_for_init (op0, context);
16301 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16302 return NULL_TREE;
16303 TREE_OPERAND (node, 0) = val;
16304 val = patch_unaryop (node, op0);
16305 if (! TREE_CONSTANT (val))
16306 return NULL_TREE;
16307 return val;
16309 break;
16311 case COND_EXPR:
16312 val = fold_constant_for_init (TREE_OPERAND (node, 0), context);
16313 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16314 return NULL_TREE;
16315 TREE_OPERAND (node, 0) = val;
16316 val = fold_constant_for_init (TREE_OPERAND (node, 1), context);
16317 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16318 return NULL_TREE;
16319 TREE_OPERAND (node, 1) = val;
16320 val = fold_constant_for_init (TREE_OPERAND (node, 2), context);
16321 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16322 return NULL_TREE;
16323 TREE_OPERAND (node, 2) = val;
16324 return integer_zerop (TREE_OPERAND (node, 0)) ? TREE_OPERAND (node, 2)
16325 : TREE_OPERAND (node, 1);
16327 case VAR_DECL:
16328 case FIELD_DECL:
16329 if (! FIELD_FINAL (node)
16330 || DECL_INITIAL (node) == NULL_TREE)
16331 return NULL_TREE;
16332 val = DECL_INITIAL (node);
16333 /* Guard against infinite recursion. */
16334 DECL_INITIAL (node) = NULL_TREE;
16335 val = fold_constant_for_init (val, node);
16336 if (val != NULL_TREE && TREE_CODE (val) != STRING_CST)
16337 val = try_builtin_assignconv (NULL_TREE, TREE_TYPE (node), val);
16338 DECL_INITIAL (node) = val;
16339 return val;
16341 case EXPR_WITH_FILE_LOCATION:
16342 /* Compare java_complete_tree and resolve_expression_name. */
16343 if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
16344 || TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
16346 tree name = EXPR_WFL_NODE (node);
16347 tree decl;
16348 if (PRIMARY_P (node))
16349 return NULL_TREE;
16350 else if (! QUALIFIED_P (name))
16352 decl = lookup_field_wrapper (DECL_CONTEXT (context), name);
16353 if (decl == NULL_TREE
16354 || (! FIELD_STATIC (decl) && ! FIELD_FINAL (decl)))
16355 return NULL_TREE;
16356 return fold_constant_for_init (decl, decl);
16358 else
16360 tree r = NULL_TREE;
16361 /* Install the proper context for the field resolution. */
16362 tree saved_current_class = current_class;
16363 /* Wait until the USE_COMPONENT_REF re-write. FIXME. */
16364 current_class = DECL_CONTEXT (context);
16365 qualify_ambiguous_name (node);
16366 r = resolve_field_access (node, &decl, NULL);
16367 /* Restore prior context. */
16368 current_class = saved_current_class;
16369 if (r != error_mark_node && decl != NULL_TREE)
16370 return fold_constant_for_init (decl, decl);
16371 return NULL_TREE;
16374 else
16376 op0 = TREE_OPERAND (node, 0);
16377 val = fold_constant_for_init (op0, context);
16378 if (val == NULL_TREE || ! TREE_CONSTANT (val))
16379 return NULL_TREE;
16380 TREE_OPERAND (node, 0) = val;
16381 return val;
16384 #ifdef USE_COMPONENT_REF
16385 case IDENTIFIER:
16386 case COMPONENT_REF:
16388 #endif
16390 default:
16391 return NULL_TREE;
16395 #ifdef USE_COMPONENT_REF
16396 /* Context is 'T' for TypeName, 'P' for PackageName,
16397 'M' for MethodName, 'E' for ExpressionName, and 'A' for AmbiguousName. */
16399 tree
16400 resolve_simple_name (tree name, int context)
16404 tree
16405 resolve_qualified_name (tree name, int context)
16408 #endif
16410 void
16411 init_src_parse (void)
16413 /* Sanity check; we've been bit by this before. */
16414 if (ARRAY_SIZE (ctxp->modifier_ctx) != MODIFIER_TK - PUBLIC_TK)
16415 abort ();
16420 /* This section deals with the functions that are called when tables
16421 recording class initialization information are traversed. */
16423 /* This function is called for each class that is known definitely
16424 initialized when a given static method was called. This function
16425 augments a compound expression (INFO) storing all assignment to
16426 initialized static class flags if a flag already existed, otherwise
16427 a new one is created. */
16429 static int
16430 emit_test_initialization (void **entry_p, void *info)
16432 tree l = (tree) info;
16433 tree decl, init;
16434 tree key = (tree) *entry_p;
16435 tree *ite;
16436 htab_t cf_ht = DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl);
16438 /* If we haven't found a flag and we're dealing with self registered
16439 with current_function_decl, then don't do anything. Self is
16440 always added as definitely initialized but this information is
16441 valid only if used outside the current function. */
16442 if (current_function_decl == TREE_PURPOSE (l)
16443 && java_treetreehash_find (cf_ht, key) == NULL)
16444 return true;
16446 ite = java_treetreehash_new (cf_ht, key);
16448 /* If we don't have a variable, create one and install it. */
16449 if (*ite == NULL)
16451 tree block;
16453 decl = build_decl (VAR_DECL, NULL_TREE, boolean_type_node);
16454 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
16455 LOCAL_CLASS_INITIALIZATION_FLAG (decl) = 1;
16456 DECL_CONTEXT (decl) = current_function_decl;
16457 DECL_INITIAL (decl) = boolean_true_node;
16458 /* Don't emit any symbolic debugging info for this decl. */
16459 DECL_IGNORED_P (decl) = 1;
16461 /* The trick is to find the right context for it. */
16462 block = BLOCK_SUBBLOCKS (GET_CURRENT_BLOCK (current_function_decl));
16463 TREE_CHAIN (decl) = BLOCK_EXPR_DECLS (block);
16464 BLOCK_EXPR_DECLS (block) = decl;
16465 *ite = decl;
16467 else
16468 decl = *ite;
16470 /* Now simply augment the compound that holds all the assignments
16471 pertaining to this method invocation. */
16472 init = build2 (MODIFY_EXPR, boolean_type_node, decl, boolean_true_node);
16473 TREE_SIDE_EFFECTS (init) = 1;
16474 TREE_VALUE (l) = add_stmt_to_compound (TREE_VALUE (l), void_type_node, init);
16475 TREE_SIDE_EFFECTS (TREE_VALUE (l)) = 1;
16477 return true;
16480 #ifdef __XGETTEXT__
16481 /* Depending on the version of Bison used to compile this grammar,
16482 it may issue generic diagnostics spelled "syntax error" or
16483 "parse error". To prevent this from changing the translation
16484 template randomly, we list all the variants of this particular
16485 diagnostic here. Translators: there is no fine distinction
16486 between diagnostics with "syntax error" in them, and diagnostics
16487 with "parse error" in them. It's okay to give them both the same
16488 translation. */
16489 const char d1[] = N_("syntax error");
16490 const char d2[] = N_("parse error");
16491 const char d3[] = N_("syntax error; also virtual memory exhausted");
16492 const char d4[] = N_("parse error; also virtual memory exhausted");
16493 const char d5[] = N_("syntax error: cannot back up");
16494 const char d6[] = N_("parse error: cannot back up");
16495 #endif
16497 #include "gt-java-parse.h"
16498 #include "gtype-java.h"