OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / java / parse.y
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
4    Free Software Foundation, Inc.
5    Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
6
7 This file is part of GCC.
8
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.
13
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.
18
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, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.
23
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.  */
27
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).
31
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"
35
36 The following modifications were brought to the original grammar:
37
38 method_body: added the rule '| block SC_TK'
39 static_initializer: added the rule 'static block SC_TK'.
40
41 Note: All the extra rules described above should go away when the
42       empty_statement rule will work.
43
44 statement_nsi: 'nsi' should be read no_short_if.
45
46 Some rules have been modified to support JDK1.1 inner classes
47 definitions and other extensions.  */
48
49 %{
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 "xref.h"
71 #include "function.h"
72 #include "except.h"
73 #include "ggc.h"
74 #include "debug.h"
75 #include "tree-inline.h"
76 #include "cgraph.h"
77 #include "target.h"
78
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 *msgid, ...);
101 #ifdef USE_MAPPED_LOCATION
102 static void issue_warning_error_from_context
103   (source_location, const char *msgid, va_list *);
104 #else
105 static void issue_warning_error_from_context
106   (tree, const char *msgid, 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 void check_inner_class_access (tree, tree, tree);
116 static int check_pkg_class_access (tree, tree, bool, tree);
117 static void register_package (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);
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 #ifdef USE_MAPPED_LOCATION
238 static void check_thrown_exceptions (source_location, tree, tree);
239 #else
240 static void check_thrown_exceptions (int, tree, tree);
241 #endif
242 static int check_thrown_exceptions_do (tree);
243 static void purge_unchecked_exceptions (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 int verify_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, tree);
278 static const char *purify_type_name (const char *);
279 static tree fold_constant_for_init (tree, tree);
280 static tree strip_out_static_field_access_decl (tree);
281 static jdeplist *reverse_jdep_list (struct parser_ctxt *);
282 static void static_ref_err (tree, tree, tree);
283 static void parser_add_interface (tree, tree, tree);
284 static void add_superinterfaces (tree, tree);
285 static tree jdep_resolve_class (jdep *);
286 static int note_possible_classname (const char *, int);
287 static void java_complete_expand_classes (void);
288 static void java_complete_expand_class (tree);
289 static void java_complete_expand_methods (tree);
290 static tree cut_identifier_in_qualified (tree);
291 static tree java_stabilize_reference (tree);
292 static tree do_unary_numeric_promotion (tree);
293 static char * operator_string (tree);
294 static tree do_merge_string_cste (tree, const char *, int, int);
295 static tree merge_string_cste (tree, tree, int);
296 static tree java_refold (tree);
297 static int java_decl_equiv (tree, tree);
298 static int binop_compound_p (enum tree_code);
299 static tree search_loop (tree);
300 static int labeled_block_contains_loop_p (tree, tree);
301 static int check_abstract_method_definitions (int, tree, tree);
302 static void java_check_abstract_method_definitions (tree);
303 static void java_debug_context_do (int);
304 static void java_parser_context_push_initialized_field (void);
305 static void java_parser_context_pop_initialized_field (void);
306 static tree reorder_static_initialized (tree);
307 static void java_parser_context_suspend (void);
308 static void java_parser_context_resume (void);
309 static int pop_current_osb (struct parser_ctxt *);
310
311 /* JDK 1.1 work. FIXME */
312
313 static tree maybe_make_nested_class_name (tree);
314 static int make_nested_class_name (tree);
315 static void link_nested_class_to_enclosing (void);
316 static tree resolve_inner_class (htab_t, tree, tree *, tree *, tree);
317 static tree find_as_inner_class (tree, tree, tree);
318 static tree find_as_inner_class_do (tree, tree);
319 static int check_inner_class_redefinition (tree, tree);
320
321 static tree build_thisn_assign (void);
322 static tree build_current_thisn (tree);
323 static tree build_access_to_thisn (tree, tree, int);
324 static tree maybe_build_thisn_access_method (tree);
325
326 static tree build_outer_field_access (tree, tree);
327 static tree build_outer_field_access_methods (tree);
328 static tree build_outer_field_access_expr (int, tree, tree,
329                                                   tree, tree);
330 static tree build_outer_method_access_method (tree);
331 static tree build_new_access_id (void);
332 static tree build_outer_field_access_method (tree, tree, tree,
333                                                     tree, tree);
334
335 static int outer_field_access_p (tree, tree);
336 static int outer_field_expanded_access_p (tree, tree *,
337                                                  tree *, tree *);
338 static tree outer_field_access_fix (tree, tree, tree);
339 static tree build_incomplete_class_ref (int, tree);
340 static tree patch_incomplete_class_ref (tree);
341 static tree create_anonymous_class (tree);
342 static void patch_anonymous_class (tree, tree, tree);
343 static void add_inner_class_fields (tree, tree);
344
345 static tree build_dot_class_method (tree);
346 static tree build_dot_class_method_invocation (tree, tree);
347 static void create_new_parser_context (int);
348 static tree maybe_build_class_init_for_field (tree, tree);
349
350 static int attach_init_test_initialization_flags (void **, void *);
351 static int emit_test_initialization (void **, void *);
352
353 static char *string_convert_int_cst (tree);
354
355 /* Number of error found so far. */
356 int java_error_count;
357 /* Number of warning found so far. */
358 int java_warning_count;
359 /* Tell when not to fold, when doing xrefs */
360 int do_not_fold;
361 /* Cyclic inheritance report, as it can be set by layout_class */
362 const char *cyclic_inheritance_report;
363
364 /* The current parser context */
365 struct parser_ctxt *ctxp;
366
367 /* List of things that were analyzed for which code will be generated */
368 struct parser_ctxt *ctxp_for_generation = NULL;
369
370 /* binop_lookup maps token to tree_code. It is used where binary
371    operations are involved and required by the parser. RDIV_EXPR
372    covers both integral/floating point division. The code is changed
373    once the type of both operator is worked out.  */
374
375 static const enum tree_code binop_lookup[19] =
376   {
377     PLUS_EXPR, MINUS_EXPR, MULT_EXPR, RDIV_EXPR, TRUNC_MOD_EXPR,
378     LSHIFT_EXPR, RSHIFT_EXPR, URSHIFT_EXPR,
379     BIT_AND_EXPR, BIT_XOR_EXPR, BIT_IOR_EXPR,
380     TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR,
381     EQ_EXPR, NE_EXPR, GT_EXPR, GE_EXPR, LT_EXPR, LE_EXPR,
382    };
383 #define BINOP_LOOKUP(VALUE)                                             \
384   binop_lookup [((VALUE) - PLUS_TK) % ARRAY_SIZE (binop_lookup)]
385
386 /* This is the end index for binary operators that can also be used
387    in compound assignments. */
388 #define BINOP_COMPOUND_CANDIDATES 11
389
390 /* The "$L" identifier we use to create labels.  */
391 static GTY(()) tree label_id;
392
393 /* The "StringBuffer" identifier used for the String `+' operator. */
394 static GTY(()) tree wfl_string_buffer;
395
396 /* The "append" identifier used for String `+' operator.  */
397 static GTY(()) tree wfl_append;
398
399 /* The "toString" identifier used for String `+' operator. */
400 static GTY(()) tree wfl_to_string;
401
402 /* The "java.lang" import qualified name.  */
403 static GTY(()) tree java_lang_id;
404
405 /* The generated `inst$' identifier used for generated enclosing
406    instance/field access functions.  */
407 static GTY(()) tree inst_id;
408
409 /* Context and flag for static blocks */
410 static GTY(()) tree current_static_block;
411
412 /* The generated `write_parm_value$' identifier.  */
413 static GTY(()) tree wpv_id;
414
415 /* The list of all packages we've seen so far */
416 static GTY(()) tree package_list;
417
418 /* Hold THIS for the scope of the current method decl.  */
419 static GTY(()) tree current_this;
420
421 /* Hold a list of catch clauses list. The first element of this list is
422    the list of the catch clauses of the currently analyzed try block. */
423 static GTY(()) tree currently_caught_type_list;
424
425 /* This holds a linked list of all the case labels for the current
426    switch statement.  It is only used when checking to see if there
427    are duplicate labels.  FIXME: probably this should just be attached
428    to the switch itself; then it could be referenced via
429    `ctxp->current_loop'.  */
430 static GTY(()) tree case_label_list;
431
432 /* Anonymous class counter. Will be reset to 1 every time a non
433    anonymous class gets created. */
434 static int anonymous_class_counter = 1;
435
436 static GTY(()) tree src_parse_roots[1];
437
438 /* All classes seen from source code */
439 #define gclass_list src_parse_roots[0]
440
441 /* Check modifiers. If one doesn't fit, retrieve it in its declaration
442    line and point it out.  */
443 /* Should point out the one that don't fit. ASCII/unicode, going
444    backward. FIXME */
445
446 #define check_modifiers(__message, __value, __mask) do {        \
447   if ((__value) & ~(__mask))                                    \
448     {                                                           \
449       size_t i, remainder = (__value) & ~(__mask);              \
450       for (i = 0; i < ARRAY_SIZE (ctxp->modifier_ctx); i++)     \
451         if ((1 << i) & remainder)                               \
452           parse_error_context (ctxp->modifier_ctx [i], (__message), \
453                                java_accstring_lookup (1 << i)); \
454     }                                                           \
455 } while (0)
456
457 %}
458
459 %union {
460   tree node;
461   int sub_token;
462   struct {
463     int token;
464 #ifdef USE_MAPPED_LOCATION
465     source_location location;
466 #else
467     int location;
468 #endif
469   } operator;
470   int value;
471 }
472
473 %{
474 #ifdef USE_MAPPED_LOCATION
475 #define SET_EXPR_LOCATION_FROM_TOKEN(EXPR, TOKEN) \
476   SET_EXPR_LOCATION(EXPR, (TOKEN).location)
477 #else
478 #define SET_EXPR_LOCATION_FROM_TOKEN(EXPR, TOKEN) \
479   (EXPR_WFL_LINECOL (EXPR) = (TOKEN).location)
480 #endif
481
482 #include "lex.c"
483 %}
484
485 %pure_parser
486
487 /* Things defined here have to match the order of what's in the
488    binop_lookup table.  */
489
490 %token   PLUS_TK         MINUS_TK        MULT_TK         DIV_TK    REM_TK
491 %token   LS_TK           SRS_TK          ZRS_TK
492 %token   AND_TK          XOR_TK          OR_TK
493 %token   BOOL_AND_TK BOOL_OR_TK
494 %token   EQ_TK NEQ_TK GT_TK GTE_TK LT_TK LTE_TK
495
496 /* This maps to the same binop_lookup entry than the token above */
497
498 %token   PLUS_ASSIGN_TK  MINUS_ASSIGN_TK MULT_ASSIGN_TK DIV_ASSIGN_TK
499 %token   REM_ASSIGN_TK
500 %token   LS_ASSIGN_TK    SRS_ASSIGN_TK   ZRS_ASSIGN_TK
501 %token   AND_ASSIGN_TK   XOR_ASSIGN_TK   OR_ASSIGN_TK
502
503
504 /* Modifier TOKEN have to be kept in this order. Don't scramble it */
505
506 %token   PUBLIC_TK       PRIVATE_TK         PROTECTED_TK
507 %token   STATIC_TK       FINAL_TK           SYNCHRONIZED_TK
508 %token   VOLATILE_TK     TRANSIENT_TK       NATIVE_TK
509 %token   PAD_TK          ABSTRACT_TK        STRICT_TK
510 %token   MODIFIER_TK
511
512 /* Keep those two in order, too */
513 %token   DECR_TK INCR_TK
514
515 /* From now one, things can be in any order */
516
517 %token   DEFAULT_TK      IF_TK              THROW_TK
518 %token   BOOLEAN_TK      DO_TK              IMPLEMENTS_TK
519 %token   THROWS_TK       BREAK_TK           IMPORT_TK
520 %token   ELSE_TK         INSTANCEOF_TK      RETURN_TK
521 %token   VOID_TK         CATCH_TK           INTERFACE_TK
522 %token   CASE_TK         EXTENDS_TK         FINALLY_TK
523 %token   SUPER_TK        WHILE_TK           CLASS_TK
524 %token   SWITCH_TK       CONST_TK           TRY_TK
525 %token   FOR_TK          NEW_TK             CONTINUE_TK
526 %token   GOTO_TK         PACKAGE_TK         THIS_TK
527 %token   ASSERT_TK
528
529 %token   BYTE_TK         SHORT_TK           INT_TK            LONG_TK
530 %token   CHAR_TK         INTEGRAL_TK
531
532 %token   FLOAT_TK        DOUBLE_TK          FP_TK
533
534 %token   ID_TK
535
536 %token   REL_QM_TK         REL_CL_TK NOT_TK  NEG_TK
537
538 %token   ASSIGN_ANY_TK   ASSIGN_TK
539 %token   OP_TK  CP_TK  OCB_TK  CCB_TK  OSB_TK  CSB_TK  SC_TK  C_TK DOT_TK
540
541 %token   STRING_LIT_TK   CHAR_LIT_TK        INT_LIT_TK        FP_LIT_TK
542 %token   TRUE_TK         FALSE_TK           BOOL_LIT_TK       NULL_TK
543
544 %type    <value>        modifiers MODIFIER_TK final synchronized
545
546 %type    <node>         super ID_TK identifier
547 %type    <node>         name simple_name qualified_name
548 %type    <node>         type_declaration compilation_unit
549                         field_declaration method_declaration extends_interfaces
550                         interfaces interface_type_list
551                         import_declarations package_declaration
552                         type_declarations interface_body
553                         interface_member_declaration constant_declaration
554                         interface_member_declarations interface_type
555                         abstract_method_declaration
556 %type    <node>         class_body_declaration class_member_declaration
557                         static_initializer constructor_declaration block
558 %type    <node>         class_body_declarations constructor_header
559 %type    <node>         class_or_interface_type class_type class_type_list
560                         constructor_declarator explicit_constructor_invocation
561 %type    <node>         dim_expr dim_exprs this_or_super throws
562
563 %type    <node>         variable_declarator_id variable_declarator
564                         variable_declarators variable_initializer
565                         variable_initializers constructor_body
566                         array_initializer
567
568 %type    <node>         class_body block_end constructor_block_end
569 %type    <node>         statement statement_without_trailing_substatement
570                         labeled_statement if_then_statement label_decl
571                         if_then_else_statement while_statement for_statement
572                         statement_nsi labeled_statement_nsi do_statement
573                         if_then_else_statement_nsi while_statement_nsi
574                         for_statement_nsi statement_expression_list for_init
575                         for_update statement_expression expression_statement
576                         primary_no_new_array expression primary array_type
577                         array_creation_initialized array_creation_uninitialized
578                         class_instance_creation_expression field_access
579                         method_invocation array_access something_dot_new
580                         argument_list postfix_expression while_expression
581                         post_increment_expression post_decrement_expression
582                         unary_expression_not_plus_minus unary_expression
583                         pre_increment_expression pre_decrement_expression
584                         cast_expression
585                         multiplicative_expression additive_expression
586                         shift_expression relational_expression
587                         equality_expression and_expression
588                         exclusive_or_expression inclusive_or_expression
589                         conditional_and_expression conditional_or_expression
590                         conditional_expression assignment_expression
591                         left_hand_side assignment for_header for_begin
592                         constant_expression do_statement_begin empty_statement
593                         switch_statement synchronized_statement throw_statement
594                         try_statement assert_statement
595                         switch_expression switch_block
596                         catches catch_clause catch_clause_parameter finally
597                         anonymous_class_creation trap_overflow_corner_case
598 %type    <node>         return_statement break_statement continue_statement
599
600 %type    <operator>     ASSIGN_TK      MULT_ASSIGN_TK  DIV_ASSIGN_TK
601 %type    <operator>     REM_ASSIGN_TK  PLUS_ASSIGN_TK  MINUS_ASSIGN_TK
602 %type    <operator>     LS_ASSIGN_TK   SRS_ASSIGN_TK   ZRS_ASSIGN_TK
603 %type    <operator>     AND_ASSIGN_TK  XOR_ASSIGN_TK   OR_ASSIGN_TK
604 %type    <operator>     ASSIGN_ANY_TK  assignment_operator
605 %token   <operator>     EQ_TK GTE_TK ZRS_TK SRS_TK GT_TK LTE_TK LS_TK
606 %token   <operator>     BOOL_AND_TK AND_TK BOOL_OR_TK OR_TK INCR_TK PLUS_TK
607 %token   <operator>     DECR_TK MINUS_TK MULT_TK DIV_TK XOR_TK REM_TK NEQ_TK
608 %token   <operator>     NEG_TK REL_QM_TK REL_CL_TK NOT_TK LT_TK OCB_TK CCB_TK
609 %token   <operator>     OP_TK OSB_TK DOT_TK THROW_TK INSTANCEOF_TK
610 %type    <operator>     THIS_TK SUPER_TK RETURN_TK BREAK_TK CONTINUE_TK
611 %type    <operator>     CASE_TK DEFAULT_TK TRY_TK CATCH_TK SYNCHRONIZED_TK
612 %type    <operator>     NEW_TK ASSERT_TK
613
614 %type    <node>         method_body
615
616 %type    <node>         literal INT_LIT_TK FP_LIT_TK BOOL_LIT_TK CHAR_LIT_TK
617                         STRING_LIT_TK NULL_TK VOID_TK
618
619 %type    <node>         IF_TK WHILE_TK FOR_TK
620
621 %type    <node>         formal_parameter_list formal_parameter
622                         method_declarator method_header
623
624 %type    <node>         primitive_type reference_type type
625                         BOOLEAN_TK INTEGRAL_TK FP_TK
626
627 /* Added or modified JDK 1.1 rule types  */
628 %type    <node>         type_literals
629
630 %%
631 /* 19.2 Production from 2.3: The Syntactic Grammar  */
632 goal:  compilation_unit
633                 {}
634 ;
635
636 /* 19.3 Productions from 3: Lexical structure  */
637 literal:
638         INT_LIT_TK
639 |       FP_LIT_TK
640 |       BOOL_LIT_TK
641 |       CHAR_LIT_TK
642 |       STRING_LIT_TK
643 |       NULL_TK
644 ;
645
646 /* 19.4 Productions from 4: Types, Values and Variables  */
647 type:
648         primitive_type
649 |       reference_type
650 ;
651
652 primitive_type:
653         INTEGRAL_TK
654 |       FP_TK
655 |       BOOLEAN_TK
656 ;
657
658 reference_type:
659         class_or_interface_type
660 |       array_type
661 ;
662
663 class_or_interface_type:
664         name
665 ;
666
667 class_type:
668         class_or_interface_type /* Default rule */
669 ;
670
671 interface_type:
672          class_or_interface_type
673 ;
674
675 array_type:
676         primitive_type dims
677                 {
678                   int osb = pop_current_osb (ctxp);
679                   tree t = build_java_array_type (($1), -1);
680                   while (--osb)
681                     t = build_unresolved_array_type (t);
682                   $$ = t;
683                 }
684 |       name dims
685                 {
686                   int osb = pop_current_osb (ctxp);
687                   tree t = $1;
688                   while (osb--)
689                     t = build_unresolved_array_type (t);
690                   $$ = t;
691                 }
692 ;
693
694 /* 19.5 Productions from 6: Names  */
695 name:
696         simple_name             /* Default rule */
697 |       qualified_name          /* Default rule */
698 ;
699
700 simple_name:
701         identifier              /* Default rule */
702 ;
703
704 qualified_name:
705         name DOT_TK identifier
706                 { $$ = make_qualified_name ($1, $3, $2.location); }
707 ;
708
709 identifier:
710         ID_TK
711 ;
712
713 /* 19.6: Production from 7: Packages  */
714 compilation_unit:
715                 {$$ = NULL;}
716 |       package_declaration
717 |       import_declarations
718 |       type_declarations
719 |       package_declaration import_declarations
720 |       package_declaration type_declarations
721 |       import_declarations type_declarations
722 |       package_declaration import_declarations type_declarations
723 ;
724
725 import_declarations:
726         import_declaration
727                 {
728                   $$ = NULL;
729                 }
730 |       import_declarations import_declaration
731                 {
732                   $$ = NULL;
733                 }
734 ;
735
736 type_declarations:
737         type_declaration
738 |       type_declarations type_declaration
739 ;
740
741 package_declaration:
742         PACKAGE_TK name SC_TK
743                 {
744                   ctxp->package = EXPR_WFL_NODE ($2);
745                   register_package (ctxp->package);
746                 }
747 |       PACKAGE_TK error
748                 {yyerror ("Missing name"); RECOVER;}
749 |       PACKAGE_TK name error
750                 {yyerror ("';' expected"); RECOVER;}
751 ;
752
753 import_declaration:
754         single_type_import_declaration
755 |       type_import_on_demand_declaration
756 ;
757
758 single_type_import_declaration:
759         IMPORT_TK name SC_TK
760                 {
761                   tree name = EXPR_WFL_NODE ($2), last_name;
762                   int   i = IDENTIFIER_LENGTH (name)-1;
763                   const char *last = &IDENTIFIER_POINTER (name)[i];
764                   while (last != IDENTIFIER_POINTER (name))
765                     {
766                       if (last [0] == '.')
767                         break;
768                       last--;
769                     }
770                   last_name = get_identifier (++last);
771                   if (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (last_name))
772                     {
773                       tree err = find_name_in_single_imports (last_name);
774                       if (err && err != name)
775                         parse_error_context
776                           ($2, "Ambiguous class: %qs and %qs",
777                            IDENTIFIER_POINTER (name),
778                            IDENTIFIER_POINTER (err));
779                       else
780                         REGISTER_IMPORT ($2, last_name);
781                     }
782                   else
783                     REGISTER_IMPORT ($2, last_name);
784                 }
785 |       IMPORT_TK error
786                 {yyerror ("Missing name"); RECOVER;}
787 |       IMPORT_TK name error
788                 {yyerror ("';' expected"); RECOVER;}
789 ;
790
791 type_import_on_demand_declaration:
792         IMPORT_TK name DOT_TK MULT_TK SC_TK
793                 {
794                   tree name = EXPR_WFL_NODE ($2);
795                   tree it;
796                   /* Search for duplicates. */
797                   for (it = ctxp->import_demand_list; it; it = TREE_CHAIN (it))
798                     if (EXPR_WFL_NODE (TREE_PURPOSE (it)) == name)
799                       break;
800                   /* Don't import the same thing more than once, just ignore
801                      duplicates (7.5.2) */
802                   if (! it)
803                     {
804                       read_import_dir ($2);
805                       ctxp->import_demand_list =
806                         chainon (ctxp->import_demand_list,
807                                  build_tree_list ($2, NULL_TREE));
808                     }
809                 }
810 |       IMPORT_TK name DOT_TK error
811                 {yyerror ("'*' expected"); RECOVER;}
812 |       IMPORT_TK name DOT_TK MULT_TK error
813                 {yyerror ("';' expected"); RECOVER;}
814 ;
815
816 type_declaration:
817         class_declaration
818                 { end_class_declaration (0); }
819 |       interface_declaration
820                 { end_class_declaration (0); }
821 |       empty_statement
822 |       error
823                 {
824                   YYERROR_NOW;
825                   yyerror ("Class or interface declaration expected");
826                 }
827 ;
828
829 /* 19.7 Shortened from the original:
830    modifiers: modifier | modifiers modifier
831    modifier: any of public...  */
832 modifiers:
833         MODIFIER_TK
834                 {
835                   $$ = (1 << $1);
836                 }
837 |       modifiers MODIFIER_TK
838                 {
839                   int acc = (1 << $2);
840                   if ($$ & acc)
841                     parse_error_context
842                       (ctxp->modifier_ctx [$2], "Modifier %qs declared twice",
843                        java_accstring_lookup (acc));
844                   else
845                     {
846                       $$ |= acc;
847                     }
848                 }
849 ;
850
851 /* 19.8.1 Production from $8.1: Class Declaration */
852 class_declaration:
853         modifiers CLASS_TK identifier super interfaces
854                 { create_class ($1, $3, $4, $5); }
855         class_body
856                 {;}
857 |       CLASS_TK identifier super interfaces
858                 { create_class (0, $2, $3, $4); }
859         class_body
860                 {;}
861 |       modifiers CLASS_TK error
862                 { yyerror ("Missing class name"); RECOVER; }
863 |       CLASS_TK error
864                 { yyerror ("Missing class name"); RECOVER; }
865 |       CLASS_TK identifier error
866                 {
867                   if (!ctxp->class_err) yyerror ("'{' expected");
868                   DRECOVER(class1);
869                 }
870 |       modifiers CLASS_TK identifier error
871                 { if (!ctxp->class_err) yyerror ("'{' expected"); RECOVER; }
872 ;
873
874 super:
875                 { $$ = NULL; }
876 |       EXTENDS_TK class_type
877                 { $$ = $2; }
878 |       EXTENDS_TK class_type error
879                 {yyerror ("'{' expected"); ctxp->class_err=1;}
880 |       EXTENDS_TK error
881                 {yyerror ("Missing super class name"); ctxp->class_err=1;}
882 ;
883
884 interfaces:
885                 { $$ = NULL_TREE; }
886 |       IMPLEMENTS_TK interface_type_list
887                 { $$ = $2; }
888 |       IMPLEMENTS_TK error
889                 {
890                   ctxp->class_err=1;
891                   yyerror ("Missing interface name");
892                 }
893 ;
894
895 interface_type_list:
896         interface_type
897                 {
898                   ctxp->interface_number = 1;
899                   $$ = build_tree_list ($1, NULL_TREE);
900                 }
901 |       interface_type_list C_TK interface_type
902                 {
903                   ctxp->interface_number++;
904                   $$ = chainon ($1, build_tree_list ($3, NULL_TREE));
905                 }
906 |       interface_type_list C_TK error
907                 {yyerror ("Missing interface name"); RECOVER;}
908 ;
909
910 class_body:
911         OCB_TK CCB_TK
912                 {
913                   /* Store the location of the `}' when doing xrefs */
914                   if (flag_emit_xref)
915                     DECL_END_SOURCE_LINE (GET_CPC ()) = $2.location;
916                   $$ = GET_CPC ();
917                 }
918 |       OCB_TK class_body_declarations CCB_TK
919                 {
920                   /* Store the location of the `}' when doing xrefs */
921                   if (flag_emit_xref)
922                     DECL_END_SOURCE_LINE (GET_CPC ()) = $3.location;
923                   $$ = GET_CPC ();
924                 }
925 ;
926
927 class_body_declarations:
928         class_body_declaration
929 |       class_body_declarations class_body_declaration
930 ;
931
932 class_body_declaration:
933         class_member_declaration
934 |       static_initializer
935 |       constructor_declaration
936 |       block                   /* Added, JDK1.1, instance initializer */
937                 {
938                   if (!IS_EMPTY_STMT ($1))
939                     {
940                       TREE_CHAIN ($1) = CPC_INSTANCE_INITIALIZER_STMT (ctxp);
941                       SET_CPC_INSTANCE_INITIALIZER_STMT (ctxp, $1);
942                     }
943                 }
944 ;
945
946 class_member_declaration:
947         field_declaration
948 |       method_declaration
949 |       class_declaration       /* Added, JDK1.1 inner classes */
950                 { end_class_declaration (1); }
951 |       interface_declaration   /* Added, JDK1.1 inner interfaces */
952                 { end_class_declaration (1); }
953 |       empty_statement
954 ;
955
956 /* 19.8.2 Productions from 8.3: Field Declarations  */
957 field_declaration:
958         type variable_declarators SC_TK
959                 { register_fields (0, $1, $2); }
960 |       modifiers type variable_declarators SC_TK
961                 {
962                   check_modifiers
963                     ("Illegal modifier %qs for field declaration",
964                      $1, FIELD_MODIFIERS);
965                   check_modifiers_consistency ($1);
966                   register_fields ($1, $2, $3);
967                 }
968 ;
969
970 variable_declarators:
971         /* Should we use build_decl_list () instead ? FIXME */
972         variable_declarator     /* Default rule */
973 |       variable_declarators C_TK variable_declarator
974                 { $$ = chainon ($1, $3); }
975 |       variable_declarators C_TK error
976                 {yyerror ("Missing term"); RECOVER;}
977 ;
978
979 variable_declarator:
980         variable_declarator_id
981                 { $$ = build_tree_list ($1, NULL_TREE); }
982 |       variable_declarator_id ASSIGN_TK variable_initializer
983                 {
984                   if (java_error_count)
985                     $3 = NULL_TREE;
986                   $$ = build_tree_list
987                     ($1, build_assignment ($2.token, $2.location, $1, $3));
988                 }
989 |       variable_declarator_id ASSIGN_TK error
990                 {
991                   yyerror ("Missing variable initializer");
992                   $$ = build_tree_list ($1, NULL_TREE);
993                   RECOVER;
994                 }
995 |       variable_declarator_id ASSIGN_TK variable_initializer error
996                 {
997                   yyerror ("';' expected");
998                   $$ = build_tree_list ($1, NULL_TREE);
999                   RECOVER;
1000                 }
1001 ;
1002
1003 variable_declarator_id:
1004         identifier
1005 |       variable_declarator_id OSB_TK CSB_TK
1006                 { $$ = build_unresolved_array_type ($1); }
1007 |       identifier error
1008                 {yyerror ("Invalid declaration"); DRECOVER(vdi);}
1009 |       variable_declarator_id OSB_TK error
1010                 {
1011                   yyerror ("']' expected");
1012                   DRECOVER(vdi);
1013                 }
1014 |       variable_declarator_id CSB_TK error
1015                 {yyerror ("Unbalanced ']'"); DRECOVER(vdi);}
1016 ;
1017
1018 variable_initializer:
1019         expression
1020 |       array_initializer
1021 ;
1022
1023 /* 19.8.3 Productions from 8.4: Method Declarations  */
1024 method_declaration:
1025         method_header
1026                 {
1027                   current_function_decl = $1;
1028                   if (current_function_decl
1029                       && TREE_CODE (current_function_decl) == FUNCTION_DECL)
1030                     source_start_java_method (current_function_decl);
1031                   else
1032                     current_function_decl = NULL_TREE;
1033                 }
1034         method_body
1035                 { finish_method_declaration ($3); }
1036 |       method_header error
1037                 {YYNOT_TWICE yyerror ("'{' expected"); RECOVER;}
1038 ;
1039
1040 method_header:
1041         type method_declarator throws
1042                 { $$ = method_header (0, $1, $2, $3); }
1043 |       VOID_TK method_declarator throws
1044                 { $$ = method_header (0, void_type_node, $2, $3); }
1045 |       modifiers type method_declarator throws
1046                 { $$ = method_header ($1, $2, $3, $4); }
1047 |       modifiers VOID_TK method_declarator throws
1048                 { $$ = method_header ($1, void_type_node, $3, $4); }
1049 |       type error
1050                 {
1051                   yyerror ("Invalid method declaration, method name required");
1052                   RECOVER;
1053                 }
1054 |       modifiers type error
1055                 {
1056                   yyerror ("Identifier expected");
1057                   RECOVER;
1058                 }
1059 |       VOID_TK error
1060                 {
1061                   yyerror ("Identifier expected");
1062                   RECOVER;
1063                 }
1064 |       modifiers VOID_TK error
1065                 {
1066                   yyerror ("Identifier expected");
1067                   RECOVER;
1068                 }
1069 |       modifiers error
1070                 {
1071                   yyerror ("Invalid method declaration, return type required");
1072                   RECOVER;
1073                 }
1074 ;
1075
1076 method_declarator:
1077         identifier OP_TK CP_TK
1078                 {
1079                   ctxp->formal_parameter_number = 0;
1080                   $$ = method_declarator ($1, NULL_TREE);
1081                 }
1082 |       identifier OP_TK formal_parameter_list CP_TK
1083                 { $$ = method_declarator ($1, $3); }
1084 |       method_declarator OSB_TK CSB_TK
1085                 {
1086                   SET_EXPR_LOCATION_FROM_TOKEN (wfl_operator, $2);
1087                   TREE_PURPOSE ($1) =
1088                     build_unresolved_array_type (TREE_PURPOSE ($1));
1089                   parse_warning_context
1090                     (wfl_operator,
1091                      "Discouraged form of returned type specification");
1092                 }
1093 |       identifier OP_TK error
1094                 {yyerror ("')' expected"); DRECOVER(method_declarator);}
1095 |       method_declarator OSB_TK error
1096                 {yyerror ("']' expected"); RECOVER;}
1097 ;
1098
1099 formal_parameter_list:
1100         formal_parameter
1101                 {
1102                   ctxp->formal_parameter_number = 1;
1103                 }
1104 |       formal_parameter_list C_TK formal_parameter
1105                 {
1106                   ctxp->formal_parameter_number += 1;
1107                   $$ = chainon ($1, $3);
1108                 }
1109 |       formal_parameter_list C_TK error
1110                 { yyerror ("Missing formal parameter term"); RECOVER; }
1111 ;
1112
1113 formal_parameter:
1114         type variable_declarator_id
1115                 {
1116                   $$ = build_tree_list ($2, $1);
1117                 }
1118 |       final type variable_declarator_id /* Added, JDK1.1 final parms */
1119                 {
1120                   $$ = build_tree_list ($3, $2);
1121                   ARG_FINAL_P ($$) = 1;
1122                 }
1123 |       type error
1124                 {
1125                   yyerror ("Missing identifier"); RECOVER;
1126                   $$ = NULL_TREE;
1127                 }
1128 |       final type error
1129                 {
1130                   yyerror ("Missing identifier"); RECOVER;
1131                   $$ = NULL_TREE;
1132                 }
1133 ;
1134
1135 final:
1136         modifiers
1137                 {
1138                   check_modifiers ("Illegal modifier %qs. Only %<final%> was expected here",
1139                                    $1, ACC_FINAL);
1140                   if ($1 != ACC_FINAL)
1141                     MODIFIER_WFL (FINAL_TK) = build_wfl_node (NULL_TREE);
1142                 }
1143 ;
1144
1145 throws:
1146                 { $$ = NULL_TREE; }
1147 |       THROWS_TK class_type_list
1148                 { $$ = $2; }
1149 |       THROWS_TK error
1150                 {yyerror ("Missing class type term"); RECOVER;}
1151 ;
1152
1153 class_type_list:
1154         class_type
1155                 { $$ = build_tree_list ($1, $1); }
1156 |       class_type_list C_TK class_type
1157                 { $$ = tree_cons ($3, $3, $1); }
1158 |       class_type_list C_TK error
1159                 {yyerror ("Missing class type term"); RECOVER;}
1160 ;
1161
1162 method_body:
1163         block
1164 |       SC_TK { $$ = NULL_TREE; }
1165 ;
1166
1167 /* 19.8.4 Productions from 8.5: Static Initializers  */
1168 static_initializer:
1169         static block
1170                 {
1171                   TREE_CHAIN ($2) = CPC_STATIC_INITIALIZER_STMT (ctxp);
1172                   SET_CPC_STATIC_INITIALIZER_STMT (ctxp, $2);
1173                   current_static_block = NULL_TREE;
1174                 }
1175 ;
1176
1177 static:                         /* Test lval.sub_token here */
1178         modifiers
1179                 {
1180                   check_modifiers ("Illegal modifier %qs for static initializer", $1, ACC_STATIC);
1181                   /* Can't have a static initializer in an innerclass */
1182                   if ($1 | ACC_STATIC &&
1183                       GET_CPC_LIST () && !TOPLEVEL_CLASS_DECL_P (GET_CPC ()))
1184                     parse_error_context
1185                       (MODIFIER_WFL (STATIC_TK),
1186                        "Can't define static initializer in class %qs. Static initializer can only be defined in top-level classes",
1187                        IDENTIFIER_POINTER (DECL_NAME (GET_CPC ())));
1188                   SOURCE_FRONTEND_DEBUG (("Modifiers: %d", $1));
1189                 }
1190 ;
1191
1192 /* 19.8.5 Productions from 8.6: Constructor Declarations  */
1193 constructor_declaration:
1194         constructor_header
1195                 {
1196                   current_function_decl = $1;
1197                   source_start_java_method (current_function_decl);
1198                 }
1199         constructor_body
1200                 { finish_method_declaration ($3); }
1201 ;
1202
1203 constructor_header:
1204         constructor_declarator throws
1205                 { $$ = method_header (0, NULL_TREE, $1, $2); }
1206 |       modifiers constructor_declarator throws
1207                 { $$ = method_header ($1, NULL_TREE, $2, $3); }
1208 ;
1209
1210 constructor_declarator:
1211         simple_name OP_TK CP_TK
1212                 {
1213                   ctxp->formal_parameter_number = 0;
1214                   $$ = method_declarator ($1, NULL_TREE);
1215                 }
1216 |       simple_name OP_TK formal_parameter_list CP_TK
1217                 { $$ = method_declarator ($1, $3); }
1218 ;
1219
1220 constructor_body:
1221         /* Unlike regular method, we always need a complete (empty)
1222            body so we can safely perform all the required code
1223            addition (super invocation and field initialization) */
1224         block_begin constructor_block_end
1225                 {
1226                   BLOCK_EXPR_BODY ($2) = build_java_empty_stmt ();
1227                   $$ = $2;
1228                 }
1229 |       block_begin explicit_constructor_invocation constructor_block_end
1230                 { $$ = $3; }
1231 |       block_begin block_statements constructor_block_end
1232                 { $$ = $3; }
1233 |       block_begin explicit_constructor_invocation block_statements constructor_block_end
1234                 { $$ = $4; }
1235 ;
1236
1237 constructor_block_end:
1238         block_end
1239 ;
1240
1241 /* Error recovery for that rule moved down expression_statement: rule.  */
1242 explicit_constructor_invocation:
1243         this_or_super OP_TK CP_TK SC_TK
1244                 {
1245                   $$ = build_method_invocation ($1, NULL_TREE);
1246                   $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $$);
1247                   $$ = java_method_add_stmt (current_function_decl, $$);
1248                 }
1249 |       this_or_super OP_TK argument_list CP_TK SC_TK
1250                 {
1251                   $$ = build_method_invocation ($1, $3);
1252                   $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $$);
1253                   $$ = java_method_add_stmt (current_function_decl, $$);
1254                 }
1255         /* Added, JDK1.1 inner classes. Modified because the rule
1256            'primary' couldn't work.  */
1257 |       name DOT_TK SUPER_TK OP_TK argument_list CP_TK SC_TK
1258                 {$$ = parse_jdk1_1_error ("explicit constructor invocation"); }
1259 |       name DOT_TK SUPER_TK OP_TK CP_TK SC_TK
1260                 {$$ = parse_jdk1_1_error ("explicit constructor invocation"); }
1261 ;
1262
1263 this_or_super:                  /* Added, simplifies error diagnostics */
1264         THIS_TK
1265                 {
1266                   tree wfl = build_wfl_node (this_identifier_node);
1267                   SET_EXPR_LOCATION_FROM_TOKEN (wfl, $1);
1268                   $$ = wfl;
1269                 }
1270 |       SUPER_TK
1271                 {
1272                   tree wfl = build_wfl_node (super_identifier_node);
1273                   SET_EXPR_LOCATION_FROM_TOKEN (wfl, $1);
1274                   $$ = wfl;
1275                 }
1276 ;
1277
1278 /* 19.9 Productions from 9: Interfaces  */
1279 /* 19.9.1 Productions from 9.1: Interfaces Declarations  */
1280 interface_declaration:
1281         INTERFACE_TK identifier
1282                 { create_interface (0, $2, NULL_TREE); }
1283         interface_body
1284                 { ; }
1285 |       modifiers INTERFACE_TK identifier
1286                 { create_interface ($1, $3, NULL_TREE); }
1287         interface_body
1288                 { ; }
1289 |       INTERFACE_TK identifier extends_interfaces
1290                 { create_interface (0, $2, $3); }
1291         interface_body
1292                 { ; }
1293 |       modifiers INTERFACE_TK identifier extends_interfaces
1294                 { create_interface ($1, $3, $4); }
1295         interface_body
1296                 { ; }
1297 |       INTERFACE_TK identifier error
1298                 { yyerror ("'{' expected"); RECOVER; }
1299 |       modifiers INTERFACE_TK identifier error
1300                 { yyerror ("'{' expected"); RECOVER; }
1301 ;
1302
1303 extends_interfaces:
1304         EXTENDS_TK interface_type
1305                 {
1306                   ctxp->interface_number = 1;
1307                   $$ = build_tree_list ($2, NULL_TREE);
1308                 }
1309 |       extends_interfaces C_TK interface_type
1310                 {
1311                   ctxp->interface_number++;
1312                   $$ = chainon ($1, build_tree_list ($3, NULL_TREE));
1313                 }
1314 |       EXTENDS_TK error
1315                 {yyerror ("Invalid interface type"); RECOVER;}
1316 |       extends_interfaces C_TK error
1317                 {yyerror ("Missing term"); RECOVER;}
1318 ;
1319
1320 interface_body:
1321         OCB_TK CCB_TK
1322                 { $$ = NULL_TREE; }
1323 |       OCB_TK interface_member_declarations CCB_TK
1324                 { $$ = NULL_TREE; }
1325 ;
1326
1327 interface_member_declarations:
1328         interface_member_declaration
1329 |       interface_member_declarations interface_member_declaration
1330 ;
1331
1332 interface_member_declaration:
1333         constant_declaration
1334 |       abstract_method_declaration
1335 |       class_declaration       /* Added, JDK1.1 inner classes */
1336                 { end_class_declaration (1); }
1337 |       interface_declaration   /* Added, JDK1.1 inner interfaces */
1338                 { end_class_declaration (1); }
1339 ;
1340
1341 constant_declaration:
1342         field_declaration
1343 ;
1344
1345 abstract_method_declaration:
1346         method_header SC_TK
1347                 {
1348                   check_abstract_method_header ($1);
1349                   current_function_decl = NULL_TREE; /* FIXME ? */
1350                 }
1351 |       method_header error
1352                 {yyerror ("';' expected"); RECOVER;}
1353 ;
1354
1355 /* 19.10 Productions from 10: Arrays  */
1356 array_initializer:
1357         OCB_TK CCB_TK
1358                 { $$ = build_new_array_init ($1.location, NULL_TREE); }
1359 |       OCB_TK C_TK CCB_TK
1360                 { $$ = build_new_array_init ($1.location, NULL_TREE); }
1361 |       OCB_TK variable_initializers CCB_TK
1362                 { $$ = build_new_array_init ($1.location, $2); }
1363 |       OCB_TK variable_initializers C_TK CCB_TK
1364                 { $$ = build_new_array_init ($1.location, $2); }
1365 ;
1366
1367 variable_initializers:
1368         variable_initializer
1369                 {
1370                   $$ = tree_cons (maybe_build_array_element_wfl ($1),
1371                                   $1, NULL_TREE);
1372                 }
1373 |       variable_initializers C_TK variable_initializer
1374                 {
1375                   $$ = tree_cons (maybe_build_array_element_wfl ($3), $3, $1);
1376                 }
1377 |       variable_initializers C_TK error
1378                 {yyerror ("Missing term"); RECOVER;}
1379 ;
1380
1381 /* 19.11 Production from 14: Blocks and Statements  */
1382 block:
1383         block_begin block_end
1384                 { $$ = $2; }
1385 |       block_begin block_statements block_end
1386                 { $$ = $3; }
1387 ;
1388
1389 block_begin:
1390         OCB_TK
1391                 { enter_block (); }
1392 ;
1393
1394 block_end:
1395         CCB_TK
1396                 {
1397                   maybe_absorb_scoping_blocks ();
1398                   /* Store the location of the `}' when doing xrefs */
1399                   if (current_function_decl && flag_emit_xref)
1400                     DECL_END_SOURCE_LINE (current_function_decl) = $1.location;
1401                   $$ = exit_block ();
1402                   if (!BLOCK_SUBBLOCKS ($$))
1403                     BLOCK_SUBBLOCKS ($$) = build_java_empty_stmt ();
1404                 }
1405 ;
1406
1407 block_statements:
1408         block_statement
1409 |       block_statements block_statement
1410 ;
1411
1412 block_statement:
1413         local_variable_declaration_statement
1414 |       statement
1415                 { java_method_add_stmt (current_function_decl, $1); }
1416 |       class_declaration       /* Added, JDK1.1 local classes */
1417                 {
1418                   LOCAL_CLASS_P (TREE_TYPE (GET_CPC ())) = 1;
1419                   end_class_declaration (1);
1420                 }
1421 ;
1422
1423 local_variable_declaration_statement:
1424         local_variable_declaration SC_TK /* Can't catch missing ';' here */
1425 ;
1426
1427 local_variable_declaration:
1428         type variable_declarators
1429                 { declare_local_variables (0, $1, $2); }
1430 |       final type variable_declarators /* Added, JDK1.1 final locals */
1431                 { declare_local_variables ($1, $2, $3); }
1432 ;
1433
1434 statement:
1435         statement_without_trailing_substatement
1436 |       labeled_statement
1437 |       if_then_statement
1438 |       if_then_else_statement
1439 |       while_statement
1440 |       for_statement
1441                 { $$ = exit_block (); }
1442 ;
1443
1444 statement_nsi:
1445         statement_without_trailing_substatement
1446 |       labeled_statement_nsi
1447 |       if_then_else_statement_nsi
1448 |       while_statement_nsi
1449 |       for_statement_nsi
1450                 { $$ = exit_block (); }
1451 ;
1452
1453 statement_without_trailing_substatement:
1454         block
1455 |       empty_statement
1456 |       expression_statement
1457 |       switch_statement
1458 |       do_statement
1459 |       break_statement
1460 |       continue_statement
1461 |       return_statement
1462 |       synchronized_statement
1463 |       throw_statement
1464 |       try_statement
1465 |       assert_statement
1466 ;
1467
1468 empty_statement:
1469         SC_TK
1470                 {
1471                   if (flag_extraneous_semicolon
1472                       && ! current_static_block
1473                       && (! current_function_decl ||
1474                           /* Verify we're not in a inner class declaration */
1475                           (GET_CPC () != TYPE_NAME
1476                            (DECL_CONTEXT (current_function_decl)))))
1477
1478                     {
1479 #ifdef USE_MAPPED_LOCATION
1480                       SET_EXPR_LOCATION (wfl_operator, input_location);
1481 #else
1482                       EXPR_WFL_SET_LINECOL (wfl_operator, input_line, -1);
1483 #endif
1484                       parse_warning_context (wfl_operator, "An empty declaration is a deprecated feature that should not be used");
1485                     }
1486                   $$ = build_java_empty_stmt ();
1487                 }
1488 ;
1489
1490 label_decl:
1491         identifier REL_CL_TK
1492                 {
1493                   $$ = build_labeled_block (EXPR_WFL_LINECOL ($1),
1494                                             EXPR_WFL_NODE ($1));
1495                   pushlevel (2);
1496                   push_labeled_block ($$);
1497                   PUSH_LABELED_BLOCK ($$);
1498                 }
1499 ;
1500
1501 labeled_statement:
1502         label_decl statement
1503                 { $$ = finish_labeled_statement ($1, $2); }
1504 |       identifier error
1505                 {yyerror ("':' expected"); RECOVER;}
1506 ;
1507
1508 labeled_statement_nsi:
1509         label_decl statement_nsi
1510                 { $$ = finish_labeled_statement ($1, $2); }
1511 ;
1512
1513 /* We concentrate here a bunch of error handling rules that we couldn't write
1514    earlier, because expression_statement catches a missing ';'.  */
1515 expression_statement:
1516         statement_expression SC_TK
1517                 {
1518                   /* We have a statement. Generate a WFL around it so
1519                      we can debug it */
1520 #ifdef USE_MAPPED_LOCATION
1521                   $$ = expr_add_location ($1, input_location, 1);
1522 #else
1523                   $$ = build_expr_wfl ($1, input_filename, input_line, 0);
1524                   JAVA_MAYBE_GENERATE_DEBUG_INFO ($$);
1525 #endif
1526                   /* We know we have a statement, so set the debug
1527                      info to be eventually generate here. */
1528                 }
1529 |       error SC_TK
1530                 {
1531                   YYNOT_TWICE yyerror ("Invalid expression statement");
1532                   DRECOVER (expr_stmt);
1533                 }
1534 |       error OCB_TK
1535                 {
1536                   YYNOT_TWICE yyerror ("Invalid expression statement");
1537                   DRECOVER (expr_stmt);
1538                 }
1539 |       error CCB_TK
1540                 {
1541                   YYNOT_TWICE yyerror ("Invalid expression statement");
1542                   DRECOVER (expr_stmt);
1543                 }
1544 |       this_or_super OP_TK error
1545                 {yyerror ("')' expected"); RECOVER;}
1546 |       this_or_super OP_TK CP_TK error
1547                 {
1548                   parse_ctor_invocation_error ();
1549                   RECOVER;
1550                 }
1551 |       this_or_super OP_TK argument_list error
1552                 {yyerror ("')' expected"); RECOVER;}
1553 |       this_or_super OP_TK argument_list CP_TK error
1554                 {
1555                   parse_ctor_invocation_error ();
1556                   RECOVER;
1557                 }
1558 |       name DOT_TK SUPER_TK error
1559                 {yyerror ("'(' expected"); RECOVER;}
1560 |       name DOT_TK SUPER_TK OP_TK error
1561                 {yyerror ("')' expected"); RECOVER;}
1562 |       name DOT_TK SUPER_TK OP_TK argument_list error
1563                 {yyerror ("')' expected"); RECOVER;}
1564 |       name DOT_TK SUPER_TK OP_TK argument_list CP_TK error
1565                 {yyerror ("';' expected"); RECOVER;}
1566 |       name DOT_TK SUPER_TK OP_TK CP_TK error
1567                 {yyerror ("';' expected"); RECOVER;}
1568 ;
1569
1570 statement_expression:
1571         assignment
1572 |       pre_increment_expression
1573 |       pre_decrement_expression
1574 |       post_increment_expression
1575 |       post_decrement_expression
1576 |       method_invocation
1577 |       class_instance_creation_expression
1578 ;
1579
1580 if_then_statement:
1581         IF_TK OP_TK expression CP_TK statement
1582                 {
1583                   $$ = build_if_else_statement ($2.location, $3,
1584                                                 $5, NULL_TREE);
1585                 }
1586 |       IF_TK error
1587                 {yyerror ("'(' expected"); RECOVER;}
1588 |       IF_TK OP_TK error
1589                 {yyerror ("Missing term"); RECOVER;}
1590 |       IF_TK OP_TK expression error
1591                 {yyerror ("')' expected"); RECOVER;}
1592 ;
1593
1594 if_then_else_statement:
1595         IF_TK OP_TK expression CP_TK statement_nsi ELSE_TK statement
1596                 { $$ = build_if_else_statement ($2.location, $3, $5, $7); }
1597 ;
1598
1599 if_then_else_statement_nsi:
1600         IF_TK OP_TK expression CP_TK statement_nsi ELSE_TK statement_nsi
1601                 { $$ = build_if_else_statement ($2.location, $3, $5, $7); }
1602 ;
1603
1604 switch_statement:
1605         switch_expression
1606                 {
1607                   enter_block ();
1608                 }
1609         switch_block
1610                 {
1611                   /* Make into "proper list" of COMPOUND_EXPRs.
1612                      I.e. make the last statement also have its own
1613                      COMPOUND_EXPR. */
1614                   maybe_absorb_scoping_blocks ();
1615                   TREE_OPERAND ($1, 1) = exit_block ();
1616                   $$ = build_debugable_stmt (EXPR_WFL_LINECOL ($1), $1);
1617                 }
1618 ;
1619
1620 switch_expression:
1621         SWITCH_TK OP_TK expression CP_TK
1622                 {
1623                   $$ = build3 (SWITCH_EXPR, NULL_TREE, $3,
1624                                NULL_TREE, NULL_TREE);
1625                   SET_EXPR_LOCATION_FROM_TOKEN ($$, $2);
1626                 }
1627 |       SWITCH_TK error
1628                 {yyerror ("'(' expected"); RECOVER;}
1629 |       SWITCH_TK OP_TK error
1630                 {yyerror ("Missing term or ')'"); DRECOVER(switch_statement);}
1631 |       SWITCH_TK OP_TK expression CP_TK error
1632                 {yyerror ("'{' expected"); RECOVER;}
1633 ;
1634
1635 /* Default assignment is there to avoid type node on switch_block
1636    node. */
1637
1638 switch_block:
1639         OCB_TK CCB_TK
1640                 { $$ = NULL_TREE; }
1641 |       OCB_TK switch_labels CCB_TK
1642                 { $$ = NULL_TREE; }
1643 |       OCB_TK switch_block_statement_groups CCB_TK
1644                 { $$ = NULL_TREE; }
1645 |       OCB_TK switch_block_statement_groups switch_labels CCB_TK
1646                 { $$ = NULL_TREE; }
1647 ;
1648
1649 switch_block_statement_groups:
1650         switch_block_statement_group
1651 |       switch_block_statement_groups switch_block_statement_group
1652 ;
1653
1654 switch_block_statement_group:
1655         switch_labels block_statements
1656 ;
1657
1658 switch_labels:
1659         switch_label
1660 |       switch_labels switch_label
1661 ;
1662
1663 switch_label:
1664         CASE_TK constant_expression REL_CL_TK
1665                 {
1666                   tree lab = build1 (CASE_EXPR, NULL_TREE, $2);
1667                   SET_EXPR_LOCATION_FROM_TOKEN (lab, $1);
1668                   java_method_add_stmt (current_function_decl, lab);
1669                 }
1670 |       DEFAULT_TK REL_CL_TK
1671                 {
1672                   tree lab = make_node (DEFAULT_EXPR);
1673                   SET_EXPR_LOCATION_FROM_TOKEN (lab, $1);
1674                   java_method_add_stmt (current_function_decl, lab);
1675                 }
1676 |       CASE_TK error
1677                 {yyerror ("Missing or invalid constant expression"); RECOVER;}
1678 |       CASE_TK constant_expression error
1679                 {yyerror ("':' expected"); RECOVER;}
1680 |       DEFAULT_TK error
1681                 {yyerror ("':' expected"); RECOVER;}
1682 ;
1683
1684 while_expression:
1685         WHILE_TK OP_TK expression CP_TK
1686                 {
1687                   tree body = build_loop_body ($2.location, $3, 0);
1688                   $$ = build_new_loop (body);
1689                 }
1690 ;
1691
1692 while_statement:
1693         while_expression statement
1694                 { $$ = finish_loop_body (0, NULL_TREE, $2, 0); }
1695 |       WHILE_TK error
1696                 {YYERROR_NOW; yyerror ("'(' expected"); RECOVER;}
1697 |       WHILE_TK OP_TK error
1698                 {yyerror ("Missing term and ')' expected"); RECOVER;}
1699 |       WHILE_TK OP_TK expression error
1700                 {yyerror ("')' expected"); RECOVER;}
1701 ;
1702
1703 while_statement_nsi:
1704         while_expression statement_nsi
1705                 { $$ = finish_loop_body (0, NULL_TREE, $2, 0); }
1706 ;
1707
1708 do_statement_begin:
1709         DO_TK
1710                 {
1711                   tree body = build_loop_body (0, NULL_TREE, 1);
1712                   $$ = build_new_loop (body);
1713                 }
1714         /* Need error handing here. FIXME */
1715 ;
1716
1717 do_statement:
1718         do_statement_begin statement WHILE_TK OP_TK expression CP_TK SC_TK
1719                 { $$ = finish_loop_body ($4.location, $5, $2, 1); }
1720 ;
1721
1722 for_statement:
1723         for_begin SC_TK expression SC_TK for_update CP_TK statement
1724                 {
1725                   if (CONSTANT_CLASS_P ($3))
1726                     $3 = build_wfl_node ($3);
1727                   $$ = finish_for_loop (EXPR_WFL_LINECOL ($3), $3, $5, $7);
1728                 }
1729 |       for_begin SC_TK SC_TK for_update CP_TK statement
1730                 {
1731                   $$ = finish_for_loop (0, NULL_TREE, $4, $6);
1732                   /* We have not condition, so we get rid of the EXIT_EXPR */
1733                   LOOP_EXPR_BODY_CONDITION_EXPR (LOOP_EXPR_BODY ($$), 0) =
1734                     build_java_empty_stmt ();
1735                 }
1736 |       for_begin SC_TK error
1737                 {yyerror ("Invalid control expression"); RECOVER;}
1738 |       for_begin SC_TK expression SC_TK error
1739                 {yyerror ("Invalid update expression"); RECOVER;}
1740 |       for_begin SC_TK SC_TK error
1741                 {yyerror ("Invalid update expression"); RECOVER;}
1742 ;
1743
1744 for_statement_nsi:
1745         for_begin SC_TK expression SC_TK for_update CP_TK statement_nsi
1746                 { $$ = finish_for_loop (EXPR_WFL_LINECOL ($3), $3, $5, $7);}
1747 |       for_begin SC_TK SC_TK for_update CP_TK statement_nsi
1748                 {
1749                   $$ = finish_for_loop (0, NULL_TREE, $4, $6);
1750                   /* We have not condition, so we get rid of the EXIT_EXPR */
1751                   LOOP_EXPR_BODY_CONDITION_EXPR (LOOP_EXPR_BODY ($$), 0) =
1752                     build_java_empty_stmt ();
1753                 }
1754 ;
1755
1756 for_header:
1757         FOR_TK OP_TK
1758                 {
1759                   /* This scope defined for local variable that may be
1760                      defined within the scope of the for loop */
1761                   enter_block ();
1762                 }
1763 |       FOR_TK error
1764                 {yyerror ("'(' expected"); DRECOVER(for_1);}
1765 |       FOR_TK OP_TK error
1766                 {yyerror ("Invalid init statement"); RECOVER;}
1767 ;
1768
1769 for_begin:
1770         for_header for_init
1771                 {
1772                   /* We now declare the loop body. The loop is
1773                      declared as a for loop. */
1774                   tree body = build_loop_body (0, NULL_TREE, 0);
1775                   $$ =  build_new_loop (body);
1776                   FOR_LOOP_P ($$) = 1;
1777                   /* The loop is added to the current block the for
1778                      statement is defined within */
1779                   java_method_add_stmt (current_function_decl, $$);
1780                 }
1781 ;
1782 for_init:                       /* Can be empty */
1783                 { $$ = build_java_empty_stmt (); }
1784 |       statement_expression_list
1785                 {
1786                   /* Init statement recorded within the previously
1787                      defined block scope */
1788                   $$ = java_method_add_stmt (current_function_decl, $1);
1789                 }
1790 |       local_variable_declaration
1791                 {
1792                   /* Local variable are recorded within the previously
1793                      defined block scope */
1794                   $$ = NULL_TREE;
1795                 }
1796 |       statement_expression_list error
1797                 {yyerror ("';' expected"); DRECOVER(for_init_1);}
1798 ;
1799
1800 for_update:                     /* Can be empty */
1801                 {$$ = build_java_empty_stmt ();}
1802 |       statement_expression_list
1803                 { $$ = build_debugable_stmt (BUILD_LOCATION (), $1); }
1804 ;
1805
1806 statement_expression_list:
1807         statement_expression
1808                 { $$ = add_stmt_to_compound (NULL_TREE, NULL_TREE, $1); }
1809 |       statement_expression_list C_TK statement_expression
1810                 { $$ = add_stmt_to_compound ($1, NULL_TREE, $3); }
1811 |       statement_expression_list C_TK error
1812                 {yyerror ("Missing term"); RECOVER;}
1813 ;
1814
1815 break_statement:
1816         BREAK_TK SC_TK
1817                 { $$ = build_bc_statement ($1.location, 1, NULL_TREE); }
1818 |       BREAK_TK identifier SC_TK
1819                 { $$ = build_bc_statement ($1.location, 1, $2); }
1820 |       BREAK_TK error
1821                 {yyerror ("Missing term"); RECOVER;}
1822 |       BREAK_TK identifier error
1823                 {yyerror ("';' expected"); RECOVER;}
1824 ;
1825
1826 continue_statement:
1827         CONTINUE_TK SC_TK
1828                 { $$ = build_bc_statement ($1.location, 0, NULL_TREE); }
1829 |       CONTINUE_TK identifier SC_TK
1830                 { $$ = build_bc_statement ($1.location, 0, $2); }
1831 |       CONTINUE_TK error
1832                 {yyerror ("Missing term"); RECOVER;}
1833 |       CONTINUE_TK identifier error
1834                 {yyerror ("';' expected"); RECOVER;}
1835 ;
1836
1837 return_statement:
1838         RETURN_TK SC_TK
1839                 { $$ = build_return ($1.location, NULL_TREE); }
1840 |       RETURN_TK expression SC_TK
1841                 { $$ = build_return ($1.location, $2); }
1842 |       RETURN_TK error
1843                 {yyerror ("Missing term"); RECOVER;}
1844 |       RETURN_TK expression error
1845                 {yyerror ("';' expected"); RECOVER;}
1846 ;
1847
1848 throw_statement:
1849         THROW_TK expression SC_TK
1850                 {
1851                   $$ = build1 (THROW_EXPR, NULL_TREE, $2);
1852                   SET_EXPR_LOCATION_FROM_TOKEN ($$, $1);
1853                 }
1854 |       THROW_TK error
1855                 {yyerror ("Missing term"); RECOVER;}
1856 |       THROW_TK expression error
1857                 {yyerror ("';' expected"); RECOVER;}
1858 ;
1859
1860 assert_statement:
1861         ASSERT_TK expression REL_CL_TK expression SC_TK
1862                 {
1863                   $$ = build_assertion ($1.location, $2, $4);
1864                 }
1865 |       ASSERT_TK expression SC_TK
1866                 {
1867                   $$ = build_assertion ($1.location, $2, NULL_TREE);
1868                 }
1869 |       ASSERT_TK error
1870                 {yyerror ("Missing term"); RECOVER;}
1871 |       ASSERT_TK expression error
1872                 {yyerror ("';' expected"); RECOVER;}
1873 ;
1874
1875 synchronized_statement:
1876         synchronized OP_TK expression CP_TK block
1877                 {
1878                   $$ = build2 (SYNCHRONIZED_EXPR, NULL_TREE, $3, $5);
1879                   EXPR_WFL_LINECOL ($$) =
1880                     EXPR_WFL_LINECOL (MODIFIER_WFL (SYNCHRONIZED_TK));
1881                 }
1882 |       synchronized OP_TK expression CP_TK error
1883                 {yyerror ("'{' expected"); RECOVER;}
1884 |       synchronized error
1885                 {yyerror ("'(' expected"); RECOVER;}
1886 |       synchronized OP_TK error CP_TK
1887                 {yyerror ("Missing term"); RECOVER;}
1888 |       synchronized OP_TK error
1889                 {yyerror ("Missing term"); RECOVER;}
1890 ;
1891
1892 synchronized:
1893         modifiers
1894                 {
1895                   check_modifiers (
1896              "Illegal modifier %qs. Only %<synchronized%> was expected here",
1897                                    $1, ACC_SYNCHRONIZED);
1898                   if ($1 != ACC_SYNCHRONIZED)
1899                     MODIFIER_WFL (SYNCHRONIZED_TK) =
1900                       build_wfl_node (NULL_TREE);
1901                 }
1902 ;
1903
1904 try_statement:
1905         TRY_TK block catches
1906                 { $$ = build_try_statement ($1.location, $2, $3); }
1907 |       TRY_TK block finally
1908                 { $$ = build_try_finally_statement ($1.location, $2, $3); }
1909 |       TRY_TK block catches finally
1910                 { $$ = build_try_finally_statement
1911                     ($1.location, build_try_statement ($1.location,
1912                                                        $2, $3), $4);
1913                 }
1914 |       TRY_TK error
1915                 {yyerror ("'{' expected"); DRECOVER (try_statement);}
1916 ;
1917
1918 catches:
1919         catch_clause
1920 |       catches catch_clause
1921                 {
1922                   TREE_CHAIN ($2) = $1;
1923                   $$ = $2;
1924                 }
1925 ;
1926
1927 catch_clause:
1928         catch_clause_parameter block
1929                 {
1930                   java_method_add_stmt (current_function_decl, $2);
1931                   exit_block ();
1932                   $$ = $1;
1933                 }
1934 ;
1935
1936 catch_clause_parameter:
1937         CATCH_TK OP_TK formal_parameter CP_TK
1938                 {
1939                   /* We add a block to define a scope for
1940                      formal_parameter (CCBP). The formal parameter is
1941                      declared initialized by the appropriate function
1942                      call */
1943                   tree ccpb;
1944                   tree init;
1945                   if ($3)
1946                     {
1947                       ccpb = enter_block ();
1948                       init = build_assignment
1949                         (ASSIGN_TK, $2.location, TREE_PURPOSE ($3),
1950                          build0 (JAVA_EXC_OBJ_EXPR, ptr_type_node));
1951                       declare_local_variables (0, TREE_VALUE ($3),
1952                                                build_tree_list 
1953                                                (TREE_PURPOSE ($3), init));
1954                       $$ = build1 (JAVA_CATCH_EXPR, NULL_TREE, ccpb);
1955                       SET_EXPR_LOCATION_FROM_TOKEN ($$, $1);
1956                     }
1957                   else
1958                     {
1959                       $$ = error_mark_node;
1960                     }
1961                 }
1962 |       CATCH_TK error
1963                 {yyerror ("'(' expected"); RECOVER; $$ = NULL_TREE;}
1964 |       CATCH_TK OP_TK error
1965                 {
1966                   yyerror ("Missing term or ')' expected");
1967                   RECOVER; $$ = NULL_TREE;
1968                 }
1969 |       CATCH_TK OP_TK error CP_TK /* That's for () */
1970                 {yyerror ("Missing term"); RECOVER; $$ = NULL_TREE;}
1971 ;
1972
1973 finally:
1974         FINALLY_TK block
1975                 { $$ = $2; }
1976 |       FINALLY_TK error
1977                 {yyerror ("'{' expected"); RECOVER; }
1978 ;
1979
1980 /* 19.12 Production from 15: Expressions  */
1981 primary:
1982         primary_no_new_array
1983 |       array_creation_uninitialized
1984 |       array_creation_initialized
1985 ;
1986
1987 primary_no_new_array:
1988         literal
1989 |       THIS_TK
1990                 { $$ = build_this ($1.location); }
1991 |       OP_TK expression CP_TK
1992                 {$$ = $2;}
1993 |       class_instance_creation_expression
1994 |       field_access
1995 |       method_invocation
1996 |       array_access
1997 |       type_literals
1998         /* Added, JDK1.1 inner classes. Documentation is wrong
1999            referring to a 'ClassName' (class_name) rule that doesn't
2000            exist. Used name: instead.  */
2001 |       name DOT_TK THIS_TK
2002                 {
2003                   tree wfl = build_wfl_node (this_identifier_node);
2004                   $$ = make_qualified_primary ($1, wfl, EXPR_WFL_LINECOL ($1));
2005                 }
2006 |       OP_TK expression error
2007                 {yyerror ("')' expected"); RECOVER;}
2008 |       name DOT_TK error
2009                 {yyerror ("'class' or 'this' expected" ); RECOVER;}
2010 |       primitive_type DOT_TK error
2011                 {yyerror ("'class' expected" ); RECOVER;}
2012 |       VOID_TK DOT_TK error
2013                 {yyerror ("'class' expected" ); RECOVER;}
2014 ;
2015
2016 type_literals:
2017         name DOT_TK CLASS_TK
2018                 { $$ = build_incomplete_class_ref ($2.location, $1); }
2019 |       array_type DOT_TK CLASS_TK
2020                 { $$ = build_incomplete_class_ref ($2.location, $1); }
2021 |       primitive_type DOT_TK CLASS_TK
2022                 { $$ = build_incomplete_class_ref ($2.location, $1); }
2023 |       VOID_TK DOT_TK CLASS_TK
2024                 {
2025                    $$ = build_incomplete_class_ref ($2.location,
2026                                                    void_type_node);
2027                 }
2028 ;
2029
2030 class_instance_creation_expression:
2031         NEW_TK class_type OP_TK argument_list CP_TK
2032                 { $$ = build_new_invocation ($2, $4); }
2033 |       NEW_TK class_type OP_TK CP_TK
2034                 { $$ = build_new_invocation ($2, NULL_TREE); }
2035 |       anonymous_class_creation
2036         /* Added, JDK1.1 inner classes, modified to use name or
2037            primary instead of primary solely which couldn't work in
2038            all situations.  */
2039 |       something_dot_new identifier OP_TK CP_TK
2040                 {
2041                   tree ctor = build_new_invocation ($2, NULL_TREE);
2042                   $$ = make_qualified_primary ($1, ctor,
2043                                                EXPR_WFL_LINECOL ($1));
2044                 }
2045 |       something_dot_new identifier OP_TK CP_TK class_body
2046 |       something_dot_new identifier OP_TK argument_list CP_TK
2047                 {
2048                   tree ctor = build_new_invocation ($2, $4);
2049                   $$ = make_qualified_primary ($1, ctor,
2050                                                EXPR_WFL_LINECOL ($1));
2051                 }
2052 |       something_dot_new identifier OP_TK argument_list CP_TK class_body
2053 |       NEW_TK error SC_TK
2054                 {$$ = NULL_TREE; yyerror ("'(' expected"); DRECOVER(new_1);}
2055 |       NEW_TK class_type error
2056                 {$$ = NULL_TREE; yyerror ("'(' expected"); RECOVER;}
2057 |       NEW_TK class_type OP_TK error
2058                 {$$ = NULL_TREE; yyerror ("')' or term expected"); RECOVER;}
2059 |       NEW_TK class_type OP_TK argument_list error
2060                 {$$ = NULL_TREE; yyerror ("')' expected"); RECOVER;}
2061 |       something_dot_new error
2062                 {
2063                   $$ = NULL_TREE;
2064                   YYERROR_NOW;
2065                   yyerror ("Identifier expected");
2066                   RECOVER;
2067                 }
2068 |       something_dot_new identifier error
2069                 {$$ = NULL_TREE; yyerror ("'(' expected"); RECOVER;}
2070 ;
2071
2072 /* Created after JDK1.1 rules originally added to
2073    class_instance_creation_expression, but modified to use
2074    'class_type' instead of 'TypeName' (type_name) which is mentioned
2075    in the documentation but doesn't exist. */
2076
2077 anonymous_class_creation:
2078         NEW_TK class_type OP_TK argument_list CP_TK
2079                 { create_anonymous_class ($2); }
2080         class_body
2081                 {
2082                   tree id = build_wfl_node (DECL_NAME (GET_CPC ()));
2083                   EXPR_WFL_LINECOL (id) = EXPR_WFL_LINECOL ($2);
2084
2085                   end_class_declaration (1);
2086
2087                   /* Now we can craft the new expression */
2088                   $$ = build_new_invocation (id, $4);
2089
2090                   /* Note that we can't possibly be here if
2091                      `class_type' is an interface (in which case the
2092                      anonymous class extends Object and implements
2093                      `class_type', hence its constructor can't have
2094                      arguments.) */
2095
2096                   /* Otherwise, the innerclass must feature a
2097                      constructor matching `argument_list'. Anonymous
2098                      classes are a bit special: it's impossible to
2099                      define constructor for them, hence constructors
2100                      must be generated following the hints provided by
2101                      the `new' expression. Whether a super constructor
2102                      of that nature exists or not is to be verified
2103                      later on in verify_constructor_super.
2104
2105                      It's during the expansion of a `new' statement
2106                      referring to an anonymous class that a ctor will
2107                      be generated for the anonymous class, with the
2108                      right arguments. */
2109
2110                 }
2111 |       NEW_TK class_type OP_TK CP_TK
2112                 { create_anonymous_class ($2); }
2113         class_body
2114                 {
2115                   tree id = build_wfl_node (DECL_NAME (GET_CPC ()));
2116                   EXPR_WFL_LINECOL (id) = EXPR_WFL_LINECOL ($2);
2117
2118                   end_class_declaration (1);
2119
2120                   /* Now we can craft the new expression. The
2121                      statement doesn't need to be remember so that a
2122                      constructor can be generated, since its signature
2123                      is already known. */
2124                   $$ = build_new_invocation (id, NULL_TREE);
2125                 }
2126 ;
2127
2128 something_dot_new:              /* Added, not part of the specs. */
2129         name DOT_TK NEW_TK
2130                 { $$ = $1; }
2131 |       primary DOT_TK NEW_TK
2132                 { $$ = $1; }
2133 ;
2134
2135 argument_list:
2136         expression
2137                 {
2138                   $$ = tree_cons (NULL_TREE, $1, NULL_TREE);
2139                   ctxp->formal_parameter_number = 1;
2140                 }
2141 |       argument_list C_TK expression
2142                 {
2143                   ctxp->formal_parameter_number += 1;
2144                   $$ = tree_cons (NULL_TREE, $3, $1);
2145                 }
2146 |       argument_list C_TK error
2147                 {yyerror ("Missing term"); RECOVER;}
2148 ;
2149
2150 array_creation_uninitialized:
2151         NEW_TK primitive_type dim_exprs
2152                 { $$ = build_newarray_node ($2, $3, 0); }
2153 |       NEW_TK class_or_interface_type dim_exprs
2154                 { $$ = build_newarray_node ($2, $3, 0); }
2155 |       NEW_TK primitive_type dim_exprs dims
2156                 { $$ = build_newarray_node ($2, $3, pop_current_osb (ctxp));}
2157 |       NEW_TK class_or_interface_type dim_exprs dims
2158                 { $$ = build_newarray_node ($2, $3, pop_current_osb (ctxp));}
2159 |       NEW_TK error CSB_TK
2160                 {yyerror ("'[' expected"); DRECOVER ("]");}
2161 |       NEW_TK error OSB_TK
2162                 {yyerror ("']' expected"); RECOVER;}
2163 ;
2164
2165 array_creation_initialized:
2166         /* Added, JDK1.1 anonymous array. Initial documentation rule
2167            modified */
2168         NEW_TK class_or_interface_type dims array_initializer
2169                 {
2170                   char *sig;
2171                   int osb = pop_current_osb (ctxp);
2172                   while (osb--)
2173                     obstack_grow (&temporary_obstack, "[]", 2);
2174                   obstack_1grow (&temporary_obstack, '\0');
2175                   sig = obstack_finish (&temporary_obstack);
2176                   $$ = build3 (NEW_ANONYMOUS_ARRAY_EXPR, NULL_TREE,
2177                                $2, get_identifier (sig), $4);
2178                 }
2179 |       NEW_TK primitive_type dims array_initializer
2180                 {
2181                   int osb = pop_current_osb (ctxp);
2182                   tree type = $2;
2183                   while (osb--)
2184                     type = build_java_array_type (type, -1);
2185                   $$ = build3 (NEW_ANONYMOUS_ARRAY_EXPR, NULL_TREE,
2186                                build_pointer_type (type), NULL_TREE, $4);
2187                 }
2188 |       NEW_TK error CSB_TK
2189                 {yyerror ("'[' expected"); DRECOVER ("]");}
2190 |       NEW_TK error OSB_TK
2191                 {yyerror ("']' expected"); RECOVER;}
2192 ;
2193
2194 dim_exprs:
2195         dim_expr
2196                 { $$ = build_tree_list (NULL_TREE, $1); }
2197 |       dim_exprs dim_expr
2198                 { $$ = tree_cons (NULL_TREE, $2, $$); }
2199 ;
2200
2201 dim_expr:
2202         OSB_TK expression CSB_TK
2203                 {
2204                   if (JNUMERIC_TYPE_P (TREE_TYPE ($2)))
2205                     {
2206                       $2 = build_wfl_node ($2);
2207                       TREE_TYPE ($2) = NULL_TREE;
2208                     }
2209                   EXPR_WFL_LINECOL ($2) = $1.location;
2210                   $$ = $2;
2211                 }
2212 |       OSB_TK expression error
2213                 {yyerror ("']' expected"); RECOVER;}
2214 |       OSB_TK error
2215                 {
2216                   yyerror ("Missing term");
2217                   yyerror ("']' expected");
2218                   RECOVER;
2219                 }
2220 ;
2221
2222 dims:
2223         OSB_TK CSB_TK
2224                 {
2225                   int allocate = 0;
2226                   /* If not initialized, allocate memory for the osb
2227                      numbers stack */
2228                   if (!ctxp->osb_limit)
2229                     {
2230                       allocate = ctxp->osb_limit = 32;
2231                       ctxp->osb_depth = -1;
2232                     }
2233                   /* If capacity overflown, reallocate a bigger chunk */
2234                   else if (ctxp->osb_depth+1 == ctxp->osb_limit)
2235                     allocate = ctxp->osb_limit << 1;
2236
2237                   if (allocate)
2238                     {
2239                       allocate *= sizeof (int);
2240                       if (ctxp->osb_number)
2241                         ctxp->osb_number = xrealloc (ctxp->osb_number,
2242                                                      allocate);
2243                       else
2244                         ctxp->osb_number = xmalloc (allocate);
2245                     }
2246                   ctxp->osb_depth++;
2247                   CURRENT_OSB (ctxp) = 1;
2248                 }
2249 |       dims OSB_TK CSB_TK
2250                 { CURRENT_OSB (ctxp)++; }
2251 |       dims OSB_TK error
2252                 { yyerror ("']' expected"); RECOVER;}
2253 ;
2254
2255 field_access:
2256         primary DOT_TK identifier
2257                 { $$ = make_qualified_primary ($1, $3, $2.location); }
2258                 /*  FIXME - REWRITE TO:
2259                 { $$ = build_binop (COMPONENT_REF, $2.location, $1, $3); } */
2260 |       SUPER_TK DOT_TK identifier
2261                 {
2262                   tree super_wfl = build_wfl_node (super_identifier_node);
2263                   SET_EXPR_LOCATION_FROM_TOKEN (super_wfl, $1);
2264                   $$ = make_qualified_name (super_wfl, $3, $2.location);
2265                 }
2266 |       SUPER_TK error
2267                 {yyerror ("Field expected"); DRECOVER (super_field_acces);}
2268 ;
2269
2270 method_invocation:
2271         name OP_TK CP_TK
2272                 { $$ = build_method_invocation ($1, NULL_TREE); }
2273 |       name OP_TK argument_list CP_TK
2274                 { $$ = build_method_invocation ($1, $3); }
2275 |       primary DOT_TK identifier OP_TK CP_TK
2276                 {
2277                   if (TREE_CODE ($1) == THIS_EXPR)
2278                     $$ = build_this_super_qualified_invocation
2279                       (1, $3, NULL_TREE, 0, $2.location);
2280                   else
2281                     {
2282                       tree invok = build_method_invocation ($3, NULL_TREE);
2283                       $$ = make_qualified_primary ($1, invok, $2.location);
2284                     }
2285                 }
2286 |       primary DOT_TK identifier OP_TK argument_list CP_TK
2287                 {
2288                   if (TREE_CODE ($1) == THIS_EXPR)
2289                     $$ = build_this_super_qualified_invocation
2290                       (1, $3, $5, 0, $2.location);
2291                   else
2292                     {
2293                       tree invok = build_method_invocation ($3, $5);
2294                       $$ = make_qualified_primary ($1, invok, $2.location);
2295                     }
2296                 }
2297 |       SUPER_TK DOT_TK identifier OP_TK CP_TK
2298                 {
2299                   $$ = build_this_super_qualified_invocation
2300                     (0, $3, NULL_TREE, $1.location, $2.location);
2301                 }
2302 |       SUPER_TK DOT_TK identifier OP_TK argument_list CP_TK
2303                 {
2304                   $$ = build_this_super_qualified_invocation
2305                     (0, $3, $5, $1.location, $2.location);
2306                 }
2307         /* Screws up thing. I let it here until I'm convinced it can
2308            be removed. FIXME
2309 |       primary DOT_TK error
2310                 {yyerror ("'(' expected"); DRECOVER(bad);} */
2311 |       SUPER_TK DOT_TK error CP_TK
2312                 { yyerror ("'(' expected"); DRECOVER (method_invocation); }
2313 |       SUPER_TK DOT_TK error DOT_TK
2314                 { yyerror ("'(' expected"); DRECOVER (method_invocation); }
2315 ;
2316
2317 array_access:
2318         name OSB_TK expression CSB_TK
2319                 { $$ = build_array_ref ($2.location, $1, $3); }
2320 |       primary_no_new_array OSB_TK expression CSB_TK
2321                 { $$ = build_array_ref ($2.location, $1, $3); }
2322 |       array_creation_initialized OSB_TK expression CSB_TK
2323                 { $$ = build_array_ref ($2.location, $1, $3); }
2324 |       name OSB_TK error
2325                 {
2326                   yyerror ("Missing term and ']' expected");
2327                   DRECOVER(array_access);
2328                 }
2329 |       name OSB_TK expression error
2330                 {
2331                   yyerror ("']' expected");
2332                   DRECOVER(array_access);
2333                 }
2334 |       primary_no_new_array OSB_TK error
2335                 {
2336                   yyerror ("Missing term and ']' expected");
2337                   DRECOVER(array_access);
2338                 }
2339 |       primary_no_new_array OSB_TK expression error
2340                 {
2341                   yyerror ("']' expected");
2342                   DRECOVER(array_access);
2343                 }
2344 |       array_creation_initialized OSB_TK error
2345                 {
2346                   yyerror ("Missing term and ']' expected");
2347                   DRECOVER(array_access);
2348                 }
2349 |       array_creation_initialized OSB_TK expression error
2350                 {
2351                   yyerror ("']' expected");
2352                   DRECOVER(array_access);
2353                 }
2354 ;
2355
2356 postfix_expression:
2357         primary
2358 |       name
2359 |       post_increment_expression
2360 |       post_decrement_expression
2361 ;
2362
2363 post_increment_expression:
2364         postfix_expression INCR_TK
2365                 { $$ = build_incdec ($2.token, $2.location, $1, 1); }
2366 ;
2367
2368 post_decrement_expression:
2369         postfix_expression DECR_TK
2370                 { $$ = build_incdec ($2.token, $2.location, $1, 1); }
2371 ;
2372
2373 trap_overflow_corner_case:
2374         pre_increment_expression
2375 |       pre_decrement_expression
2376 |       PLUS_TK unary_expression
2377                 {$$ = build_unaryop ($1.token, $1.location, $2); }
2378 |       unary_expression_not_plus_minus
2379 |       PLUS_TK error
2380                 {yyerror ("Missing term"); RECOVER}
2381 ;
2382
2383 unary_expression:
2384         trap_overflow_corner_case
2385                 {
2386                   if ($1)
2387                     error_if_numeric_overflow ($1);
2388                   $$ = $1;
2389                 }
2390 |       MINUS_TK trap_overflow_corner_case
2391                 {$$ = build_unaryop ($1.token, $1.location, $2); }
2392 |       MINUS_TK error
2393                 {yyerror ("Missing term"); RECOVER}
2394 ;
2395
2396 pre_increment_expression:
2397         INCR_TK unary_expression
2398                 {$$ = build_incdec ($1.token, $1.location, $2, 0); }
2399 |       INCR_TK error
2400                 {yyerror ("Missing term"); RECOVER}
2401 ;
2402
2403 pre_decrement_expression:
2404         DECR_TK unary_expression
2405                 {$$ = build_incdec ($1.token, $1.location, $2, 0); }
2406 |       DECR_TK error
2407                 {yyerror ("Missing term"); RECOVER}
2408 ;
2409
2410 unary_expression_not_plus_minus:
2411         postfix_expression
2412 |       NOT_TK unary_expression
2413                 {$$ = build_unaryop ($1.token, $1.location, $2); }
2414 |       NEG_TK unary_expression
2415                 {$$ = build_unaryop ($1.token, $1.location, $2); }
2416 |       cast_expression
2417 |       NOT_TK error
2418                 {yyerror ("Missing term"); RECOVER}
2419 |       NEG_TK error
2420                 {yyerror ("Missing term"); RECOVER}
2421 ;
2422
2423 cast_expression:                /* Error handling here is potentially weak */
2424         OP_TK primitive_type dims CP_TK unary_expression
2425                 {
2426                   tree type = $2;
2427                   int osb = pop_current_osb (ctxp);
2428                   while (osb--)
2429                     type = build_java_array_type (type, -1);
2430                   $$ = build_cast ($1.location, type, $5);
2431                 }
2432 |       OP_TK primitive_type CP_TK unary_expression
2433                 { $$ = build_cast ($1.location, $2, $4); }
2434 |       OP_TK expression CP_TK unary_expression_not_plus_minus
2435                 { $$ = build_cast ($1.location, $2, $4); }
2436 |       OP_TK name dims CP_TK unary_expression_not_plus_minus
2437                 {
2438                   const char *ptr;
2439                   int osb = pop_current_osb (ctxp);
2440                   obstack_grow (&temporary_obstack,
2441                                 IDENTIFIER_POINTER (EXPR_WFL_NODE ($2)),
2442                                 IDENTIFIER_LENGTH (EXPR_WFL_NODE ($2)));
2443                   while (osb--)
2444                     obstack_grow (&temporary_obstack, "[]", 2);
2445                   obstack_1grow (&temporary_obstack, '\0');
2446                   ptr = obstack_finish (&temporary_obstack);
2447                   EXPR_WFL_NODE ($2) = get_identifier (ptr);
2448                   $$ = build_cast ($1.location, $2, $5);
2449                 }
2450 |       OP_TK primitive_type OSB_TK error
2451                 {yyerror ("']' expected, invalid type expression");}
2452 |       OP_TK error
2453                 {
2454                   YYNOT_TWICE yyerror ("Invalid type expression"); RECOVER;
2455                   RECOVER;
2456                 }
2457 |       OP_TK primitive_type dims CP_TK error
2458                 {yyerror ("Missing term"); RECOVER;}
2459 |       OP_TK primitive_type CP_TK error
2460                 {yyerror ("Missing term"); RECOVER;}
2461 |       OP_TK name dims CP_TK error
2462                 {yyerror ("Missing term"); RECOVER;}
2463 ;
2464
2465 multiplicative_expression:
2466         unary_expression
2467 |       multiplicative_expression MULT_TK unary_expression
2468                 {
2469                   $$ = build_binop (BINOP_LOOKUP ($2.token),
2470                                     $2.location, $1, $3);
2471                 }
2472 |       multiplicative_expression DIV_TK unary_expression
2473                 {
2474                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2475                                     $1, $3);
2476                 }
2477 |       multiplicative_expression REM_TK unary_expression
2478                 {
2479                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2480                                     $1, $3);
2481                 }
2482 |       multiplicative_expression MULT_TK error
2483                 {yyerror ("Missing term"); RECOVER;}
2484 |       multiplicative_expression DIV_TK error
2485                 {yyerror ("Missing term"); RECOVER;}
2486 |       multiplicative_expression REM_TK error
2487                 {yyerror ("Missing term"); RECOVER;}
2488 ;
2489
2490 additive_expression:
2491         multiplicative_expression
2492 |       additive_expression PLUS_TK multiplicative_expression
2493                 {
2494                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2495                                     $1, $3);
2496                 }
2497 |       additive_expression MINUS_TK multiplicative_expression
2498                 {
2499                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2500                                     $1, $3);
2501                 }
2502 |       additive_expression PLUS_TK error
2503                 {yyerror ("Missing term"); RECOVER;}
2504 |       additive_expression MINUS_TK error
2505                 {yyerror ("Missing term"); RECOVER;}
2506 ;
2507
2508 shift_expression:
2509         additive_expression
2510 |       shift_expression LS_TK additive_expression
2511                 {
2512                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2513                                     $1, $3);
2514                 }
2515 |       shift_expression SRS_TK additive_expression
2516                 {
2517                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2518                                     $1, $3);
2519                 }
2520 |       shift_expression ZRS_TK additive_expression
2521                 {
2522                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2523                                     $1, $3);
2524                 }
2525 |       shift_expression LS_TK error
2526                 {yyerror ("Missing term"); RECOVER;}
2527 |       shift_expression SRS_TK error
2528                 {yyerror ("Missing term"); RECOVER;}
2529 |       shift_expression ZRS_TK error
2530                 {yyerror ("Missing term"); RECOVER;}
2531 ;
2532
2533 relational_expression:
2534         shift_expression
2535 |       relational_expression LT_TK shift_expression
2536                 {
2537                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2538                                     $1, $3);
2539                 }
2540 |       relational_expression GT_TK shift_expression
2541                 {
2542                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2543                                     $1, $3);
2544                 }
2545 |       relational_expression LTE_TK shift_expression
2546                 {
2547                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2548                                     $1, $3);
2549                 }
2550 |       relational_expression GTE_TK shift_expression
2551                 {
2552                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2553                                     $1, $3);
2554                 }
2555 |       relational_expression INSTANCEOF_TK reference_type
2556                 { $$ = build_binop (INSTANCEOF_EXPR, $2.location, $1, $3); }
2557 |       relational_expression LT_TK error
2558                 {yyerror ("Missing term"); RECOVER;}
2559 |       relational_expression GT_TK error
2560                 {yyerror ("Missing term"); RECOVER;}
2561 |       relational_expression LTE_TK error
2562                 {yyerror ("Missing term"); RECOVER;}
2563 |       relational_expression GTE_TK error
2564                 {yyerror ("Missing term"); RECOVER;}
2565 |       relational_expression INSTANCEOF_TK error
2566                 {yyerror ("Invalid reference type"); RECOVER;}
2567 ;
2568
2569 equality_expression:
2570         relational_expression
2571 |       equality_expression EQ_TK relational_expression
2572                 {
2573                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2574                                     $1, $3);
2575                 }
2576 |       equality_expression NEQ_TK relational_expression
2577                 {
2578                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2579                                     $1, $3);
2580                 }
2581 |       equality_expression EQ_TK error
2582                 {yyerror ("Missing term"); RECOVER;}
2583 |       equality_expression NEQ_TK error
2584                 {yyerror ("Missing term"); RECOVER;}
2585 ;
2586
2587 and_expression:
2588         equality_expression
2589 |       and_expression AND_TK equality_expression
2590                 {
2591                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2592                                     $1, $3);
2593                 }
2594 |       and_expression AND_TK error
2595                 {yyerror ("Missing term"); RECOVER;}
2596 ;
2597
2598 exclusive_or_expression:
2599         and_expression
2600 |       exclusive_or_expression XOR_TK and_expression
2601                 {
2602                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2603                                     $1, $3);
2604                 }
2605 |       exclusive_or_expression XOR_TK error
2606                 {yyerror ("Missing term"); RECOVER;}
2607 ;
2608
2609 inclusive_or_expression:
2610         exclusive_or_expression
2611 |       inclusive_or_expression OR_TK exclusive_or_expression
2612                 {
2613                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2614                                     $1, $3);
2615                 }
2616 |       inclusive_or_expression OR_TK error
2617                 {yyerror ("Missing term"); RECOVER;}
2618 ;
2619
2620 conditional_and_expression:
2621         inclusive_or_expression
2622 |       conditional_and_expression BOOL_AND_TK inclusive_or_expression
2623                 {
2624                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2625                                     $1, $3);
2626                 }
2627 |       conditional_and_expression BOOL_AND_TK error
2628                 {yyerror ("Missing term"); RECOVER;}
2629 ;
2630
2631 conditional_or_expression:
2632         conditional_and_expression
2633 |       conditional_or_expression BOOL_OR_TK conditional_and_expression
2634                 {
2635                   $$ = build_binop (BINOP_LOOKUP ($2.token), $2.location,
2636                                     $1, $3);
2637                 }
2638 |       conditional_or_expression BOOL_OR_TK error
2639                 {yyerror ("Missing term"); RECOVER;}
2640 ;
2641
2642 conditional_expression:         /* Error handling here is weak */
2643         conditional_or_expression
2644 |       conditional_or_expression REL_QM_TK expression REL_CL_TK conditional_expression
2645                 {
2646                   $$ = build3 (CONDITIONAL_EXPR, NULL_TREE, $1, $3, $5);
2647                   SET_EXPR_LOCATION_FROM_TOKEN ($$, $2);
2648                 }
2649 |       conditional_or_expression REL_QM_TK REL_CL_TK error
2650                 {
2651                   YYERROR_NOW;
2652                   yyerror ("Missing term");
2653                   DRECOVER (1);
2654                 }
2655 |       conditional_or_expression REL_QM_TK error
2656                 {yyerror ("Missing term"); DRECOVER (2);}
2657 |       conditional_or_expression REL_QM_TK expression REL_CL_TK error
2658                 {yyerror ("Missing term"); DRECOVER (3);}
2659 ;
2660
2661 assignment_expression:
2662         conditional_expression
2663 |       assignment
2664 ;
2665
2666 assignment:
2667         left_hand_side assignment_operator assignment_expression
2668                 { $$ = build_assignment ($2.token, $2.location, $1, $3); }
2669 |       left_hand_side assignment_operator error
2670                 {
2671                   YYNOT_TWICE yyerror ("Missing term");
2672                   DRECOVER (assign);
2673                 }
2674 ;
2675
2676 left_hand_side:
2677         name
2678 |       field_access
2679 |       array_access
2680 ;
2681
2682 assignment_operator:
2683         ASSIGN_ANY_TK
2684 |       ASSIGN_TK
2685 ;
2686
2687 expression:
2688         assignment_expression
2689 ;
2690
2691 constant_expression:
2692         expression
2693 ;
2694
2695 %%
2696
2697 /* Helper function to retrieve an OSB count. Should be used when the
2698    `dims:' rule is being used.  */
2699
2700 static int
2701 pop_current_osb (struct parser_ctxt *ctxp)
2702 {
2703   int to_return;
2704
2705   if (ctxp->osb_depth < 0)
2706     abort ();
2707
2708   to_return = CURRENT_OSB (ctxp);
2709   ctxp->osb_depth--;
2710
2711   return to_return;
2712 }
2713
2714 \f
2715
2716 /* This section of the code deal with save/restoring parser contexts.
2717    Add mode documentation here. FIXME */
2718
2719 /* Helper function. Create a new parser context. With
2720    COPY_FROM_PREVIOUS set to a nonzero value, content of the previous
2721    context is copied, otherwise, the new context is zeroed. The newly
2722    created context becomes the current one.  */
2723
2724 static void
2725 create_new_parser_context (int copy_from_previous)
2726 {
2727   struct parser_ctxt *new;
2728
2729   new = ggc_alloc (sizeof (struct parser_ctxt));
2730   if (copy_from_previous)
2731     {
2732       memcpy (new, ctxp, sizeof (struct parser_ctxt));
2733       /* This flag, indicating the context saves global values,
2734          should only be set by java_parser_context_save_global.  */
2735       new->saved_data_ctx = 0;
2736     }
2737   else
2738     memset (new, 0, sizeof (struct parser_ctxt));
2739
2740   new->next = ctxp;
2741   ctxp = new;
2742 }
2743
2744 /* Create a new parser context and make it the current one. */
2745
2746 void
2747 java_push_parser_context (void)
2748 {
2749   create_new_parser_context (0);
2750 }
2751
2752 void
2753 java_pop_parser_context (int generate)
2754 {
2755   tree current;
2756   struct parser_ctxt *next;
2757
2758   if (!ctxp)
2759     return;
2760
2761   next = ctxp->next;
2762   if (next)
2763     {
2764       input_location = ctxp->save_location;
2765       current_class = ctxp->class_type;
2766     }
2767
2768   /* If the old and new lexers differ, then free the old one.  */
2769   if (ctxp->lexer && next && ctxp->lexer != next->lexer)
2770     java_destroy_lexer (ctxp->lexer);
2771
2772   /* Set the single import class file flag to 0 for the current list
2773      of imported things */
2774   for (current = ctxp->import_list; current; current = TREE_CHAIN (current))
2775     IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (TREE_VALUE (current)) = 0;
2776
2777   /* If we pushed a context to parse a class intended to be generated,
2778      we keep it so we can remember the class. What we could actually
2779      do is to just update a list of class names.  */
2780   if (generate)
2781     {
2782       ctxp->next = ctxp_for_generation;
2783       ctxp_for_generation = ctxp;
2784     }
2785
2786   /* And restore those of the previous context */
2787   if ((ctxp = next))            /* Assignment is really meant here */
2788     for (current = ctxp->import_list; current; current = TREE_CHAIN (current))
2789       IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (TREE_VALUE (current)) = 1;
2790 }
2791
2792 /* Create a parser context for the use of saving some global
2793    variables.  */
2794
2795 void
2796 java_parser_context_save_global (void)
2797 {
2798   if (!ctxp)
2799     {
2800       java_push_parser_context ();
2801       ctxp->saved_data_ctx = 1;
2802     }
2803
2804   /* If this context already stores data, create a new one suitable
2805      for data storage. */
2806   else if (ctxp->saved_data)
2807     {
2808       create_new_parser_context (1);
2809       ctxp->saved_data_ctx = 1;
2810     }
2811
2812   ctxp->save_location = input_location;
2813   ctxp->class_type = current_class;
2814   ctxp->function_decl = current_function_decl;
2815   ctxp->saved_data = 1;
2816 }
2817
2818 /* Restore some global variables from the previous context. Make the
2819    previous context the current one.  */
2820
2821 void
2822 java_parser_context_restore_global (void)
2823 {
2824   input_location = ctxp->save_location;
2825   current_class = ctxp->class_type;
2826   if (wfl_operator)
2827 #ifdef USE_MAPPED_LOCATION
2828     SET_EXPR_LOCATION (wfl_operator, ctxp->save_location);
2829 #else
2830     EXPR_WFL_FILENAME_NODE (wfl_operator) = get_identifier (input_filename);
2831 #endif
2832   current_function_decl = ctxp->function_decl;
2833   ctxp->saved_data = 0;
2834   if (ctxp->saved_data_ctx)
2835     java_pop_parser_context (0);
2836 }
2837
2838 /* Suspend vital data for the current class/function being parsed so
2839    that an other class can be parsed. Used to let local/anonymous
2840    classes be parsed.  */
2841
2842 static void
2843 java_parser_context_suspend (void)
2844 {
2845   /* This makes debugging through java_debug_context easier */
2846   static const char *const name = "<inner buffer context>";
2847
2848   /* Duplicate the previous context, use it to save the globals we're
2849      interested in */
2850   create_new_parser_context (1);
2851   ctxp->function_decl = current_function_decl;
2852   ctxp->class_type = current_class;
2853
2854   /* Then create a new context which inherits all data from the
2855      previous one. This will be the new current context  */
2856   create_new_parser_context (1);
2857
2858   /* Help debugging */
2859   ctxp->next->filename = name;
2860 }
2861
2862 /* Resume vital data for the current class/function being parsed so
2863    that an other class can be parsed. Used to let local/anonymous
2864    classes be parsed.  The trick is the data storing file position
2865    informations must be restored to their current value, so parsing
2866    can resume as if no context was ever saved. */
2867
2868 static void
2869 java_parser_context_resume (void)
2870 {
2871   struct parser_ctxt *old = ctxp;             /* This one is to be discarded */
2872   struct parser_ctxt *saver = old->next;      /* This one contain saved info */
2873   struct parser_ctxt *restored = saver->next; /* This one is the old current */
2874
2875   /* We need to inherit the list of classes to complete/generate */
2876   restored->classd_list = old->classd_list;
2877   restored->class_list = old->class_list;
2878
2879   /* Restore the current class and function from the saver */
2880   current_class = saver->class_type;
2881   current_function_decl = saver->function_decl;
2882
2883   /* Retrieve the restored context */
2884   ctxp = restored;
2885
2886   /* Re-installed the data for the parsing to carry on */
2887   memcpy (&ctxp->marker_begining, &old->marker_begining,
2888           (size_t)(&ctxp->marker_end - &ctxp->marker_begining));
2889 }
2890
2891 /* Add a new anchor node to which all statement(s) initializing static
2892    and non static initialized upon declaration field(s) will be
2893    linked.  */
2894
2895 static void
2896 java_parser_context_push_initialized_field (void)
2897 {
2898   tree node;
2899
2900   node = build_tree_list (NULL_TREE, NULL_TREE);
2901   TREE_CHAIN (node) = CPC_STATIC_INITIALIZER_LIST (ctxp);
2902   CPC_STATIC_INITIALIZER_LIST (ctxp) = node;
2903
2904   node = build_tree_list (NULL_TREE, NULL_TREE);
2905   TREE_CHAIN (node) = CPC_INITIALIZER_LIST (ctxp);
2906   CPC_INITIALIZER_LIST (ctxp) = node;
2907
2908   node = build_tree_list (NULL_TREE, NULL_TREE);
2909   TREE_CHAIN (node) = CPC_INSTANCE_INITIALIZER_LIST (ctxp);
2910   CPC_INSTANCE_INITIALIZER_LIST (ctxp) = node;
2911 }
2912
2913 /* Pop the lists of initialized field. If this lists aren't empty,
2914    remember them so we can use it to create and populate the finit$
2915    or <clinit> functions. */
2916
2917 static void
2918 java_parser_context_pop_initialized_field (void)
2919 {
2920   tree stmts;
2921   tree class_type = TREE_TYPE (GET_CPC ());
2922
2923   if (CPC_INITIALIZER_LIST (ctxp))
2924     {
2925       stmts = CPC_INITIALIZER_STMT (ctxp);
2926       CPC_INITIALIZER_LIST (ctxp) = TREE_CHAIN (CPC_INITIALIZER_LIST (ctxp));
2927       if (stmts && !java_error_count)
2928         TYPE_FINIT_STMT_LIST (class_type) = reorder_static_initialized (stmts);
2929     }
2930
2931   if (CPC_STATIC_INITIALIZER_LIST (ctxp))
2932     {
2933       stmts = CPC_STATIC_INITIALIZER_STMT (ctxp);
2934       CPC_STATIC_INITIALIZER_LIST (ctxp) =
2935         TREE_CHAIN (CPC_STATIC_INITIALIZER_LIST (ctxp));
2936       /* Keep initialization in order to enforce 8.5 */
2937       if (stmts && !java_error_count)
2938         TYPE_CLINIT_STMT_LIST (class_type) = nreverse (stmts);
2939     }
2940
2941   /* JDK 1.1 instance initializers */
2942   if (CPC_INSTANCE_INITIALIZER_LIST (ctxp))
2943     {
2944       stmts = CPC_INSTANCE_INITIALIZER_STMT (ctxp);
2945       CPC_INSTANCE_INITIALIZER_LIST (ctxp) =
2946         TREE_CHAIN (CPC_INSTANCE_INITIALIZER_LIST (ctxp));
2947       if (stmts && !java_error_count)
2948         TYPE_II_STMT_LIST (class_type) = nreverse (stmts);
2949     }
2950 }
2951
2952 static tree
2953 reorder_static_initialized (tree list)
2954 {
2955   /* We have to keep things in order. The alias initializer have to
2956      come first, then the initialized regular field, in reverse to
2957      keep them in lexical order. */
2958   tree marker, previous = NULL_TREE;
2959   for (marker = list; marker; previous = marker, marker = TREE_CHAIN (marker))
2960     if (TREE_CODE (marker) == TREE_LIST
2961         && !TREE_VALUE (marker) && !TREE_PURPOSE (marker))
2962       break;
2963
2964   /* No static initialized, the list is fine as is */
2965   if (!previous)
2966     list = TREE_CHAIN (marker);
2967
2968   /* No marker? reverse the whole list */
2969   else if (!marker)
2970     list = nreverse (list);
2971
2972   /* Otherwise, reverse what's after the marker and the new reordered
2973      sublist will replace the marker. */
2974   else
2975     {
2976       TREE_CHAIN (previous) = NULL_TREE;
2977       list = nreverse (list);
2978       list = chainon (TREE_CHAIN (marker), list);
2979     }
2980   return list;
2981 }
2982
2983 /* Helper functions to dump the parser context stack.  */
2984
2985 #define TAB_CONTEXT(C) \
2986   {int i; for (i = 0; i < (C); i++) fputc (' ', stderr);}
2987
2988 static void
2989 java_debug_context_do (int tab)
2990 {
2991   struct parser_ctxt *copy = ctxp;
2992   while (copy)
2993     {
2994       TAB_CONTEXT (tab);
2995       fprintf (stderr, "ctxt: 0x%0lX\n", (unsigned long)copy);
2996       TAB_CONTEXT (tab);
2997       fprintf (stderr, "filename: %s\n", copy->filename);
2998       TAB_CONTEXT (tab);
2999       fprintf (stderr, "package: %s\n",
3000                (copy->package ?
3001                 IDENTIFIER_POINTER (copy->package) : "<none>"));
3002       TAB_CONTEXT (tab);
3003       fprintf (stderr, "context for saving: %d\n", copy->saved_data_ctx);
3004       TAB_CONTEXT (tab);
3005       fprintf (stderr, "saved data: %d\n", copy->saved_data);
3006       copy = copy->next;
3007       tab += 2;
3008     }
3009 }
3010
3011 /* Dump the stacked up parser contexts. Intended to be called from a
3012    debugger.  */
3013
3014 void
3015 java_debug_context (void)
3016 {
3017   java_debug_context_do (0);
3018 }
3019
3020 \f
3021
3022 /* Flag for the error report routine to issue the error the first time
3023    it's called (overriding the default behavior which is to drop the
3024    first invocation and honor the second one, taking advantage of a
3025    richer context.  */
3026 static int force_error = 0;
3027
3028 /* Reporting an constructor invocation error.  */
3029 static void
3030 parse_ctor_invocation_error (void)
3031 {
3032   if (DECL_CONSTRUCTOR_P (current_function_decl))
3033     yyerror ("Constructor invocation must be first thing in a constructor");
3034   else
3035     yyerror ("Only constructors can invoke constructors");
3036 }
3037
3038 /* Reporting JDK1.1 features not implemented.  */
3039
3040 static tree
3041 parse_jdk1_1_error (const char *msg)
3042 {
3043   sorry (": %qs JDK1.1(TM) feature", msg);
3044   java_error_count++;
3045   return build_java_empty_stmt ();
3046 }
3047
3048 static int do_warning = 0;
3049
3050 void
3051 yyerror (const char *msgid)
3052 {
3053 #ifdef USE_MAPPED_LOCATION
3054   static source_location elc;
3055   expanded_location xloc = expand_location (input_location);
3056   int current_line = xloc.line;
3057 #else
3058   static java_lc elc;
3059   int save_lineno;
3060   int current_line = input_line;
3061 #endif
3062   static int prev_lineno;
3063   static const char *prev_msg;
3064
3065   char *remainder, *code_from_source;
3066
3067   if (!force_error && prev_lineno == current_line)
3068     return;
3069 #ifndef USE_MAPPED_LOCATION
3070   current_line = ctxp->lexer->token_start.line;
3071 #endif
3072
3073   /* Save current error location but report latter, when the context is
3074      richer.  */
3075   if (ctxp->java_error_flag == 0)
3076     {
3077       ctxp->java_error_flag = 1;
3078 #ifdef USE_MAPPED_LOCATION
3079       elc = input_location;
3080 #else
3081       elc = ctxp->lexer->token_start;
3082 #endif
3083       /* Do something to use the previous line if we're reaching the
3084          end of the file... */
3085 #ifdef VERBOSE_SKELETON
3086       printf ("* Error detected (%s)\n", (msgid ? msgid : "(null)"));
3087 #endif
3088       return;
3089     }
3090
3091   /* Ignore duplicate message on the same line. BTW, this is dubious. FIXME */
3092   if (!force_error && msgid == prev_msg && prev_lineno == current_line)
3093     return;
3094
3095   ctxp->java_error_flag = 0;
3096   if (do_warning)
3097     java_warning_count++;
3098   else
3099     java_error_count++;
3100
3101 #if 0 /* FIXME */
3102   if (elc.col == 0 && msgid && msgid[1] == ';')
3103     elc = ctxp->prev_line_end;
3104 #endif
3105
3106   prev_msg = msgid;
3107
3108 #ifdef USE_MAPPED_LOCATION
3109   prev_lineno = current_line;
3110   code_from_source = java_get_line_col (xloc.file, current_line, xloc.column);
3111 #else
3112   save_lineno = input_line;
3113   prev_lineno = input_line = current_line;
3114   code_from_source = java_get_line_col (input_filename, current_line,
3115                                         ctxp->lexer->token_start.col);
3116 #endif
3117
3118
3119   obstack_grow0 (&temporary_obstack,
3120                  code_from_source, strlen (code_from_source));
3121   remainder = obstack_finish (&temporary_obstack);
3122   if (do_warning)
3123     warning ("%s.\n%s", msgid, remainder);
3124   else
3125     error ("%s.\n%s", msgid, remainder);
3126
3127   /* This allow us to cheaply avoid an extra 'Invalid expression
3128      statement' error report when errors have been already reported on
3129      the same line. This occurs when we report an error but don't have
3130      a synchronization point other than ';', which
3131      expression_statement is the only one to take care of.  */
3132 #ifndef USE_MAPPED_LOCATION
3133   input_line = save_lineno;
3134 #endif
3135   ctxp->prevent_ese = input_line;
3136 }
3137
3138 static void
3139 issue_warning_error_from_context (
3140 #ifdef USE_MAPPED_LOCATION
3141                                   source_location cl,
3142 #else
3143                                   tree cl,
3144 #endif
3145                                   const char *msgid, va_list *ap)
3146 {
3147 #ifdef USE_MAPPED_LOCATION
3148   source_location saved_location = input_location;
3149   expanded_location xloc = expand_location (cl);
3150 #else
3151   java_lc save_lc = ctxp->lexer->token_start;
3152   const char *saved = ctxp->filename, *saved_input_filename;
3153 #endif
3154   char buffer [4096];
3155   text_info text;
3156
3157   text.err_no = errno;
3158   text.args_ptr = ap;
3159   text.format_spec = msgid;
3160   pp_format_text (global_dc->printer, &text);
3161   strncpy (buffer, pp_formatted_text (global_dc->printer), sizeof (buffer) - 1);
3162   buffer[sizeof (buffer) - 1] = '\0';
3163   pp_clear_output_area (global_dc->printer);
3164
3165   force_error = 1;
3166
3167 #ifdef USE_MAPPED_LOCATION
3168   if (xloc.file != NULL)
3169     {
3170       ctxp->filename = xloc.file;
3171       input_location = cl;
3172     }
3173 #else
3174   ctxp->lexer->token_start.line = EXPR_WFL_LINENO (cl);
3175   ctxp->lexer->token_start.col  = (EXPR_WFL_COLNO (cl) == 0xfff ? -1
3176                                    : EXPR_WFL_COLNO (cl) == 0xffe ? -2
3177                                    : EXPR_WFL_COLNO (cl));
3178
3179   /* We have a CL, that's a good reason for using it if it contains data */
3180   if (TREE_CODE (cl) == EXPR_WITH_FILE_LOCATION && EXPR_WFL_FILENAME_NODE (cl))
3181     ctxp->filename = EXPR_WFL_FILENAME (cl);
3182   saved_input_filename = input_filename;
3183   input_filename = ctxp->filename;
3184 #endif
3185   java_error (NULL);
3186   java_error (buffer);
3187 #ifdef USE_MAPPED_LOCATION
3188   input_location = saved_location;
3189 #else
3190   ctxp->filename = saved;
3191   input_filename = saved_input_filename;
3192   ctxp->lexer->token_start = save_lc;
3193 #endif
3194   force_error = 0;
3195 }
3196
3197 /* Issue an error message at a current source line CL.
3198    FUTURE/FIXME:  change cl to be a source_location. */
3199
3200 void
3201 parse_error_context (tree cl, const char *msgid, ...)
3202 {
3203   va_list ap;
3204   va_start (ap, msgid);
3205 #ifdef USE_MAPPED_LOCATION
3206   issue_warning_error_from_context (EXPR_LOCATION (cl), msgid, &ap);
3207 #else
3208   issue_warning_error_from_context (cl, msgid, &ap);
3209 #endif
3210   va_end (ap);
3211 }
3212
3213 /* Issue a warning at a current source line CL.
3214    FUTURE/FIXME:  change cl to be a source_location. */
3215
3216 static void
3217 parse_warning_context (tree cl, const char *msgid, ...)
3218 {
3219   va_list ap;
3220   va_start (ap, msgid);
3221
3222   do_warning = 1;
3223 #ifdef USE_MAPPED_LOCATION
3224   issue_warning_error_from_context (EXPR_LOCATION (cl), msgid, &ap);
3225 #else
3226   issue_warning_error_from_context (cl, msgid, &ap);
3227 #endif
3228   do_warning = 0;
3229   va_end (ap);
3230 }
3231
3232 static tree
3233 find_expr_with_wfl (tree node)
3234 {
3235   while (node)
3236     {
3237       enum tree_code_class code;
3238       tree to_return;
3239
3240       switch (TREE_CODE (node))
3241         {
3242         case BLOCK:
3243           node = BLOCK_EXPR_BODY (node);
3244           continue;
3245
3246         case COMPOUND_EXPR:
3247           to_return = find_expr_with_wfl (TREE_OPERAND (node, 0));
3248           if (to_return)
3249             return to_return;
3250           node = TREE_OPERAND (node, 1);
3251           continue;
3252
3253         case LOOP_EXPR:
3254           node = TREE_OPERAND (node, 0);
3255           continue;
3256
3257         case LABELED_BLOCK_EXPR:
3258           node = LABELED_BLOCK_BODY (node);
3259           continue;
3260
3261         default:
3262           code = TREE_CODE_CLASS (TREE_CODE (node));
3263           if (((code == tcc_unary) || (code == tcc_binary)
3264                || (code == tcc_expression))
3265               && EXPR_WFL_LINECOL (node))
3266             return node;
3267           return NULL_TREE;
3268         }
3269     }
3270   return NULL_TREE;
3271 }
3272
3273 /* Issue a missing return statement error. Uses METHOD to figure the
3274    last line of the method the error occurs in.  */
3275
3276 static void
3277 missing_return_error (tree method)
3278 {
3279 #ifdef USE_MAPPED_LOCATION
3280   SET_EXPR_LOCATION (wfl_operator, DECL_FUNCTION_LAST_LINE (method));
3281 #else
3282   EXPR_WFL_SET_LINECOL (wfl_operator, DECL_FUNCTION_LAST_LINE (method), -2);
3283 #endif
3284   parse_error_context (wfl_operator, "Missing return statement");
3285 }
3286
3287 /* Issue an unreachable statement error. From NODE, find the next
3288    statement to report appropriately.  */
3289 static void
3290 unreachable_stmt_error (tree node)
3291 {
3292   /* Browse node to find the next expression node that has a WFL. Use
3293      the location to report the error */
3294   if (TREE_CODE (node) == COMPOUND_EXPR)
3295     node = find_expr_with_wfl (TREE_OPERAND (node, 1));
3296   else
3297     node = find_expr_with_wfl (node);
3298
3299   if (node)
3300     {
3301 #ifdef USE_MAPPED_LOCATION
3302       SET_EXPR_LOCATION (wfl_operator, EXPR_LOCATION (node));
3303 #else
3304       EXPR_WFL_SET_LINECOL (wfl_operator, EXPR_WFL_LINENO (node), -2);
3305 #endif
3306       parse_error_context (wfl_operator, "Unreachable statement");
3307     }
3308   else
3309     abort ();
3310 }
3311
3312 static int
3313 not_accessible_field_error (tree wfl, tree decl)
3314 {
3315   parse_error_context 
3316     (wfl, "Can't access %s field %<%s.%s%> from %qs",
3317      accessibility_string (get_access_flags_from_decl (decl)),
3318      GET_TYPE_NAME (DECL_CONTEXT (decl)),
3319      IDENTIFIER_POINTER (DECL_NAME (decl)),
3320      IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))));
3321   return 1;
3322 }
3323
3324 int
3325 java_report_errors (void)
3326 {
3327   if (java_error_count)
3328     fprintf (stderr, "%d error%s",
3329              java_error_count, (java_error_count == 1 ? "" : "s"));
3330   if (java_warning_count)
3331     fprintf (stderr, "%s%d warning%s", (java_error_count ? ", " : ""),
3332              java_warning_count, (java_warning_count == 1 ? "" : "s"));
3333   if (java_error_count || java_warning_count)
3334     putc ('\n', stderr);
3335   return java_error_count;
3336 }
3337
3338 static char *
3339 java_accstring_lookup (int flags)
3340 {
3341   static char buffer [80];
3342 #define COPY_RETURN(S) {strcpy (buffer, S); return buffer;}
3343
3344   /* Access modifier looked-up first for easier report on forbidden
3345      access. */
3346   if (flags & ACC_PUBLIC) COPY_RETURN ("public");
3347   if (flags & ACC_PRIVATE) COPY_RETURN ("private");
3348   if (flags & ACC_PROTECTED) COPY_RETURN ("protected");
3349   if (flags & ACC_STATIC) COPY_RETURN ("static");
3350   if (flags & ACC_FINAL) COPY_RETURN ("final");
3351   if (flags & ACC_SYNCHRONIZED) COPY_RETURN ("synchronized");
3352   if (flags & ACC_VOLATILE) COPY_RETURN ("volatile");
3353   if (flags & ACC_TRANSIENT) COPY_RETURN ("transient");
3354   if (flags & ACC_NATIVE) COPY_RETURN ("native");
3355   if (flags & ACC_INTERFACE) COPY_RETURN ("interface");
3356   if (flags & ACC_ABSTRACT) COPY_RETURN ("abstract");
3357
3358   buffer [0] = '\0';
3359   return buffer;
3360 #undef COPY_RETURN
3361 }
3362
3363 /* Returns a string denoting the accessibility of a class or a member as
3364    indicated by FLAGS.  We need a separate function from
3365    java_accstring_lookup, as the latter can return spurious "static", etc.
3366    if package-private access is defined (in which case none of the
3367    relevant access control bits in FLAGS is set).  */
3368
3369 static const char *
3370 accessibility_string (int flags)
3371 {
3372   if (flags & ACC_PRIVATE) return "private";
3373   if (flags & ACC_PROTECTED) return "protected";
3374   if (flags & ACC_PUBLIC) return "public";
3375
3376   return "package-private";
3377 }
3378
3379 /* Issuing error messages upon redefinition of classes, interfaces or
3380    variables. */
3381
3382 static void
3383 classitf_redefinition_error (const char *context, tree id, tree decl, tree cl)
3384 {
3385   parse_error_context (cl, "%s %qs already defined in %s:%d",
3386                        context, IDENTIFIER_POINTER (id),
3387                        DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
3388   /* Here we should point out where its redefined. It's a unicode. FIXME */
3389 }
3390
3391 static void
3392 variable_redefinition_error (tree context, tree name, tree type, int line)
3393 {
3394   const char *type_name;
3395
3396   /* Figure a proper name for type. We might haven't resolved it */
3397   if (TREE_CODE (type) == POINTER_TYPE && !TREE_TYPE (type))
3398     type_name = IDENTIFIER_POINTER (TYPE_NAME (type));
3399   else
3400     type_name = lang_printable_name (type, 0);
3401
3402   parse_error_context (context,
3403                        "Variable %qs is already defined in this method and was declared %<%s %s%> at line %d",
3404                        IDENTIFIER_POINTER (name),
3405                        type_name, IDENTIFIER_POINTER (name), line);
3406 }
3407
3408 /* If ANAME is terminated with `[]', it indicates an array. This
3409    function returns the number of `[]' found and if this number is
3410    greater than zero, it extracts the array type name and places it in
3411    the node pointed to by TRIMMED unless TRIMMED is null.  */
3412
3413 static int
3414 build_type_name_from_array_name (tree aname, tree *trimmed)
3415 {
3416   const char *name = IDENTIFIER_POINTER (aname);
3417   int len = IDENTIFIER_LENGTH (aname);
3418   int array_dims;
3419
3420   STRING_STRIP_BRACKETS (name, len, array_dims);
3421
3422   if (array_dims && trimmed)
3423     *trimmed = get_identifier_with_length (name, len);
3424
3425   return array_dims;
3426 }
3427
3428 static tree
3429 build_array_from_name (tree type, tree type_wfl, tree name, tree *ret_name)
3430 {
3431   int more_dims = 0;
3432
3433   /* Eventually get more dims */
3434   more_dims = build_type_name_from_array_name (name, &name);
3435
3436   /* If we have, then craft a new type for this variable */
3437   if (more_dims)
3438     {
3439       tree save = type;
3440
3441       /* If we have a pointer, use its type */
3442       if (TREE_CODE (type) == POINTER_TYPE)
3443         type = TREE_TYPE (type);
3444
3445       /* Building the first dimension of a primitive type uses this
3446          function */
3447       if (JPRIMITIVE_TYPE_P (type))
3448         {
3449           type = build_java_array_type (type, -1);
3450           more_dims--;
3451         }
3452       /* Otherwise, if we have a WFL for this type, use it (the type
3453          is already an array on an unresolved type, and we just keep
3454          on adding dimensions) */
3455       else if (type_wfl)
3456         {
3457           type = type_wfl;
3458           more_dims += build_type_name_from_array_name (TYPE_NAME (save),
3459                                                         NULL);
3460         }
3461
3462       /* Add all the dimensions */
3463       while (more_dims--)
3464         type = build_unresolved_array_type (type);
3465
3466       /* The type may have been incomplete in the first place */
3467       if (type_wfl)
3468         type = obtain_incomplete_type (type);
3469     }
3470
3471   if (ret_name)
3472     *ret_name = name;
3473   return type;
3474 }
3475
3476 /* Build something that the type identifier resolver will identify as
3477    being an array to an unresolved type. TYPE_WFL is a WFL on a
3478    identifier. */
3479
3480 static tree
3481 build_unresolved_array_type (tree type_or_wfl)
3482 {
3483   const char *ptr;
3484   tree wfl;
3485
3486   /* TYPE_OR_WFL might be an array on a resolved type. In this case,
3487      just create a array type */
3488   if (TREE_CODE (type_or_wfl) == RECORD_TYPE)
3489     return build_java_array_type (type_or_wfl, -1);
3490
3491   obstack_grow (&temporary_obstack,
3492                  IDENTIFIER_POINTER (EXPR_WFL_NODE (type_or_wfl)),
3493                  IDENTIFIER_LENGTH (EXPR_WFL_NODE (type_or_wfl)));
3494   obstack_grow0 (&temporary_obstack, "[]", 2);
3495   ptr = obstack_finish (&temporary_obstack);
3496 #ifdef USE_MAPPED_LOCATION
3497   wfl = build_expr_wfl (get_identifier (ptr), EXPR_LOCATION (type_or_wfl));
3498 #else
3499   wfl = build_expr_wfl (get_identifier (ptr),
3500                         EXPR_WFL_FILENAME (type_or_wfl),
3501                         EXPR_WFL_LINENO (type_or_wfl),
3502                         EXPR_WFL_COLNO (type_or_wfl));
3503 #endif
3504   /* Re-install the existing qualifications so that the type can be
3505      resolved properly. */
3506   EXPR_WFL_QUALIFICATION (wfl) = EXPR_WFL_QUALIFICATION (type_or_wfl);
3507   return wfl;
3508 }
3509
3510 static void
3511 parser_add_interface (tree class_decl, tree interface_decl, tree wfl)
3512 {
3513   if (maybe_add_interface (TREE_TYPE (class_decl), TREE_TYPE (interface_decl)))
3514     parse_error_context (wfl, "Interface %qs repeated",
3515                          IDENTIFIER_POINTER (DECL_NAME (interface_decl)));
3516 }
3517
3518 /* Bulk of common class/interface checks. Return 1 if an error was
3519    encountered. TAG is 0 for a class, 1 for an interface.  */
3520
3521 static int
3522 check_class_interface_creation (int is_interface, int flags, tree raw_name,
3523                                 tree qualified_name, tree decl, tree cl)
3524 {
3525   tree node;
3526   int sca = 0;                  /* Static class allowed */
3527   int icaf = 0;                 /* Inner class allowed flags */
3528   int uaaf = CLASS_MODIFIERS;   /* Usually allowed access flags */
3529
3530   if (!quiet_flag)
3531     fprintf (stderr, " %s%s %s",
3532              (CPC_INNER_P () ? "inner" : ""),
3533              (is_interface ? "interface" : "class"),
3534              IDENTIFIER_POINTER (qualified_name));
3535
3536   /* Scope of an interface/class type name:
3537        - Can't be imported by a single type import
3538        - Can't already exists in the package */
3539   if (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P (raw_name)
3540       && (node = find_name_in_single_imports (raw_name))
3541       && !CPC_INNER_P ())
3542     {
3543       parse_error_context
3544         (cl, "%s name %qs clashes with imported type %qs",
3545          (is_interface ? "Interface" : "Class"),
3546          IDENTIFIER_POINTER (raw_name), IDENTIFIER_POINTER (node));
3547       return 1;
3548     }
3549   if (decl && CLASS_COMPLETE_P (decl))
3550     {
3551       classitf_redefinition_error ((is_interface ? "Interface" : "Class"),
3552                                    qualified_name, decl, cl);
3553       return 1;
3554     }
3555
3556   if (check_inner_class_redefinition (raw_name, cl))
3557     return 1;
3558
3559   /* If public, file name should match class/interface name, except
3560      when dealing with an inner class */
3561   if (!CPC_INNER_P () && (flags & ACC_PUBLIC ))
3562     {
3563       const char *fname = input_filename;
3564       const char *f;
3565
3566       for (f = fname + strlen (fname);
3567            f != fname && ! IS_DIR_SEPARATOR (*f);
3568            f--)
3569         ;
3570       if (IS_DIR_SEPARATOR (*f))
3571         f++;
3572       if (strncmp (IDENTIFIER_POINTER (raw_name),
3573                    f , IDENTIFIER_LENGTH (raw_name)) ||
3574           f [IDENTIFIER_LENGTH (raw_name)] != '.')
3575         parse_error_context
3576           (cl, "Public %s %qs must be defined in a file called %<%s.java%>",
3577                              (is_interface ? "interface" : "class"),
3578                              IDENTIFIER_POINTER (qualified_name),
3579                              IDENTIFIER_POINTER (raw_name));
3580     }
3581
3582   /* Static classes can be declared only in top level classes. Note:
3583      once static, a inner class is a top level class. */
3584   if (flags & ACC_STATIC)
3585     {
3586       /* Catch the specific error of declaring an class inner class
3587          with no toplevel enclosing class. Prevent check_modifiers from
3588          complaining a second time */
3589       if (CPC_INNER_P () && !TOPLEVEL_CLASS_DECL_P (GET_CPC()))
3590         {
3591           parse_error_context (cl, "Inner class %qs can't be static. Static classes can only occur in interfaces and top-level classes",
3592                                IDENTIFIER_POINTER (qualified_name));
3593           sca = ACC_STATIC;
3594         }
3595       /* Else, in the context of a top-level class declaration, let
3596          `check_modifiers' do its job, otherwise, give it a go */
3597       else
3598         sca = (GET_CPC_LIST () ? ACC_STATIC : 0);
3599     }
3600
3601   /* Inner classes can be declared private or protected
3602      within their enclosing classes. */
3603   if (CPC_INNER_P ())
3604     {
3605       /* A class which is local to a block can't be public, private,
3606          protected or static. But it is created final, so allow this
3607          one. */
3608       if (current_function_decl)
3609         icaf = sca = uaaf = ACC_FINAL;
3610       else
3611         {
3612           check_modifiers_consistency (flags);
3613           icaf = ACC_PROTECTED;
3614           if (! CLASS_INTERFACE (GET_CPC ()))
3615             icaf |= ACC_PRIVATE;
3616         }
3617     }
3618
3619   if (is_interface)
3620     {
3621       if (CPC_INNER_P ())
3622         uaaf = INTERFACE_INNER_MODIFIERS;
3623       else
3624         uaaf = INTERFACE_MODIFIERS;
3625
3626       check_modifiers ("Illegal modifier %qs for interface declaration",
3627                        flags, uaaf);
3628     }
3629   else
3630     check_modifiers ((current_function_decl ?
3631                       "Illegal modifier %qs for local class declaration" :
3632                       "Illegal modifier %qs for class declaration"),
3633                      flags, uaaf|sca|icaf);
3634   return 0;
3635 }
3636
3637 /* Construct a nested class name.  If the final component starts with
3638    a digit, return true.  Otherwise return false.  */
3639 static int
3640 make_nested_class_name (tree cpc_list)
3641 {
3642   tree name;
3643
3644   if (!cpc_list)
3645     return 0;
3646
3647   make_nested_class_name (TREE_CHAIN (cpc_list));
3648
3649   /* Pick the qualified name when dealing with the first upmost
3650      enclosing class */
3651   name = (TREE_CHAIN (cpc_list)
3652           ? TREE_PURPOSE (cpc_list) : DECL_NAME (TREE_VALUE (cpc_list)));
3653   obstack_grow (&temporary_obstack,
3654                 IDENTIFIER_POINTER (name), IDENTIFIER_LENGTH (name));
3655   obstack_1grow (&temporary_obstack, '$');
3656
3657   return ISDIGIT (IDENTIFIER_POINTER (name)[0]);
3658 }
3659
3660 /* Can't redefine a class already defined in an earlier scope. */
3661
3662 static int
3663 check_inner_class_redefinition (tree raw_name, tree cl)
3664 {
3665   tree scope_list;
3666
3667   for (scope_list = GET_CPC_LIST (); scope_list;
3668        scope_list = GET_NEXT_ENCLOSING_CPC (scope_list))
3669     if (raw_name == GET_CPC_UN_NODE (scope_list))
3670       {
3671         parse_error_context
3672           (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",
3673            IDENTIFIER_POINTER (raw_name));
3674         return 1;
3675       }
3676   return 0;
3677 }
3678
3679 /* Tries to find a decl for CLASS_TYPE within ENCLOSING. If we fail,
3680    we remember ENCLOSING and SUPER.  */
3681
3682 static tree
3683 resolve_inner_class (htab_t circularity_hash, tree cl, tree *enclosing,
3684                      tree *super, tree class_type)
3685 {
3686   tree local_enclosing = *enclosing;
3687   tree local_super = NULL_TREE;
3688
3689   while (local_enclosing)
3690     {
3691       tree intermediate, decl;
3692
3693       *htab_find_slot (circularity_hash, local_enclosing, INSERT) =
3694         local_enclosing;
3695
3696       if ((decl = find_as_inner_class (local_enclosing, class_type, cl)))
3697         return decl;
3698
3699       intermediate = local_enclosing;
3700       /* Explore enclosing contexts. */
3701       while (INNER_CLASS_DECL_P (intermediate))
3702         {
3703           intermediate = DECL_CONTEXT (intermediate);
3704           if ((decl = find_as_inner_class (intermediate, class_type, cl)))
3705             return decl;
3706         }
3707
3708       /* Now go to the upper classes, bail out if necessary.  We will
3709          analyze the returned SUPER and act accordingly (see
3710          do_resolve_class).  */
3711       if (JPRIMITIVE_TYPE_P (TREE_TYPE (local_enclosing))
3712           || TREE_TYPE (local_enclosing) == void_type_node)
3713         {
3714           parse_error_context (cl, "Qualifier must be a reference");
3715           local_enclosing = NULL_TREE;
3716           break;
3717         }
3718       local_super = CLASSTYPE_SUPER (TREE_TYPE (local_enclosing));
3719       if (!local_super || local_super == object_type_node)
3720         break;
3721
3722       if (TREE_CODE (local_super) == POINTER_TYPE)
3723         local_super = do_resolve_class (NULL, local_super, NULL, NULL);
3724       else
3725         local_super = TYPE_NAME (local_super);
3726
3727       /* We may not have checked for circular inheritance yet, so do so
3728          here to prevent an infinite loop. */
3729       if (htab_find (circularity_hash, local_super) != NULL)
3730         {
3731           if (!cl)
3732             cl = lookup_cl (local_enclosing);
3733
3734           parse_error_context
3735             (cl, "Cyclic inheritance involving %s",
3736              IDENTIFIER_POINTER (DECL_NAME (local_enclosing)));
3737           local_enclosing = NULL_TREE;
3738         }
3739       else
3740         local_enclosing = local_super;
3741     }
3742
3743   /* We failed. Return LOCAL_SUPER and LOCAL_ENCLOSING. */
3744   *super = local_super;
3745   *enclosing = local_enclosing;
3746
3747   return NULL_TREE;
3748 }
3749
3750 /* Within ENCLOSING, find a decl for NAME and return it. NAME can be
3751    qualified. */
3752
3753 static tree
3754 find_as_inner_class (tree enclosing, tree name, tree cl)
3755 {
3756   tree qual, to_return;
3757   if (!enclosing)
3758     return NULL_TREE;
3759
3760   name = TYPE_NAME (name);
3761
3762   /* First search: within the scope of `enclosing', search for name */
3763   if (QUALIFIED_P (name) && cl && EXPR_WFL_NODE (cl) == name)
3764     qual = EXPR_WFL_QUALIFICATION (cl);
3765   else if (cl)
3766     qual = build_tree_list (cl, NULL_TREE);
3767   else
3768     qual = build_tree_list (build_unknown_wfl (name), NULL_TREE);
3769
3770   if ((to_return = find_as_inner_class_do (qual, enclosing)))
3771     return to_return;
3772
3773   /* We're dealing with a qualified name. Try to resolve thing until
3774      we get something that is an enclosing class. */
3775   if (QUALIFIED_P (name) && cl && EXPR_WFL_NODE (cl) == name)
3776     {
3777       tree acc = NULL_TREE, decl = NULL_TREE, ptr;
3778
3779       for (qual = EXPR_WFL_QUALIFICATION (cl); qual && !decl;
3780            qual = TREE_CHAIN (qual))
3781         {
3782           acc = merge_qualified_name (acc,
3783                                       EXPR_WFL_NODE (TREE_PURPOSE (qual)));
3784           BUILD_PTR_FROM_NAME (ptr, acc);
3785           decl = do_resolve_class (NULL_TREE, ptr, NULL_TREE, cl);
3786         }
3787
3788       /* A NULL qual and a decl means that the search ended
3789          successfully?!? We have to do something then. FIXME */
3790
3791       if (decl)
3792         enclosing = decl;
3793       else
3794         qual = EXPR_WFL_QUALIFICATION (cl);
3795     }
3796   /* Otherwise, create a qual for the other part of the resolution. */
3797   else
3798     qual = build_tree_list (build_unknown_wfl (name), NULL_TREE);
3799
3800   return find_as_inner_class_do (qual, enclosing);
3801 }
3802
3803 /* We go inside the list of sub classes and try to find a way
3804    through. */
3805
3806 static tree
3807 find_as_inner_class_do (tree qual, tree enclosing)
3808 {
3809   if (!qual)
3810     return NULL_TREE;
3811
3812   for (; qual && enclosing; qual = TREE_CHAIN (qual))
3813     {
3814       tree name_to_match = EXPR_WFL_NODE (TREE_PURPOSE (qual));
3815       tree next_enclosing = NULL_TREE;
3816       tree inner_list;
3817
3818       for (inner_list = DECL_INNER_CLASS_LIST (enclosing);
3819            inner_list; inner_list = TREE_CHAIN (inner_list))
3820         {
3821           if (TREE_VALUE (inner_list) == name_to_match)
3822             {
3823               next_enclosing = TREE_PURPOSE (inner_list);
3824               break;
3825             }
3826         }
3827       enclosing = next_enclosing;
3828     }
3829
3830   return (!qual && enclosing ? enclosing : NULL_TREE);
3831 }
3832
3833 static void
3834 link_nested_class_to_enclosing (void)
3835 {
3836   if (GET_ENCLOSING_CPC ())
3837     {
3838       tree enclosing = GET_ENCLOSING_CPC_CONTEXT ();
3839       DECL_INNER_CLASS_LIST (enclosing) =
3840         tree_cons (GET_CPC (), GET_CPC_UN (),
3841                    DECL_INNER_CLASS_LIST (enclosing));
3842     }
3843 }
3844
3845 static tree
3846 maybe_make_nested_class_name (tree name)
3847 {
3848   tree id = NULL_TREE;
3849
3850   if (CPC_INNER_P ())
3851     {
3852       /* If we're in a function, we must append a number to create the
3853          nested class name.  However, we don't do this if the class we
3854          are constructing is anonymous, because in that case we'll
3855          already have a number as the class name.  */
3856       if (! make_nested_class_name (GET_CPC_LIST ())
3857           && current_function_decl != NULL_TREE
3858           && ! ISDIGIT (IDENTIFIER_POINTER (name)[0]))
3859         {
3860           char buf[10];
3861           sprintf (buf, "%d", anonymous_class_counter);
3862           ++anonymous_class_counter;
3863           obstack_grow (&temporary_obstack, buf, strlen (buf));
3864           obstack_1grow (&temporary_obstack, '$');
3865         }
3866       obstack_grow0 (&temporary_obstack,
3867                      IDENTIFIER_POINTER (name),
3868                      IDENTIFIER_LENGTH (name));
3869       id = get_identifier (obstack_finish (&temporary_obstack));
3870       if (ctxp->package)
3871         QUALIFIED_P (id) = 1;
3872     }
3873   return id;
3874 }
3875
3876 /* If DECL is NULL, create and push a new DECL, record the current
3877    line CL and do other maintenance things.  */
3878
3879 static tree
3880 maybe_create_class_interface_decl (tree decl, tree raw_name,
3881                                    tree qualified_name, tree cl)
3882 {
3883   if (!decl)
3884     decl = push_class (make_class (), qualified_name);
3885
3886   /* Take care of the file and line business */
3887 #ifdef USE_MAPPED_LOCATION
3888   DECL_SOURCE_LOCATION (decl) = EXPR_LOCATION (cl);
3889 #else
3890   DECL_SOURCE_FILE (decl) = EXPR_WFL_FILENAME (cl);
3891   /* If we're emitting xrefs, store the line/col number information */
3892   if (flag_emit_xref)
3893     DECL_SOURCE_LINE (decl) = EXPR_WFL_LINECOL (cl);
3894   else
3895     DECL_SOURCE_LINE (decl) = EXPR_WFL_LINENO (cl);
3896 #endif
3897   CLASS_FROM_SOURCE_P (TREE_TYPE (decl)) = 1;
3898   CLASS_PARSED_P (TREE_TYPE (decl)) = 1;
3899 #ifdef USE_MAPPED_LOCATION
3900   {
3901     tree tmp = maybe_get_identifier (EXPR_FILENAME (cl));
3902     CLASS_FROM_CURRENTLY_COMPILED_P (TREE_TYPE (decl)) =
3903       tmp && IS_A_COMMAND_LINE_FILENAME_P (tmp);
3904   }
3905 #else
3906   CLASS_FROM_CURRENTLY_COMPILED_P (TREE_TYPE (decl)) =
3907     IS_A_COMMAND_LINE_FILENAME_P (EXPR_WFL_FILENAME_NODE (cl));
3908 #endif
3909
3910   PUSH_CPC (decl, raw_name);
3911   DECL_CONTEXT (decl) = GET_ENCLOSING_CPC_CONTEXT ();
3912
3913   /* Link the declaration to the already seen ones */
3914   TREE_CHAIN (decl) = ctxp->class_list;
3915   ctxp->class_list = decl;
3916
3917   /* Create a new nodes in the global lists */
3918   gclass_list = tree_cons (NULL_TREE, decl, gclass_list);
3919   all_class_list = tree_cons (NULL_TREE, decl, all_class_list);
3920
3921   /* Install a new dependency list element */
3922   create_jdep_list (ctxp);
3923
3924   SOURCE_FRONTEND_DEBUG (("Defining class/interface %s",
3925                           IDENTIFIER_POINTER (qualified_name)));
3926   return decl;
3927 }
3928
3929 static void
3930 add_superinterfaces (tree decl, tree interface_list)
3931 {
3932   tree node;
3933   /* Superinterface(s): if present and defined, parser_check_super_interface ()
3934      takes care of ensuring that:
3935        - This is an accessible interface type,
3936        - Circularity detection.
3937    parser_add_interface is then called. If present but not defined,
3938    the check operation is delayed until the super interface gets
3939    defined.  */
3940   for (node = interface_list; node; node = TREE_CHAIN (node))
3941     {
3942       tree current = TREE_PURPOSE (node);
3943       tree idecl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (current));
3944       if (idecl && CLASS_LOADED_P (TREE_TYPE (idecl)))
3945         {
3946           if (!parser_check_super_interface (idecl, decl, current))
3947             parser_add_interface (decl, idecl, current);
3948         }
3949       else
3950         register_incomplete_type (JDEP_INTERFACE,
3951                                   current, decl, NULL_TREE);
3952     }
3953 }
3954
3955 /* Create an interface in pass1 and return its decl. Return the
3956    interface's decl in pass 2.  */
3957
3958 static tree
3959 create_interface (int flags, tree id, tree super)
3960 {
3961   tree raw_name = EXPR_WFL_NODE (id);
3962   tree q_name = parser_qualified_classname (raw_name);
3963   tree decl = IDENTIFIER_CLASS_VALUE (q_name);
3964
3965   /* Certain syntax errors are making SUPER be like ID. Avoid this
3966      case. */
3967   if (ctxp->class_err && id == super)
3968     super = NULL;
3969
3970   EXPR_WFL_NODE (id) = q_name;  /* Keep source location, even if refined. */
3971
3972   /* Basic checks: scope, redefinition, modifiers */
3973   if (check_class_interface_creation (1, flags, raw_name, q_name, decl, id))
3974     {
3975       PUSH_ERROR ();
3976       return NULL_TREE;
3977     }
3978
3979   /* Suspend the current parsing context if we're parsing an inner
3980      interface */
3981   if (CPC_INNER_P ())
3982     {
3983       java_parser_context_suspend ();
3984       /* Interface members are public. */
3985       if (CLASS_INTERFACE (GET_CPC ()))
3986         flags |= ACC_PUBLIC;
3987     }
3988
3989   /* Push a new context for (static) initialized upon declaration fields */
3990   java_parser_context_push_initialized_field ();
3991
3992   /* Interface modifiers check
3993        - public/abstract allowed (already done at that point)
3994        - abstract is obsolete (comes first, it's a warning, or should be)
3995        - Can't use twice the same (checked in the modifier rule) */
3996   if ((flags & ACC_ABSTRACT) && flag_redundant)
3997     parse_warning_context
3998       (MODIFIER_WFL (ABSTRACT_TK),
3999        "Redundant use of %<abstract%> modifier. Interface %qs is implicitly abstract", IDENTIFIER_POINTER (raw_name));
4000
4001   /* Create a new decl if DECL is NULL, otherwise fix it */
4002   decl = maybe_create_class_interface_decl (decl, raw_name, q_name, id);
4003
4004   /* Interfaces are always abstract. */
4005   flags |= ACC_ABSTRACT;
4006
4007   /* Inner interfaces are always static.  */
4008   if (INNER_CLASS_DECL_P (decl))
4009     flags |= ACC_STATIC;
4010
4011   /* Set super info and mark the class a complete */
4012   set_super_info (ACC_INTERFACE | flags, TREE_TYPE (decl),
4013                   object_type_node, ctxp->interface_number);
4014   ctxp->interface_number = 0;
4015   CLASS_COMPLETE_P (decl) = 1;
4016   add_superinterfaces (decl, super);
4017
4018   /* Eventually sets the @deprecated tag flag */
4019   CHECK_DEPRECATED (decl);
4020
4021   return decl;
4022 }
4023
4024 /* Patch anonymous class CLASS, by either extending or implementing
4025    DEP.  */
4026
4027 static void
4028 patch_anonymous_class (tree type_decl, tree class_decl, tree wfl)
4029 {
4030   tree class = TREE_TYPE (class_decl);
4031   tree type =  TREE_TYPE (type_decl);
4032   tree binfo = TYPE_BINFO (class);
4033
4034   /* If it's an interface, implement it */
4035   if (CLASS_INTERFACE (type_decl))
4036     {
4037       if (parser_check_super_interface (type_decl, class_decl, wfl))
4038         return;
4039
4040       if (!VEC_space (tree, BINFO_BASE_BINFOS (binfo), 1))
4041         {
4042            /* Extend the binfo - by reallocating and copying it. */
4043           tree new_binfo;
4044           tree base_binfo;
4045           int i;
4046           
4047           new_binfo = make_tree_binfo ((BINFO_N_BASE_BINFOS (binfo) + 1) * 2);
4048           for (i = 0; BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
4049             BINFO_BASE_APPEND (new_binfo, base_binfo);
4050           CLASS_HAS_SUPER_FLAG (new_binfo) = CLASS_HAS_SUPER_FLAG (binfo);
4051           BINFO_VTABLE (new_binfo) = BINFO_VTABLE (binfo);
4052           TYPE_BINFO (class) = new_binfo;
4053         }
4054       
4055       /* And add the interface */
4056       parser_add_interface (class_decl, type_decl, wfl);
4057     }
4058   /* Otherwise, it's a type we want to extend */
4059   else
4060     {
4061       if (parser_check_super (type_decl, class_decl, wfl))
4062         return;
4063       BINFO_TYPE (BINFO_BASE_BINFO (binfo, 0)) = type;
4064     }
4065 }
4066
4067 /* Create an anonymous class which extends/implements TYPE_NAME, and return
4068    its decl.  */
4069
4070 static tree
4071 create_anonymous_class (tree type_name)
4072 {
4073   char buffer [80];
4074   tree super = NULL_TREE, itf = NULL_TREE;
4075   tree id, type_decl, class;
4076
4077   /* The unqualified name of the anonymous class. It's just a number. */
4078   sprintf (buffer, "%d", anonymous_class_counter++);
4079   id = build_wfl_node (get_identifier (buffer));
4080   EXPR_WFL_LINECOL (id) = EXPR_WFL_LINECOL (type_name);
4081
4082   /* We know about the type to extend/implement. We go ahead */
4083   if ((type_decl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (type_name))))
4084     {
4085       /* Create a class which either implements on extends the designated
4086          class. The class bears an inaccessible name. */
4087       if (CLASS_INTERFACE (type_decl))
4088         {
4089           /* It's OK to modify it here. It's been already used and
4090              shouldn't be reused */
4091           ctxp->interface_number = 1;
4092           /* Interfaces should presented as a list of WFLs */
4093           itf = build_tree_list (type_name, NULL_TREE);
4094         }
4095       else
4096         super = type_name;
4097     }
4098
4099   class = create_class (ACC_FINAL, id, super, itf);
4100
4101   /* We didn't know anything about the stuff. We register a dependence. */
4102   if (!type_decl)
4103     register_incomplete_type (JDEP_ANONYMOUS, type_name, class, NULL_TREE);
4104
4105   ANONYMOUS_CLASS_P (TREE_TYPE (class)) = 1;
4106   return class;
4107 }
4108
4109 /* Create a class in pass1 and return its decl. Return class
4110    interface's decl in pass 2.  */
4111
4112 static tree
4113 create_class (int flags, tree id, tree super, tree interfaces)
4114 {
4115   tree raw_name = EXPR_WFL_NODE (id);
4116   tree class_id, decl;
4117   tree super_decl_type;
4118
4119   /* Certain syntax errors are making SUPER be like ID. Avoid this
4120      case. */
4121   if (ctxp->class_err && id == super)
4122     super = NULL;
4123
4124   class_id = parser_qualified_classname (raw_name);
4125   decl = IDENTIFIER_CLASS_VALUE (class_id);
4126   EXPR_WFL_NODE (id) = class_id;
4127
4128   /* Basic check: scope, redefinition, modifiers */
4129   if (check_class_interface_creation (0, flags, raw_name, class_id, decl, id))
4130     {
4131       PUSH_ERROR ();
4132       return NULL_TREE;
4133     }
4134
4135   /* Suspend the current parsing context if we're parsing an inner
4136      class or an anonymous class. */
4137   if (CPC_INNER_P ())
4138     {
4139       java_parser_context_suspend ();
4140       /* Interface members are public. */
4141       if (CLASS_INTERFACE (GET_CPC ()))
4142         flags |= ACC_PUBLIC;
4143     }
4144
4145   /* Push a new context for (static) initialized upon declaration fields */
4146   java_parser_context_push_initialized_field ();
4147
4148   /* Class modifier check:
4149        - Allowed modifier (already done at that point)
4150        - abstract AND final forbidden
4151        - Public classes defined in the correct file */
4152   if ((flags & ACC_ABSTRACT) && (flags & ACC_FINAL))
4153     parse_error_context
4154       (id, "Class %qs can't be declared both abstract and final",
4155        IDENTIFIER_POINTER (raw_name));
4156
4157   /* Create a new decl if DECL is NULL, otherwise fix it */
4158   decl = maybe_create_class_interface_decl (decl, raw_name, class_id, id);
4159
4160   /* If SUPER exists, use it, otherwise use Object */
4161   if (super)
4162     {
4163       /* java.lang.Object can't extend anything.  */
4164       if (TREE_TYPE (IDENTIFIER_CLASS_VALUE (class_id)) == object_type_node)
4165         {
4166           parse_error_context (id, "%<java.lang.Object%> can't extend anything");
4167           return NULL_TREE;
4168         }
4169
4170       super_decl_type =
4171         register_incomplete_type (JDEP_SUPER, super, decl, NULL_TREE);
4172     }
4173   else if (TREE_TYPE (decl) != object_type_node)
4174     super_decl_type = object_type_node;
4175   /* We're defining java.lang.Object */
4176   else
4177     super_decl_type = NULL_TREE;
4178
4179   /* A class nested in an interface is implicitly static. */
4180   if (INNER_CLASS_DECL_P (decl)
4181       && CLASS_INTERFACE (TYPE_NAME (TREE_TYPE (DECL_CONTEXT (decl)))))
4182     {
4183       flags |= ACC_STATIC;
4184     }
4185
4186   /* Set super info and mark the class as complete. */
4187   set_super_info (flags, TREE_TYPE (decl), super_decl_type,
4188                   ctxp->interface_number);
4189   ctxp->interface_number = 0;
4190   CLASS_COMPLETE_P (decl) = 1;
4191   add_superinterfaces (decl, interfaces);
4192
4193   /* TYPE_VFIELD' is a compiler-generated field used to point to
4194      virtual function tables.  In gcj, every class has a common base
4195      virtual function table in java.lang.object.  */
4196   TYPE_VFIELD (TREE_TYPE (decl)) = TYPE_VFIELD (object_type_node);
4197
4198   /* Add the private this$<n> field, Replicate final locals still in
4199      scope as private final fields mangled like val$<local_name>.
4200      This does not occur for top level (static) inner classes. */
4201   if (PURE_INNER_CLASS_DECL_P (decl))
4202     add_inner_class_fields (decl, current_function_decl);
4203
4204   /* If doing xref, store the location at which the inherited class
4205      (if any) was seen. */
4206   if (flag_emit_xref && super)
4207     DECL_INHERITED_SOURCE_LINE (decl) = EXPR_WFL_LINECOL (super);
4208
4209   /* Eventually sets the @deprecated tag flag */
4210   CHECK_DEPRECATED (decl);
4211
4212   /* Reset the anonymous class counter when declaring non inner classes */
4213   if (!INNER_CLASS_DECL_P (decl))
4214     anonymous_class_counter = 1;
4215
4216   return decl;
4217 }
4218
4219 /* End a class declaration: register the statements used to create
4220    finit$ and <clinit>, pop the current class and resume the prior
4221    parser context if necessary.  */
4222
4223 static void
4224 end_class_declaration (int resume)
4225 {
4226   /* If an error occurred, context weren't pushed and won't need to be
4227      popped by a resume. */
4228   int no_error_occurred = ctxp->next && GET_CPC () != error_mark_node;
4229
4230   if (GET_CPC () != error_mark_node)
4231     dump_java_tree (TDI_class, GET_CPC ());
4232
4233   java_parser_context_pop_initialized_field ();
4234   POP_CPC ();
4235   if (resume && no_error_occurred)
4236     java_parser_context_resume ();
4237
4238   /* We're ending a class declaration, this is a good time to reset
4239      the interface cout. Note that might have been already done in
4240      create_interface, but if at that time an inner class was being
4241      dealt with, the interface count was reset in a context created
4242      for the sake of handling inner classes declaration. */
4243   ctxp->interface_number = 0;
4244 }
4245
4246 static void
4247 add_inner_class_fields (tree class_decl, tree fct_decl)
4248 {
4249   tree block, marker, f;
4250
4251   f = add_field (TREE_TYPE (class_decl),
4252                  build_current_thisn (TREE_TYPE (class_decl)),
4253                  build_pointer_type (TREE_TYPE (DECL_CONTEXT (class_decl))),
4254                  ACC_PRIVATE);
4255   FIELD_THISN (f) = 1;
4256
4257   if (!fct_decl)
4258     return;
4259
4260   for (block = GET_CURRENT_BLOCK (fct_decl);
4261        block && TREE_CODE (block) == BLOCK; block = BLOCK_SUPERCONTEXT (block))
4262     {
4263       tree decl;
4264       for (decl = BLOCK_EXPR_DECLS (block); decl; decl = TREE_CHAIN (decl))
4265         {
4266           tree name, pname;
4267           tree wfl, init, list;
4268
4269           /* Avoid non final arguments. */
4270           if (!LOCAL_FINAL_P (decl))
4271             continue;
4272
4273           MANGLE_OUTER_LOCAL_VARIABLE_NAME (name, DECL_NAME (decl));
4274           MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID (pname, DECL_NAME (decl));
4275           wfl = build_wfl_node (name);
4276           init = build_wfl_node (pname);
4277           /* Build an initialization for the field: it will be
4278              initialized by a parameter added to finit$, bearing a
4279              mangled name of the field itself (param$<n>.) The
4280              parameter is provided to finit$ by the constructor
4281              invoking it (hence the constructor will also feature a
4282              hidden parameter, set to the value of the outer context
4283              local at the time the inner class is created.)
4284
4285              Note: we take into account all possible locals that can
4286              be accessed by the inner class. It's actually not trivial
4287              to minimize these aliases down to the ones really
4288              used. One way to do that would be to expand all regular
4289              methods first, then finit$ to get a picture of what's
4290              used.  It works with the exception that we would have to
4291              go back on all constructor invoked in regular methods to
4292              have their invocation reworked (to include the right amount
4293              of alias initializer parameters.)
4294
4295              The only real way around, I think, is a first pass to
4296              identify locals really used in the inner class. We leave
4297              the flag FIELD_LOCAL_ALIAS_USED around for that future
4298              use.
4299
4300              On the other hand, it only affect local inner classes,
4301              whose constructors (and finit$ call) will be featuring
4302              unnecessary arguments. It's easy for a developer to keep
4303              this number of parameter down by using the `final'
4304              keyword only when necessary. For the time being, we can
4305              issue a warning on unnecessary finals. FIXME */
4306           init = build_assignment (ASSIGN_TK, EXPR_WFL_LINECOL (wfl),
4307                                    wfl, init);
4308
4309           /* Register the field. The TREE_LIST holding the part
4310              initialized/initializer will be marked ARG_FINAL_P so
4311              that the created field can be marked
4312              FIELD_LOCAL_ALIAS. */
4313           list = build_tree_list (wfl, init);
4314           ARG_FINAL_P (list) = 1;
4315           register_fields (ACC_PRIVATE | ACC_FINAL, TREE_TYPE (decl), list);
4316         }
4317     }
4318
4319   if (!CPC_INITIALIZER_STMT (ctxp))
4320     return;
4321
4322   /* If we ever registered an alias field, insert and marker to
4323      remember where the list ends. The second part of the list (the one
4324      featuring initialized fields) so it can be later reversed to
4325      enforce 8.5. The marker will be removed during that operation. */
4326   marker = build_tree_list (NULL_TREE, NULL_TREE);
4327   TREE_CHAIN (marker) = CPC_INITIALIZER_STMT (ctxp);
4328   SET_CPC_INITIALIZER_STMT (ctxp, marker);
4329 }
4330
4331 /* Can't use lookup_field () since we don't want to load the class and
4332    can't set the CLASS_LOADED_P flag */
4333
4334 static tree
4335 find_field (tree class, tree name)
4336 {
4337   tree decl;
4338   for (decl = TYPE_FIELDS (class); decl; decl = TREE_CHAIN (decl))
4339     {
4340       if (DECL_NAME (decl) == name)
4341         return decl;
4342     }
4343   return NULL_TREE;
4344 }
4345
4346 /* Wrap around lookup_field that doesn't potentially upset the value
4347    of CLASS */
4348
4349 static tree
4350 lookup_field_wrapper (tree class, tree name)
4351 {
4352   tree type = class;
4353   tree decl = NULL_TREE;
4354   java_parser_context_save_global ();
4355
4356   /* Last chance: if we're within the context of an inner class, we
4357      might be trying to access a local variable defined in an outer
4358      context. We try to look for it now. */
4359   if (INNER_CLASS_TYPE_P (class) && TREE_CODE (name) == IDENTIFIER_NODE)
4360     {
4361       tree new_name;
4362       MANGLE_OUTER_LOCAL_VARIABLE_NAME (new_name, name);
4363       decl = lookup_field (&type, new_name);
4364       if (decl && decl != error_mark_node)
4365         FIELD_LOCAL_ALIAS_USED (decl) = 1;
4366     }
4367   if (!decl || decl == error_mark_node)
4368     {
4369       type = class;
4370       decl = lookup_field (&type, name);
4371     }
4372
4373   /* If the field still hasn't been found, try the next enclosing context. */
4374   if (!decl && INNER_CLASS_TYPE_P (class))
4375     {
4376       tree outer_type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class)));
4377       decl = lookup_field_wrapper (outer_type, name);
4378     }
4379
4380   java_parser_context_restore_global ();
4381   return decl == error_mark_node ? NULL : decl;
4382 }
4383
4384 /* Find duplicate field within the same class declarations and report
4385    the error. Returns 1 if a duplicated field was found, 0
4386    otherwise.  */
4387
4388 static int
4389 duplicate_declaration_error_p (tree new_field_name, tree new_type, tree cl)
4390 {
4391   /* This might be modified to work with method decl as well */
4392   tree decl = find_field (TREE_TYPE (GET_CPC ()), new_field_name);
4393   if (decl)
4394     {
4395       char *t1 = xstrdup (purify_type_name
4396                          ((TREE_CODE (new_type) == POINTER_TYPE
4397                            && TREE_TYPE (new_type) == NULL_TREE) ?
4398                           IDENTIFIER_POINTER (TYPE_NAME (new_type)) :
4399                           lang_printable_name (new_type, 1)));
4400       /* The type may not have been completed by the time we report
4401          the error */
4402       char *t2 = xstrdup (purify_type_name
4403                          ((TREE_CODE (TREE_TYPE (decl)) == POINTER_TYPE
4404                            && TREE_TYPE (TREE_TYPE (decl)) == NULL_TREE) ?
4405                           IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE (decl))) :
4406                           lang_printable_name (TREE_TYPE (decl), 1)));
4407       parse_error_context
4408         (cl, "Duplicate variable declaration: %<%s %s%> was %<%s %s%> (%s:%d)",
4409          t1, IDENTIFIER_POINTER (new_field_name),
4410          t2, IDENTIFIER_POINTER (DECL_NAME (decl)),
4411          DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
4412       free (t1);
4413       free (t2);
4414       return 1;
4415     }
4416   return 0;
4417 }
4418
4419 /* Field registration routine. If TYPE doesn't exist, field
4420    declarations are linked to the undefined TYPE dependency list, to
4421    be later resolved in java_complete_class () */
4422
4423 static void
4424 register_fields (int flags, tree type, tree variable_list)
4425 {
4426   tree current, saved_type;
4427   tree class_type = NULL_TREE;
4428   location_t saved_location = input_location;
4429   int must_chain = 0;
4430   tree wfl = NULL_TREE;
4431
4432   if (GET_CPC ())
4433     class_type = TREE_TYPE (GET_CPC ());
4434
4435   if (!class_type || class_type == error_mark_node)
4436     return;
4437
4438   /* If we're adding fields to interfaces, those fields are public,
4439      static, final */
4440   if (CLASS_INTERFACE (TYPE_NAME (class_type)))
4441     {
4442       OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (PUBLIC_TK),
4443                                  flags, ACC_PUBLIC, "interface field(s)");
4444       OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (STATIC_TK),
4445                                  flags, ACC_STATIC, "interface field(s)");
4446       OBSOLETE_MODIFIER_WARNING (MODIFIER_WFL (FINAL_TK),
4447                                  flags, ACC_FINAL, "interface field(s)");
4448       check_modifiers ("Illegal interface member modifier %qs", flags,
4449                        INTERFACE_FIELD_MODIFIERS);
4450       flags |= (ACC_PUBLIC | ACC_STATIC | ACC_FINAL);
4451     }
4452
4453   /* Obtain a suitable type for resolution, if necessary */
4454   SET_TYPE_FOR_RESOLUTION (type, wfl, must_chain);
4455
4456   /* If TYPE is fully resolved and we don't have a reference, make one */
4457   PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4458
4459   for (current = variable_list, saved_type = type; current;
4460        current = TREE_CHAIN (current), type = saved_type)
4461     {
4462       tree real_type;
4463       tree field_decl;
4464       tree cl = TREE_PURPOSE (current);
4465       tree init = TREE_VALUE (current);
4466       tree current_name = EXPR_WFL_NODE (cl);
4467
4468       /* Can't declare non-final static fields in inner classes */
4469       if ((flags & ACC_STATIC) && !TOPLEVEL_CLASS_TYPE_P (class_type)
4470           && !(flags & ACC_FINAL))
4471         parse_error_context
4472           (cl, "Field %qs can't be static in inner class %qs unless it is final",
4473            IDENTIFIER_POINTER (EXPR_WFL_NODE (cl)),
4474            lang_printable_name (class_type, 0));
4475
4476       /* Process NAME, as it may specify extra dimension(s) for it */
4477       type = build_array_from_name (type, wfl, current_name, &current_name);
4478
4479       /* Type adjustment. We may have just readjusted TYPE because
4480          the variable specified more dimensions. Make sure we have
4481          a reference if we can and don't have one already. Also
4482          change the name if we have an init. */
4483       if (type != saved_type)
4484         {
4485           PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4486           if (init)
4487             EXPR_WFL_NODE (TREE_OPERAND (init, 0)) = current_name;
4488         }
4489
4490       real_type = GET_REAL_TYPE (type);
4491       /* Check for redeclarations */
4492       if (duplicate_declaration_error_p (current_name, real_type, cl))
4493         continue;
4494
4495       /* Set input_line to the line the field was found and create a
4496          declaration for it. Eventually sets the @deprecated tag flag. */
4497 #ifdef USE_MAPPED_LOCATION
4498       input_location = EXPR_LOCATION (cl);
4499 #else
4500       if (flag_emit_xref)
4501         input_line = EXPR_WFL_LINECOL (cl);
4502       else
4503         input_line = EXPR_WFL_LINENO (cl);
4504 #endif
4505       field_decl = add_field (class_type, current_name, real_type, flags);
4506       CHECK_DEPRECATED_NO_RESET (field_decl);
4507
4508       /* If the field denotes a final instance variable, then we
4509          allocate a LANG_DECL_SPECIFIC part to keep track of its
4510          initialization. We also mark whether the field was
4511          initialized upon its declaration. We don't do that if the
4512          created field is an alias to a final local. */
4513       if (!ARG_FINAL_P (current) && (flags & ACC_FINAL))
4514         {
4515           MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (field_decl);
4516           DECL_FIELD_FINAL_WFL (field_decl) = cl;
4517         }
4518
4519       /* If the couple initializer/initialized is marked ARG_FINAL_P,
4520          we mark the created field FIELD_LOCAL_ALIAS, so that we can
4521          hide parameters to this inner class finit$ and
4522          constructors. It also means that the field isn't final per
4523          say. */
4524       if (ARG_FINAL_P (current))
4525         {
4526           FIELD_LOCAL_ALIAS (field_decl) = 1;
4527           FIELD_FINAL (field_decl) = 0;
4528         }
4529
4530       /* Check if we must chain. */
4531       if (must_chain)
4532         register_incomplete_type (JDEP_FIELD, wfl, field_decl, type);
4533
4534       /* If we have an initialization value tied to the field */
4535       if (init)
4536         {
4537           /* The field is declared static */
4538           if (flags & ACC_STATIC)
4539             {
4540               /* We include the field and its initialization part into
4541                  a list used to generate <clinit>. After <clinit> is
4542                  walked, field initializations will be processed and
4543                  fields initialized with known constants will be taken
4544                  out of <clinit> and have their DECL_INITIAL set
4545                  appropriately. */
4546               TREE_CHAIN (init) = CPC_STATIC_INITIALIZER_STMT (ctxp);
4547               SET_CPC_STATIC_INITIALIZER_STMT (ctxp, init);
4548               if (TREE_OPERAND (init, 1)
4549                   && TREE_CODE (TREE_OPERAND (init, 1)) == NEW_ARRAY_INIT)
4550                 TREE_STATIC (TREE_OPERAND (init, 1)) = 1;
4551             }
4552           /* A non-static field declared with an immediate initialization is
4553              to be initialized in <init>, if any.  This field is remembered
4554              to be processed at the time of the generation of <init>. */
4555           else
4556             {
4557               TREE_CHAIN (init) = CPC_INITIALIZER_STMT (ctxp);
4558               SET_CPC_INITIALIZER_STMT (ctxp, init);
4559             }
4560           MODIFY_EXPR_FROM_INITIALIZATION_P (init) = 1;
4561           DECL_INITIAL (field_decl) = TREE_OPERAND (init, 1);
4562         }
4563     }
4564
4565   CLEAR_DEPRECATED;
4566   input_location = saved_location;
4567 }
4568
4569 /* Generate finit$, using the list of initialized fields to populate
4570    its body. finit$'s parameter(s) list is adjusted to include the
4571    one(s) used to initialized the field(s) caching outer context
4572    local(s).  */
4573
4574 static tree
4575 generate_finit (tree class_type)
4576 {
4577   int count = 0;
4578   tree list = TYPE_FINIT_STMT_LIST (class_type);
4579   tree mdecl, current, parms;
4580
4581   parms = build_alias_initializer_parameter_list (AIPL_FUNCTION_CREATION,
4582                                                   class_type, NULL_TREE,
4583                                                   &count);
4584   CRAFTED_PARAM_LIST_FIXUP (parms);
4585   mdecl = create_artificial_method (class_type, ACC_PRIVATE, void_type_node,
4586                                     finit_identifier_node, parms);
4587   fix_method_argument_names (parms, mdecl);
4588   layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
4589                        mdecl, NULL_TREE);
4590   DECL_FUNCTION_NAP (mdecl) = count;
4591   start_artificial_method_body (mdecl);
4592
4593   for (current = list; current; current = TREE_CHAIN (current))
4594     java_method_add_stmt (mdecl,
4595                           build_debugable_stmt (EXPR_WFL_LINECOL (current),
4596                                                 current));
4597   end_artificial_method_body (mdecl);
4598   return mdecl;
4599 }
4600
4601 /* Generate a function to run the instance initialization code. The
4602    private method is called `instinit$'. Unless we're dealing with an
4603    anonymous class, we determine whether all ctors of CLASS_TYPE
4604    declare a checked exception in their `throws' clause in order to
4605    see whether it's necessary to encapsulate the instance initializer
4606    statements in a try/catch/rethrow sequence.  */
4607
4608 static tree
4609 generate_instinit (tree class_type)
4610 {
4611   tree current;
4612   tree compound = NULL_TREE;
4613   tree parms = tree_cons (this_identifier_node,
4614                           build_pointer_type (class_type), end_params_node);
4615   tree mdecl = create_artificial_method (class_type, ACC_PRIVATE,
4616                                          void_type_node,
4617                                          instinit_identifier_node, parms);
4618
4619   layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
4620                        mdecl, NULL_TREE);
4621
4622   /* Gather all the statements in a compound */
4623   for (current = TYPE_II_STMT_LIST (class_type);
4624        current; current = TREE_CHAIN (current))
4625     compound = add_stmt_to_compound (compound, NULL_TREE, current);
4626
4627   /* We need to encapsulate COMPOUND by a try/catch statement to
4628      rethrow exceptions that might occur in the instance initializer.
4629      We do that only if all ctors of CLASS_TYPE are set to catch a
4630      checked exception. This doesn't apply to anonymous classes (since
4631      they don't have declared ctors.) */
4632   if (!ANONYMOUS_CLASS_P (class_type) &&
4633       ctors_unchecked_throws_clause_p (class_type))
4634     {
4635       compound = encapsulate_with_try_catch (0, exception_type_node, compound,
4636                                              build1 (THROW_EXPR, NULL_TREE,
4637                                                      build_wfl_node (wpv_id)));
4638       DECL_FUNCTION_THROWS (mdecl) = build_tree_list (NULL_TREE,
4639                                                       exception_type_node);
4640     }
4641
4642   start_artificial_method_body (mdecl);
4643   java_method_add_stmt (mdecl, compound);
4644   end_artificial_method_body (mdecl);
4645
4646   return mdecl;
4647 }
4648
4649 /* FIXME */
4650 static tree
4651 build_instinit_invocation (tree class_type)
4652 {
4653   tree to_return = NULL_TREE;
4654
4655   if (TYPE_II_STMT_LIST (class_type))
4656     {
4657       tree parm = build_tree_list (NULL_TREE,
4658                                    build_wfl_node (this_identifier_node));
4659       to_return =
4660         build_method_invocation (build_wfl_node (instinit_identifier_node),
4661                                  parm);
4662     }
4663   return to_return;
4664 }
4665
4666 /* Shared across method_declarator and method_header to remember the
4667    patch stage that was reached during the declaration of the method.
4668    A method DECL is built differently is there is no patch
4669    (JDEP_NO_PATCH) or a patch (JDEP_METHOD or JDEP_METHOD_RETURN)
4670    pending on the currently defined method.  */
4671
4672 static int patch_stage;
4673
4674 /* Check the method declaration and add the method to its current
4675    class.  If the argument list is known to contain incomplete types,
4676    the method is partially added and the registration will be resume
4677    once the method arguments resolved. If TYPE is NULL, we're dealing
4678    with a constructor.  */
4679
4680 static tree
4681 method_header (int flags, tree type, tree mdecl, tree throws)
4682 {
4683   tree type_wfl = NULL_TREE;
4684   tree meth_name = NULL_TREE;
4685   tree current, orig_arg, this_class = NULL;
4686   tree id, meth;
4687   location_t saved_location;
4688   int constructor_ok = 0, must_chain;
4689   int count;
4690
4691   if (mdecl == error_mark_node)
4692     return error_mark_node;
4693   meth = TREE_VALUE (mdecl);
4694   id = TREE_PURPOSE (mdecl);
4695
4696   check_modifiers_consistency (flags);
4697
4698   if (GET_CPC ())
4699     this_class = TREE_TYPE (GET_CPC ());
4700
4701   if (!this_class || this_class == error_mark_node)
4702     return NULL_TREE;
4703
4704   /* There are some forbidden modifiers for an abstract method and its
4705      class must be abstract as well.  */
4706   if (type && (flags & ACC_ABSTRACT))
4707     {
4708       ABSTRACT_CHECK (flags, ACC_PRIVATE, id, "Private");
4709       ABSTRACT_CHECK (flags, ACC_STATIC, id, "Static");
4710       ABSTRACT_CHECK (flags, ACC_FINAL, id, "Final");
4711       ABSTRACT_CHECK (flags, ACC_NATIVE, id, "Native");
4712       ABSTRACT_CHECK (flags, ACC_SYNCHRONIZED, id, "Synchronized");
4713       ABSTRACT_CHECK (flags, ACC_STRICT, id, "Strictfp");
4714       if (!CLASS_ABSTRACT (TYPE_NAME (this_class))
4715           && !CLASS_INTERFACE (TYPE_NAME (this_class)))
4716         parse_error_context
4717           (id,
4718            "Class %qs must be declared abstract to define abstract method %qs",
4719            IDENTIFIER_POINTER (DECL_NAME (GET_CPC ())),
4720            IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4721     }
4722
4723   /* A native method can't be strictfp.  */
4724   if ((flags & ACC_NATIVE) && (flags & ACC_STRICT))
4725     parse_error_context (id, "native method %qs can't be strictfp",
4726                          IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4727   /* No such thing as a transient or volatile method.  */
4728   if ((flags & ACC_TRANSIENT))
4729     parse_error_context (id, "method %qs can't be transient",
4730                          IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4731   if ((flags & ACC_VOLATILE))
4732     parse_error_context (id, "method %qs can't be volatile",
4733                          IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
4734
4735   /* Things to be checked when declaring a constructor */
4736   if (!type)
4737     {
4738       int ec = java_error_count;
4739       /* 8.6: Constructor declarations: we might be trying to define a
4740          method without specifying a return type. */
4741       if (EXPR_WFL_NODE (id) != GET_CPC_UN ())
4742         parse_error_context
4743           (id, "Invalid method declaration, return type required");
4744       /* 8.6.3: Constructor modifiers */
4745       else
4746         {
4747           JCONSTRUCTOR_CHECK (flags, ACC_ABSTRACT, id, "abstract");
4748           JCONSTRUCTOR_CHECK (flags, ACC_STATIC, id, "static");
4749           JCONSTRUCTOR_CHECK (flags, ACC_FINAL, id, "final");
4750           JCONSTRUCTOR_CHECK (flags, ACC_NATIVE, id, "native");
4751           JCONSTRUCTOR_CHECK (flags, ACC_SYNCHRONIZED, id, "synchronized");
4752           JCONSTRUCTOR_CHECK (flags, ACC_STRICT, id, "strictfp");
4753         }
4754       /* If we found error here, we don't consider it's OK to tread
4755          the method definition as a constructor, for the rest of this
4756          function */
4757       if (ec == java_error_count)
4758         constructor_ok = 1;
4759     }
4760
4761   /* Method declared within the scope of an interface are implicitly
4762      abstract and public. Conflicts with other erroneously provided
4763      modifiers are checked right after. */
4764
4765   if (CLASS_INTERFACE (TYPE_NAME (this_class)))
4766     {
4767       /* If FLAGS isn't set because of a modifier, turn the
4768          corresponding modifier WFL to NULL so we issue a warning on
4769          the obsolete use of the modifier */
4770       if (!(flags & ACC_PUBLIC))
4771         MODIFIER_WFL (PUBLIC_TK) = NULL;
4772       if (!(flags & ACC_ABSTRACT))
4773         MODIFIER_WFL (ABSTRACT_TK) = NULL;
4774       flags |= ACC_PUBLIC;
4775       flags |= ACC_ABSTRACT;
4776     }
4777
4778   /* Inner class can't declare static methods */
4779   if ((flags & ACC_STATIC) && !TOPLEVEL_CLASS_TYPE_P (this_class))
4780     {
4781       parse_error_context
4782         (id, "Method %qs can't be static in inner class %qs. Only members of interfaces and top-level classes can be static",
4783          IDENTIFIER_POINTER (EXPR_WFL_NODE (id)),
4784          lang_printable_name (this_class, 0));
4785     }
4786
4787   /* Modifiers context reset moved up, so abstract method declaration
4788      modifiers can be later checked.  */
4789
4790   /* Set constructor returned type to void and method name to <init>,
4791      unless we found an error identifier the constructor (in which
4792      case we retain the original name) */
4793   if (!type)
4794     {
4795       type = void_type_node;
4796       if (constructor_ok)
4797         meth_name = init_identifier_node;
4798     }
4799   else
4800     meth_name = EXPR_WFL_NODE (id);
4801
4802   /* Do the returned type resolution and registration if necessary */
4803   SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
4804
4805   if (meth_name)
4806     type = build_array_from_name (type, type_wfl, meth_name, &meth_name);
4807   EXPR_WFL_NODE (id) = meth_name;
4808   PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
4809
4810   if (must_chain)
4811     {
4812       patch_stage = JDEP_METHOD_RETURN;
4813       register_incomplete_type (patch_stage, type_wfl, id, type);
4814       TREE_TYPE (meth) = GET_REAL_TYPE (type);
4815     }
4816   else
4817     TREE_TYPE (meth) = type;
4818
4819   saved_location = input_location;
4820   /* When defining an abstract or interface method, the curly
4821      bracket at level 1 doesn't exist because there is no function
4822      body */
4823 #ifdef USE_MAPPED_LOCATION
4824   input_location = (ctxp->first_ccb_indent1 ? ctxp->first_ccb_indent1 :
4825                     EXPR_LOCATION (id));
4826 #else
4827   input_line = (ctxp->first_ccb_indent1 ? (int) ctxp->first_ccb_indent1 :
4828                 EXPR_WFL_LINENO (id));
4829 #endif
4830
4831   /* Remember the original argument list */
4832   orig_arg = TYPE_ARG_TYPES (meth);
4833
4834   if (patch_stage)              /* includes ret type and/or all args */
4835     {
4836       jdep *jdep;
4837       meth = add_method_1 (this_class, flags, meth_name, meth);
4838       /* Patch for the return type */
4839       if (patch_stage == JDEP_METHOD_RETURN)
4840         {
4841           jdep = CLASSD_LAST (ctxp->classd_list);
4842           JDEP_GET_PATCH (jdep) = &TREE_TYPE (TREE_TYPE (meth));
4843         }
4844       /* This is the stop JDEP. METH allows the function's signature
4845          to be computed. */
4846       register_incomplete_type (JDEP_METHOD_END, NULL_TREE, meth, NULL_TREE);
4847     }
4848   else
4849     meth = add_method (this_class, flags, meth_name,
4850                        build_java_signature (meth));
4851
4852   /* Remember final parameters */
4853   MARK_FINAL_PARMS (meth, orig_arg);
4854
4855   /* Fix the method argument list so we have the argument name
4856      information */
4857   fix_method_argument_names (orig_arg, meth);
4858
4859   /* Register the parameter number and re-install the current line
4860      number */
4861   DECL_MAX_LOCALS (meth) = ctxp->formal_parameter_number+1;
4862   input_location = saved_location;
4863
4864   /* Register exception specified by the `throws' keyword for
4865      resolution and set the method decl appropriate field to the list.
4866      Note: the grammar ensures that what we get here are class
4867      types. */
4868   if (throws)
4869     {
4870       throws = nreverse (throws);
4871       for (current = throws; current; current = TREE_CHAIN (current))
4872         {
4873           register_incomplete_type (JDEP_EXCEPTION, TREE_VALUE (current),
4874                                     NULL_TREE, NULL_TREE);
4875           JDEP_GET_PATCH (CLASSD_LAST (ctxp->classd_list)) =
4876             &TREE_VALUE (current);
4877         }
4878       DECL_FUNCTION_THROWS (meth) = throws;
4879     }
4880
4881   if (TREE_TYPE (GET_CPC ()) != object_type_node)
4882     DECL_FUNCTION_WFL (meth) = id;
4883
4884   /* Set the flag if we correctly processed a constructor */
4885   if (constructor_ok)
4886     {
4887       DECL_CONSTRUCTOR_P (meth) = 1;
4888       /* Compute and store the number of artificial parameters declared
4889          for this constructor */
4890       for (count = 0, current = TYPE_FIELDS (this_class); current;
4891            current = TREE_CHAIN (current))
4892         if (FIELD_LOCAL_ALIAS (current))
4893           count++;
4894       DECL_FUNCTION_NAP (meth) = count;
4895     }
4896
4897   /* Eventually set the @deprecated tag flag */
4898   CHECK_DEPRECATED (meth);
4899
4900   /* If doing xref, store column and line number information instead
4901      of the line number only. */
4902   if (flag_emit_xref)
4903     {
4904 #ifdef USE_MAPPED_LOCATION
4905       DECL_SOURCE_LOCATION (meth) = EXPR_LOCATION (id);
4906 #else
4907       DECL_SOURCE_LINE (meth) = EXPR_WFL_LINECOL (id);
4908 #endif
4909     }
4910
4911   return meth;
4912 }
4913
4914 static void
4915 fix_method_argument_names (tree orig_arg, tree meth)
4916 {
4917   tree arg = TYPE_ARG_TYPES (TREE_TYPE (meth));
4918   if (TREE_CODE (TREE_TYPE (meth)) == METHOD_TYPE)
4919     {
4920       TREE_PURPOSE (arg) = this_identifier_node;
4921       arg = TREE_CHAIN (arg);
4922     }
4923   while (orig_arg != end_params_node)
4924     {
4925       TREE_PURPOSE (arg) = TREE_PURPOSE (orig_arg);
4926       orig_arg = TREE_CHAIN (orig_arg);
4927       arg = TREE_CHAIN (arg);
4928     }
4929 }
4930
4931 /* Complete the method declaration with METHOD_BODY.  */
4932
4933 static void
4934 finish_method_declaration (tree method_body)
4935 {
4936   int flags;
4937
4938   if (!current_function_decl)
4939     return;
4940
4941   flags = get_access_flags_from_decl (current_function_decl);
4942
4943   /* 8.4.5 Method Body */
4944   if ((flags & ACC_ABSTRACT || flags & ACC_NATIVE) && method_body)
4945     {
4946       tree name = DECL_NAME (current_function_decl);
4947       parse_error_context (DECL_FUNCTION_WFL (current_function_decl),
4948                            "%s method %qs can't have a body defined",
4949                            (METHOD_NATIVE (current_function_decl) ?
4950                             "Native" : "Abstract"),
4951                            IDENTIFIER_POINTER (name));
4952       method_body = NULL_TREE;
4953     }
4954   else if (!(flags & ACC_ABSTRACT) && !(flags & ACC_NATIVE) && !method_body)
4955     {
4956       tree name = DECL_NAME (current_function_decl);
4957       parse_error_context
4958         (DECL_FUNCTION_WFL (current_function_decl),
4959          "Non native and non abstract method %qs must have a body defined",
4960          IDENTIFIER_POINTER (name));
4961       method_body = NULL_TREE;
4962     }
4963
4964   if (flag_emit_class_files && method_body
4965       && TREE_CODE (method_body) == NOP_EXPR
4966       && TREE_TYPE (current_function_decl)
4967       && TREE_TYPE (TREE_TYPE (current_function_decl)) == void_type_node)
4968     method_body = build1 (RETURN_EXPR, void_type_node, NULL);
4969
4970   BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (current_function_decl)) = method_body;
4971   maybe_absorb_scoping_blocks ();
4972   /* Exit function's body */
4973   exit_block ();
4974   /* Merge last line of the function with first line, directly in the
4975      function decl. It will be used to emit correct debug info. */
4976   if (!flag_emit_xref)
4977     DECL_FUNCTION_LAST_LINE (current_function_decl) = ctxp->last_ccb_indent1;
4978
4979   /* Since function's argument's list are shared, reset the
4980      ARG_FINAL_P parameter that might have been set on some of this
4981      function parameters. */
4982   UNMARK_FINAL_PARMS (current_function_decl);
4983
4984   /* So we don't have an irrelevant function declaration context for
4985      the next static block we'll see. */
4986   current_function_decl = NULL_TREE;
4987 }
4988
4989 /* Build a an error message for constructor circularity errors.  */
4990
4991 static char *
4992 constructor_circularity_msg (tree from, tree to)
4993 {
4994   static char string [4096];
4995   char *t = xstrdup (lang_printable_name (from, 2));
4996   sprintf (string, "'%s' invokes '%s'", t, lang_printable_name (to, 2));
4997   free (t);
4998   return string;
4999 }
5000
5001 /* Verify a circular call to METH. Return 1 if an error is found, 0
5002    otherwise.  */
5003
5004 static GTY(()) tree vcc_list;
5005 static int
5006 verify_constructor_circularity (tree meth, tree current)
5007 {
5008   tree c;
5009
5010   for (c = DECL_CONSTRUCTOR_CALLS (current); c; c = TREE_CHAIN (c))
5011     {
5012       if (TREE_VALUE (c) == meth)
5013         {
5014           char *t;
5015           if (vcc_list)
5016             {
5017               tree liste;
5018               vcc_list = nreverse (vcc_list);
5019               for (liste = vcc_list; liste; liste = TREE_CHAIN (liste))
5020                 {
5021                   parse_error_context
5022                     (TREE_PURPOSE (TREE_PURPOSE (liste)), "%s",
5023                      constructor_circularity_msg
5024                       (TREE_VALUE (liste), TREE_VALUE (TREE_PURPOSE (liste))));
5025                   java_error_count--;
5026                 }
5027             }
5028           t = xstrdup (lang_printable_name (meth, 2));
5029           parse_error_context (TREE_PURPOSE (c),
5030                                "%s: recursive invocation of constructor %qs",
5031                                constructor_circularity_msg (current, meth), t);
5032           free (t);
5033           vcc_list = NULL_TREE;
5034           return 1;
5035         }
5036     }
5037   for (c = DECL_CONSTRUCTOR_CALLS (current); c; c = TREE_CHAIN (c))
5038     {
5039       vcc_list = tree_cons (c, current, vcc_list);
5040       if (verify_constructor_circularity (meth, TREE_VALUE (c)))
5041         return 1;
5042       vcc_list = TREE_CHAIN (vcc_list);
5043     }
5044   return 0;
5045 }
5046
5047 /* Check modifiers that can be declared but exclusively */
5048
5049 static void
5050 check_modifiers_consistency (int flags)
5051 {
5052   int acc_count = 0;
5053   tree cl = NULL_TREE;
5054
5055   THIS_MODIFIER_ONLY (flags, ACC_PUBLIC, PUBLIC_TK, acc_count, cl);
5056   THIS_MODIFIER_ONLY (flags, ACC_PRIVATE, PRIVATE_TK, acc_count, cl);
5057   THIS_MODIFIER_ONLY (flags, ACC_PROTECTED, PROTECTED_TK, acc_count, cl);
5058   if (acc_count > 1)
5059     parse_error_context
5060       (cl, "Inconsistent member declaration.  At most one of %<public%>, %<private%>, or %<protected%> may be specified");
5061
5062   acc_count = 0;
5063   cl = NULL_TREE;
5064   THIS_MODIFIER_ONLY (flags, ACC_FINAL, FINAL_TK, acc_count, cl);
5065   THIS_MODIFIER_ONLY (flags, ACC_VOLATILE, VOLATILE_TK, acc_count, cl);
5066   if (acc_count > 1)
5067     parse_error_context (cl,
5068                          "Inconsistent member declaration.  At most one of %<final%> or %<volatile%> may be specified");
5069 }
5070
5071 /* Check the methode header METH for abstract specifics features */
5072
5073 static void
5074 check_abstract_method_header (tree meth)
5075 {
5076   int flags = get_access_flags_from_decl (meth);
5077
5078   OBSOLETE_MODIFIER_WARNING2 (MODIFIER_WFL (ABSTRACT_TK), flags,
5079                               ACC_ABSTRACT, "abstract method",
5080                               IDENTIFIER_POINTER (DECL_NAME (meth)));
5081   OBSOLETE_MODIFIER_WARNING2 (MODIFIER_WFL (PUBLIC_TK), flags,
5082                               ACC_PUBLIC, "abstract method",
5083                               IDENTIFIER_POINTER (DECL_NAME (meth)));
5084
5085   check_modifiers ("Illegal modifier %qs for interface method",
5086                   flags, INTERFACE_METHOD_MODIFIERS);
5087 }
5088
5089 /* Create a FUNCTION_TYPE node and start augmenting it with the
5090    declared function arguments. Arguments type that can't be resolved
5091    are left as they are, but the returned node is marked as containing
5092    incomplete types.  */
5093
5094 static tree
5095 method_declarator (tree id, tree list)
5096 {
5097   tree arg_types = NULL_TREE, current, node;
5098   tree meth = make_node (FUNCTION_TYPE);
5099   jdep *jdep;
5100
5101   patch_stage = JDEP_NO_PATCH;
5102
5103   if (GET_CPC () == error_mark_node)
5104     return error_mark_node;
5105
5106   /* If we're dealing with an inner class constructor, we hide the
5107      this$<n> decl in the name field of its parameter declaration.  We
5108      also might have to hide the outer context local alias
5109      initializers. Not done when the class is a toplevel class. */
5110   if (PURE_INNER_CLASS_DECL_P (GET_CPC ())
5111       && EXPR_WFL_NODE (id) == GET_CPC_UN ())
5112     {
5113       tree aliases_list, type, thisn;
5114       /* First the aliases, linked to the regular parameters */
5115       aliases_list =
5116         build_alias_initializer_parameter_list (AIPL_FUNCTION_DECLARATION,
5117                                                 TREE_TYPE (GET_CPC ()),
5118                                                 NULL_TREE, NULL);
5119       list = chainon (nreverse (aliases_list), list);
5120
5121       /* Then this$<n> */
5122       type = TREE_TYPE (DECL_CONTEXT (GET_CPC ()));
5123       thisn = build_current_thisn (TREE_TYPE (GET_CPC ()));
5124       list = tree_cons (build_wfl_node (thisn), build_pointer_type (type),
5125                         list);
5126     }
5127
5128   for (current = list; current; current = TREE_CHAIN (current))
5129     {
5130       int must_chain = 0;
5131       tree wfl_name = TREE_PURPOSE (current);
5132       tree type = TREE_VALUE (current);
5133       tree name = EXPR_WFL_NODE (wfl_name);
5134       tree already, arg_node;
5135       tree type_wfl = NULL_TREE;
5136       tree real_type;
5137
5138       /* Obtain a suitable type for resolution, if necessary */
5139       SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
5140
5141       /* Process NAME, as it may specify extra dimension(s) for it */
5142       type = build_array_from_name (type, type_wfl, name, &name);
5143       EXPR_WFL_NODE (wfl_name) = name;
5144
5145       real_type = GET_REAL_TYPE (type);
5146       if (TREE_CODE (real_type) == RECORD_TYPE)
5147         {
5148           real_type = promote_type (real_type);
5149           if (TREE_CODE (type) == TREE_LIST)
5150             TREE_PURPOSE (type) = real_type;
5151         }
5152
5153       /* Check redefinition */
5154       for (already = arg_types; already; already = TREE_CHAIN (already))
5155         if (TREE_PURPOSE (already) == name)
5156           {
5157             parse_error_context
5158               (wfl_name, "Variable %qs is used more than once in the argument list of method %qs",
5159                IDENTIFIER_POINTER (name),
5160                IDENTIFIER_POINTER (EXPR_WFL_NODE (id)));
5161             break;
5162           }
5163
5164       /* If we've an incomplete argument type, we know there is a location
5165          to patch when the type get resolved, later.  */
5166       jdep = NULL;
5167       if (must_chain)
5168         {
5169           patch_stage = JDEP_METHOD;
5170           type = register_incomplete_type (patch_stage,
5171                                            type_wfl, wfl_name, type);
5172           jdep = CLASSD_LAST (ctxp->classd_list);
5173           JDEP_MISC (jdep) = id;
5174         }
5175
5176       /* The argument node: a name and a (possibly) incomplete type.  */
5177       arg_node = build_tree_list (name, real_type);
5178       /* Remember arguments declared final. */
5179       ARG_FINAL_P (arg_node) = ARG_FINAL_P (current);
5180
5181       if (jdep)
5182         JDEP_GET_PATCH (jdep) = &TREE_VALUE (arg_node);
5183       TREE_CHAIN (arg_node) = arg_types;
5184       arg_types = arg_node;
5185     }
5186   TYPE_ARG_TYPES (meth) = chainon (nreverse (arg_types), end_params_node);
5187   node = build_tree_list (id, meth);
5188   return node;
5189 }
5190
5191 static int
5192 unresolved_type_p (tree wfl, tree *returned)
5193 {
5194   if (TREE_CODE (wfl) == EXPR_WITH_FILE_LOCATION)
5195     {
5196       if (returned)
5197         {
5198           tree decl = IDENTIFIER_CLASS_VALUE (EXPR_WFL_NODE (wfl));
5199           if (decl && current_class && (decl == TYPE_NAME (current_class)))
5200             *returned = TREE_TYPE (decl);
5201           else if (GET_CPC_UN () == EXPR_WFL_NODE (wfl))
5202             *returned = TREE_TYPE (GET_CPC ());
5203           else
5204             *returned = NULL_TREE;
5205         }
5206       return 1;
5207     }
5208   if (returned)
5209     *returned = wfl;
5210   return 0;
5211 }
5212
5213 /* From NAME, build a qualified identifier node using the
5214    qualification from the current package definition. */
5215
5216 static tree
5217 parser_qualified_classname (tree name)
5218 {
5219   tree nested_class_name;
5220
5221   if ((nested_class_name = maybe_make_nested_class_name (name)))
5222     return nested_class_name;
5223
5224   if (ctxp->package)
5225     return merge_qualified_name (ctxp->package, name);
5226   else
5227     return name;
5228 }
5229
5230 /* Called once the type a interface extends is resolved. Returns 0 if
5231    everything is OK.  */
5232
5233 static int
5234 parser_check_super_interface (tree super_decl, tree this_decl, tree this_wfl)
5235 {
5236   tree super_type = TREE_TYPE (super_decl);
5237
5238   /* Has to be an interface */
5239   if (!CLASS_INTERFACE (super_decl))
5240     {
5241       parse_error_context
5242         (this_wfl, "%s %qs can't implement/extend %s %qs",
5243          (CLASS_INTERFACE (TYPE_NAME (TREE_TYPE (this_decl))) ?
5244           "Interface" : "Class"),
5245          IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5246          (TYPE_ARRAY_P (super_type) ? "array" : "class"),
5247          IDENTIFIER_POINTER (DECL_NAME (super_decl)));
5248       return 1;
5249     }
5250
5251   /* Check top-level interface access. Inner classes are subject to member
5252      access rules (6.6.1). */
5253   if (! INNER_CLASS_P (super_type)
5254       && check_pkg_class_access (DECL_NAME (super_decl),
5255                                  NULL_TREE, true, this_decl))
5256     return 1;
5257
5258   SOURCE_FRONTEND_DEBUG (("Completing interface %s with %s",
5259                           IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5260                           IDENTIFIER_POINTER (DECL_NAME (super_decl))));
5261   return 0;
5262 }
5263
5264 /* Makes sure that SUPER_DECL is suitable to extend THIS_DECL. Returns
5265    0 if everything is OK.  */
5266
5267 static int
5268 parser_check_super (tree super_decl, tree this_decl, tree wfl)
5269 {
5270   tree super_type = TREE_TYPE (super_decl);
5271
5272   /* SUPER should be a CLASS (neither an array nor an interface) */
5273   if (TYPE_ARRAY_P (super_type) || CLASS_INTERFACE (TYPE_NAME (super_type)))
5274     {
5275       parse_error_context
5276         (wfl, "Class %qs can't subclass %s %qs",
5277          IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5278          (CLASS_INTERFACE (TYPE_NAME (super_type)) ? "interface" : "array"),
5279          IDENTIFIER_POINTER (DECL_NAME (super_decl)));
5280       return 1;
5281     }
5282
5283   if (CLASS_FINAL (TYPE_NAME (super_type)))
5284     {
5285       parse_error_context (wfl, "Can't subclass final classes: %s",
5286                            IDENTIFIER_POINTER (DECL_NAME (super_decl)));
5287       return 1;
5288     }
5289
5290   /* Check top-level class scope. Inner classes are subject to member access
5291      rules (6.6.1). */
5292   if (! INNER_CLASS_P (super_type)
5293       && (check_pkg_class_access (DECL_NAME (super_decl), wfl, true, NULL_TREE)))
5294     return 1;
5295
5296   SOURCE_FRONTEND_DEBUG (("Completing class %s with %s",
5297                           IDENTIFIER_POINTER (DECL_NAME (this_decl)),
5298                           IDENTIFIER_POINTER (DECL_NAME (super_decl))));
5299   return 0;
5300 }
5301
5302 /* Create a new dependency list and link it (in a LIFO manner) to the
5303    CTXP list of type dependency list.  */
5304
5305 static void
5306 create_jdep_list (struct parser_ctxt *ctxp)
5307 {
5308   jdeplist *new = xmalloc (sizeof (jdeplist));
5309   new->first = new->last = NULL;
5310   new->next = ctxp->classd_list;
5311   ctxp->classd_list = new;
5312 }
5313
5314 static jdeplist *
5315 reverse_jdep_list (struct parser_ctxt *ctxp)
5316 {
5317   jdeplist *prev = NULL, *current, *next;
5318   for (current = ctxp->classd_list; current; current = next)
5319     {
5320       next = current->next;
5321       current->next = prev;
5322       prev = current;
5323     }
5324   return prev;
5325 }
5326
5327 /* Create a fake pointer based on the ID stored in
5328    TYPE_NAME. TYPE_NAME can be a WFL or a incomplete type asking to be
5329    registered again. */
5330
5331 static tree
5332 obtain_incomplete_type (tree type_name)
5333 {
5334   tree ptr = NULL_TREE, name;
5335
5336   if (TREE_CODE (type_name) == EXPR_WITH_FILE_LOCATION)
5337     name = EXPR_WFL_NODE (type_name);
5338   else if (INCOMPLETE_TYPE_P (type_name))
5339     name = TYPE_NAME (type_name);
5340   else
5341     abort ();
5342
5343   /* Workaround from build_pointer_type for incomplete types.  */
5344   BUILD_PTR_FROM_NAME (ptr, name);
5345   TYPE_MODE (ptr) = ptr_mode;
5346   layout_type (ptr);
5347
5348   return ptr;
5349 }
5350
5351 /* Register a incomplete type whose name is WFL. Reuse PTR if PTR is
5352    non NULL instead of computing a new fake type based on WFL. The new
5353    dependency is inserted in the current type dependency list, in FIFO
5354    manner.  */
5355
5356 static tree
5357 register_incomplete_type (int kind, tree wfl, tree decl, tree ptr)
5358 {
5359   jdep *new = xmalloc (sizeof (jdep));
5360
5361   if (!ptr && kind != JDEP_METHOD_END) /* JDEP_METHOD_END is a mere marker */
5362     ptr = obtain_incomplete_type (wfl);
5363
5364   JDEP_KIND (new) = kind;
5365   JDEP_DECL (new) = decl;
5366   JDEP_TO_RESOLVE (new) = ptr;
5367   JDEP_WFL (new) = wfl;
5368   JDEP_CHAIN (new) = NULL;
5369   JDEP_MISC (new) = NULL_TREE;
5370   /* For some dependencies, set the enclosing class of the current
5371      class to be the enclosing context */
5372   if ((kind == JDEP_INTERFACE || kind == JDEP_ANONYMOUS || kind == JDEP_SUPER)
5373       && GET_ENCLOSING_CPC ())
5374     JDEP_ENCLOSING (new) = TREE_VALUE (GET_ENCLOSING_CPC ());
5375   else
5376     JDEP_ENCLOSING (new) = GET_CPC ();
5377   JDEP_GET_PATCH (new) = (tree *)NULL;
5378
5379   JDEP_INSERT (ctxp->classd_list, new);
5380
5381   return ptr;
5382 }
5383
5384 /* This checks for circular references with innerclasses. We start
5385    from SOURCE and should never reach TARGET. Extended/implemented
5386    types in SOURCE have their enclosing context checked not to reach
5387    TARGET. When the last enclosing context of SOURCE is reached, its
5388    extended/implemented types are also checked not to reach TARGET.
5389    In case of error, WFL of the offending type is returned; NULL_TREE
5390    otherwise.  */
5391
5392 static tree
5393 check_inner_circular_reference (tree source, tree target)
5394 {
5395   tree base_binfo;
5396   tree ctx, cl;
5397   int i;
5398
5399   for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (source), i, base_binfo); i++)
5400     {
5401       tree su;
5402
5403       /* We can end up with a NULL_TREE or an incomplete type here if
5404          we encountered previous type resolution errors. It's safe to
5405          simply ignore these cases.  */
5406       su = BINFO_TYPE (base_binfo);
5407       if (INCOMPLETE_TYPE_P (su))
5408         continue;
5409
5410       if (inherits_from_p (su, target))
5411         return lookup_cl (TYPE_NAME (su));
5412
5413       for (ctx = DECL_CONTEXT (TYPE_NAME (su)); ctx; ctx = DECL_CONTEXT (ctx))
5414         {
5415           /* An enclosing context shouldn't be TARGET */
5416           if (ctx == TYPE_NAME (target))
5417             return lookup_cl (TYPE_NAME (su));
5418
5419           /* When we reach the enclosing last context, start a check
5420              on it, with the same target */
5421           if (! DECL_CONTEXT (ctx) &&
5422               (cl = check_inner_circular_reference (TREE_TYPE (ctx), target)))
5423             return cl;
5424         }
5425     }
5426   return NULL_TREE;
5427 }
5428
5429 /* Explore TYPE's `extends' clause member(s) and return the WFL of the
5430    offending type if a circularity is detected. NULL_TREE is returned
5431    otherwise. TYPE can be an interface or a class.   */
5432
5433 static tree
5434 check_circular_reference (tree type)
5435 {
5436   tree base_binfo;
5437   int i;
5438
5439   if (!BINFO_N_BASE_BINFOS (TYPE_BINFO (type)))
5440     return NULL_TREE;
5441
5442   if (! CLASS_INTERFACE (TYPE_NAME (type)))
5443     {
5444       if (inherits_from_p (CLASSTYPE_SUPER (type), type))
5445         return lookup_cl (TYPE_NAME (type));
5446       return NULL_TREE;
5447     }
5448
5449   for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (type), i, base_binfo); i++)
5450     {
5451       if (BINFO_TYPE (base_binfo) != object_type_node
5452           && interface_of_p (type, BINFO_TYPE (base_binfo)))
5453         return lookup_cl (TYPE_NAME (BINFO_TYPE (base_binfo)));
5454     }
5455   return NULL_TREE;
5456 }
5457
5458 void
5459 java_check_circular_reference (void)
5460 {
5461   tree current;
5462   for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
5463     {
5464       tree type = TREE_TYPE (current);
5465       tree cl;
5466
5467       cl = check_circular_reference (type);
5468       if (! cl)
5469         cl = check_inner_circular_reference (type, type);
5470       if (cl)
5471         parse_error_context (cl, "Cyclic class inheritance%s",
5472                              (cyclic_inheritance_report ?
5473                               cyclic_inheritance_report : ""));
5474     }
5475 }
5476
5477 /* Augment the parameter list PARM with parameters crafted to
5478    initialize outer context locals aliases. Through ARTIFICIAL, a
5479    count is kept of the number of crafted parameters. MODE governs
5480    what eventually gets created: something suitable for a function
5481    creation or a function invocation, either the constructor or
5482    finit$.  */
5483
5484 static tree
5485 build_alias_initializer_parameter_list (int mode, tree class_type, tree parm,
5486                                         int *artificial)
5487 {
5488   tree field;
5489   tree additional_parms = NULL_TREE;
5490
5491   for (field = TYPE_FIELDS (class_type); field; field = TREE_CHAIN (field))
5492     if (FIELD_LOCAL_ALIAS (field))
5493       {
5494         const char *buffer = IDENTIFIER_POINTER (DECL_NAME (field));
5495         tree purpose = NULL_TREE, value = NULL_TREE, name = NULL_TREE;
5496         tree mangled_id;
5497
5498         switch (mode)
5499           {
5500           case AIPL_FUNCTION_DECLARATION:
5501             MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (mangled_id,
5502                                                          &buffer [4]);
5503             purpose = build_wfl_node (mangled_id);
5504             if (TREE_CODE (TREE_TYPE (field)) == POINTER_TYPE)
5505               value = build_wfl_node (TYPE_NAME (TREE_TYPE (field)));
5506             else
5507               value = TREE_TYPE (field);
5508             break;
5509
5510           case AIPL_FUNCTION_CREATION:
5511             MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (purpose,
5512                                                          &buffer [4]);
5513             value = TREE_TYPE (field);
5514             break;
5515
5516           case AIPL_FUNCTION_FINIT_INVOCATION:
5517             MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR (mangled_id,
5518                                                          &buffer [4]);
5519             /* Now, this is wrong. purpose should always be the NAME
5520                of something and value its matching value (decl, type,
5521                etc...) FIXME -- but there is a lot to fix. */
5522
5523             /* When invoked for this kind of operation, we already
5524                know whether a field is used or not. */
5525             purpose = TREE_TYPE (field);
5526             value = build_wfl_node (mangled_id);
5527             break;
5528
5529           case AIPL_FUNCTION_CTOR_INVOCATION:
5530             /* There are two case: the constructor invocation happens
5531                outside the local inner, in which case, locales from the outer
5532                context are directly used.
5533
5534                Otherwise, we fold to using the alias directly. */
5535             if (class_type == current_class)
5536               value = field;
5537             else
5538               {
5539                 name = get_identifier (&buffer[4]);
5540                 value = IDENTIFIER_LOCAL_VALUE (name);
5541               }
5542             break;
5543           }
5544         additional_parms = tree_cons (purpose, value, additional_parms);
5545         if (artificial)
5546           *artificial +=1;
5547       }
5548   if (additional_parms)
5549     {
5550       if (ANONYMOUS_CLASS_P (class_type)
5551           && mode == AIPL_FUNCTION_CTOR_INVOCATION)
5552         additional_parms = nreverse (additional_parms);
5553       parm = chainon (additional_parms, parm);
5554     }
5555
5556    return parm;
5557 }
5558
5559 /* Craft a constructor for CLASS_DECL -- what we should do when none
5560    where found. ARGS is non NULL when a special signature must be
5561    enforced. This is the case for anonymous classes.  */
5562
5563 static tree
5564 craft_constructor (tree class_decl, tree args)
5565 {
5566   tree class_type = TREE_TYPE (class_decl);
5567   tree parm = NULL_TREE;
5568   /* Inherit access flags for the constructor from its enclosing class. */
5569   int valid_ctor_flags = ACC_PUBLIC | ACC_PROTECTED | ACC_PRIVATE;
5570   int flags = (get_access_flags_from_decl (class_decl) & valid_ctor_flags);
5571   int i = 0, artificial = 0;
5572   tree decl, ctor_name;
5573   char buffer [80];
5574
5575   ctor_name = init_identifier_node;
5576
5577   /* If we're dealing with an inner class constructor, we hide the
5578      this$<n> decl in the name field of its parameter declaration. */
5579   if (PURE_INNER_CLASS_TYPE_P (class_type))
5580     {
5581       tree type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class_type)));
5582       parm = tree_cons (build_current_thisn (class_type),
5583                         build_pointer_type (type), parm);
5584
5585       /* Some more arguments to be hidden here. The values of the local
5586          variables of the outer context that the inner class needs to see. */
5587       parm = build_alias_initializer_parameter_list (AIPL_FUNCTION_CREATION,
5588                                                      class_type, parm,
5589                                                      &artificial);
5590     }
5591
5592   /* Then if there are any args to be enforced, enforce them now */
5593   for (; args && args != end_params_node; args = TREE_CHAIN (args))
5594     {
5595       sprintf (buffer, "parm%d", i++);
5596       parm = tree_cons (get_identifier (buffer), TREE_VALUE (args), parm);
5597     }
5598
5599   CRAFTED_PARAM_LIST_FIXUP (parm);
5600   decl = create_artificial_method (class_type, flags, void_type_node,
5601                                    ctor_name, parm);
5602   fix_method_argument_names (parm, decl);
5603   /* Now, mark the artificial parameters. */
5604   DECL_FUNCTION_NAP (decl) = artificial;
5605   DECL_FUNCTION_SYNTHETIC_CTOR (decl) = DECL_CONSTRUCTOR_P (decl) = 1;
5606   DECL_INLINE (decl) = 1;
5607   return decl;
5608 }
5609
5610
5611 /* Fix the constructors. This will be called right after circular
5612    references have been checked. It is necessary to fix constructors
5613    early even if no code generation will take place for that class:
5614    some generated constructor might be required by the class whose
5615    compilation triggered this one to be simply loaded.  */
5616
5617 void
5618 java_fix_constructors (void)
5619 {
5620   tree current;
5621
5622   for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
5623     {
5624       tree class_type = TREE_TYPE (current);
5625       int saw_ctor = 0;
5626       tree decl;
5627
5628       if (CLASS_INTERFACE (TYPE_NAME (class_type)))
5629         continue;
5630
5631       output_class = current_class = class_type;
5632       for (decl = TYPE_METHODS (class_type); decl; decl = TREE_CHAIN (decl))
5633         {
5634           if (DECL_CONSTRUCTOR_P (decl))
5635             {
5636               fix_constructors (decl);
5637               saw_ctor = 1;
5638             }
5639         }
5640
5641       /* Anonymous class constructor can't be generated that early. */
5642       if (!saw_ctor && !ANONYMOUS_CLASS_P (class_type))
5643         craft_constructor (current, NULL_TREE);
5644     }
5645 }
5646
5647 /* safe_layout_class just makes sure that we can load a class without
5648    disrupting the current_class, input_file, input_line, etc, information
5649    about the class processed currently.  */
5650
5651 void
5652 safe_layout_class (tree class)
5653 {
5654   tree save_current_class = current_class;
5655   location_t save_location = input_location;
5656
5657   layout_class (class);
5658
5659   current_class = save_current_class;
5660   input_location = save_location;
5661 }
5662
5663 static tree
5664 jdep_resolve_class (jdep *dep)
5665 {
5666   tree decl;
5667
5668   if (JDEP_RESOLVED_P (dep))
5669     decl = JDEP_RESOLVED_DECL (dep);
5670   else
5671     {
5672       decl = resolve_class (JDEP_ENCLOSING (dep), JDEP_TO_RESOLVE (dep),
5673                             JDEP_DECL (dep), JDEP_WFL (dep));
5674       JDEP_RESOLVED (dep, decl);
5675       /* If there is no WFL, that's ok.  We generate this warning
5676          elsewhere.  */
5677       if (decl && JDEP_WFL (dep) != NULL_TREE)
5678         check_deprecation (JDEP_WFL (dep), decl);
5679     }
5680
5681   if (!decl)
5682     complete_class_report_errors (dep);
5683   else if (INNER_CLASS_DECL_P (decl))
5684     {
5685       tree inner = TREE_TYPE (decl);
5686       if (! CLASS_LOADED_P (inner))
5687         {
5688           safe_layout_class (inner);
5689           if (TYPE_SIZE (inner) == error_mark_node)
5690             TYPE_SIZE (inner) = NULL_TREE;
5691         }
5692       check_inner_class_access (decl, JDEP_ENCLOSING (dep), JDEP_WFL (dep));
5693     }
5694   return decl;
5695 }
5696
5697 /* Complete unsatisfied class declaration and their dependencies */
5698
5699 void
5700 java_complete_class (void)
5701 {
5702   tree cclass;
5703   jdeplist *cclassd;
5704   int error_found;
5705   tree type;
5706
5707   /* Process imports */
5708   process_imports ();
5709
5710   /* Reverse things so we have the right order */
5711   ctxp->class_list = nreverse (ctxp->class_list);
5712   ctxp->classd_list = reverse_jdep_list (ctxp);
5713
5714   for (cclassd = ctxp->classd_list, cclass = ctxp->class_list;
5715        cclass && cclassd;
5716        cclass = TREE_CHAIN (cclass), cclassd = CLASSD_CHAIN (cclassd))
5717     {
5718       jdep *dep;
5719
5720       /* We keep the compilation unit imports in the class so that
5721          they can be used later to resolve type dependencies that
5722          aren't necessary to solve now. */
5723       TYPE_IMPORT_LIST (TREE_TYPE (cclass)) = ctxp->import_list;
5724       TYPE_IMPORT_DEMAND_LIST (TREE_TYPE (cclass)) = ctxp->import_demand_list;
5725
5726       for (dep = CLASSD_FIRST (cclassd); dep; dep = JDEP_CHAIN (dep))
5727         {
5728           tree decl;
5729           if (!(decl = jdep_resolve_class (dep)))
5730             continue;
5731
5732           /* Now it's time to patch */
5733           switch (JDEP_KIND (dep))
5734             {
5735             case JDEP_SUPER:
5736               /* Simply patch super */
5737               if (parser_check_super (decl, JDEP_DECL (dep), JDEP_WFL (dep)))
5738                 continue;
5739               BINFO_TYPE (BINFO_BASE_BINFO
5740                           (TYPE_BINFO (TREE_TYPE (JDEP_DECL (dep))), 0))
5741                 = TREE_TYPE (decl);
5742               break;
5743
5744             case JDEP_FIELD:
5745               {
5746                 /* We do part of the job done in add_field */
5747                 tree field_decl = JDEP_DECL (dep);
5748                 tree field_type = TREE_TYPE (decl);
5749                 if (TREE_CODE (field_type) == RECORD_TYPE)
5750                   field_type = promote_type (field_type);
5751                 TREE_TYPE (field_decl) = field_type;
5752                 DECL_ALIGN (field_decl) = 0;
5753                 DECL_USER_ALIGN (field_decl) = 0;
5754                 layout_decl (field_decl, 0);
5755                 SOURCE_FRONTEND_DEBUG
5756                   (("Completed field/var decl '%s' with '%s'",
5757                     IDENTIFIER_POINTER (DECL_NAME (field_decl)),
5758                     IDENTIFIER_POINTER (DECL_NAME (decl))));
5759                 break;
5760               }
5761             case JDEP_METHOD:   /* We start patching a method */
5762             case JDEP_METHOD_RETURN:
5763               error_found = 0;
5764               while (1)
5765                 {
5766                   if (decl)
5767                     {
5768                       type = TREE_TYPE(decl);
5769                       if (TREE_CODE (type) == RECORD_TYPE)
5770                         type = promote_type (type);
5771                       JDEP_APPLY_PATCH (dep, type);
5772                       SOURCE_FRONTEND_DEBUG
5773                         (((JDEP_KIND (dep) == JDEP_METHOD_RETURN ?
5774                            "Completing fct '%s' with ret type '%s'":
5775                            "Completing arg '%s' with type '%s'"),
5776                           IDENTIFIER_POINTER (EXPR_WFL_NODE
5777                                               (JDEP_DECL_WFL (dep))),
5778                           IDENTIFIER_POINTER (DECL_NAME (decl))));
5779                     }
5780                   else
5781                     error_found = 1;
5782                   dep = JDEP_CHAIN (dep);
5783                   if (JDEP_KIND (dep) == JDEP_METHOD_END)
5784                     break;
5785                   else
5786                     decl = jdep_resolve_class (dep);
5787                 }
5788               if (!error_found)
5789                 {
5790                   tree mdecl = JDEP_DECL (dep), signature;
5791                   /* Recompute and reset the signature, check first that
5792                      all types are now defined. If they're not,
5793                      don't build the signature. */
5794                   if (check_method_types_complete (mdecl))
5795                     {
5796                       signature = build_java_signature (TREE_TYPE (mdecl));
5797                       set_java_signature (TREE_TYPE (mdecl), signature);
5798                     }
5799                 }
5800               else
5801                 continue;
5802               break;
5803
5804             case JDEP_INTERFACE:
5805               if (parser_check_super_interface (decl, JDEP_DECL (dep),
5806                                                 JDEP_WFL (dep)))
5807                 continue;
5808               parser_add_interface (JDEP_DECL (dep), decl, JDEP_WFL (dep));
5809               break;
5810
5811             case JDEP_PARM:
5812             case JDEP_VARIABLE:
5813               type = TREE_TYPE(decl);
5814               if (TREE_CODE (type) == RECORD_TYPE)
5815                 type = promote_type (type);
5816               JDEP_APPLY_PATCH (dep, type);
5817               break;
5818
5819             case JDEP_TYPE:
5820               JDEP_APPLY_PATCH (dep, TREE_TYPE (decl));
5821               SOURCE_FRONTEND_DEBUG
5822                 (("Completing a random type dependency on a '%s' node",
5823                   tree_code_name [TREE_CODE (JDEP_DECL (dep))]));
5824               break;
5825
5826             case JDEP_EXCEPTION:
5827               JDEP_APPLY_PATCH (dep, TREE_TYPE (decl));
5828               SOURCE_FRONTEND_DEBUG
5829                 (("Completing '%s' 'throws' argument node",
5830                   IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep)))));
5831               break;
5832
5833             case JDEP_ANONYMOUS:
5834               patch_anonymous_class (decl, JDEP_DECL (dep), JDEP_WFL (dep));
5835               break;
5836
5837             default:
5838               abort ();
5839             }
5840         }
5841     }
5842   return;
5843 }
5844
5845 /* Resolve class CLASS_TYPE. Handle the case of trying to resolve an
5846    array.  */
5847
5848 static tree
5849 resolve_class (tree enclosing, tree class_type, tree decl, tree cl)
5850 {
5851   tree tname = TYPE_NAME (class_type);
5852   tree resolved_type = TREE_TYPE (class_type);
5853   int array_dims = 0;
5854   tree resolved_type_decl;
5855
5856   if (resolved_type != NULL_TREE)
5857     {
5858       tree resolved_type_decl = TYPE_NAME (resolved_type);
5859       if (resolved_type_decl == NULL_TREE
5860           || TREE_CODE (resolved_type_decl) == IDENTIFIER_NODE)
5861         {
5862           resolved_type_decl = build_decl (TYPE_DECL,
5863                                            TYPE_NAME (class_type),
5864                                            resolved_type);
5865         }
5866       return resolved_type_decl;
5867     }
5868
5869   /* 1- Check to see if we have an array. If true, find what we really
5870      want to resolve  */
5871   if ((array_dims = build_type_name_from_array_name (tname,
5872                                                      &TYPE_NAME (class_type))))
5873     WFL_STRIP_BRACKET (cl, cl);
5874
5875   /* 2- Resolve the bare type */
5876   if (!(resolved_type_decl = do_resolve_class (enclosing, class_type,
5877                                                decl, cl)))
5878     return NULL_TREE;
5879   resolved_type = TREE_TYPE (resolved_type_decl);
5880
5881   /* 3- If we have an array, reconstruct the array down to its nesting */
5882   if (array_dims)
5883     {
5884       for (; array_dims; array_dims--)
5885         resolved_type = build_java_array_type (resolved_type, -1);
5886       resolved_type_decl = TYPE_NAME (resolved_type);
5887     }
5888   TREE_TYPE (class_type) = resolved_type;
5889   return resolved_type_decl;
5890 }
5891
5892 /* Effectively perform the resolution of class CLASS_TYPE.  DECL or CL
5893    are used to report error messages; CL must either be NULL_TREE or a
5894    WFL wrapping a class.  Do not try to replace TYPE_NAME (class_type)
5895    by a variable, since it is changed by find_in_imports{_on_demand}
5896    and (but it doesn't really matter) qualify_and_find.  */
5897
5898 tree
5899 do_resolve_class (tree enclosing, tree class_type, tree decl, tree cl)
5900 {
5901   tree new_class_decl = NULL_TREE, super = NULL_TREE;
5902   tree saved_enclosing_type = enclosing ? TREE_TYPE (enclosing) : NULL_TREE;
5903   tree decl_result;
5904   htab_t circularity_hash;
5905
5906   if (QUALIFIED_P (TYPE_NAME (class_type)))
5907     {
5908       /* If the type name is of the form `Q . Id', then Q is either a
5909          package name or a class name.  First we try to find Q as a
5910          class and then treat Id as a member type.  If we can't find Q
5911          as a class then we fall through.  */
5912       tree q, left, left_type, right;
5913       if (split_qualified_name (&left, &right, TYPE_NAME (class_type)) == 0)
5914         {
5915           BUILD_PTR_FROM_NAME (left_type, left);
5916           q = do_resolve_class (enclosing, left_type, decl, cl);
5917           if (q)
5918             {
5919               enclosing = q;
5920               saved_enclosing_type = TREE_TYPE (q);
5921               BUILD_PTR_FROM_NAME (class_type, right);
5922             }
5923         }
5924     }
5925
5926   if (enclosing)
5927     {
5928       /* This hash table is used to register the classes we're going
5929          through when searching the current class as an inner class, in
5930          order to detect circular references. Remember to free it before
5931          returning the section 0- of this function. */
5932       circularity_hash = htab_create (20, htab_hash_pointer, htab_eq_pointer,
5933                                       NULL);
5934
5935       /* 0- Search in the current class as an inner class.
5936          Maybe some code here should be added to load the class or
5937          something, at least if the class isn't an inner class and ended
5938          being loaded from class file. FIXME. */
5939       while (enclosing)
5940         {
5941           new_class_decl = resolve_inner_class (circularity_hash, cl, &enclosing,
5942                                                 &super, class_type);
5943           if (new_class_decl)
5944             break;
5945
5946           /* If we haven't found anything because SUPER reached Object and
5947              ENCLOSING happens to be an innerclass, try the enclosing context. */
5948           if ((!super || super == object_type_node) &&
5949               enclosing && INNER_CLASS_DECL_P (enclosing))
5950             enclosing = DECL_CONTEXT (enclosing);
5951           else
5952             enclosing = NULL_TREE;
5953         }
5954
5955       htab_delete (circularity_hash);
5956
5957       if (new_class_decl)
5958         return new_class_decl;
5959     }
5960
5961   /* 1- Check for the type in single imports. This will change
5962      TYPE_NAME() if something relevant is found */
5963   find_in_imports (saved_enclosing_type, class_type);
5964
5965   /* 2- And check for the type in the current compilation unit */
5966   if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type))))
5967     {
5968       if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)))
5969         load_class (TYPE_NAME (class_type), 0);
5970       return IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
5971     }
5972
5973   /* 3- Search according to the current package definition */
5974   if (!QUALIFIED_P (TYPE_NAME (class_type)))
5975     {
5976       if ((new_class_decl = qualify_and_find (class_type, ctxp->package,
5977                                              TYPE_NAME (class_type))))
5978         return new_class_decl;
5979     }
5980
5981   /* 4- Check the import on demands. Don't allow bar.baz to be
5982      imported from foo.* */
5983   if (!QUALIFIED_P (TYPE_NAME (class_type)))
5984     if (find_in_imports_on_demand (saved_enclosing_type, class_type))
5985       return NULL_TREE;
5986
5987   /* If found in find_in_imports_on_demand, the type has already been
5988      loaded. */
5989   if ((new_class_decl = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type))))
5990     return new_class_decl;
5991
5992   /* 5- Try with a name qualified with the package name we've seen so far */
5993   if (!QUALIFIED_P (TYPE_NAME (class_type)))
5994     {
5995       tree package;
5996
5997       /* If there is a current package (ctxp->package), it's the first
5998          element of package_list and we can skip it. */
5999       for (package = (ctxp->package ?
6000                       TREE_CHAIN (package_list) : package_list);
6001            package; package = TREE_CHAIN (package))
6002         if ((new_class_decl = qualify_and_find (class_type,
6003                                                TREE_PURPOSE (package),
6004                                                TYPE_NAME (class_type))))
6005           return new_class_decl;
6006     }
6007
6008   /* 5- Check another compilation unit that bears the name of type */
6009   load_class (TYPE_NAME (class_type), 0);
6010
6011   if (!cl)
6012     cl = lookup_cl (decl);
6013
6014   /* If we don't have a value for CL, then we're being called recursively.
6015      We can't check package access just yet, but it will be taken care of
6016      by the caller. */
6017   if (cl)
6018     {
6019       if (check_pkg_class_access (TYPE_NAME (class_type), cl, true, NULL_TREE))
6020         return NULL_TREE;
6021     }
6022
6023   /* 6- Last call for a resolution */
6024   decl_result = IDENTIFIER_CLASS_VALUE (TYPE_NAME (class_type));
6025
6026   /* The final lookup might have registered a.b.c into a.b$c If we
6027      failed at the first lookup, progressively change the name if
6028      applicable and use the matching DECL instead. */
6029   if (!decl_result && QUALIFIED_P (TYPE_NAME (class_type)))
6030     {
6031       char *separator;
6032       tree name = TYPE_NAME (class_type);
6033       char *namebuffer = alloca (IDENTIFIER_LENGTH (name) + 1);
6034
6035       strcpy (namebuffer, IDENTIFIER_POINTER (name));
6036
6037       do {
6038
6039        /* Reach the last '.', and if applicable, replace it by a `$' and
6040           see if this exists as a type. */
6041        if ((separator = strrchr (namebuffer, '.')))
6042          {
6043            *separator = '$';
6044            name = get_identifier (namebuffer);
6045            decl_result = IDENTIFIER_CLASS_VALUE (name);
6046          }
6047       } while (!decl_result && separator);
6048     }
6049   return decl_result;
6050 }
6051
6052 static tree
6053 qualify_and_find (tree class_type, tree package, tree name)
6054 {
6055   tree new_qualified = merge_qualified_name (package, name);
6056   tree new_class_decl;
6057
6058   if (!IDENTIFIER_CLASS_VALUE (new_qualified))
6059     load_class (new_qualified, 0);
6060   if ((new_class_decl = IDENTIFIER_CLASS_VALUE (new_qualified)))
6061     {
6062       if (!CLASS_LOADED_P (TREE_TYPE (new_class_decl)))
6063         load_class (TREE_TYPE (new_class_decl), 0);
6064       TYPE_NAME (class_type) = new_qualified;
6065       return IDENTIFIER_CLASS_VALUE (new_qualified);
6066     }
6067   return NULL_TREE;
6068 }
6069
6070 /* Resolve NAME and lay it out (if not done and if not the current
6071    parsed class). Return a decl node. This function is meant to be
6072    called when type resolution is necessary during the walk pass.  */
6073
6074 static tree
6075 resolve_and_layout (tree something, tree cl)
6076 {
6077   tree decl, decl_type;
6078
6079   /* Don't do that on the current class */
6080   if (something == current_class)
6081     return TYPE_NAME (current_class);
6082
6083   /* Don't do anything for void and other primitive types */
6084   if (JPRIMITIVE_TYPE_P (something) || something == void_type_node)
6085     return NULL_TREE;
6086
6087   /* Pointer types can be reall pointer types or fake pointers. When
6088      finding a real pointer, recheck for primitive types */
6089   if (TREE_CODE (something) == POINTER_TYPE)
6090     {
6091       if (TREE_TYPE (something))
6092         {
6093           something = TREE_TYPE (something);
6094           if (JPRIMITIVE_TYPE_P (something) || something == void_type_node)
6095             return NULL_TREE;
6096         }
6097       else
6098         something = TYPE_NAME (something);
6099     }
6100
6101   /* Don't do anything for arrays of primitive types */
6102   if (TREE_CODE (something) == RECORD_TYPE && TYPE_ARRAY_P (something)
6103       && JPRIMITIVE_TYPE_P (TYPE_ARRAY_ELEMENT (something)))
6104     return NULL_TREE;
6105
6106   /* Something might be a WFL */
6107   if (TREE_CODE (something) == EXPR_WITH_FILE_LOCATION)
6108     something = EXPR_WFL_NODE (something);
6109
6110   /* Otherwise, if something is not and IDENTIFIER_NODE, it can be a a
6111      TYPE_DECL or a real TYPE */
6112   else if (TREE_CODE (something) != IDENTIFIER_NODE)
6113     something = (TREE_CODE (TYPE_NAME (something)) == TYPE_DECL ?
6114             DECL_NAME (TYPE_NAME (something)) : TYPE_NAME (something));
6115
6116   if (!(decl = resolve_no_layout (something, cl)))
6117     return NULL_TREE;
6118
6119   /* Resolve and layout if necessary */
6120   decl_type = TREE_TYPE (decl);
6121   layout_class_methods (decl_type);
6122   /* Check methods */
6123   if (CLASS_FROM_SOURCE_P (decl_type))
6124     java_check_methods (decl);
6125   /* Layout the type if necessary */
6126   if (decl_type != current_class && !CLASS_LOADED_P (decl_type))
6127     safe_layout_class (decl_type);
6128
6129   return decl;
6130 }
6131
6132 /* Resolve a class, returns its decl but doesn't perform any
6133    layout. The current parsing context is saved and restored */
6134
6135 static tree
6136 resolve_no_layout (tree name, tree cl)
6137 {
6138   tree ptr, decl;
6139   BUILD_PTR_FROM_NAME (ptr, name);
6140   java_parser_context_save_global ();
6141   decl = resolve_class (TYPE_NAME (current_class), ptr, NULL_TREE, cl);
6142   java_parser_context_restore_global ();
6143
6144   return decl;
6145 }
6146
6147 /* Called when reporting errors. Skip the '[]'s in a complex array
6148    type description that failed to be resolved. purify_type_name can't
6149    use an identifier tree.  */
6150
6151 static const char *
6152 purify_type_name (const char *name)
6153 {
6154   int len = strlen (name);
6155   int bracket_found;
6156
6157   STRING_STRIP_BRACKETS (name, len, bracket_found);
6158   if (bracket_found)
6159     {
6160       char *stripped_name = xmemdup (name, len, len+1);
6161       stripped_name [len] = '\0';
6162       return stripped_name;
6163     }
6164   return name;
6165 }
6166
6167 /* The type CURRENT refers to can't be found. We print error messages.  */
6168
6169 static void
6170 complete_class_report_errors (jdep *dep)
6171 {
6172   const char *name;
6173
6174   if (!JDEP_WFL (dep))
6175     return;
6176
6177   name = IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep)));
6178   switch (JDEP_KIND (dep))
6179     {
6180     case JDEP_SUPER:
6181       parse_error_context
6182         (JDEP_WFL (dep), "Superclass %qs of class %qs not found",
6183          purify_type_name (name),
6184          IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6185       break;
6186     case JDEP_FIELD:
6187       parse_error_context
6188         (JDEP_WFL (dep), "Type %qs not found in declaration of field %qs",
6189          purify_type_name (name),
6190          IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6191       break;
6192     case JDEP_METHOD:           /* Covers arguments */
6193       parse_error_context
6194         (JDEP_WFL (dep), "Type %qs not found in the declaration of the argument %qs of method %qs",
6195          purify_type_name (name),
6196          IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_DECL_WFL (dep))),
6197          IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_MISC (dep))));
6198       break;
6199     case JDEP_METHOD_RETURN:    /* Covers return type */
6200       parse_error_context
6201         (JDEP_WFL (dep), "Type %qs not found in the declaration of the return type of method %qs",
6202          purify_type_name (name),
6203          IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_DECL_WFL (dep))));
6204       break;
6205     case JDEP_INTERFACE:
6206       parse_error_context
6207         (JDEP_WFL (dep), "Superinterface %qs of %s %qs not found",
6208          IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep))),
6209          (CLASS_OR_INTERFACE (JDEP_DECL (dep), "class", "interface")),
6210          IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6211       break;
6212     case JDEP_VARIABLE:
6213       parse_error_context
6214         (JDEP_WFL (dep), "Type %qs not found in the declaration of the local variable %qs",
6215          purify_type_name (IDENTIFIER_POINTER
6216                            (EXPR_WFL_NODE (JDEP_WFL (dep)))),
6217          IDENTIFIER_POINTER (DECL_NAME (JDEP_DECL (dep))));
6218       break;
6219     case JDEP_EXCEPTION:        /* As specified by `throws' */
6220       parse_error_context
6221           (JDEP_WFL (dep), "Class %qs not found in %<throws%>",
6222          IDENTIFIER_POINTER (EXPR_WFL_NODE (JDEP_WFL (dep))));
6223       break;
6224     default:
6225       /* Fix for -Wall. Just break doing nothing. The error will be
6226          caught later */
6227       break;
6228     }
6229 }
6230
6231 /* Return a static string containing the DECL prototype string. If
6232    DECL is a constructor, use the class name instead of the form
6233    <init> */
6234
6235 static const char *
6236 get_printable_method_name (tree decl)
6237 {
6238   const char *to_return;
6239   tree name = NULL_TREE;
6240
6241   if (DECL_CONSTRUCTOR_P (decl))
6242     {
6243       name = DECL_NAME (decl);
6244       DECL_NAME (decl) = DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl)));
6245     }
6246
6247   to_return = lang_printable_name (decl, 2);
6248   if (DECL_CONSTRUCTOR_P (decl))
6249     DECL_NAME (decl) = name;
6250
6251   return to_return;
6252 }
6253
6254 /* Track method being redefined inside the same class. As a side
6255    effect, set DECL_NAME to an IDENTIFIER (prior entering this
6256    function it's a FWL, so we can track errors more accurately.)  */
6257
6258 static int
6259 check_method_redefinition (tree class, tree method)
6260 {
6261   tree redef, sig;
6262
6263   /* There's no need to verify <clinit> and finit$ and instinit$ */
6264   if (DECL_CLINIT_P (method)
6265       || DECL_FINIT_P (method) || DECL_INSTINIT_P (method))
6266     return 0;
6267
6268   sig = TYPE_ARGUMENT_SIGNATURE (TREE_TYPE (method));
6269   for (redef = TYPE_METHODS (class); redef; redef = TREE_CHAIN (redef))
6270     {
6271       if (redef == method)
6272         break;
6273       if (DECL_NAME (redef) == DECL_NAME (method)
6274           && sig == TYPE_ARGUMENT_SIGNATURE (TREE_TYPE (redef))
6275           && !DECL_ARTIFICIAL (method))
6276         {
6277           parse_error_context
6278             (DECL_FUNCTION_WFL (method), "Duplicate %s declaration %qs",
6279              (DECL_CONSTRUCTOR_P (redef) ? "constructor" : "method"),
6280              get_printable_method_name (redef));
6281           return 1;
6282         }
6283     }
6284   return 0;
6285 }
6286
6287 /* Return 1 if check went ok, 0 otherwise.  */
6288 static int
6289 check_abstract_method_definitions (int do_interface, tree class_decl,
6290                                    tree type)
6291 {
6292   tree class = TREE_TYPE (class_decl);
6293   tree method, end_type;
6294   int ok = 1;
6295
6296   end_type = (do_interface ? object_type_node : type);
6297   for (method = TYPE_METHODS (type); method; method = TREE_CHAIN (method))
6298     {
6299       tree other_super, other_method, method_sig, method_name;
6300       int found = 0;
6301       int end_type_reached = 0;
6302
6303       if (!METHOD_ABSTRACT (method) || METHOD_FINAL (method))
6304         continue;
6305
6306       /* Now verify that somewhere in between TYPE and CLASS,
6307          abstract method METHOD gets a non abstract definition
6308          that is inherited by CLASS.  */
6309
6310       method_sig = build_java_signature (TREE_TYPE (method));
6311       method_name = DECL_NAME (method);
6312       if (TREE_CODE (method_name) == EXPR_WITH_FILE_LOCATION)
6313         method_name = EXPR_WFL_NODE (method_name);
6314
6315       other_super = class;
6316       do {
6317         if (other_super == end_type)
6318           end_type_reached = 1;
6319
6320         /* Method search */
6321         for (other_method = TYPE_METHODS (other_super); other_method;
6322             other_method = TREE_CHAIN (other_method))
6323           {
6324             tree s = build_java_signature (TREE_TYPE (other_method));
6325             tree other_name = DECL_NAME (other_method);
6326
6327             if (TREE_CODE (other_name) == EXPR_WITH_FILE_LOCATION)
6328               other_name = EXPR_WFL_NODE (other_name);
6329             if (!DECL_CLINIT_P (other_method)
6330                 && !DECL_CONSTRUCTOR_P (other_method)
6331                 && method_name == other_name
6332                 && method_sig == s
6333                 && !METHOD_ABSTRACT (other_method))
6334              {
6335                found = 1;
6336                break;
6337              }
6338           }
6339         other_super = CLASSTYPE_SUPER (other_super);
6340       } while (!end_type_reached);
6341
6342       /* Report that abstract METHOD didn't find an implementation
6343          that CLASS can use. */
6344       if (!found)
6345         {
6346           char *t = xstrdup (lang_printable_name
6347                             (TREE_TYPE (TREE_TYPE (method)), 0));
6348           tree ccn = DECL_NAME (TYPE_NAME (DECL_CONTEXT (method)));
6349
6350           parse_error_context
6351             (lookup_cl (class_decl),
6352              "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",
6353              IDENTIFIER_POINTER (DECL_NAME (class_decl)),
6354              t, lang_printable_name (method, 2),
6355              (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))) ?
6356               "interface" : "class"),
6357              IDENTIFIER_POINTER (ccn),
6358              (CLASS_INTERFACE (class_decl) ? "interface" : "class"),
6359              IDENTIFIER_POINTER (DECL_NAME (class_decl)));
6360           ok = 0;
6361           free (t);
6362         }
6363     }
6364
6365   if (ok && do_interface)
6366     {
6367       /* Check for implemented interfaces. */
6368       int i;
6369       tree base_binfo;
6370       
6371       for (i = 1;
6372            ok && BINFO_BASE_ITERATE (TYPE_BINFO (type), i, base_binfo);
6373            i++)
6374         ok = check_abstract_method_definitions (1, class_decl,
6375                                                 BINFO_TYPE (base_binfo));
6376     }
6377
6378   return ok;
6379 }
6380
6381 /* Check that CLASS_DECL somehow implements all inherited abstract
6382    methods.  */
6383
6384 static void
6385 java_check_abstract_method_definitions (tree class_decl)
6386 {
6387   tree class = TREE_TYPE (class_decl);
6388   tree super, base_binfo;
6389   int i;
6390
6391   if (CLASS_ABSTRACT (class_decl))
6392     return;
6393
6394   /* Check for inherited types */
6395   super = class;
6396   do {
6397     super = CLASSTYPE_SUPER (super);
6398     check_abstract_method_definitions (0, class_decl, super);
6399   } while (super != object_type_node);
6400
6401   /* Check for implemented interfaces. */
6402   for (i = 1; BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
6403     check_abstract_method_definitions (1, class_decl, BINFO_TYPE (base_binfo));
6404 }
6405
6406 /* Check all the types method DECL uses and return 1 if all of them
6407    are now complete, 0 otherwise. This is used to check whether its
6408    safe to build a method signature or not.  */
6409
6410 static int
6411 check_method_types_complete (tree decl)
6412 {
6413   tree type = TREE_TYPE (decl);
6414   tree args;
6415
6416   if (!INCOMPLETE_TYPE_P (TREE_TYPE (type)))
6417     return 0;
6418
6419   args = TYPE_ARG_TYPES (type);
6420   if (TREE_CODE (type) == METHOD_TYPE)
6421     args = TREE_CHAIN (args);
6422   for (; args != end_params_node; args = TREE_CHAIN (args))
6423     if (INCOMPLETE_TYPE_P (TREE_VALUE (args)))
6424       return 0;
6425
6426   return 1;
6427 }
6428
6429 /* Visible interface to check methods contained in CLASS_DECL */
6430
6431 void
6432 java_check_methods (tree class_decl)
6433 {
6434   if (CLASS_METHOD_CHECKED_P (TREE_TYPE (class_decl)))
6435     return;
6436
6437   if (CLASS_INTERFACE (class_decl))
6438     java_check_abstract_methods (class_decl);
6439   else
6440     java_check_regular_methods (class_decl);
6441
6442   CLASS_METHOD_CHECKED_P (TREE_TYPE (class_decl)) = 1;
6443 }
6444
6445 /* Like not_accessible_p, but doesn't refer to the current class at
6446    all.  */
6447 static bool
6448 hack_is_accessible_p (tree member, tree from_where)
6449 {
6450   int flags = get_access_flags_from_decl (member);
6451
6452   if (from_where == DECL_CONTEXT (member)
6453       || (flags & ACC_PUBLIC))
6454     return true;
6455
6456   if ((flags & ACC_PROTECTED))
6457     {
6458       if (inherits_from_p (from_where, DECL_CONTEXT (member)))
6459         return true;
6460     }
6461
6462   if ((flags & ACC_PRIVATE))
6463     return false;
6464
6465   /* Package private, or protected.  */
6466   return in_same_package (TYPE_NAME (from_where),
6467                           TYPE_NAME (DECL_CONTEXT (member)));
6468 }
6469
6470 /* Check all the methods of CLASS_DECL. Methods are first completed
6471    then checked according to regular method existence rules.  If no
6472    constructor for CLASS_DECL were encountered, then build its
6473    declaration.  */
6474 static void
6475 java_check_regular_methods (tree class_decl)
6476 {
6477   int saw_constructor = ANONYMOUS_CLASS_P (TREE_TYPE (class_decl));
6478   tree method;
6479   tree class = TREE_TYPE (class_decl);
6480   tree found = NULL_TREE;
6481   tree mthrows;
6482
6483   /* It is not necessary to check methods defined in java.lang.Object */
6484   if (class == object_type_node)
6485     return;
6486
6487   if (!TYPE_NVIRTUALS (class))
6488     TYPE_METHODS (class) = nreverse (TYPE_METHODS (class));
6489
6490   /* Should take interfaces into account. FIXME */
6491   for (method = TYPE_METHODS (class); method; method = TREE_CHAIN (method))
6492     {
6493       tree sig;
6494       tree method_wfl = DECL_FUNCTION_WFL (method);
6495       int aflags;
6496
6497       /* Check for redefinitions */
6498       if (check_method_redefinition (class, method))
6499         continue;
6500
6501       /* We verify things thrown by the method.  They must inherit from
6502          java.lang.Throwable.  */
6503       for (mthrows = DECL_FUNCTION_THROWS (method);
6504            mthrows; mthrows = TREE_CHAIN (mthrows))
6505         {
6506           if (!inherits_from_p (TREE_VALUE (mthrows), throwable_type_node))
6507             parse_error_context
6508               (TREE_PURPOSE (mthrows), "Class %qs in %<throws%> clause must be a subclass of class %<java.lang.Throwable%>",
6509                IDENTIFIER_POINTER
6510                  (DECL_NAME (TYPE_NAME (TREE_VALUE (mthrows)))));
6511         }
6512
6513       /* If we see one constructor a mark so we don't generate the
6514          default one.  Also skip other verifications: constructors
6515          can't be inherited hence hidden or overridden.  */
6516       if (DECL_CONSTRUCTOR_P (method))
6517         {
6518           saw_constructor = 1;
6519           continue;
6520         }
6521
6522       sig = build_java_argument_signature (TREE_TYPE (method));
6523       found = lookup_argument_method_generic (class, DECL_NAME (method), sig,
6524                                               SEARCH_SUPER | SEARCH_INTERFACE);
6525
6526       /* Inner class can't declare static methods */
6527       if (METHOD_STATIC (method) && !TOPLEVEL_CLASS_DECL_P (class_decl))
6528         {
6529           char *t = xstrdup (lang_printable_name (class, 0));
6530           parse_error_context
6531             (method_wfl, "Method %qs can't be static in inner class %qs. Only members of interfaces and top-level classes can be static",
6532              lang_printable_name (method, 2), t);
6533           free (t);
6534         }
6535
6536       /* Nothing overrides or it's a private method. */
6537       if (!found)
6538         continue;
6539       if (METHOD_PRIVATE (found))
6540         {
6541           found = NULL_TREE;
6542           continue;
6543         }
6544
6545       /* If `found' is declared in an interface, make sure the
6546          modifier matches. */
6547       if (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (found)))
6548           && clinit_identifier_node != DECL_NAME (found)
6549           && !METHOD_PUBLIC (method))
6550         {
6551           tree found_decl = TYPE_NAME (DECL_CONTEXT (found));
6552           parse_error_context (method_wfl, "Class %qs must override %qs with a public method in order to implement interface %qs",
6553                                IDENTIFIER_POINTER (DECL_NAME (class_decl)),
6554                                lang_printable_name (method, 2),
6555                                IDENTIFIER_POINTER (DECL_NAME (found_decl)));
6556         }
6557
6558       /* Can't override a method with the same name and different return
6559          types. */
6560       if (TREE_TYPE (TREE_TYPE (found)) != TREE_TYPE (TREE_TYPE (method)))
6561         {
6562           char *t = xstrdup
6563             (lang_printable_name (TREE_TYPE (TREE_TYPE (found)), 2));
6564           parse_error_context
6565             (method_wfl,
6566              "Method %qs was defined with return type %qs in class %qs",
6567              lang_printable_name (found, 2), t,
6568              IDENTIFIER_POINTER
6569                (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6570           free (t);
6571         }
6572
6573       aflags = get_access_flags_from_decl (found);
6574
6575       /* Can't override final. Can't override static. */
6576       if (METHOD_FINAL (found) || METHOD_STATIC (found))
6577         {
6578           /* Static *can* override static */
6579           if (METHOD_STATIC (found) && METHOD_STATIC (method))
6580             continue;
6581           parse_error_context
6582             (method_wfl,
6583              "%s methods can't be overridden. Method %qs is %s in class %qs",
6584              (METHOD_FINAL (found) ? "Final" : "Static"),
6585              lang_printable_name (found, 2),
6586              (METHOD_FINAL (found) ? "final" : "static"),
6587              IDENTIFIER_POINTER
6588                (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6589           continue;
6590         }
6591
6592       /* Static method can't override instance method. */
6593       if (METHOD_STATIC (method))
6594         {
6595           parse_error_context
6596             (method_wfl,
6597              "Instance methods can't be overridden by a static method. Method %qs is an instance method in class %qs",
6598              lang_printable_name (found, 2),
6599              IDENTIFIER_POINTER
6600                (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6601           continue;
6602         }
6603
6604       /* - Overriding/hiding public must be public
6605          - Overriding/hiding protected must be protected or public
6606          - If the overridden or hidden method has default (package)
6607            access, then the overriding or hiding method must not be
6608            private; otherwise, a compile-time error occurs.  If
6609            `found' belongs to an interface, things have been already
6610            taken care of.  */
6611       if (!CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (found)))
6612           && ((METHOD_PUBLIC (found) && !METHOD_PUBLIC (method))
6613               || (METHOD_PROTECTED (found)
6614                   && !(METHOD_PUBLIC (method) || METHOD_PROTECTED (method)))
6615               || (!(aflags & (ACC_PUBLIC | ACC_PRIVATE | ACC_STATIC))
6616                   && METHOD_PRIVATE (method))))
6617         {
6618           parse_error_context
6619             (method_wfl,
6620              "Methods can't be overridden to be more private. Method %qs is not %s in class %qs", lang_printable_name (method, 2),
6621              (METHOD_PUBLIC (method) ? "public" :
6622               (METHOD_PRIVATE (method) ? "private" : "protected")),
6623              IDENTIFIER_POINTER (DECL_NAME
6624                                  (TYPE_NAME (DECL_CONTEXT (found)))));
6625           continue;
6626         }
6627
6628       /* Check this method against all the other implementations it
6629          overrides.  Here we only check the class hierarchy; the rest
6630          of the checking is done later.  If this method is just a
6631          Miranda method, we can skip the check.  */
6632       if (! METHOD_INVISIBLE (method))
6633         check_concrete_throws_clauses (class, method, DECL_NAME (method), sig);
6634     }
6635
6636   /* The above throws clause check only looked at superclasses.  Now
6637      we must also make sure that all methods declared in interfaces
6638      have compatible throws clauses.  FIXME: there are more efficient
6639      ways to organize this checking; we should implement one.  */
6640   check_interface_throws_clauses (class, class);
6641
6642   if (!TYPE_NVIRTUALS (class))
6643     TYPE_METHODS (class) = nreverse (TYPE_METHODS (class));
6644
6645   /* Search for inherited abstract method not yet implemented in this
6646      class.  */
6647   java_check_abstract_method_definitions (class_decl);
6648
6649   if (!saw_constructor)
6650     abort ();
6651 }
6652
6653 /* Check to make sure that all the methods in all the interfaces
6654    implemented by CLASS_DECL are compatible with the concrete
6655    implementations available in CHECK_CLASS_DECL.  */
6656 static void
6657 check_interface_throws_clauses (tree check_class_decl, tree class_decl)
6658 {
6659   for (; class_decl != NULL_TREE; class_decl = CLASSTYPE_SUPER (class_decl))
6660     {
6661       int i;
6662
6663       if (! CLASS_LOADED_P (class_decl))
6664         {
6665           if (CLASS_FROM_SOURCE_P (class_decl))
6666             safe_layout_class (class_decl);
6667           else
6668             load_class (class_decl, 1);
6669         }
6670
6671       for (i = BINFO_N_BASE_BINFOS (TYPE_BINFO (class_decl)) - 1; i > 0; --i)
6672         {
6673           tree interface
6674             = BINFO_TYPE (BINFO_BASE_BINFO (TYPE_BINFO (class_decl), i));
6675           tree iface_method;
6676
6677           for (iface_method = TYPE_METHODS (interface);
6678                iface_method != NULL_TREE;
6679                iface_method = TREE_CHAIN (iface_method))
6680             {
6681               tree sig, method;
6682
6683               /* First look for a concrete method implemented or
6684                  inherited by this class.  No need to search
6685                  interfaces here, since we're already looking through
6686                  all of them.  */
6687               sig = build_java_argument_signature (TREE_TYPE (iface_method));
6688               method
6689                 = lookup_argument_method_generic (check_class_decl,
6690                                                   DECL_NAME (iface_method),
6691                                                   sig, SEARCH_VISIBLE);
6692               /* If we don't find an implementation, that is ok.  Any
6693                  potential errors from that are diagnosed elsewhere.
6694                  Also, multiple inheritance with conflicting throws
6695                  clauses is fine in the absence of a concrete
6696                  implementation.  */
6697               if (method != NULL_TREE && !METHOD_ABSTRACT (method)
6698                   && !METHOD_INVISIBLE (iface_method))
6699                 {
6700                   tree method_wfl = DECL_FUNCTION_WFL (method);
6701                   check_throws_clauses (method, method_wfl, iface_method);
6702                 }
6703             }
6704
6705           /* Now check superinterfaces.  */
6706           check_interface_throws_clauses (check_class_decl, interface);
6707         }
6708     }
6709 }
6710
6711 /* Check throws clauses of a method against the clauses of all the
6712    methods it overrides.  We do this by searching up the class
6713    hierarchy, examining all matching accessible methods.  */
6714 static void
6715 check_concrete_throws_clauses (tree class, tree self_method,
6716                                tree name, tree signature)
6717 {
6718   tree method = lookup_argument_method_generic (class, name, signature,
6719                                                 SEARCH_SUPER | SEARCH_VISIBLE);
6720   while (method != NULL_TREE)
6721     {
6722       if (! METHOD_INVISIBLE (method) && hack_is_accessible_p (method, class))
6723         check_throws_clauses (self_method, DECL_FUNCTION_WFL (self_method),
6724                               method);
6725
6726       method = lookup_argument_method_generic (DECL_CONTEXT (method),
6727                                                name, signature,
6728                                                SEARCH_SUPER | SEARCH_VISIBLE);
6729     }
6730 }
6731
6732 /* Generate an error if the `throws' clause of METHOD (if any) is
6733    incompatible with the `throws' clause of FOUND (if any).  */
6734 static void
6735 check_throws_clauses (tree method, tree method_wfl, tree found)
6736 {
6737   tree mthrows;
6738
6739   /* Can't check these things with class loaded from bytecode. FIXME */
6740   if (!CLASS_FROM_SOURCE_P (DECL_CONTEXT (found)))
6741     return;
6742
6743   for (mthrows = DECL_FUNCTION_THROWS (method);
6744        mthrows; mthrows = TREE_CHAIN (mthrows))
6745     {
6746       tree fthrows;
6747
6748       /* We don't verify unchecked expressions */
6749       if (IS_UNCHECKED_EXCEPTION_P (TREE_VALUE (mthrows)))
6750         continue;
6751       /* Checked expression must be compatible */
6752       for (fthrows = DECL_FUNCTION_THROWS (found);
6753            fthrows; fthrows = TREE_CHAIN (fthrows))
6754         {
6755           if (inherits_from_p (TREE_VALUE (mthrows), TREE_VALUE (fthrows)))
6756             break;
6757         }
6758       if (!fthrows)
6759         {
6760           parse_error_context
6761             (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",
6762              IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (TREE_VALUE (mthrows)))),
6763              lang_printable_name (found, 2),
6764              IDENTIFIER_POINTER
6765              (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6766         }
6767     }
6768 }
6769
6770 /* Check abstract method of interface INTERFACE */
6771 static void
6772 java_check_abstract_methods (tree interface_decl)
6773 {
6774   int i;
6775   tree method, found;
6776   tree interface = TREE_TYPE (interface_decl);
6777   tree base_binfo;
6778
6779   for (method = TYPE_METHODS (interface); method; method = TREE_CHAIN (method))
6780     {
6781       /* 2- Check for double definition inside the defining interface */
6782       if (check_method_redefinition (interface, method))
6783         continue;
6784
6785       /* 3- Overriding is OK as far as we preserve the return type.  */
6786       found = lookup_java_interface_method2 (interface, method);
6787       if (found)
6788         {
6789           char *t;
6790           t = xstrdup (lang_printable_name (TREE_TYPE (TREE_TYPE (found)), 2));
6791           parse_error_context
6792             (DECL_FUNCTION_WFL (found),
6793              "Method %qs was defined with return type %qs in class %qs",
6794              lang_printable_name (found, 2), t,
6795              IDENTIFIER_POINTER
6796                (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6797           free (t);
6798           continue;
6799         }
6800     }
6801
6802   /* 4- Inherited methods can't differ by their returned types */
6803   for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (interface), i, base_binfo); i++)
6804     {
6805       tree sub_interface_method, sub_interface;
6806
6807       sub_interface = BINFO_TYPE (base_binfo);
6808       for (sub_interface_method = TYPE_METHODS (sub_interface);
6809            sub_interface_method;
6810            sub_interface_method = TREE_CHAIN (sub_interface_method))
6811         {
6812           found = lookup_java_interface_method2 (interface,
6813                                                  sub_interface_method);
6814           if (found && (found != sub_interface_method))
6815             {
6816               parse_error_context
6817                 (lookup_cl (sub_interface_method),
6818                  "Interface %qs inherits method %qs from interface %qs. This method is redefined with a different return type in interface %qs",
6819                  IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (interface))),
6820                  lang_printable_name (found, 2),
6821                  IDENTIFIER_POINTER
6822                    (DECL_NAME (TYPE_NAME
6823                                (DECL_CONTEXT (sub_interface_method)))),
6824                  IDENTIFIER_POINTER
6825                    (DECL_NAME (TYPE_NAME (DECL_CONTEXT (found)))));
6826             }
6827         }
6828     }
6829 }
6830
6831 /* Lookup methods in interfaces using their name and partial
6832    signature. Return a matching method only if their types differ.  */
6833
6834 static tree
6835 lookup_java_interface_method2 (tree class, tree method_decl)
6836 {
6837   int i;
6838   tree base_binfo;
6839   tree to_return;
6840
6841   for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
6842     {
6843       if ((BINFO_TYPE (base_binfo) != object_type_node)
6844           && (to_return =
6845               lookup_java_method2 (BINFO_TYPE (base_binfo), method_decl, 1)))
6846         return to_return;
6847     }
6848   for (i = 0; BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
6849     {
6850       to_return = lookup_java_interface_method2
6851         (BINFO_TYPE (base_binfo), method_decl);
6852       if (to_return)
6853         return to_return;
6854     }
6855
6856   return NULL_TREE;
6857 }
6858
6859 /* Lookup method using their name and partial signature. Return a
6860    matching method only if their types differ.  */
6861
6862 static tree
6863 lookup_java_method2 (tree clas, tree method_decl, int do_interface)
6864 {
6865   tree method, method_signature, method_name, method_type, name;
6866
6867   method_signature = build_java_argument_signature (TREE_TYPE (method_decl));
6868   name = DECL_NAME (method_decl);
6869   method_name = (TREE_CODE (name) == EXPR_WITH_FILE_LOCATION ?
6870                  EXPR_WFL_NODE (name) : name);
6871   method_type = TREE_TYPE (TREE_TYPE (method_decl));
6872
6873   while (clas != NULL_TREE)
6874     {
6875       for (method = TYPE_METHODS (clas);
6876            method != NULL_TREE;  method = TREE_CHAIN (method))
6877         {
6878           tree method_sig = build_java_argument_signature (TREE_TYPE (method));
6879           tree name = DECL_NAME (method);
6880           if ((TREE_CODE (name) == EXPR_WITH_FILE_LOCATION ?
6881                EXPR_WFL_NODE (name) : name) == method_name
6882               && method_sig == method_signature
6883               && TREE_TYPE (TREE_TYPE (method)) != method_type)
6884             return method;
6885         }
6886       clas = (do_interface ? NULL_TREE : CLASSTYPE_SUPER (clas));
6887     }
6888   return NULL_TREE;
6889 }
6890
6891 /* Return the line that matches DECL line number, and try its best to
6892    position the column number. Used during error reports.
6893    FUTURE/FIXME: return source_location instead of node. */
6894
6895 static GTY(()) tree cl_v;
6896 static tree
6897 lookup_cl (tree decl)
6898 {
6899 #ifndef USE_MAPPED_LOCATION
6900   char *line, *found;
6901 #endif
6902
6903   if (!decl)
6904     return NULL_TREE;
6905
6906   if (cl_v == NULL_TREE)
6907     {
6908       cl_v = build_unknown_wfl (NULL_TREE);
6909     }
6910
6911 #ifdef USE_MAPPED_LOCATION
6912   SET_EXPR_LOCATION (cl_v, DECL_SOURCE_LOCATION (decl));
6913 #else
6914   EXPR_WFL_FILENAME_NODE (cl_v) = get_identifier (DECL_SOURCE_FILE (decl));
6915   EXPR_WFL_SET_LINECOL (cl_v, DECL_SOURCE_LINE (decl), -1);
6916
6917   line = java_get_line_col (EXPR_WFL_FILENAME (cl_v),
6918                             EXPR_WFL_LINENO (cl_v), EXPR_WFL_COLNO (cl_v));
6919
6920   found = strstr ((const char *)line,
6921                   (const char *)IDENTIFIER_POINTER (DECL_NAME (decl)));
6922   if (found)
6923     EXPR_WFL_SET_LINECOL (cl_v, EXPR_WFL_LINENO (cl_v), found - line);
6924 #endif
6925
6926   return cl_v;
6927 }
6928
6929 /* Look for a simple name in the single-type import list */
6930
6931 static tree
6932 find_name_in_single_imports (tree name)
6933 {
6934   tree node;
6935
6936   for (node = ctxp->import_list; node; node = TREE_CHAIN (node))
6937     if (TREE_VALUE (node) == name)
6938       return (EXPR_WFL_NODE (TREE_PURPOSE (node)));
6939
6940   return NULL_TREE;
6941 }
6942
6943 /* Process all single-type import. */
6944
6945 static int
6946 process_imports (void)
6947 {
6948   tree import;
6949   int error_found;
6950
6951   for (import = ctxp->import_list; import; import = TREE_CHAIN (import))
6952     {
6953       tree to_be_found = EXPR_WFL_NODE (TREE_PURPOSE (import));
6954       char *original_name;
6955
6956       original_name = xmemdup (IDENTIFIER_POINTER (to_be_found),
6957                                IDENTIFIER_LENGTH (to_be_found),
6958                                IDENTIFIER_LENGTH (to_be_found) + 1);
6959
6960       /* Don't load twice something already defined. */
6961       if (IDENTIFIER_CLASS_VALUE (to_be_found))
6962         continue;
6963
6964       while (1)
6965         {
6966           tree left;
6967
6968           QUALIFIED_P (to_be_found) = 1;
6969           load_class (to_be_found, 0);
6970           error_found =
6971             check_pkg_class_access (to_be_found, TREE_PURPOSE (import), true, NULL_TREE);
6972
6973           /* We found it, we can bail out */
6974           if (IDENTIFIER_CLASS_VALUE (to_be_found))
6975             {
6976               check_deprecation (TREE_PURPOSE (import),
6977                                  IDENTIFIER_CLASS_VALUE (to_be_found));
6978               break;
6979             }
6980
6981           /* We haven't found it. Maybe we're trying to access an
6982              inner class.  The only way for us to know is to try again
6983              after having dropped a qualifier. If we can't break it further,
6984              we have an error. */
6985           if (split_qualified_name (&left, NULL, to_be_found))
6986             break;
6987
6988           to_be_found = left;
6989         }
6990       if (!IDENTIFIER_CLASS_VALUE (to_be_found))
6991         {
6992           parse_error_context (TREE_PURPOSE (import),
6993                                "Class or interface %qs not found in import",
6994                                original_name);
6995           error_found = 1;
6996         }
6997
6998       free (original_name);
6999       if (error_found)
7000         return 1;
7001     }
7002   return 0;
7003 }
7004
7005 /* Possibly find and mark a class imported by a single-type import
7006    statement.  */
7007
7008 static void
7009 find_in_imports (tree enclosing_type, tree class_type)
7010 {
7011   tree import = (enclosing_type ? TYPE_IMPORT_LIST (enclosing_type) :
7012                  ctxp->import_list);
7013   while (import)
7014     {
7015       if (TREE_VALUE (import) == TYPE_NAME (class_type))
7016         {
7017           TYPE_NAME (class_type) = EXPR_WFL_NODE (TREE_PURPOSE (import));
7018           QUALIFIED_P (TYPE_NAME (class_type)) = 1;
7019           return;
7020         }
7021       import = TREE_CHAIN (import);
7022     }
7023 }
7024
7025 static int
7026 note_possible_classname (const char *name, int len)
7027 {
7028   tree node;
7029   if (len > 5 && strncmp (&name [len-5], ".java", 5) == 0)
7030     len = len - 5;
7031   else if (len > 6 && strncmp (&name [len-6], ".class", 6) == 0)
7032     len = len - 6;
7033   else
7034     return 0;
7035   node = ident_subst (name, len, "", '/', '.', "");
7036   IS_A_CLASSFILE_NAME (node) = 1; /* Or soon to be */
7037   QUALIFIED_P (node) = strchr (name, '/') ? 1 : 0;
7038   return 1;
7039 }
7040
7041 /* Read a import directory, gathering potential match for further type
7042    references. Indifferently reads a filesystem or a ZIP archive
7043    directory.  */
7044
7045 static void
7046 read_import_dir (tree wfl)
7047 {
7048   tree package_id = EXPR_WFL_NODE (wfl);
7049   const char *package_name = IDENTIFIER_POINTER (package_id);
7050   int package_length = IDENTIFIER_LENGTH (package_id);
7051   DIR *dirp = NULL;
7052   JCF *saved_jcf = current_jcf;
7053
7054   int found = 0;
7055   int k;
7056   void *entry;
7057   struct buffer filename[1];
7058
7059   if (IS_AN_IMPORT_ON_DEMAND_P (package_id))
7060     return;
7061   IS_AN_IMPORT_ON_DEMAND_P (package_id) = 1;
7062
7063   BUFFER_INIT (filename);
7064   buffer_grow (filename, package_length + 100);
7065
7066   for (entry = jcf_path_start (); entry != NULL; entry = jcf_path_next (entry))
7067     {
7068       const char *entry_name = jcf_path_name (entry);
7069       int entry_length = strlen (entry_name);
7070       if (jcf_path_is_zipfile (entry))
7071         {
7072           ZipFile *zipf;
7073           buffer_grow (filename, entry_length);
7074           memcpy (filename->data, entry_name, entry_length - 1);
7075           filename->data[entry_length-1] = '\0';
7076           zipf = opendir_in_zip ((const char *) filename->data, jcf_path_is_system (entry));
7077           if (zipf == NULL)
7078             error ("malformed .zip archive in CLASSPATH: %s", entry_name);
7079           else
7080             {
7081               ZipDirectory *zipd = (ZipDirectory *) zipf->central_directory;
7082               BUFFER_RESET (filename);
7083               for (k = 0; k < package_length; k++)
7084                 {
7085                   char ch = package_name[k];
7086                   *filename->ptr++ = ch == '.' ? '/' : ch;
7087                 }
7088               *filename->ptr++ = '/';
7089
7090               for (k = 0; k < zipf->count;  k++, zipd = ZIPDIR_NEXT (zipd))
7091                 {
7092                   const char *current_entry = ZIPDIR_FILENAME (zipd);
7093                   int current_entry_len = zipd->filename_length;
7094
7095                   if (current_entry_len >= BUFFER_LENGTH (filename)
7096                       && strncmp ((const char *) filename->data, current_entry,
7097                                   BUFFER_LENGTH (filename)) != 0)
7098                     continue;
7099                   found |= note_possible_classname (current_entry,
7100                                                     current_entry_len);
7101                 }
7102             }
7103         }
7104       else
7105         {
7106           BUFFER_RESET (filename);
7107           buffer_grow (filename, entry_length + package_length + 4);
7108           strcpy ((char *) filename->data, entry_name);
7109           filename->ptr = filename->data + entry_length;
7110           for (k = 0; k < package_length; k++)
7111             {
7112               char ch = package_name[k];
7113               *filename->ptr++ = ch == '.' ? '/' : ch;
7114             }
7115           *filename->ptr = '\0';
7116
7117           dirp = opendir ((const char *) filename->data);
7118           if (dirp == NULL)
7119             continue;
7120           *filename->ptr++ = '/';
7121           for (;;)
7122             {
7123               int len;
7124               const char *d_name;
7125               struct dirent *direntp = readdir (dirp);
7126               if (!direntp)
7127                 break;
7128               d_name = direntp->d_name;
7129               len = strlen (direntp->d_name);
7130               buffer_grow (filename, len+1);
7131               strcpy ((char *) filename->ptr, d_name);
7132               found |= note_possible_classname ((const char *) filename->data + entry_length,
7133                                                 package_length+len+1);
7134             }
7135           if (dirp)
7136             closedir (dirp);
7137         }
7138     }
7139
7140   free (filename->data);
7141
7142   /* Here we should have a unified way of retrieving an entry, to be
7143      indexed. */
7144   if (!found)
7145     {
7146       static int first = 1;
7147       if (first)
7148         {
7149           error ("Can't find default package %qs. Check the CLASSPATH environment variable and the access to the archives", package_name);
7150           java_error_count++;
7151           first = 0;
7152         }
7153       else
7154         parse_error_context (wfl, "Package %qs not found in import",
7155                              package_name);
7156       current_jcf = saved_jcf;
7157       return;
7158     }
7159   current_jcf = saved_jcf;
7160 }
7161
7162 /* Possibly find a type in the import on demands specified
7163    types. Returns 1 if an error occurred, 0 otherwise. Run through the
7164    entire list, to detected potential double definitions.  */
7165
7166 static int
7167 find_in_imports_on_demand (tree enclosing_type, tree class_type)
7168 {
7169   tree class_type_name = TYPE_NAME (class_type);
7170   tree import = (enclosing_type ? TYPE_IMPORT_DEMAND_LIST (enclosing_type) :
7171                   ctxp->import_demand_list);
7172   tree cl = NULL_TREE;
7173   int seen_once = -1;   /* -1 when not set, 1 if seen once, >1 otherwise. */
7174   int to_return = -1;   /* -1 when not set, 0 or 1 otherwise */
7175   tree node;
7176
7177   for (; import; import = TREE_CHAIN (import))
7178     {
7179       location_t saved_location = input_location;
7180       int access_check;
7181       const char *id_name;
7182       tree decl, type_name_copy;
7183
7184       obstack_grow (&temporary_obstack,
7185                     IDENTIFIER_POINTER (EXPR_WFL_NODE (TREE_PURPOSE (import))),
7186                     IDENTIFIER_LENGTH (EXPR_WFL_NODE (TREE_PURPOSE (import))));
7187       obstack_1grow (&temporary_obstack, '.');
7188       obstack_grow0 (&temporary_obstack,
7189                      IDENTIFIER_POINTER (class_type_name),
7190                      IDENTIFIER_LENGTH (class_type_name));
7191       id_name = obstack_finish (&temporary_obstack);
7192
7193       if (! (node = maybe_get_identifier (id_name)))
7194         continue;
7195
7196       /* Setup input_line so that it refers to the line of the import (in
7197          case we parse a class file and encounter errors */
7198 #ifdef USE_MAPPED_LOCATION
7199       input_location = EXPR_LOCATION (TREE_PURPOSE (import));
7200 #else
7201       input_line = EXPR_WFL_LINENO (TREE_PURPOSE (import));
7202 #endif
7203
7204       type_name_copy = TYPE_NAME (class_type);
7205       TYPE_NAME (class_type) = node;
7206       QUALIFIED_P (node) = 1;
7207       decl = IDENTIFIER_CLASS_VALUE (node);
7208       access_check = -1;
7209       /* If there is no DECL set for the class or if the class isn't
7210          loaded and not seen in source yet, then load */
7211       if (!decl || ! CLASS_LOADED_P (TREE_TYPE (decl)))
7212         {
7213           load_class (node, 0);
7214           decl = IDENTIFIER_CLASS_VALUE (node);
7215         }
7216       if (decl && ! INNER_CLASS_P (TREE_TYPE (decl)))
7217         access_check = check_pkg_class_access (node, TREE_PURPOSE (import),
7218                                                false, NULL_TREE);
7219       else
7220         /* 6.6.1: Inner classes are subject to member access rules. */
7221         access_check = 0;
7222
7223       input_location = saved_location;
7224
7225       /* If the loaded class is not accessible or couldn't be loaded,
7226          we restore the original TYPE_NAME and process the next
7227          import. */
7228       if (access_check || !decl)
7229         {
7230           TYPE_NAME (class_type) = type_name_copy;
7231           continue;
7232         }
7233
7234       /* If the loaded class is accessible, we keep a tab on it to
7235          detect and report multiple inclusions. */
7236       if (IS_A_CLASSFILE_NAME (node))
7237         {
7238           if (seen_once < 0)
7239             {
7240               cl = TREE_PURPOSE (import);
7241               seen_once = 1;
7242             }
7243           else if (seen_once >= 0)
7244             {
7245               tree location = (cl ? cl : TREE_PURPOSE (import));
7246               tree package = (cl ? EXPR_WFL_NODE (cl) :
7247                               EXPR_WFL_NODE (TREE_PURPOSE (import)));
7248               seen_once++;
7249               parse_error_context
7250                 (location,
7251                  "Type %qs also potentially defined in package %qs",
7252                  IDENTIFIER_POINTER (TYPE_NAME (class_type)),
7253                  IDENTIFIER_POINTER (package));
7254             }
7255         }
7256       to_return = access_check;
7257     }
7258
7259   if (seen_once == 1)
7260     return to_return;
7261   else
7262     return (seen_once < 0 ? 0 : seen_once); /* It's ok not to have found */
7263 }
7264
7265 /* Add package NAME to the list of packages encountered so far. To
7266    speed up class lookup in do_resolve_class, we make sure a
7267    particular package is added only once.  */
7268
7269 static void
7270 register_package (tree name)
7271 {
7272   static htab_t pht;
7273   void **e;
7274
7275   if (pht == NULL)
7276     pht = htab_create (50, htab_hash_pointer, htab_eq_pointer, NULL);
7277
7278   e = htab_find_slot (pht, name, INSERT);
7279   if (*e == NULL)
7280     {
7281       package_list = chainon (package_list, build_tree_list (name, NULL));
7282       *e = name;
7283     }
7284 }
7285
7286 static tree
7287 resolve_package (tree pkg, tree *next, tree *type_name)
7288 {
7289   tree current;
7290   tree decl = NULL_TREE;
7291   *type_name = NULL_TREE;
7292
7293   /* The trick is to determine when the package name stops and were
7294      the name of something contained in the package starts. Then we
7295      return a fully qualified name of what we want to get. */
7296
7297   *next = EXPR_WFL_QUALIFICATION (pkg);
7298
7299   /* Try to progressively construct a type name */
7300   if (TREE_CODE (pkg) == EXPR_WITH_FILE_LOCATION)
7301     for (current = EXPR_WFL_QUALIFICATION (pkg);
7302          current; current = TREE_CHAIN (current))
7303       {
7304         /* If we don't have what we're expecting, exit now. TYPE_NAME
7305            will be null and the error caught later. */
7306         if (TREE_CODE (QUAL_WFL (current)) != EXPR_WITH_FILE_LOCATION)
7307           break;
7308         *type_name =
7309           merge_qualified_name (*type_name, EXPR_WFL_NODE (QUAL_WFL (current)));
7310         if ((decl = resolve_no_layout (*type_name, NULL_TREE)))
7311           {
7312             /* resolve_package should be used in a loop, hence we
7313                point at this one to naturally process the next one at
7314                the next iteration. */
7315             *next = current;
7316             break;
7317           }
7318       }
7319   return decl;
7320 }
7321
7322
7323 /* Check accessibility of inner classes according to member access rules.
7324    DECL is the inner class, ENCLOSING_DECL is the class from which the
7325    access is being attempted. */
7326
7327 static void
7328 check_inner_class_access (tree decl, tree enclosing_decl, tree cl)
7329 {
7330   const char *access;
7331   tree enclosing_decl_type;
7332
7333   /* We don't issue an error message when CL is null. CL can be null
7334      as a result of processing a JDEP crafted by source_start_java_method
7335      for the purpose of patching its parm decl. But the error would
7336      have been already trapped when fixing the method's signature.
7337      DECL can also be NULL in case of earlier errors. */
7338   if (!decl || !cl)
7339     return;
7340
7341   enclosing_decl_type = TREE_TYPE (enclosing_decl);
7342
7343   if (CLASS_PRIVATE (decl))
7344     {
7345       /* Access is permitted only within the body of the top-level
7346          class in which DECL is declared. */
7347       tree top_level = decl;
7348       while (DECL_CONTEXT (top_level))
7349         top_level = DECL_CONTEXT (top_level);
7350       while (DECL_CONTEXT (enclosing_decl))
7351         enclosing_decl = DECL_CONTEXT (enclosing_decl);
7352       if (top_level == enclosing_decl)
7353         return;
7354       access = "private";
7355     }
7356   else if (CLASS_PROTECTED (decl))
7357     {
7358       tree decl_context;
7359       /* Access is permitted from within the same package... */
7360       if (in_same_package (decl, enclosing_decl))
7361         return;
7362
7363       /* ... or from within the body of a subtype of the context in which
7364          DECL is declared. */
7365       decl_context = DECL_CONTEXT (decl);
7366       while (enclosing_decl)
7367         {
7368           if (CLASS_INTERFACE (decl))
7369             {
7370               if (interface_of_p (TREE_TYPE (decl_context),
7371                                   enclosing_decl_type))
7372                 return;
7373             }
7374           else
7375             {
7376               /* Eww. The order of the arguments is different!! */
7377               if (inherits_from_p (enclosing_decl_type,
7378                                    TREE_TYPE (decl_context)))
7379                 return;
7380             }
7381           enclosing_decl = DECL_CONTEXT (enclosing_decl);
7382         }
7383       access = "protected";
7384     }
7385   else if (! CLASS_PUBLIC (decl))
7386     {
7387       /* Access is permitted only from within the same package as DECL. */
7388       if (in_same_package (decl, enclosing_decl))
7389         return;
7390       access = "non-public";
7391     }
7392   else
7393     /* Class is public. */
7394     return;
7395
7396   parse_error_context (cl, "Nested %s %s is %s; cannot be accessed from here",
7397                        (CLASS_INTERFACE (decl) ? "interface" : "class"),
7398                        lang_printable_name (decl, 2), access);
7399 }
7400
7401 /* Accessibility check for top-level classes. If CLASS_NAME is in a
7402    foreign package, it must be PUBLIC. Return 0 if no access
7403    violations were found, 1 otherwise. If VERBOSE is true and an error
7404    was found, it is reported and accounted for.  If CL is NULL then 
7405    look it up with THIS_DECL.  */
7406
7407 static int
7408 check_pkg_class_access (tree class_name, tree cl, bool verbose, tree this_decl)
7409 {
7410   tree type;
7411
7412   if (!IDENTIFIER_CLASS_VALUE (class_name))
7413     return 0;
7414
7415   if (!(type = TREE_TYPE (IDENTIFIER_CLASS_VALUE (class_name))))
7416     return 0;
7417
7418   if (!CLASS_PUBLIC (TYPE_NAME (type)))
7419     {
7420       /* Access to a private class within the same package is
7421          allowed. */
7422       tree l, r;
7423       split_qualified_name (&l, &r, class_name);
7424       if (!QUALIFIED_P (class_name) && !ctxp->package)
7425         /* Both in the empty package. */
7426         return 0;
7427       if (l == ctxp->package)
7428         /* Both in the same package. */
7429         return 0;
7430
7431       if (verbose)
7432         parse_error_context
7433           (cl == NULL ? lookup_cl (this_decl): cl,
7434            "Can't access %s %qs. Only public classes and interfaces in other packages can be accessed",
7435            (CLASS_INTERFACE (TYPE_NAME (type)) ? "interface" : "class"),
7436            IDENTIFIER_POINTER (class_name));
7437       return 1;
7438     }
7439   return 0;
7440 }
7441
7442 /* Local variable declaration. */
7443
7444 static void
7445 declare_local_variables (int modifier, tree type, tree vlist)
7446 {
7447   tree decl, current, saved_type;
7448   tree type_wfl = NULL_TREE;
7449   int must_chain = 0;
7450   int final_p = 0;
7451
7452   /* Push a new block if statements were seen between the last time we
7453      pushed a block and now. Keep a count of blocks to close */
7454   if (BLOCK_EXPR_BODY (GET_CURRENT_BLOCK (current_function_decl)))
7455     {
7456       tree b = enter_block ();
7457       BLOCK_IS_IMPLICIT (b) = 1;
7458     }
7459
7460   if (modifier)
7461     {
7462       size_t i;
7463       for (i = 0; i < ARRAY_SIZE (ctxp->modifier_ctx); i++)
7464         if (1 << i & modifier)
7465           break;
7466       if (modifier == ACC_FINAL)
7467         final_p = 1;
7468       else
7469         {
7470           parse_error_context
7471             (ctxp->modifier_ctx [i],
7472              "Only %<final%> is allowed as a local variables modifier");
7473           return;
7474         }
7475     }
7476
7477   /* Obtain an incomplete type if TYPE is not complete. TYPE_WFL will
7478      hold the TYPE value if a new incomplete has to be created (as
7479      opposed to being found already existing and reused). */
7480   SET_TYPE_FOR_RESOLUTION (type, type_wfl, must_chain);
7481
7482   /* If TYPE is fully resolved and we don't have a reference, make one */
7483   PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
7484
7485   /* Go through all the declared variables */
7486   for (current = vlist, saved_type = type; current;
7487        current = TREE_CHAIN (current), type = saved_type)
7488     {
7489       tree other, real_type;
7490       tree wfl  = TREE_PURPOSE (current);
7491       tree name = EXPR_WFL_NODE (wfl);
7492       tree init = TREE_VALUE (current);
7493
7494       /* Process NAME, as it may specify extra dimension(s) for it */
7495       type = build_array_from_name (type, type_wfl, name, &name);
7496
7497       /* Variable redefinition check */
7498       if ((other = lookup_name_in_blocks (name)))
7499         {
7500           variable_redefinition_error (wfl, name, TREE_TYPE (other),
7501                                        DECL_SOURCE_LINE (other));
7502           continue;
7503         }
7504
7505       /* Type adjustment. We may have just readjusted TYPE because
7506          the variable specified more dimensions. Make sure we have
7507          a reference if we can and don't have one already. */
7508       PROMOTE_RECORD_IF_COMPLETE (type, must_chain);
7509
7510       real_type = GET_REAL_TYPE (type);
7511       /* Never layout this decl. This will be done when its scope
7512          will be entered */
7513       decl = build_decl (VAR_DECL, name, real_type);
7514       MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
7515       DECL_FINAL (decl) = final_p;
7516       BLOCK_CHAIN_DECL (decl);
7517
7518       /* If doing xreferencing, replace the line number with the WFL
7519          compound value */
7520 #ifdef USE_MAPPED_LOCATION
7521       if (flag_emit_xref)
7522         DECL_SOURCE_LOCATION (decl) = EXPR_LOCATION (wfl);
7523 #else
7524       if (flag_emit_xref)
7525         DECL_SOURCE_LINE (decl) = EXPR_WFL_LINECOL (wfl);
7526 #endif
7527
7528       /* Don't try to use an INIT statement when an error was found */
7529       if (init && java_error_count)
7530         init = NULL_TREE;
7531
7532       /* Remember it if this is an initialized-upon-declaration final
7533          variable.  */
7534       if (init && final_p)
7535         {
7536           DECL_LOCAL_FINAL_IUD (decl) = 1;
7537         }
7538
7539       /* Add the initialization function to the current function's code */
7540       if (init)
7541         {
7542           /* Name might have been readjusted */
7543           EXPR_WFL_NODE (TREE_OPERAND (init, 0)) = name;
7544           MODIFY_EXPR_FROM_INITIALIZATION_P (init) = 1;
7545           java_method_add_stmt (current_function_decl,
7546                                 build_debugable_stmt (EXPR_WFL_LINECOL (init),
7547                                                       init));
7548         }
7549
7550       /* Setup dependency the type of the decl */
7551       if (must_chain)
7552         {
7553           jdep *dep;
7554           register_incomplete_type (JDEP_VARIABLE, type_wfl, decl, type);
7555           dep = CLASSD_LAST (ctxp->classd_list);
7556           JDEP_GET_PATCH (dep) = &TREE_TYPE (decl);
7557         }
7558     }
7559   SOURCE_FRONTEND_DEBUG (("Defined locals"));
7560 }
7561
7562 /* Called during parsing. Build decls from argument list.  */
7563
7564 static void
7565 source_start_java_method (tree fndecl)
7566 {
7567   tree tem;
7568   tree parm_decl;
7569   int i;
7570
7571   if (!fndecl)
7572     return;
7573
7574   current_function_decl = fndecl;
7575
7576   /* New scope for the function */
7577   enter_block ();
7578   for (tem = TYPE_ARG_TYPES (TREE_TYPE (fndecl)), i = 0;
7579        tem != end_params_node; tem = TREE_CHAIN (tem), i++)
7580     {
7581       tree type = TREE_VALUE (tem);
7582       tree name = TREE_PURPOSE (tem);
7583
7584       /* If type is incomplete. Create an incomplete decl and ask for
7585          the decl to be patched later */
7586       if (INCOMPLETE_TYPE_P (type))
7587         {
7588           jdep *jdep;
7589           tree real_type = GET_REAL_TYPE (type);
7590           parm_decl = build_decl (PARM_DECL, name, real_type);
7591           type = obtain_incomplete_type (type);
7592           register_incomplete_type (JDEP_PARM, NULL_TREE, NULL_TREE, type);
7593           jdep = CLASSD_LAST (ctxp->classd_list);
7594           JDEP_MISC (jdep) = name;
7595           JDEP_GET_PATCH (jdep) = &TREE_TYPE (parm_decl);
7596         }
7597       else
7598         parm_decl = build_decl (PARM_DECL, name, type);
7599
7600       /* Remember if a local variable was declared final (via its
7601          TREE_LIST of type/name.) Set DECL_FINAL accordingly. */
7602       if (ARG_FINAL_P (tem))
7603         {
7604           MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (parm_decl);
7605           DECL_FINAL (parm_decl) = 1;
7606         }
7607
7608       BLOCK_CHAIN_DECL (parm_decl);
7609     }
7610   tem = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl));
7611   BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl)) =
7612     nreverse (tem);
7613   DECL_ARG_SLOT_COUNT (current_function_decl) = i;
7614   DECL_MAX_LOCALS (current_function_decl) = i;
7615 }
7616
7617 /* Called during parsing. Creates an artificial method declaration.  */
7618
7619 static tree
7620 create_artificial_method (tree class, int flags, tree type,
7621                           tree name, tree args)
7622 {
7623   tree mdecl;
7624   location_t save_location = input_location;
7625
7626   input_location = DECL_SOURCE_LOCATION (TYPE_NAME (class));
7627   mdecl = make_node (FUNCTION_TYPE);
7628   TREE_TYPE (mdecl) = type;
7629   TYPE_ARG_TYPES (mdecl) = args;
7630   /* We used to compute the signature of MDECL here and then use
7631      add_method(), but that failed because our caller might modify
7632      the type of the returned method, which trashes the cache in
7633      get_type_from_signature().  */
7634   mdecl = add_method_1 (class, flags, name, mdecl);
7635   input_location = save_location;
7636   DECL_ARTIFICIAL (mdecl) = 1;
7637   return mdecl;
7638 }
7639
7640 /* Starts the body if an artificial method.  */
7641
7642 static void
7643 start_artificial_method_body (tree mdecl)
7644 {
7645 #ifdef USE_MAPPED_LOCATION
7646   DECL_SOURCE_LOCATION (mdecl) = ctxp->file_start_location;
7647   DECL_FUNCTION_LAST_LINE (mdecl) = ctxp->file_start_location;
7648 #else
7649   DECL_SOURCE_LINE (mdecl) = 1;
7650   DECL_FUNCTION_LAST_LINE (mdecl) = 1;
7651 #endif
7652   source_start_java_method (mdecl);
7653   enter_block ();
7654 }
7655
7656 static void
7657 end_artificial_method_body (tree mdecl)
7658 {
7659   /* exit_block modifies DECL_FUNCTION_BODY (current_function_decl).
7660      It has to be evaluated first. (if mdecl is current_function_decl,
7661      we have an undefined behavior if no temporary variable is used.) */
7662   tree b = exit_block ();
7663   BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (mdecl)) = b;
7664   exit_block ();
7665 }
7666
7667 /* Dump a tree of some kind.  This is a convenience wrapper for the
7668    dump_* functions in tree-dump.c.  */
7669 static void
7670 dump_java_tree (enum tree_dump_index phase, tree t)
7671 {
7672   FILE *stream;
7673   int flags;
7674
7675   stream = dump_begin (phase, &flags);
7676   flags |= TDF_SLIM;
7677   if (stream)
7678     {
7679       dump_node (t, flags, stream);
7680       dump_end (phase, stream);
7681     }
7682 }
7683
7684 /* Terminate a function and expand its body.  */
7685
7686 static void
7687 source_end_java_method (void)
7688 {
7689   tree fndecl = current_function_decl;
7690
7691   if (!fndecl)
7692     return;
7693
7694   java_parser_context_save_global ();
7695 #ifdef USE_MAPPED_LOCATION
7696   input_location = ctxp->last_ccb_indent1;
7697 #else
7698   input_line = ctxp->last_ccb_indent1;
7699 #endif
7700
7701   /* Turn function bodies with only a NOP expr null, so they don't get
7702      generated at all and we won't get warnings when using the -W
7703      -Wall flags. */
7704   if (IS_EMPTY_STMT (BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl))))
7705     BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl)) = NULL_TREE;
7706
7707   if (BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (fndecl))
7708       && ! flag_emit_class_files
7709       && ! flag_emit_xref)
7710     finish_method (fndecl);
7711
7712   current_function_decl = NULL_TREE;
7713   java_parser_context_restore_global ();
7714   current_function_decl = NULL_TREE;
7715 }
7716
7717 /* Record EXPR in the current function block. Complements compound
7718    expression second operand if necessary.  */
7719
7720 tree
7721 java_method_add_stmt (tree fndecl, tree expr)
7722 {
7723   if (!GET_CURRENT_BLOCK (fndecl))
7724     return NULL_TREE;
7725   return add_stmt_to_block (GET_CURRENT_BLOCK (fndecl), NULL_TREE, expr);
7726 }
7727
7728 static tree
7729 add_stmt_to_block (tree b, tree type, tree stmt)
7730 {
7731   tree body = BLOCK_EXPR_BODY (b), c;
7732
7733   if (java_error_count)
7734     return body;
7735
7736   if ((c = add_stmt_to_compound (body, type, stmt)) == body)
7737     return body;
7738
7739   BLOCK_EXPR_BODY (b) = c;
7740   TREE_SIDE_EFFECTS (c) = 1;
7741   return c;
7742 }
7743
7744 /* Lays out the methods for the classes seen so far.  */
7745
7746 void
7747 java_layout_seen_class_methods (void)
7748 {
7749   tree previous_list = all_class_list;
7750   tree end = NULL_TREE;
7751   tree current;
7752
7753   while (1)
7754     {
7755       for (current = previous_list;
7756            current != end; current = TREE_CHAIN (current))
7757         {
7758           tree decl = TREE_VALUE (current);
7759           tree cls = TREE_TYPE (decl);
7760
7761           input_location = DECL_SOURCE_LOCATION (decl);
7762
7763           if (! CLASS_LOADED_P (cls))
7764             load_class (cls, 0);
7765
7766           layout_class_methods (cls);
7767         }
7768
7769       /* Note that new classes might have been added while laying out
7770          methods, changing the value of all_class_list.  */
7771
7772       if (previous_list != all_class_list)
7773         {
7774           end = previous_list;
7775           previous_list = all_class_list;
7776         }
7777       else
7778         break;
7779     }
7780 }
7781
7782 static GTY(()) tree stop_reordering;
7783 void
7784 java_reorder_fields (void)
7785 {
7786   tree current;
7787
7788   for (current = gclass_list; current; current = TREE_CHAIN (current))
7789     {
7790       output_class = current_class = TREE_TYPE (TREE_VALUE (current));
7791
7792       if (current_class == stop_reordering)
7793         break;
7794
7795       /* Reverse the fields, but leave the dummy field in front.
7796          Fields are already ordered for Object and Class */
7797       if (TYPE_FIELDS (current_class) && current_class != object_type_node
7798           && current_class != class_type_node)
7799       {
7800         /* If the dummy field is there, reverse the right fields and
7801            just layout the type for proper fields offset */
7802         if (!DECL_NAME (TYPE_FIELDS (current_class)))
7803           {
7804             tree fields = TYPE_FIELDS (current_class);
7805             TREE_CHAIN (fields) = nreverse (TREE_CHAIN (fields));
7806             TYPE_SIZE (current_class) = NULL_TREE;
7807           }
7808         /* We don't have a dummy field, we need to layout the class,
7809            after having reversed the fields */
7810         else
7811           {
7812             TYPE_FIELDS (current_class) =
7813               nreverse (TYPE_FIELDS (current_class));
7814             TYPE_SIZE (current_class) = NULL_TREE;
7815           }
7816       }
7817     }
7818   /* There are cases were gclass_list will be empty. */
7819   if (gclass_list)
7820     stop_reordering = TREE_TYPE (TREE_VALUE (gclass_list));
7821 }
7822
7823 /* Layout the methods of all classes loaded in one way or another.
7824    Check methods of source parsed classes. Then reorder the
7825    fields and layout the classes or the type of all source parsed
7826    classes */
7827
7828 void
7829 java_layout_classes (void)
7830 {
7831   tree current;
7832   int save_error_count = java_error_count;
7833
7834   /* Layout the methods of all classes seen so far */
7835   java_layout_seen_class_methods ();
7836   java_parse_abort_on_error ();
7837   all_class_list = NULL_TREE;
7838
7839   /* Then check the methods of all parsed classes */
7840   for (current = gclass_list; current; current = TREE_CHAIN (current))
7841     if (CLASS_FROM_SOURCE_P (TREE_TYPE (TREE_VALUE (current))))
7842       java_check_methods (TREE_VALUE (current));
7843   java_parse_abort_on_error ();
7844
7845   for (current = gclass_list; current; current = TREE_CHAIN (current))
7846     {
7847       output_class = current_class = TREE_TYPE (TREE_VALUE (current));
7848       layout_class (current_class);
7849
7850       /* Error reported by the caller */
7851       if (java_error_count)
7852         return;
7853     }
7854
7855   /* We might have reloaded classes durign the process of laying out
7856      classes for code generation. We must layout the methods of those
7857      late additions, as constructor checks might use them */
7858   java_layout_seen_class_methods ();
7859   java_parse_abort_on_error ();
7860 }
7861
7862 /* Expand methods in the current set of classes remembered for
7863    generation.  */
7864
7865 static void
7866 java_complete_expand_classes (void)
7867 {
7868   tree current;
7869
7870   do_not_fold = flag_emit_xref;
7871
7872   for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
7873     if (!INNER_CLASS_DECL_P (current))
7874       java_complete_expand_class (current);
7875 }
7876
7877 /* Expand the methods found in OUTER, starting first by OUTER's inner
7878    classes, if any.  */
7879
7880 static void
7881 java_complete_expand_class (tree outer)
7882 {
7883   tree inner_list;
7884
7885   /* We need to go after all inner classes and start expanding them,
7886      starting with most nested ones. We have to do that because nested
7887      classes might add functions to outer classes */
7888
7889   for (inner_list = DECL_INNER_CLASS_LIST (outer);
7890        inner_list; inner_list = TREE_CHAIN (inner_list))
7891     java_complete_expand_class (TREE_PURPOSE (inner_list));
7892
7893   java_complete_expand_methods (outer);
7894 }
7895
7896 /* Expand methods registered in CLASS_DECL. The general idea is that
7897    we expand regular methods first. This allows us get an estimate on
7898    how outer context local alias fields are really used so we can add
7899    to the constructor just enough code to initialize them properly (it
7900    also lets us generate finit$ correctly.) Then we expand the
7901    constructors and then <clinit>.  */
7902
7903 static void
7904 java_complete_expand_methods (tree class_decl)
7905 {
7906   tree clinit, decl, first_decl;
7907
7908   output_class = current_class = TREE_TYPE (class_decl);
7909
7910   /* Pre-expand <clinit> to figure whether we really need it or
7911      not. If we do need it, we pre-expand the static fields so they're
7912      ready to be used somewhere else. <clinit> will be fully expanded
7913      after we processed the constructors. */
7914   first_decl = TYPE_METHODS (current_class);
7915   clinit = maybe_generate_pre_expand_clinit (current_class);
7916
7917   /* Then generate finit$ (if we need to) because constructors will
7918    try to use it.*/
7919   if (TYPE_FINIT_STMT_LIST (current_class))
7920     java_complete_expand_method (generate_finit (current_class));
7921
7922   /* Then generate instinit$ (if we need to) because constructors will
7923      try to use it. */
7924   if (TYPE_II_STMT_LIST (current_class))
7925     java_complete_expand_method (generate_instinit (current_class));
7926
7927   /* Now do the constructors */
7928   for (decl = first_decl ; !java_error_count && decl; decl = TREE_CHAIN (decl))
7929     {
7930       if (!DECL_CONSTRUCTOR_P (decl))
7931         continue;
7932       java_complete_expand_method (decl);
7933     }
7934
7935   /* First, do the ordinary methods. */
7936   for (decl = first_decl; decl; decl = TREE_CHAIN (decl))
7937     {
7938       /* Ctors aren't part of this batch. */
7939       if (DECL_CONSTRUCTOR_P (decl) || DECL_CLINIT_P (decl))
7940         continue;
7941
7942       /* Skip abstract or native methods -- but do handle native
7943          methods when generating JNI stubs.  */
7944       if (METHOD_ABSTRACT (decl) || (! flag_jni && METHOD_NATIVE (decl)))
7945         {
7946           DECL_FUNCTION_BODY (decl) = NULL_TREE;
7947           continue;
7948         }
7949
7950       if (METHOD_NATIVE (decl))
7951         {
7952           tree body;
7953           current_function_decl = decl;
7954           body = build_jni_stub (decl);
7955           BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (decl)) = body;
7956         }
7957
7958       java_complete_expand_method (decl);
7959     }
7960
7961   /* If there is indeed a <clinit>, fully expand it now */
7962   if (clinit)
7963     {
7964       /* Prevent the use of `this' inside <clinit> */
7965       ctxp->explicit_constructor_p = 1;
7966       java_complete_expand_method (clinit);
7967       ctxp->explicit_constructor_p = 0;
7968     }
7969
7970   /* We might have generated a class$ that we now want to expand */
7971   if (TYPE_DOT_CLASS (current_class))
7972     java_complete_expand_method (TYPE_DOT_CLASS (current_class));
7973
7974   /* Now verify constructor circularity (stop after the first one we
7975      prove wrong.) */
7976   if (!CLASS_INTERFACE (class_decl))
7977     for (decl = TYPE_METHODS (current_class); decl; decl = TREE_CHAIN (decl))
7978       if (DECL_CONSTRUCTOR_P (decl)
7979           && verify_constructor_circularity (decl, decl))
7980         break;
7981 }
7982
7983 /* Attempt to create <clinit>. Pre-expand static fields so they can be
7984    safely used in some other methods/constructors.  */
7985
7986 static tree
7987 maybe_generate_pre_expand_clinit (tree class_type)
7988 {
7989   tree current, mdecl;
7990
7991   if (!TYPE_CLINIT_STMT_LIST (class_type))
7992     return NULL_TREE;
7993
7994   /* Go through all static fields and pre expand them */
7995   for (current = TYPE_FIELDS (class_type); current;
7996        current = TREE_CHAIN (current))
7997     if (FIELD_STATIC (current))
7998       build_field_ref (NULL_TREE, class_type, DECL_NAME (current));
7999
8000   /* Then build the <clinit> method */
8001   mdecl = create_artificial_method (class_type, ACC_STATIC, void_type_node,
8002                                     clinit_identifier_node, end_params_node);
8003   layout_class_method (class_type, CLASSTYPE_SUPER (class_type),
8004                        mdecl, NULL_TREE);
8005   start_artificial_method_body (mdecl);
8006
8007   /* We process the list of assignment we produced as the result of
8008      the declaration of initialized static field and add them as
8009      statement to the <clinit> method. */
8010   for (current = TYPE_CLINIT_STMT_LIST (class_type); current;
8011        current = TREE_CHAIN (current))
8012     {
8013       tree stmt = current;
8014       /* We build the assignment expression that will initialize the
8015          field to its value. There are strict rules on static
8016          initializers (8.5). FIXME */
8017       if (TREE_CODE (stmt) != BLOCK && !IS_EMPTY_STMT (stmt))
8018         stmt = build_debugable_stmt (EXPR_WFL_LINECOL (stmt), stmt);
8019       java_method_add_stmt (mdecl, stmt);
8020     }
8021
8022   end_artificial_method_body (mdecl);
8023
8024   /* Now we want to place <clinit> as the last method (because we need
8025      it at least for interface so that it doesn't interfere with the
8026      dispatch table based lookup. */
8027   if (TREE_CHAIN (TYPE_METHODS (class_type)))
8028     {
8029       current = TREE_CHAIN (TYPE_METHODS (class_type));
8030       TYPE_METHODS (class_type) = current;
8031
8032       while (TREE_CHAIN (current))
8033         current = TREE_CHAIN (current);
8034
8035       TREE_CHAIN (current) = mdecl;
8036       TREE_CHAIN (mdecl) = NULL_TREE;
8037     }
8038
8039   return mdecl;
8040 }
8041
8042 /* Analyzes a method body and look for something that isn't a
8043    MODIFY_EXPR with a constant value.  */
8044
8045 static int
8046 analyze_clinit_body (tree this_class, tree bbody)
8047 {
8048   while (bbody)
8049     switch (TREE_CODE (bbody))
8050       {
8051       case BLOCK:
8052         bbody = BLOCK_EXPR_BODY (bbody);
8053         break;
8054
8055       case EXPR_WITH_FILE_LOCATION:
8056         bbody = EXPR_WFL_NODE (bbody);
8057         break;
8058
8059       case COMPOUND_EXPR:
8060         if (analyze_clinit_body (this_class, TREE_OPERAND (bbody, 0)))
8061           return 1;
8062         bbody = TREE_OPERAND (bbody, 1);
8063         break;
8064
8065       case MODIFY_EXPR:
8066         /* If we're generating to class file and we're dealing with an
8067            array initialization, we return 1 to keep <clinit> */
8068         if (TREE_CODE (TREE_OPERAND (bbody, 1)) == NEW_ARRAY_INIT
8069             && flag_emit_class_files)
8070           return 1;
8071
8072         /* There are a few cases where we're required to keep
8073            <clinit>:
8074            - If this is an assignment whose operand is not constant,
8075            - If this is an assignment to a non-initialized field,
8076            - If this field is not a member of the current class.
8077         */
8078         return (! TREE_CONSTANT (TREE_OPERAND (bbody, 1))
8079                 || ! DECL_INITIAL (TREE_OPERAND (bbody, 0))
8080                 || DECL_CONTEXT (TREE_OPERAND (bbody, 0)) != this_class);
8081
8082       default:
8083         return 1;
8084       }
8085   return 0;
8086 }
8087
8088
8089 /* See whether we could get rid of <clinit>. Criteria are: all static
8090    final fields have constant initial values and the body of <clinit>
8091    is empty. Return 1 if <clinit> was discarded, 0 otherwise. */
8092
8093 static int
8094 maybe_yank_clinit (tree mdecl)
8095 {
8096   tree type, current;
8097   tree fbody, bbody;
8098
8099   if (!DECL_CLINIT_P (mdecl))
8100     return 0;
8101
8102   /* If the body isn't empty, then we keep <clinit>. Note that if
8103      we're emitting classfiles, this isn't enough not to rule it
8104      out. */
8105   fbody = DECL_FUNCTION_BODY (mdecl);
8106   bbody = BLOCK_EXPR_BODY (fbody);
8107   if (bbody && bbody != error_mark_node)
8108     bbody = BLOCK_EXPR_BODY (bbody);
8109   else
8110     return 0;
8111   if (bbody && ! flag_emit_class_files && !IS_EMPTY_STMT (bbody))
8112     return 0;
8113
8114   type = DECL_CONTEXT (mdecl);
8115   current = TYPE_FIELDS (type);
8116
8117   for (current = (current ? TREE_CHAIN (current) : current);
8118        current; current = TREE_CHAIN (current))
8119     {
8120       tree f_init;
8121
8122       /* We're not interested in non-static fields.  */
8123       if (!FIELD_STATIC (current))
8124         continue;
8125
8126       /* Nor in fields without initializers. */
8127       f_init = DECL_INITIAL (current);
8128       if (f_init == NULL_TREE)
8129         continue;
8130
8131       /* Anything that isn't String or a basic type is ruled out -- or
8132          if we know how to deal with it (when doing things natively) we
8133          should generated an empty <clinit> so that SUID are computed
8134          correctly. */
8135       if (! JSTRING_TYPE_P (TREE_TYPE (current))
8136           && ! JNUMERIC_TYPE_P (TREE_TYPE (current)))
8137         return 0;
8138
8139       if (! FIELD_FINAL (current) || ! TREE_CONSTANT (f_init))
8140         return 0;
8141     }
8142
8143   /* Now we analyze the method body and look for something that
8144      isn't a MODIFY_EXPR */
8145   if (!IS_EMPTY_STMT (bbody) && analyze_clinit_body (type, bbody))
8146     return 0;
8147
8148   /* Get rid of <clinit> in the class' list of methods */
8149   if (TYPE_METHODS (type) == mdecl)
8150     TYPE_METHODS (type) = TREE_CHAIN (mdecl);
8151   else
8152     for (current = TYPE_METHODS (type); current;
8153          current = TREE_CHAIN (current))
8154       if (TREE_CHAIN (current) == mdecl)
8155         {
8156           TREE_CHAIN (current) = TREE_CHAIN (mdecl);
8157           break;
8158         }
8159
8160   return 1;
8161 }
8162
8163 /* Install the argument from MDECL. Suitable to completion and
8164    expansion of mdecl's body.  */
8165
8166 void
8167 start_complete_expand_method (tree mdecl)
8168 {
8169   tree tem;
8170
8171   pushlevel (1);                /* Prepare for a parameter push */
8172   tem = BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (current_function_decl));
8173   DECL_ARGUMENTS (mdecl) = tem;
8174
8175   for (; tem; tem = TREE_CHAIN (tem))
8176     {
8177       /* TREE_CHAIN (tem) will change after pushdecl. */
8178       tree next = TREE_CHAIN (tem);
8179       tree type = TREE_TYPE (tem);
8180       if (targetm.calls.promote_prototypes (type)
8181           && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)
8182           && INTEGRAL_TYPE_P (type))
8183         type = integer_type_node;
8184       DECL_ARG_TYPE (tem) = type;
8185       layout_decl (tem, 0);
8186       pushdecl (tem);
8187       /* Re-install the next so that the list is kept and the loop
8188          advances. */
8189       TREE_CHAIN (tem) = next;
8190     }
8191   pushdecl_force_head (DECL_ARGUMENTS (mdecl));
8192   input_location = DECL_SOURCE_LOCATION (mdecl);
8193   build_result_decl (mdecl);
8194 }
8195
8196
8197 /* Complete and expand a method.  */
8198
8199 static void
8200 java_complete_expand_method (tree mdecl)
8201 {
8202   tree fbody, block_body, exception_copy;
8203
8204   current_function_decl = mdecl;
8205   /* Fix constructors before expanding them */
8206   if (DECL_CONSTRUCTOR_P (mdecl))
8207     fix_constructors (mdecl);
8208
8209   /* Expand functions that have a body */
8210   if (!DECL_FUNCTION_BODY (mdecl))
8211     return;
8212
8213   fbody = DECL_FUNCTION_BODY (mdecl);
8214   block_body = BLOCK_EXPR_BODY (fbody);
8215   exception_copy = NULL_TREE;
8216
8217   current_function_decl = mdecl;
8218
8219   if (! quiet_flag)
8220     fprintf (stderr, " [%s.",
8221              lang_printable_name (DECL_CONTEXT (mdecl), 0));
8222   announce_function (mdecl);
8223   if (! quiet_flag)
8224     fprintf (stderr, "]");
8225
8226   /* Prepare the function for tree completion */
8227   start_complete_expand_method (mdecl);
8228
8229   /* Install the current this */
8230   current_this = (!METHOD_STATIC (mdecl) ?
8231                   BLOCK_EXPR_DECLS (DECL_FUNCTION_BODY (mdecl)) : NULL_TREE);
8232
8233   /* Purge the `throws' list of unchecked exceptions (we save a copy
8234      of the list and re-install it later.) */
8235   exception_copy = copy_list (DECL_FUNCTION_THROWS (mdecl));
8236   purge_unchecked_exceptions (mdecl);
8237
8238   /* Install exceptions thrown with `throws' */
8239   PUSH_EXCEPTIONS (DECL_FUNCTION_THROWS (mdecl));
8240
8241   if (block_body != NULL_TREE)
8242     {
8243       block_body = java_complete_tree (block_body);
8244
8245       /* Before we check initialization, attached all class initialization
8246          variable to the block_body */
8247       htab_traverse (DECL_FUNCTION_INIT_TEST_TABLE (mdecl),
8248                      attach_init_test_initialization_flags, block_body);
8249
8250       if (! flag_emit_xref && ! METHOD_NATIVE (mdecl))
8251         {
8252           check_for_initialization (block_body, mdecl);
8253
8254           /* Go through all the flags marking the initialization of
8255              static variables and see whether they're definitively
8256              assigned, in which case the type is remembered as
8257              definitively initialized in MDECL. */
8258           if (STATIC_CLASS_INIT_OPT_P ())
8259             {
8260               /* Always register the context as properly initialized in
8261                  MDECL. This used with caution helps removing extra
8262                  initialization of self. */
8263               if (METHOD_STATIC (mdecl))
8264                 {
8265                   *(htab_find_slot
8266                     (DECL_FUNCTION_INITIALIZED_CLASS_TABLE (mdecl),
8267                      DECL_CONTEXT (mdecl), INSERT)) = DECL_CONTEXT (mdecl);
8268                 }
8269             }
8270         }
8271       ctxp->explicit_constructor_p = 0;
8272     }
8273
8274   BLOCK_EXPR_BODY (fbody) = block_body;
8275
8276   /* If we saw a return but couldn't evaluate it properly, we'll have
8277      an error_mark_node here. */
8278   if (block_body != error_mark_node
8279       && (block_body == NULL_TREE || CAN_COMPLETE_NORMALLY (block_body))
8280       && TREE_CODE (TREE_TYPE (TREE_TYPE (mdecl))) != VOID_TYPE
8281       && !flag_emit_xref)
8282     missing_return_error (current_function_decl);
8283
8284   /* See if we can get rid of <clinit> if MDECL happens to be <clinit> */
8285   maybe_yank_clinit (mdecl);
8286
8287   /* Pop the current level, with special measures if we found errors. */
8288   if (java_error_count)
8289     pushdecl_force_head (DECL_ARGUMENTS (mdecl));
8290   poplevel (1, 0, 1);
8291
8292   /* Pop the exceptions and sanity check */
8293   POP_EXCEPTIONS();
8294   if (currently_caught_type_list)
8295     abort ();
8296
8297   /* Restore the copy of the list of exceptions if emitting xrefs. */
8298   DECL_FUNCTION_THROWS (mdecl) = exception_copy;
8299 }
8300
8301 /* For with each class for which there's code to generate. */
8302
8303 static void
8304 java_expand_method_bodies (tree class)
8305 {
8306   tree decl;
8307   for (decl = TYPE_METHODS (class); decl; decl = TREE_CHAIN (decl))
8308     {
8309       tree block;
8310
8311       if (! DECL_FUNCTION_BODY (decl))
8312         continue;
8313
8314       current_function_decl = decl;
8315
8316       block = BLOCK_EXPR_BODY (DECL_FUNCTION_BODY (decl));
8317
8318       /* Save the function body for gimplify and inlining.  */
8319       DECL_SAVED_TREE (decl) = block;
8320
8321       /* It's time to assign the variable flagging static class
8322          initialization based on which classes invoked static methods
8323          are definitely initializing. This should be flagged. */
8324       if (STATIC_CLASS_INIT_OPT_P ())
8325         {
8326           tree list = DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (decl);
8327           for (; list != NULL_TREE;  list = TREE_CHAIN (list))
8328             {
8329               /* Executed for each statement calling a static function.
8330                  LIST is a TREE_LIST whose PURPOSE is the called function
8331                  and VALUE is a compound whose second operand can be patched
8332                  with static class initialization flag assignments.  */
8333
8334               tree called_method = TREE_PURPOSE (list);
8335               tree compound = TREE_VALUE (list);
8336               tree assignment_compound_list
8337                 = build_tree_list (called_method, NULL);
8338
8339               /* For each class definitely initialized in
8340                  CALLED_METHOD, fill ASSIGNMENT_COMPOUND with
8341                  assignment to the class initialization flag. */
8342               htab_traverse (DECL_FUNCTION_INITIALIZED_CLASS_TABLE (called_method),
8343                              emit_test_initialization,
8344                              assignment_compound_list);
8345
8346               if (TREE_VALUE (assignment_compound_list))
8347                 TREE_OPERAND (compound, 1)
8348                   = TREE_VALUE (assignment_compound_list);
8349             }
8350         }
8351
8352       /* Expand the function body.  */
8353       source_end_java_method ();
8354     }
8355 }
8356
8357 \f
8358
8359 /* This section of the code deals with accessing enclosing context
8360    fields either directly by using the relevant access to this$<n> or
8361    by invoking an access method crafted for that purpose.  */
8362
8363 /* Build the necessary access from an inner class to an outer
8364    class. This routine could be optimized to cache previous result
8365    (decl, current_class and returned access).  When an access method
8366    needs to be generated, it always takes the form of a read. It might
8367    be later turned into a write by calling outer_field_access_fix.  */
8368
8369 static tree
8370 build_outer_field_access (tree id, tree decl)
8371 {
8372   tree access = NULL_TREE;
8373   tree ctx = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current_class)));
8374   tree decl_ctx = DECL_CONTEXT (decl);
8375
8376   /* If the immediate enclosing context of the current class is the
8377      field decl's class or inherits from it; build the access as
8378      `this$<n>.<field>'. Note that we will break the `private' barrier
8379      if we're not emitting bytecodes. */
8380   if ((ctx == decl_ctx || inherits_from_p (ctx, decl_ctx))
8381       && (!FIELD_PRIVATE (decl) || !flag_emit_class_files ))
8382     {
8383       tree thisn = build_current_thisn (current_class);
8384       access = make_qualified_primary (build_wfl_node (thisn),
8385                                        id, EXPR_WFL_LINECOL (id));
8386     }
8387   /* Otherwise, generate access methods to outer this and access the
8388      field (either using an access method or by direct access.) */
8389   else
8390     {
8391       int lc = EXPR_WFL_LINECOL (id);
8392
8393       /* Now we chain the required number of calls to the access$0 to
8394          get a hold to the enclosing instance we need, and then we
8395          build the field access. */
8396       access = build_access_to_thisn (current_class, decl_ctx, lc);
8397
8398       /* If the field is private and we're generating bytecode, then
8399          we generate an access method */
8400       if (FIELD_PRIVATE (decl) && flag_emit_class_files )
8401         {
8402           tree name = build_outer_field_access_methods (decl);
8403           access = build_outer_field_access_expr (lc, decl_ctx,
8404                                                   name, access, NULL_TREE);
8405         }
8406       /* Otherwise we use `access$(this$<j>). ... access$(this$<i>).<field>'.
8407          Once again we break the `private' access rule from a foreign
8408          class. */
8409       else
8410         access = make_qualified_primary (access, id, lc);
8411     }
8412   return resolve_expression_name (access, NULL);
8413 }
8414
8415 /* Return a nonzero value if NODE describes an outer field inner
8416    access.  */
8417
8418 static int
8419 outer_field_access_p (tree type, tree decl)
8420 {
8421   if (!INNER_CLASS_TYPE_P (type)
8422       || TREE_CODE (decl) != FIELD_DECL
8423       || DECL_CONTEXT (decl) == type)
8424     return 0;
8425
8426   /* If the inner class extends the declaration context of the field
8427      we're trying to access, then this isn't an outer field access */
8428   if (inherits_from_p (type, DECL_CONTEXT (decl)))
8429     return 0;
8430
8431   for (type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))); ;
8432        type = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))))
8433     {
8434       if (type == DECL_CONTEXT (decl))
8435         return 1;
8436
8437       if (!DECL_CONTEXT (TYPE_NAME (type)))
8438         {
8439           /* Before we give up, see whether the field is inherited from
8440              the enclosing context we're considering. */
8441           if (inherits_from_p (type, DECL_CONTEXT (decl)))
8442             return 1;
8443           break;
8444         }
8445     }
8446
8447   return 0;
8448 }
8449
8450 /* Return a nonzero value if NODE represents an outer field inner
8451    access that was been already expanded. As a side effect, it returns
8452    the name of the field being accessed and the argument passed to the
8453    access function, suitable for a regeneration of the access method
8454    call if necessary. */
8455
8456 static int
8457 outer_field_expanded_access_p (tree node, tree *name, tree *arg_type,
8458                                tree *arg)
8459 {
8460   int identified = 0;
8461
8462   if (TREE_CODE (node) != CALL_EXPR)
8463     return 0;
8464
8465   /* Well, gcj generates slightly different tree nodes when compiling
8466      to native or bytecodes. It's the case for function calls. */
8467
8468   if (flag_emit_class_files
8469       && TREE_CODE (node) == CALL_EXPR
8470       && OUTER_FIELD_ACCESS_IDENTIFIER_P (DECL_NAME (TREE_OPERAND (node, 0))))
8471     identified = 1;
8472   else if (!flag_emit_class_files)
8473     {
8474       node = TREE_OPERAND (node, 0);
8475
8476       if (node && TREE_OPERAND (node, 0)
8477           && TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR)
8478         {
8479           node = TREE_OPERAND (node, 0);
8480           if (TREE_OPERAND (node, 0)
8481               && TREE_CODE (TREE_OPERAND (node, 0)) == FUNCTION_DECL
8482               && (OUTER_FIELD_ACCESS_IDENTIFIER_P
8483                   (DECL_NAME (TREE_OPERAND (node, 0)))))
8484             identified = 1;
8485         }
8486     }
8487
8488   if (identified && name && arg_type && arg)
8489     {
8490       tree argument = TREE_OPERAND (node, 1);
8491       *name = DECL_NAME (TREE_OPERAND (node, 0));
8492       *arg_type = TREE_TYPE (TREE_TYPE (TREE_VALUE (argument)));
8493       *arg = TREE_VALUE (argument);
8494     }
8495   return identified;
8496 }
8497
8498 /* Detect in NODE an outer field read access from an inner class and
8499    transform it into a write with RHS as an argument. This function is
8500    called from the java_complete_lhs when an assignment to a LHS can
8501    be identified. */
8502
8503 static tree
8504 outer_field_access_fix (tree wfl, tree node, tree rhs)
8505 {
8506   tree name, arg_type, arg;
8507
8508   if (outer_field_expanded_access_p (node, &name, &arg_type, &arg))
8509     {
8510       node = build_outer_field_access_expr (EXPR_WFL_LINECOL (wfl),
8511                                             arg_type, name, arg, rhs);
8512       return java_complete_tree (node);
8513     }
8514   return NULL_TREE;
8515 }
8516
8517 /* Construct the expression that calls an access method:
8518      <type>.access$<n>(<arg1> [, <arg2>]);
8519
8520    ARG2 can be NULL and will be omitted in that case. It will denote a
8521    read access.  */
8522
8523 static tree
8524 build_outer_field_access_expr (int lc, tree type, tree access_method_name,
8525                                tree arg1, tree arg2)
8526 {
8527   tree args, cn, access;
8528
8529   args = arg1 ? arg1 :
8530     build_wfl_node (build_current_thisn (current_class));
8531   args = build_tree_list (NULL_TREE, args);
8532
8533   if (arg2)
8534     args = tree_cons (NULL_TREE, arg2, args);
8535
8536   access = build_method_invocation (build_wfl_node (access_method_name), args);
8537   cn = build_wfl_node (DECL_NAME (TYPE_NAME (type)));
8538   return make_qualified_primary (cn, access, lc);
8539 }
8540
8541 static tree
8542 build_new_access_id (void)
8543 {
8544   static int access_n_counter = 1;
8545   char buffer [128];
8546
8547   sprintf (buffer, "access$%d", access_n_counter++);
8548   return get_identifier (buffer);
8549 }
8550
8551 /* Create the static access functions for the outer field DECL. We define a
8552    read:
8553      TREE_TYPE (<field>) access$<n> (DECL_CONTEXT (<field>) inst$) {
8554        return inst$.field;
8555      }
8556    and a write access:
8557      TREE_TYPE (<field>) access$<n> (DECL_CONTEXT (<field>) inst$,
8558                                      TREE_TYPE (<field>) value$) {
8559        return inst$.field = value$;
8560      }
8561    We should have a usage flags on the DECL so we can lazily turn the ones
8562    we're using for code generation. FIXME.
8563 */
8564
8565 static tree
8566 build_outer_field_access_methods (tree decl)
8567 {
8568   tree id, args, stmt, mdecl;
8569
8570   if (FIELD_INNER_ACCESS_P (decl))
8571     return FIELD_INNER_ACCESS (decl);
8572
8573   MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
8574
8575   /* Create the identifier and a function named after it. */
8576   id = build_new_access_id ();
8577
8578   /* The identifier is marked as bearing the name of a generated write
8579      access function for outer field accessed from inner classes. */
8580   OUTER_FIELD_ACCESS_IDENTIFIER_P (id) = 1;
8581
8582   /* Create the read access */
8583   args = build_tree_list (inst_id, build_pointer_type (DECL_CONTEXT (decl)));
8584   TREE_CHAIN (args) = end_params_node;
8585   stmt = make_qualified_primary (build_wfl_node (inst_id),
8586                                  build_wfl_node (DECL_NAME (decl)), 0);
8587   stmt = build_return (0, stmt);
8588   mdecl = build_outer_field_access_method (DECL_CONTEXT (decl),
8589                                            TREE_TYPE (decl), id, args, stmt);
8590   DECL_FUNCTION_ACCESS_DECL (mdecl) = decl;
8591
8592   /* Create the write access method. No write access for final variable */
8593   if (!FIELD_FINAL (decl))
8594     {
8595       args = build_tree_list (inst_id,
8596                               build_pointer_type (DECL_CONTEXT (decl)));
8597       TREE_CHAIN (args) = build_tree_list (wpv_id, TREE_TYPE (decl));
8598       TREE_CHAIN (TREE_CHAIN (args)) = end_params_node;
8599       stmt = make_qualified_primary (build_wfl_node (inst_id),
8600                                      build_wfl_node (DECL_NAME (decl)), 0);
8601       stmt = build_return (0, build_assignment (ASSIGN_TK, 0, stmt,
8602                                                 build_wfl_node (wpv_id)));
8603       mdecl = build_outer_field_access_method (DECL_CONTEXT (decl),
8604                                                TREE_TYPE (decl), id,
8605                                                args, stmt);
8606     }
8607   DECL_FUNCTION_ACCESS_DECL (mdecl) = decl;
8608
8609   /* Return the access name */
8610   return FIELD_INNER_ACCESS (decl) = id;
8611 }
8612
8613 /* Build an field access method NAME.  */
8614
8615 static tree
8616 build_outer_field_access_method (tree class, tree type, tree name,
8617                                  tree args, tree body)
8618 {
8619   tree saved_current_function_decl, mdecl;
8620
8621   /* Create the method */
8622   mdecl = create_artificial_method (class, ACC_STATIC, type, name, args);
8623   fix_method_argument_names (args, mdecl);
8624   layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8625
8626   /* Attach the method body. */
8627   saved_current_function_decl = current_function_decl;
8628   start_artificial_method_body (mdecl);
8629   java_method_add_stmt (mdecl, body);
8630   end_artificial_method_body (mdecl);
8631   current_function_decl = saved_current_function_decl;
8632
8633   return mdecl;
8634 }
8635
8636 \f
8637 /* This section deals with building access function necessary for
8638    certain kinds of method invocation from inner classes.  */
8639
8640 static tree
8641 build_outer_method_access_method (tree decl)
8642 {
8643   tree saved_current_function_decl, mdecl;
8644   tree args = NULL_TREE, call_args = NULL_TREE;
8645   tree carg, id, body, class;
8646   char buffer [80];
8647   int parm_id_count = 0;
8648
8649   /* Test this abort with an access to a private field */
8650   if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "access$"))
8651     abort ();
8652
8653   /* Check the cache first */
8654   if (DECL_FUNCTION_INNER_ACCESS (decl))
8655     return DECL_FUNCTION_INNER_ACCESS (decl);
8656
8657   class = DECL_CONTEXT (decl);
8658
8659   /* Obtain an access identifier and mark it */
8660   id = build_new_access_id ();
8661   OUTER_FIELD_ACCESS_IDENTIFIER_P (id) = 1;
8662
8663   carg = TYPE_ARG_TYPES (TREE_TYPE (decl));
8664   /* Create the arguments, as much as the original */
8665   for (; carg && carg != end_params_node;
8666        carg = TREE_CHAIN (carg))
8667     {
8668       sprintf (buffer, "write_parm_value$%d", parm_id_count++);
8669       args = chainon (args, build_tree_list (get_identifier (buffer),
8670                                              TREE_VALUE (carg)));
8671     }
8672   args = chainon (args, end_params_node);
8673
8674   /* Create the method */
8675   mdecl = create_artificial_method (class, ACC_STATIC,
8676                                     TREE_TYPE (TREE_TYPE (decl)), id, args);
8677   layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8678   /* There is a potential bug here. We should be able to use
8679      fix_method_argument_names, but then arg names get mixed up and
8680      eventually a constructor will have its this$0 altered and the
8681      outer context won't be assignment properly. The testcase is
8682      stub.java FIXME */
8683   TYPE_ARG_TYPES (TREE_TYPE (mdecl)) = args;
8684
8685   /* Attach the method body. */
8686   saved_current_function_decl = current_function_decl;
8687   start_artificial_method_body (mdecl);
8688
8689   /* The actual method invocation uses the same args. When invoking a
8690      static methods that way, we don't want to skip the first
8691      argument. */
8692   carg = args;
8693   if (!METHOD_STATIC (decl))
8694     carg = TREE_CHAIN (carg);
8695   for (; carg && carg != end_params_node; carg = TREE_CHAIN (carg))
8696     call_args = tree_cons (NULL_TREE, build_wfl_node (TREE_PURPOSE (carg)),
8697                            call_args);
8698
8699   body = build_method_invocation (build_wfl_node (DECL_NAME (decl)),
8700                                   call_args);
8701   if (!METHOD_STATIC (decl))
8702     body = make_qualified_primary (build_wfl_node (TREE_PURPOSE (args)),
8703                                    body, 0);
8704   if (TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
8705     body = build_return (0, body);
8706   java_method_add_stmt (mdecl,body);
8707   end_artificial_method_body (mdecl);
8708   current_function_decl = saved_current_function_decl;
8709
8710   /* Back tag the access function so it know what it accesses */
8711   DECL_FUNCTION_ACCESS_DECL (decl) = mdecl;
8712
8713   /* Tag the current method so it knows it has an access generated */
8714   return DECL_FUNCTION_INNER_ACCESS (decl) = mdecl;
8715 }
8716
8717 \f
8718 /* This section of the code deals with building expressions to access
8719    the enclosing instance of an inner class. The enclosing instance is
8720    kept in a generated field called this$<n>, with <n> being the
8721    inner class nesting level (starting from 0.)  */
8722
8723 /* Build an access to a given this$<n>, always chaining access call to
8724    others. Access methods to this$<n> are build on the fly if
8725    necessary. This CAN'T be used to solely access this$<n-1> from
8726    this$<n> (which alway yield to special cases and optimization, see
8727    for example build_outer_field_access).  */
8728
8729 static tree
8730 build_access_to_thisn (tree from, tree to, int lc)
8731 {
8732   tree access = NULL_TREE;
8733
8734   while (from != to && PURE_INNER_CLASS_TYPE_P (from))
8735     {
8736       if (!access)
8737         {
8738           access = build_current_thisn (from);
8739           access = build_wfl_node (access);
8740         }
8741       else
8742         {
8743           tree access0_wfl, cn;
8744
8745           maybe_build_thisn_access_method (from);
8746           access0_wfl = build_wfl_node (access0_identifier_node);
8747           cn = build_wfl_node (DECL_NAME (TYPE_NAME (from)));
8748           EXPR_WFL_LINECOL (access0_wfl) = lc;
8749           access = build_tree_list (NULL_TREE, access);
8750           access = build_method_invocation (access0_wfl, access);
8751           access = make_qualified_primary (cn, access, lc);
8752         }
8753
8754       /* If FROM isn't an inner class, that's fine, we've done enough.
8755          What we're looking for can be accessed from there.  */
8756       from = DECL_CONTEXT (TYPE_NAME (from));
8757       if (!from)
8758         break;
8759       from = TREE_TYPE (from);
8760     }
8761   return access;
8762 }
8763
8764 /* Build an access function to the this$<n> local to TYPE. NULL_TREE
8765    is returned if nothing needs to be generated. Otherwise, the method
8766    generated and a method decl is returned.
8767
8768    NOTE: These generated methods should be declared in a class file
8769    attribute so that they can't be referred to directly.  */
8770
8771 static tree
8772 maybe_build_thisn_access_method (tree type)
8773 {
8774   tree mdecl, args, stmt, rtype;
8775   tree saved_current_function_decl;
8776
8777   /* If TYPE is a top-level class, no access method is required.
8778      If there already is such an access method, bail out. */
8779   if (CLASS_ACCESS0_GENERATED_P (type) || !PURE_INNER_CLASS_TYPE_P (type))
8780     return NULL_TREE;
8781
8782   /* We generate the method. The method looks like:
8783      static <outer_of_type> access$0 (<type> inst$) { return inst$.this$<n>; }
8784   */
8785   args = build_tree_list (inst_id, build_pointer_type (type));
8786   TREE_CHAIN (args) = end_params_node;
8787   rtype = build_pointer_type (TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))));
8788   mdecl = create_artificial_method (type, ACC_STATIC, rtype,
8789                                     access0_identifier_node, args);
8790   fix_method_argument_names (args, mdecl);
8791   layout_class_method (type, NULL_TREE, mdecl, NULL_TREE);
8792   stmt = build_current_thisn (type);
8793   stmt = make_qualified_primary (build_wfl_node (inst_id),
8794                                  build_wfl_node (stmt), 0);
8795   stmt = build_return (0, stmt);
8796
8797   saved_current_function_decl = current_function_decl;
8798   start_artificial_method_body (mdecl);
8799   java_method_add_stmt (mdecl, stmt);
8800   end_artificial_method_body (mdecl);
8801   current_function_decl = saved_current_function_decl;
8802
8803   CLASS_ACCESS0_GENERATED_P (type) = 1;
8804
8805   return mdecl;
8806 }
8807
8808 /* Craft an correctly numbered `this$<n>'string. this$0 is used for
8809    the first level of innerclassing. this$1 for the next one, etc...
8810    This function can be invoked with TYPE to NULL, available and then
8811    has to count the parser context.  */
8812
8813 static GTY(()) tree saved_thisn;
8814 static GTY(()) tree saved_type;
8815
8816 static tree
8817 build_current_thisn (tree type)
8818 {
8819   static int saved_i = -1;
8820   static int saved_type_i = 0;
8821   tree decl;
8822   char buffer [24];
8823   int i = 0;
8824
8825   if (type)
8826     {
8827       if (type == saved_type)
8828         i = saved_type_i;
8829       else
8830         {
8831           for (i = -1, decl = DECL_CONTEXT (TYPE_NAME (type));
8832                decl; decl = DECL_CONTEXT (decl), i++)
8833             ;
8834
8835           saved_type = type;
8836           saved_type_i = i;
8837         }
8838     }
8839   else
8840     i = list_length (GET_CPC_LIST ())-2;
8841
8842   if (i == saved_i)
8843     return saved_thisn;
8844
8845   sprintf (buffer, "this$%d", i);
8846   saved_i = i;
8847   saved_thisn = get_identifier (buffer);
8848   return saved_thisn;
8849 }
8850
8851 /* Return the assignment to the hidden enclosing context `this$<n>'
8852    by the second incoming parameter to the innerclass constructor. The
8853    form used is `this.this$<n> = this$<n>;'.  */
8854
8855 static tree
8856 build_thisn_assign (void)
8857 {
8858   if (current_class && PURE_INNER_CLASS_TYPE_P (current_class))
8859     {
8860       tree thisn = build_current_thisn (current_class);
8861       tree lhs = make_qualified_primary (build_wfl_node (this_identifier_node),
8862                                          build_wfl_node (thisn), 0);
8863       tree rhs = build_wfl_node (thisn);
8864 #ifdef USE_MAPPED_LOCATION
8865       SET_EXPR_LOCATION (lhs, input_location);
8866 #else
8867       EXPR_WFL_SET_LINECOL (lhs, input_line, 0);
8868 #endif
8869       return build_assignment (ASSIGN_TK, EXPR_WFL_LINECOL (lhs), lhs, rhs);
8870     }
8871   return NULL_TREE;
8872 }
8873
8874 \f
8875 /* Building the synthetic `class$' used to implement the `.class' 1.1
8876    extension for non primitive types. This method looks like:
8877
8878     static Class class$(String type) throws NoClassDefFoundError
8879     {
8880       try {return (java.lang.Class.forName (String));}
8881       catch (ClassNotFoundException e) {
8882         throw new NoClassDefFoundError(e.getMessage());}
8883     } */
8884
8885 static GTY(()) tree get_message_wfl;
8886 static GTY(()) tree type_parm_wfl;
8887
8888 static tree
8889 build_dot_class_method (tree class)
8890 {
8891 #define BWF(S) build_wfl_node (get_identifier ((S)))
8892 #ifdef USE_MAPPED_LOCATION
8893 #define MQN(X,Y) make_qualified_name ((X), (Y), UNKNOWN_LOCATION)
8894 #else
8895 #define MQN(X,Y) make_qualified_name ((X), (Y), 0)
8896 #endif
8897   tree args, tmp, saved_current_function_decl, mdecl, qual_name;
8898   tree stmt, throw_stmt;
8899
8900   if (!get_message_wfl)
8901     {
8902       get_message_wfl = build_wfl_node (get_identifier ("getMessage"));
8903       type_parm_wfl = build_wfl_node (get_identifier ("type$"));
8904     }
8905
8906   /* Build the arguments */
8907   args = build_tree_list (get_identifier ("type$"),
8908                           build_pointer_type (string_type_node));
8909   TREE_CHAIN (args) = end_params_node;
8910
8911   /* Build the qualified name java.lang.Class.forName */
8912   tmp = MQN (MQN (MQN (BWF ("java"),
8913                        BWF ("lang")), BWF ("Class")), BWF ("forName"));
8914
8915   /* Create the "class$" function */
8916   mdecl = create_artificial_method (class, ACC_STATIC,
8917                                     build_pointer_type (class_type_node),
8918                                     classdollar_identifier_node, args);
8919   qual_name = MQN (MQN (BWF ("java"), BWF ("lang")),
8920                    BWF ("NoClassDefFoundError"));
8921   DECL_FUNCTION_THROWS (mdecl) = build_tree_list (NULL_TREE, qual_name);
8922   register_incomplete_type (JDEP_EXCEPTION, qual_name, NULL_TREE, NULL_TREE);
8923   JDEP_GET_PATCH (CLASSD_LAST (ctxp->classd_list)) =
8924     &TREE_VALUE (DECL_FUNCTION_THROWS (mdecl));
8925
8926   /* We start by building the try block. We need to build:
8927        return (java.lang.Class.forName (type)); */
8928   stmt = build_method_invocation (tmp,
8929                                   build_tree_list (NULL_TREE, type_parm_wfl));
8930   stmt = build_return (0, stmt);
8931
8932   /* Now onto the catch block. We start by building the expression
8933      throwing a new exception: throw new NoClassDefFoundError (_.getMessage) */
8934 #ifdef USE_MAPPED_LOCATION
8935   throw_stmt = make_qualified_name (build_wfl_node (wpv_id),
8936                                     get_message_wfl, UNKNOWN_LOCATION);
8937 #else
8938   throw_stmt = make_qualified_name (build_wfl_node (wpv_id),
8939                                     get_message_wfl, 0);
8940 #endif
8941   throw_stmt = build_method_invocation (throw_stmt, NULL_TREE);
8942
8943   /* Build new NoClassDefFoundError (_.getMessage) */
8944   throw_stmt = build_new_invocation
8945     (build_wfl_node (get_identifier ("NoClassDefFoundError")),
8946      build_tree_list (build_pointer_type (string_type_node), throw_stmt));
8947
8948   /* Build the throw, (it's too early to use BUILD_THROW) */
8949   throw_stmt = build1 (THROW_EXPR, NULL_TREE, throw_stmt);
8950
8951   /* Encapsulate STMT in a try block. The catch clause executes THROW_STMT */
8952   qual_name = MQN (MQN (BWF ("java"), BWF ("lang")),
8953                    BWF ("ClassNotFoundException"));
8954   stmt = encapsulate_with_try_catch (0, qual_name, stmt, throw_stmt);
8955
8956   fix_method_argument_names (args, mdecl);
8957   layout_class_method (class, NULL_TREE, mdecl, NULL_TREE);
8958   saved_current_function_decl = current_function_decl;
8959   start_artificial_method_body (mdecl);
8960   java_method_add_stmt (mdecl, stmt);
8961   end_artificial_method_body (mdecl);
8962   current_function_decl = saved_current_function_decl;
8963   TYPE_DOT_CLASS (class) = mdecl;
8964
8965   return mdecl;
8966 }
8967
8968 static tree
8969 build_dot_class_method_invocation (tree this_class, tree type)
8970 {
8971   tree dot_class_method = TYPE_DOT_CLASS (this_class);
8972   tree sig_id, s, t;
8973
8974   if (TYPE_ARRAY_P (type))
8975     sig_id = build_java_signature (type);
8976   else
8977     sig_id = DECL_NAME (TYPE_NAME (type));
8978
8979   /* Ensure that the proper name separator is used */
8980   sig_id = unmangle_classname (IDENTIFIER_POINTER (sig_id),
8981                                IDENTIFIER_LENGTH (sig_id));
8982
8983   s = build_string (IDENTIFIER_LENGTH (sig_id),
8984                     IDENTIFIER_POINTER (sig_id));
8985   t = build_method_invocation (build_wfl_node (DECL_NAME (dot_class_method)),
8986                                build_tree_list (NULL_TREE, s));
8987   if (DECL_CONTEXT (dot_class_method) != this_class)
8988     {
8989       tree class_name = DECL_NAME (TYPE_NAME (DECL_CONTEXT (dot_class_method)));
8990       t = make_qualified_primary (build_wfl_node (class_name), t, 0);
8991     }
8992   return t;
8993 }
8994
8995 /* This section of the code deals with constructor.  */
8996
8997 /* Craft a body for default constructor. Patch existing constructor
8998    bodies with call to super() and field initialization statements if
8999    necessary.  */
9000
9001 static void
9002 fix_constructors (tree mdecl)
9003 {
9004   tree iii;                     /* Instance Initializer Invocation */
9005   tree *bodyp = &DECL_FUNCTION_BODY (mdecl);
9006   tree thisn_assign, compound = NULL_TREE;
9007   tree class_type = DECL_CONTEXT (mdecl);
9008
9009   if (DECL_FIXED_CONSTRUCTOR_P (mdecl))
9010     return;
9011   DECL_FIXED_CONSTRUCTOR_P (mdecl) = 1;
9012
9013   if (!*bodyp)
9014     {
9015       /* It is an error for the compiler to generate a default
9016          constructor if the superclass doesn't have a constructor that
9017          takes no argument, or the same args for an anonymous class */
9018       if (verify_constructor_super (mdecl))
9019         {
9020           tree sclass_decl = TYPE_NAME (CLASSTYPE_SUPER (class_type));
9021           tree save = DECL_NAME (mdecl);
9022           const char *n = IDENTIFIER_POINTER (DECL_NAME (sclass_decl));
9023           DECL_NAME (mdecl) = DECL_NAME (sclass_decl);
9024           parse_error_context
9025             (lookup_cl (TYPE_NAME (class_type)),
9026              "No constructor matching %qs found in class %qs",
9027              lang_printable_name (mdecl, 2), n);
9028           DECL_NAME (mdecl) = save;
9029         }
9030
9031       /* The constructor body must be crafted by hand. It's the
9032          constructor we defined when we realize we didn't have the
9033          CLASSNAME() constructor */
9034       start_artificial_method_body (mdecl);
9035
9036       /* Insert an assignment to the this$<n> hidden field, if
9037          necessary */
9038       if ((thisn_assign = build_thisn_assign ()))
9039         java_method_add_stmt (mdecl, thisn_assign);
9040
9041       /* We don't generate a super constructor invocation if we're
9042          compiling java.lang.Object. build_super_invocation takes care
9043          of that. */
9044       java_method_add_stmt (mdecl, build_super_invocation (mdecl));
9045
9046       /* FIXME */
9047       if ((iii = build_instinit_invocation (class_type)))
9048         java_method_add_stmt (mdecl, iii);
9049
9050       end_artificial_method_body (mdecl);
9051     }
9052   /* Search for an explicit constructor invocation */
9053   else
9054     {
9055       int found = 0;
9056       int invokes_this = 0;
9057       tree main_block = BLOCK_EXPR_BODY (*bodyp);
9058
9059       while (*bodyp)
9060         {
9061           tree body = *bodyp;
9062           switch (TREE_CODE (body))
9063             {
9064             case CALL_EXPR:
9065               found = CALL_EXPLICIT_CONSTRUCTOR_P (body);
9066               if (CALL_THIS_CONSTRUCTOR_P (body))
9067                 invokes_this = 1;
9068               break;
9069             case COMPOUND_EXPR:
9070             case EXPR_WITH_FILE_LOCATION:
9071               bodyp = &TREE_OPERAND (body, 0);
9072               continue;
9073             case BLOCK:
9074               bodyp = &BLOCK_EXPR_BODY (body);
9075               continue;
9076             default:
9077               break;
9078             }
9079           break;
9080         }
9081
9082       /* Generate the assignment to this$<n>, if necessary */
9083       if ((thisn_assign = build_thisn_assign ()))
9084         compound = add_stmt_to_compound (compound, NULL_TREE, thisn_assign);
9085
9086       /* The constructor is missing an invocation of super() */
9087       if (!found)
9088         compound = add_stmt_to_compound (compound, NULL_TREE,
9089                                          build_super_invocation (mdecl));
9090       /* Explicit super() invocation should take place before the
9091          instance initializer blocks. */
9092       else
9093         {
9094           compound = add_stmt_to_compound (compound, NULL_TREE, *bodyp);
9095           *bodyp = build_java_empty_stmt ();
9096         }
9097
9098       DECL_INIT_CALLS_THIS (mdecl) = invokes_this;
9099
9100       /* Insert the instance initializer block right after. */
9101       if (!invokes_this && (iii = build_instinit_invocation (class_type)))
9102         compound = add_stmt_to_compound (compound, NULL_TREE, iii);
9103
9104       /* Fix the constructor main block if we're adding extra stmts */
9105       if (compound)
9106         {
9107           compound = add_stmt_to_compound (compound, NULL_TREE,
9108                                            BLOCK_EXPR_BODY (main_block));
9109           BLOCK_EXPR_BODY (main_block) = compound;
9110         }
9111     }
9112 }
9113
9114 /* Browse constructors in the super class, searching for a constructor
9115    that doesn't take any argument. Return 0 if one is found, 1
9116    otherwise.  If the current class is an anonymous inner class, look
9117    for something that has the same signature. */
9118
9119 static int
9120 verify_constructor_super (tree mdecl)
9121 {
9122   tree class = CLASSTYPE_SUPER (current_class);
9123   int super_inner = PURE_INNER_CLASS_TYPE_P (class);
9124   tree sdecl;
9125
9126   if (!class)
9127     return 0;
9128
9129   if (ANONYMOUS_CLASS_P (current_class))
9130     {
9131       tree mdecl_arg_type;
9132       SKIP_THIS_AND_ARTIFICIAL_PARMS (mdecl_arg_type, mdecl);
9133       for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
9134         if (DECL_CONSTRUCTOR_P (sdecl))
9135           {
9136             tree m_arg_type;
9137             tree arg_type = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
9138             if (super_inner)
9139               arg_type = TREE_CHAIN (arg_type);
9140             for (m_arg_type = mdecl_arg_type;
9141                  (arg_type != end_params_node
9142                   && m_arg_type != end_params_node);
9143                  arg_type = TREE_CHAIN (arg_type),
9144                    m_arg_type = TREE_CHAIN (m_arg_type))
9145               if (!valid_method_invocation_conversion_p
9146                      (TREE_VALUE (arg_type),
9147                       TREE_VALUE (m_arg_type)))
9148                 break;
9149
9150             if (arg_type == end_params_node && m_arg_type == end_params_node)
9151               return 0;
9152           }
9153     }
9154   else
9155     {
9156       for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
9157         {
9158           tree arg = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
9159           if (super_inner)
9160             arg = TREE_CHAIN (arg);
9161           if (DECL_CONSTRUCTOR_P (sdecl) && arg == end_params_node)
9162             return 0;
9163         }
9164     }
9165   return 1;
9166 }
9167
9168 /* Generate code for all context remembered for code generation.  */
9169
9170 static GTY(()) tree reversed_class_list;
9171 void
9172 java_expand_classes (void)
9173 {
9174   int save_error_count = 0;
9175   static struct parser_ctxt *cur_ctxp = NULL;
9176   location_t save_location;
9177
9178   java_parse_abort_on_error ();
9179   if (!(ctxp = ctxp_for_generation))
9180     return;
9181   java_layout_classes ();
9182   java_parse_abort_on_error ();
9183   save_location = input_location;
9184
9185   for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9186     {
9187       tree current;
9188       for (current = cur_ctxp->class_list; 
9189            current; 
9190            current = TREE_CHAIN (current))
9191         gen_indirect_dispatch_tables (TREE_TYPE (current));
9192     }
9193   
9194   for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9195     {
9196       ctxp = cur_ctxp;
9197       input_location = ctxp->file_start_location;
9198       lang_init_source (2);            /* Error msgs have method prototypes */
9199       java_complete_expand_classes (); /* Complete and expand classes */
9200       java_parse_abort_on_error ();
9201     }
9202   input_location = save_location;
9203
9204   /* Find anonymous classes and expand their constructor. This extra pass is
9205      necessary because the constructor itself is only generated when the
9206      method in which it is defined is expanded. */
9207   for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9208     {
9209       tree current;
9210       ctxp = cur_ctxp;
9211       for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9212         {
9213           output_class = current_class = TREE_TYPE (current);
9214           if (ANONYMOUS_CLASS_P (current_class))
9215             {
9216               tree d;
9217               for (d = TYPE_METHODS (current_class); d; d = TREE_CHAIN (d))
9218                 {
9219                   if (DECL_CONSTRUCTOR_P (d))
9220                     {
9221                       java_complete_expand_method (d);
9222                       break;    /* There is only one constructor. */
9223                     }
9224                 }
9225             }
9226         }
9227     }
9228
9229   /* Expanding the constructors of anonymous classes generates access
9230      methods.  Scan all the methods looking for null DECL_RESULTs --
9231      this will be the case if a method hasn't been expanded.  */
9232   for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9233     {
9234       tree current;
9235       ctxp = cur_ctxp;
9236       for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9237         {
9238           tree d;
9239           output_class = current_class = TREE_TYPE (current);
9240           for (d = TYPE_METHODS (current_class); d; d = TREE_CHAIN (d))
9241             {
9242               if (DECL_RESULT (d) == NULL_TREE)
9243                 java_complete_expand_method (d);
9244             }
9245         }
9246     }
9247
9248   /* ???  Instead of all this we could iterate around the list of
9249      classes until there were no more un-expanded methods.  It would
9250      take a little longer -- one pass over the whole list of methods
9251      -- but it would be simpler.  Like this:  */
9252 #if 0
9253     {
9254       int something_changed;
9255     
9256       do
9257         {
9258           something_changed = 0;
9259           for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9260             {
9261               tree current;
9262               ctxp = cur_ctxp;
9263               for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9264                 {
9265                   tree d;
9266                   output_class = current_class = TREE_TYPE (current);
9267                   for (d = TYPE_METHODS (current_class); d; d = TREE_CHAIN (d))
9268                     {
9269                       if (DECL_RESULT (d) == NULL_TREE)
9270                         {
9271                           something_changed = 1;
9272                           java_complete_expand_method (d);
9273                         }
9274                     }
9275                 }
9276             }
9277         }
9278       while (something_changed);
9279     }
9280 #endif
9281
9282   /* If we've found error at that stage, don't try to generate
9283      anything, unless we're emitting xrefs or checking the syntax only
9284      (but not using -fsyntax-only for the purpose of generating
9285      bytecode. */
9286   if (java_error_count && !flag_emit_xref
9287       && (!flag_syntax_only && !flag_emit_class_files))
9288     return;
9289
9290   /* Now things are stable, go for generation of the class data. */
9291
9292   /* We pessimistically marked all methods and fields external until
9293      we knew what set of classes we were planning to compile.  Now mark
9294      those that will be generated locally as not external.  */
9295   for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9296     {
9297       tree current;
9298       ctxp = cur_ctxp;
9299       for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9300         java_mark_class_local (TREE_TYPE (current));
9301     }
9302
9303   /* Compile the classes.  */
9304   for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9305     {
9306       tree current;
9307       reversed_class_list = NULL;
9308
9309       ctxp = cur_ctxp;
9310
9311       /* We write out the classes in reverse order.  This ensures that
9312          inner classes are written before their containing classes,
9313          which is important for parallel builds.  Otherwise, the
9314          class file for the outer class may be found, but the class
9315          file for the inner class may not be present.  In that
9316          situation, the compiler cannot fall back to the original
9317          source, having already read the outer class, so we must
9318          prevent that situation.  */
9319       for (current = ctxp->class_list;
9320            current;
9321            current = TREE_CHAIN (current))
9322         reversed_class_list
9323           = tree_cons (NULL_TREE, current, reversed_class_list);
9324
9325       for (current = reversed_class_list;
9326            current;
9327            current = TREE_CHAIN (current))
9328         {
9329           output_class = current_class = TREE_TYPE (TREE_VALUE (current));
9330           if (flag_emit_class_files)
9331             write_classfile (current_class);
9332           if (flag_emit_xref)
9333             expand_xref (current_class);
9334           else if (! flag_syntax_only)
9335             java_expand_method_bodies (current_class);
9336         }
9337     }
9338 }
9339
9340 void
9341 java_finish_classes (void)
9342 {
9343   static struct parser_ctxt *cur_ctxp = NULL;
9344   for (cur_ctxp = ctxp_for_generation; cur_ctxp; cur_ctxp = cur_ctxp->next)
9345     {
9346       tree current;
9347       ctxp = cur_ctxp;
9348       for (current = ctxp->class_list; current; current = TREE_CHAIN (current))
9349         {
9350           output_class = current_class = TREE_TYPE (current);
9351           finish_class ();
9352         }
9353     }
9354 }
9355
9356 /* Wrap non WFL PRIMARY around a WFL and set EXPR_WFL_QUALIFICATION to
9357    a tree list node containing RIGHT. Fore coming RIGHTs will be
9358    chained to this hook. LOCATION contains the location of the
9359    separating `.' operator.  */
9360
9361 static tree
9362 make_qualified_primary (tree primary, tree right, int location)
9363 {
9364   tree wfl;
9365
9366   if (TREE_CODE (primary) != EXPR_WITH_FILE_LOCATION)
9367     wfl = build_wfl_wrap (primary, location);
9368   else
9369     {
9370       wfl = primary;
9371       /* If wfl wasn't qualified, we build a first anchor */
9372       if (!EXPR_WFL_QUALIFICATION (wfl))
9373         EXPR_WFL_QUALIFICATION (wfl) = build_tree_list (wfl, NULL_TREE);
9374     }
9375
9376   /* And chain them */
9377   EXPR_WFL_LINECOL (right) = location;
9378   chainon (EXPR_WFL_QUALIFICATION (wfl), build_tree_list (right, NULL_TREE));
9379   PRIMARY_P (wfl) =  1;
9380   return wfl;
9381 }
9382
9383 /* Simple merge of two name separated by a `.' */
9384
9385 static tree
9386 merge_qualified_name (tree left, tree right)
9387 {
9388   tree node;
9389   if (!left && !right)
9390     return NULL_TREE;
9391
9392   if (!left)
9393     return right;
9394
9395   if (!right)
9396     return left;
9397
9398   obstack_grow (&temporary_obstack, IDENTIFIER_POINTER (left),
9399                 IDENTIFIER_LENGTH (left));
9400   obstack_1grow (&temporary_obstack, '.');
9401   obstack_grow0 (&temporary_obstack, IDENTIFIER_POINTER (right),
9402                  IDENTIFIER_LENGTH (right));
9403   node =  get_identifier (obstack_base (&temporary_obstack));
9404   obstack_free (&temporary_obstack, obstack_base (&temporary_obstack));
9405   QUALIFIED_P (node) = 1;
9406   return node;
9407 }
9408
9409 /* Merge the two parts of a qualified name into LEFT.  Set the
9410    location information of the resulting node to LOCATION, usually
9411    inherited from the location information of the `.' operator. */
9412
9413 static tree
9414 make_qualified_name (tree left, tree right,
9415 #ifdef USE_MAPPED_LOCATION
9416                      source_location location
9417 #else
9418                      int location
9419 #endif
9420                      )
9421 {
9422 #ifdef USE_COMPONENT_REF
9423   tree node = build3 (COMPONENT_REF, NULL_TREE, left, right, NULL_TREE);
9424   SET_EXPR_LOCATION (node, location);
9425   return node;
9426 #else
9427   tree left_id = EXPR_WFL_NODE (left);
9428   tree right_id = EXPR_WFL_NODE (right);
9429   tree wfl, merge;
9430
9431   merge = merge_qualified_name (left_id, right_id);
9432
9433   /* Left wasn't qualified and is now qualified */
9434 #ifdef USE_MAPPED_LOCATION
9435   if (!QUALIFIED_P (left_id))
9436     {
9437       tree wfl = build_expr_wfl (left_id, EXPR_LOCATION (left));
9438       EXPR_WFL_QUALIFICATION (left) = build_tree_list (wfl, NULL_TREE);
9439     }
9440
9441   wfl = build_expr_wfl (right_id, location);
9442 #else
9443   if (!QUALIFIED_P (left_id))
9444     {
9445       tree wfl = build_expr_wfl (left_id, ctxp->filename, 0, 0);
9446       EXPR_WFL_LINECOL (wfl) = EXPR_WFL_LINECOL (left);
9447       EXPR_WFL_QUALIFICATION (left) = build_tree_list (wfl, NULL_TREE);
9448     }
9449
9450   wfl = build_expr_wfl (right_id, ctxp->filename, 0, 0);
9451   EXPR_WFL_LINECOL (wfl) = location;
9452 #endif
9453   chainon (EXPR_WFL_QUALIFICATION (left), build_tree_list (wfl, NULL_TREE));
9454   EXPR_WFL_NODE (left) = merge;
9455   return left;
9456 #endif
9457 }
9458
9459 /* Extract the last identifier component of the qualified in WFL. The
9460    last identifier is removed from the linked list */
9461
9462 static tree
9463 cut_identifier_in_qualified (tree wfl)
9464 {
9465   tree q;
9466   tree previous = NULL_TREE;
9467   for (q = EXPR_WFL_QUALIFICATION (wfl); ; previous = q, q = TREE_CHAIN (q))
9468     if (!TREE_CHAIN (q))
9469       {
9470         if (!previous)
9471           /* Operating on a non qualified qualified WFL.  */
9472           abort ();
9473
9474         TREE_CHAIN (previous) = NULL_TREE;
9475         return TREE_PURPOSE (q);
9476       }
9477 }
9478
9479 /* Resolve the expression name NAME. Return its decl.  */
9480
9481 static tree
9482 resolve_expression_name (tree id, tree *orig)
9483 {
9484   tree name = EXPR_WFL_NODE (id);
9485   tree decl;
9486
9487   /* 6.5.5.1: Simple expression names */
9488   if (!PRIMARY_P (id) && !QUALIFIED_P (name))
9489     {
9490       /* 15.13.1: NAME can appear within the scope of a local variable
9491          declaration */
9492       if ((decl = IDENTIFIER_LOCAL_VALUE (name)))
9493         return decl;
9494
9495       /* 15.13.1: NAME can appear within a class declaration */
9496       else
9497         {
9498           decl = lookup_field_wrapper (current_class, name);
9499           if (decl)
9500             {
9501               tree access = NULL_TREE;
9502               int fs = FIELD_STATIC (decl);
9503
9504               /* If we're accessing an outer scope local alias, make
9505                  sure we change the name of the field we're going to
9506                  build access to. */
9507               if (FIELD_LOCAL_ALIAS_USED (decl))
9508                 name = DECL_NAME (decl);
9509
9510               check_deprecation (id, decl);
9511
9512               /* Instance variable (8.3.1.1) can't appear within
9513                  static method, static initializer or initializer for
9514                  a static variable. */
9515               if (!fs && METHOD_STATIC (current_function_decl))
9516                 {
9517                   static_ref_err (id, name, current_class);
9518                   return error_mark_node;
9519                 }
9520               /* Instance variables can't appear as an argument of
9521                  an explicit constructor invocation */
9522               if (!fs && ctxp->explicit_constructor_p
9523                   && !enclosing_context_p (DECL_CONTEXT (decl), current_class))
9524                 {
9525                   parse_error_context
9526                     (id, "Can't reference %qs before the superclass constructor has been called", IDENTIFIER_POINTER (name));
9527                   return error_mark_node;
9528                 }
9529
9530               /* If we're processing an inner class and we're trying
9531                  to access a field belonging to an outer class, build
9532                  the access to the field */
9533               if (!fs && outer_field_access_p (current_class, decl))
9534                 {
9535                   if (CLASS_STATIC (TYPE_NAME (current_class)))
9536                     {
9537                       static_ref_err (id, DECL_NAME (decl), current_class);
9538                       return error_mark_node;
9539                     }
9540                   access = build_outer_field_access (id, decl);
9541                   if (orig)
9542                     *orig = access;
9543                   return access;
9544                 }
9545
9546               /* Otherwise build what it takes to access the field */
9547               access = build_field_ref ((fs ? NULL_TREE : current_this),
9548                                         DECL_CONTEXT (decl), name);
9549               if (fs)
9550                 access = maybe_build_class_init_for_field (decl, access);
9551               /* We may be asked to save the real field access node */
9552               if (orig)
9553                 *orig = access;
9554               /* Last check: can we access the field? */
9555               if (not_accessible_p (current_class, decl, NULL_TREE, 0))
9556                 {
9557                   not_accessible_field_error (id, decl);
9558                   return error_mark_node;
9559                 }
9560               /* And we return what we got */
9561               return access;
9562             }
9563           /* Fall down to error report on undefined variable */
9564         }
9565     }
9566   /* 6.5.5.2 Qualified Expression Names */
9567   else
9568     {
9569       if (orig)
9570         *orig = NULL_TREE;
9571       qualify_ambiguous_name (id);
9572       /* 15.10.1 Field Access Using a Primary and/or Expression Name */
9573       /* 15.10.2: Accessing Superclass Members using super */
9574       return resolve_field_access (id, orig, NULL);
9575     }
9576
9577   /* We've got an error here */
9578   if (INNER_CLASS_TYPE_P (current_class))
9579     parse_error_context (id,
9580                          "Local variable %qs can't be accessed from within the inner class %qs unless it is declared final",
9581                          IDENTIFIER_POINTER (name),
9582                          IDENTIFIER_POINTER (DECL_NAME
9583                                              (TYPE_NAME (current_class))));
9584   else
9585     parse_error_context (id, "Undefined variable %qs",
9586                          IDENTIFIER_POINTER (name));
9587
9588   return error_mark_node;
9589 }
9590
9591 static void
9592 static_ref_err (tree wfl, tree field_id, tree class_type)
9593 {
9594   parse_error_context
9595     (wfl,
9596      "Can't make a static reference to nonstatic variable %qs in class %qs",
9597      IDENTIFIER_POINTER (field_id),
9598      IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (class_type))));
9599 }
9600
9601 /* 15.10.1 Field Access Using a Primary and/or Expression Name.
9602    We return something suitable to generate the field access. We also
9603    return the field decl in FIELD_DECL and its type in FIELD_TYPE.  If
9604    recipient's address can be null. */
9605
9606 static tree
9607 resolve_field_access (tree qual_wfl, tree *field_decl, tree *field_type)
9608 {
9609   int is_static = 0;
9610   tree field_ref;
9611   tree decl = NULL_TREE, where_found, type_found;
9612
9613   if (resolve_qualified_expression_name (qual_wfl, &decl,
9614                                          &where_found, &type_found))
9615     return error_mark_node;
9616
9617   /* Resolve the LENGTH field of an array here */
9618   if (DECL_P (decl) && DECL_NAME (decl) == length_identifier_node
9619       && type_found && TYPE_ARRAY_P (type_found)
9620       && ! flag_emit_class_files && ! flag_emit_xref)
9621     {
9622       tree length = build_java_array_length_access (where_found);
9623       field_ref = length;
9624
9625       /* In case we're dealing with a static array, we need to
9626          initialize its class before the array length can be fetched.
9627          It's also a good time to create a DECL_RTL for the field if
9628          none already exists, otherwise if the field was declared in a
9629          class found in an external file and hasn't been (and won't
9630          be) accessed for its value, none will be created. */
9631       if (TREE_CODE (where_found) == VAR_DECL && FIELD_STATIC (where_found))
9632         {
9633           build_static_field_ref (where_found);
9634           field_ref = build_class_init (DECL_CONTEXT (where_found), field_ref);
9635         }
9636     }
9637   /* We might have been trying to resolve field.method(). In which
9638      case, the resolution is over and decl is the answer */
9639   else if (JDECL_P (decl) && IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) == decl)
9640     field_ref = decl;
9641   else if (JDECL_P (decl))
9642     {
9643       if (!type_found)
9644         type_found = DECL_CONTEXT (decl);
9645       is_static = FIELD_STATIC (decl);
9646       field_ref = build_field_ref ((is_static && !flag_emit_xref?
9647                                     NULL_TREE : where_found),
9648                                    type_found, DECL_NAME (decl));
9649       if (field_ref == error_mark_node)
9650         return error_mark_node;
9651       if (is_static)
9652         field_ref = maybe_build_class_init_for_field (decl, field_ref);
9653
9654       /* If we're looking at a static field, we may need to generate a
9655          class initialization for it.  This can happen when the access
9656          looks like `field.ref', where `field' is a static field in an
9657          interface we implement.  */
9658       if (!flag_emit_class_files
9659           && !flag_emit_xref
9660           && TREE_CODE (where_found) == VAR_DECL
9661           && FIELD_STATIC (where_found))
9662         {
9663           build_static_field_ref (where_found);
9664           field_ref = build_class_init (DECL_CONTEXT (where_found), field_ref);
9665         }
9666     }
9667   else
9668     field_ref = decl;
9669
9670   if (field_decl)
9671     *field_decl = decl;
9672   if (field_type)
9673     *field_type = (QUAL_DECL_TYPE (decl) ?
9674                    QUAL_DECL_TYPE (decl) : TREE_TYPE (decl));
9675   return field_ref;
9676 }
9677
9678 /* If NODE is an access to f static field, strip out the class
9679    initialization part and return the field decl, otherwise, return
9680    NODE. */
9681
9682 static tree
9683 strip_out_static_field_access_decl (tree node)
9684 {
9685   if (TREE_CODE (node) == COMPOUND_EXPR)
9686     {
9687       tree op1 = TREE_OPERAND (node, 1);
9688       if (TREE_CODE (op1) == COMPOUND_EXPR)
9689          {
9690            tree call = TREE_OPERAND (op1, 0);
9691            if (TREE_CODE (call) == CALL_EXPR
9692                && TREE_CODE (TREE_OPERAND (call, 0)) == ADDR_EXPR
9693                && TREE_OPERAND (TREE_OPERAND (call, 0), 0)
9694                == soft_initclass_node)
9695              return TREE_OPERAND (op1, 1);
9696          }
9697       else if (JDECL_P (op1))
9698         return op1;
9699     }
9700   return node;
9701 }
9702
9703 /* 6.5.5.2: Qualified Expression Names */
9704
9705 static int
9706 resolve_qualified_expression_name (tree wfl, tree *found_decl,
9707                                    tree *where_found, tree *type_found)
9708 {
9709   int from_type = 0;            /* Field search initiated from a type */
9710   int from_super = 0, from_cast = 0, from_qualified_this = 0;
9711   int previous_call_static = 0;
9712   int is_static;
9713   tree decl = NULL_TREE, type = NULL_TREE, q;
9714   /* For certain for of inner class instantiation */
9715   tree saved_current, saved_this;
9716 #define RESTORE_THIS_AND_CURRENT_CLASS                          \
9717   { current_class = saved_current; current_this = saved_this;}
9718
9719   *type_found = *where_found = NULL_TREE;
9720
9721   for (q = EXPR_WFL_QUALIFICATION (wfl); q; q = TREE_CHAIN (q))
9722     {
9723       tree qual_wfl = QUAL_WFL (q);
9724       tree ret_decl;            /* for EH checking */
9725 #ifdef USE_MAPPED_LOCATION
9726       source_location location;  /* for EH checking */
9727 #else
9728       int location;             /* for EH checking */
9729 #endif
9730
9731       /* 15.10.1 Field Access Using a Primary */
9732       switch (TREE_CODE (qual_wfl))
9733         {
9734         case CALL_EXPR:
9735         case NEW_CLASS_EXPR:
9736           /* If the access to the function call is a non static field,
9737              build the code to access it. */
9738           if (JDECL_P (decl) && !FIELD_STATIC (decl))
9739             {
9740               decl = maybe_access_field (decl, *where_found,
9741                                          DECL_CONTEXT (decl));
9742               if (decl == error_mark_node)
9743                 return 1;
9744             }
9745
9746           /* And code for the function call */
9747           if (complete_function_arguments (qual_wfl))
9748             return 1;
9749
9750           /* We might have to setup a new current class and a new this
9751              for the search of an inner class, relative to the type of
9752              a expression resolved as `decl'. The current values are
9753              saved and restored shortly after */
9754           saved_current = current_class;
9755           saved_this = current_this;
9756           if (decl
9757               && (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR
9758                   || from_qualified_this))
9759             {
9760               /* If we still have `from_qualified_this', we have the form
9761                  <T>.this.f() and we need to build <T>.this */
9762               if (from_qualified_this)
9763                 {
9764                   decl = build_access_to_thisn (current_class, type, 0);
9765                   decl = java_complete_tree (decl);
9766                   type = TREE_TYPE (TREE_TYPE (decl));
9767                 }
9768               current_class = type;
9769               current_this = decl;
9770               from_qualified_this = 0;
9771             }
9772
9773           if (from_super && TREE_CODE (qual_wfl) == CALL_EXPR)
9774             CALL_USING_SUPER (qual_wfl) = 1;
9775 #ifdef USE_MAPPED_LOCATION
9776           location = (TREE_CODE (qual_wfl) == CALL_EXPR
9777                       ? EXPR_LOCATION (TREE_OPERAND (qual_wfl, 0))
9778                       : UNKNOWN_LOCATION);
9779 #else
9780           location = (TREE_CODE (qual_wfl) == CALL_EXPR ?
9781                       EXPR_WFL_LINECOL (TREE_OPERAND (qual_wfl, 0)) : 0);
9782 #endif
9783           *where_found = patch_method_invocation (qual_wfl, decl, type,
9784                                                   from_super,
9785                                                   &is_static, &ret_decl);
9786           from_super = 0;
9787           if (*where_found == error_mark_node)
9788             {
9789               RESTORE_THIS_AND_CURRENT_CLASS;
9790               return 1;
9791             }
9792           *type_found = type = QUAL_DECL_TYPE (*where_found);
9793
9794           *where_found = force_evaluation_order (*where_found);
9795
9796           /* If we're creating an inner class instance, check for that
9797              an enclosing instance is in scope */
9798           if (TREE_CODE (qual_wfl) == NEW_CLASS_EXPR
9799               && INNER_ENCLOSING_SCOPE_CHECK (type))
9800             {
9801               parse_error_context
9802                 (qual_wfl, "No enclosing instance for inner class %qs is in scope%s",
9803                  lang_printable_name (type, 0),
9804                  (!current_this ? "" :
9805                   "; an explicit one must be provided when creating this inner class"));
9806               RESTORE_THIS_AND_CURRENT_CLASS;
9807               return 1;
9808             }
9809
9810           /* In case we had to change then to resolve a inner class
9811              instantiation using a primary qualified by a `new' */
9812           RESTORE_THIS_AND_CURRENT_CLASS;
9813
9814 #ifdef USE_MAPPED_LOCATION
9815           if (location != UNKNOWN_LOCATION)
9816 #else
9817           if (location)
9818 #endif
9819             {
9820               tree arguments = NULL_TREE;
9821               if (TREE_CODE (qual_wfl) == CALL_EXPR
9822                   && TREE_OPERAND (qual_wfl, 1) != NULL_TREE)
9823                 arguments = TREE_VALUE (TREE_OPERAND (qual_wfl, 1));
9824               check_thrown_exceptions (location, ret_decl, arguments);
9825             }
9826
9827           /* If the previous call was static and this one is too,
9828              build a compound expression to hold the two (because in
9829              that case, previous function calls aren't transported as
9830              forcoming function's argument. */
9831           if (previous_call_static && is_static)
9832             {
9833               /* We must set CAN_COMPLETE_NORMALLY for the first call
9834                  since it is done nowhere else.  */
9835               CAN_COMPLETE_NORMALLY (decl) = 1;
9836               decl = build2 (COMPOUND_EXPR, TREE_TYPE (*where_found),
9837                              decl, *where_found);
9838               TREE_SIDE_EFFECTS (decl) = 1;
9839             }
9840           else
9841             {
9842               previous_call_static = is_static;
9843               decl = *where_found;
9844             }
9845           from_type = 0;
9846           continue;
9847
9848         case NEW_ARRAY_EXPR:
9849         case NEW_ANONYMOUS_ARRAY_EXPR:
9850           *where_found = decl = java_complete_tree (qual_wfl);
9851           if (decl == error_mark_node)
9852             return 1;
9853           *type_found = type = QUAL_DECL_TYPE (decl);
9854           continue;
9855
9856         case CONVERT_EXPR:
9857           *where_found = decl = java_complete_tree (qual_wfl);
9858           if (decl == error_mark_node)
9859             return 1;
9860           *type_found = type = QUAL_DECL_TYPE (decl);
9861           from_cast = 1;
9862           continue;
9863
9864         case CONDITIONAL_EXPR:
9865         case STRING_CST:
9866         case MODIFY_EXPR:
9867           *where_found = decl = java_complete_tree (qual_wfl);
9868           if (decl == error_mark_node)
9869             return 1;
9870           *type_found = type = QUAL_DECL_TYPE (decl);
9871           continue;
9872
9873         case ARRAY_REF:
9874           /* If the access to the function call is a non static field,
9875              build the code to access it. */
9876           if (JDECL_P (decl) && !FIELD_STATIC (decl))
9877             {
9878               decl = maybe_access_field (decl, *where_found, type);
9879               if (decl == error_mark_node)
9880                 return 1;
9881             }
9882           /* And code for the array reference expression */
9883           decl = java_complete_tree (qual_wfl);
9884           if (decl == error_mark_node)
9885             return 1;
9886           type = QUAL_DECL_TYPE (decl);
9887           continue;
9888
9889         case PLUS_EXPR:
9890           if ((decl = java_complete_tree (qual_wfl)) == error_mark_node)
9891             return 1;
9892           if ((type = patch_string (decl)))
9893             decl = type;
9894           *where_found = QUAL_RESOLUTION (q) = decl;
9895           *type_found = type = TREE_TYPE (decl);
9896           break;
9897
9898         case CLASS_LITERAL:
9899           if ((decl = java_complete_tree (qual_wfl)) == error_mark_node)
9900             return 1;
9901           *where_found = QUAL_RESOLUTION (q) = decl;
9902           *type_found = type = TREE_TYPE (decl);
9903           break;
9904
9905         default:
9906           /* Fix for -Wall Just go to the next statement. Don't
9907              continue */
9908           break;
9909         }
9910
9911       /* If we fall here, we weren't processing a (static) function call. */
9912       previous_call_static = 0;
9913
9914       /* It can be the keyword THIS */
9915       if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION
9916           && EXPR_WFL_NODE (qual_wfl) == this_identifier_node)
9917         {
9918           if (!current_this)
9919             {
9920               parse_error_context
9921                 (wfl, "Keyword %<this%> used outside allowed context");
9922               return 1;
9923             }
9924           if (ctxp->explicit_constructor_p
9925               && type == current_class)
9926             {
9927               parse_error_context (wfl, "Can't reference %<this%> before the superclass constructor has been called");
9928               return 1;
9929             }
9930           /* We have to generate code for intermediate access */
9931           if (!from_type || TREE_TYPE (TREE_TYPE (current_this)) == type)
9932             {
9933               *where_found = decl = current_this;
9934               *type_found = type = QUAL_DECL_TYPE (decl);
9935             }
9936           /* We're trying to access the this from somewhere else. Make sure
9937              it's allowed before doing so. */
9938           else
9939             {
9940               if (!enclosing_context_p (type, current_class))
9941                 {
9942                   char *p  = xstrdup (lang_printable_name (type, 0));
9943                   parse_error_context (qual_wfl, "Can't use variable %<%s.this%>: type %qs isn't an outer type of type %qs",
9944                                        p, p,
9945                                        lang_printable_name (current_class, 0));
9946                   free (p);
9947                   return 1;
9948                 }
9949               from_qualified_this = 1;
9950               /* If there's nothing else after that, we need to
9951                  produce something now, otherwise, the section of the
9952                  code that needs to produce <T>.this will generate
9953                  what is necessary. */
9954               if (!TREE_CHAIN (q))
9955                 {
9956                   decl = build_access_to_thisn (current_class, type, 0);
9957                   *where_found = decl = java_complete_tree (decl);
9958                   *type_found = type = TREE_TYPE (decl);
9959                 }
9960             }
9961
9962           from_type = 0;
9963           continue;
9964         }
9965
9966       /* 15.10.2 Accessing Superclass Members using SUPER */
9967       if (TREE_CODE (qual_wfl) == EXPR_WITH_FILE_LOCATION
9968           && EXPR_WFL_NODE (qual_wfl) == super_identifier_node)
9969         {
9970           tree node;
9971           /* Check on the restricted use of SUPER */
9972           if (METHOD_STATIC (current_function_decl)
9973               || current_class == object_type_node)
9974             {
9975               parse_error_context
9976                 (wfl, "Keyword %<super%> used outside allowed context");
9977               return 1;
9978             }
9979           /* Otherwise, treat SUPER as (SUPER_CLASS)THIS */
9980           node = build_cast (EXPR_WFL_LINECOL (qual_wfl),
9981                              CLASSTYPE_SUPER (current_class),
9982                              build_this (EXPR_WFL_LINECOL (qual_wfl)));
9983           *where_found = decl = java_complete_tree (node);
9984           if (decl == error_mark_node)
9985             return 1;
9986           *type_found = type = QUAL_DECL_TYPE (decl);
9987           from_super = from_type = 1;
9988           continue;
9989         }
9990
9991       /* 15.13.1: Can't search for field name in packages, so we
9992          assume a variable/class name was meant. */
9993       if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
9994         {
9995           tree name;
9996           if ((decl = resolve_package (wfl, &q, &name)))
9997             {
9998               tree list;
9999               *where_found = decl;
10000
10001               check_pkg_class_access (DECL_NAME (decl), qual_wfl, true, NULL);
10002
10003               /* We want to be absolutely sure that the class is laid
10004                  out. We're going to search something inside it. */
10005               *type_found = type = TREE_TYPE (decl);
10006               layout_class (type);
10007               from_type = 1;
10008
10009               /* Fix them all the way down, if any are left. */
10010               if (q)
10011                 {
10012                   list = TREE_CHAIN (q);
10013                   while (list)
10014                     {
10015                       RESOLVE_PACKAGE_NAME_P (QUAL_WFL (list)) = 0;
10016                       list = TREE_CHAIN (list);
10017                     }
10018                 }
10019             }
10020           else
10021             {
10022               if (from_super || from_cast)
10023                 parse_error_context
10024                   ((from_cast ? qual_wfl : wfl),
10025                    "No variable %qs defined in class %qs",
10026                    IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
10027                    lang_printable_name (type, 0));
10028               else
10029                 parse_error_context
10030                   (qual_wfl, "Undefined variable or class name: %qs",
10031                    IDENTIFIER_POINTER (name));
10032               return 1;
10033             }
10034         }
10035
10036       /* We have a type name. It's been already resolved when the
10037          expression was qualified. */
10038       else if (RESOLVE_TYPE_NAME_P (qual_wfl) && QUAL_RESOLUTION (q))
10039         {
10040           decl = QUAL_RESOLUTION (q);
10041
10042           /* Sneak preview. If next we see a `new', we're facing a
10043              qualification which resulted in a type being selected
10044              instead of a field.  Report the error.  */
10045           if(TREE_CHAIN (q)
10046              && TREE_CODE (TREE_PURPOSE (TREE_CHAIN (q))) == NEW_CLASS_EXPR)
10047             {
10048               parse_error_context (qual_wfl, "Undefined variable %qs",
10049                                    IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10050               return 1;
10051             }
10052
10053           check_pkg_class_access (DECL_NAME (decl), qual_wfl, true, NULL);
10054           
10055           check_deprecation (qual_wfl, decl);
10056
10057           type = TREE_TYPE (decl);
10058           from_type = 1;
10059         }
10060       /* We resolve an expression name */
10061       else
10062         {
10063           tree field_decl = NULL_TREE;
10064
10065           /* If there exists an early resolution, use it. That occurs
10066              only once and we know that there are more things to
10067              come. Don't do that when processing something after SUPER
10068              (we need more thing to be put in place below */
10069           if (!from_super && QUAL_RESOLUTION (q))
10070             {
10071               decl = QUAL_RESOLUTION (q);
10072               if (!type)
10073                 {
10074                   if (TREE_CODE (decl) == FIELD_DECL && !FIELD_STATIC (decl))
10075                     {
10076                       if (current_this)
10077                         *where_found = current_this;
10078                       else
10079                         {
10080                           static_ref_err (qual_wfl, DECL_NAME (decl),
10081                                           current_class);
10082                           return 1;
10083                         }
10084                       if (outer_field_access_p (current_class, decl))
10085                         decl = build_outer_field_access (qual_wfl, decl);
10086                     }
10087                   else
10088                     {
10089                       *where_found = TREE_TYPE (decl);
10090                       if (TREE_CODE (*where_found) == POINTER_TYPE)
10091                         *where_found = TREE_TYPE (*where_found);
10092                     }
10093                 }
10094             }
10095
10096           /* Report and error if we're using a numerical literal as a
10097              qualifier. It can only be an INTEGER_CST. */
10098           else if (TREE_CODE (qual_wfl) == INTEGER_CST)
10099             {
10100               parse_error_context
10101                 (wfl, "Can't use type %qs as a qualifier",
10102                  lang_printable_name (TREE_TYPE (qual_wfl), 0));
10103               return 1;
10104             }
10105
10106           /* We have to search for a field, knowing the type of its
10107              container. The flag FROM_TYPE indicates that we resolved
10108              the last member of the expression as a type name, which
10109              means that for the resolution of this field, we'll look
10110              for other errors than if it was resolved as a member of
10111              an other field. */
10112           else
10113             {
10114               int is_static;
10115               tree field_decl_type; /* For layout */
10116
10117               if (!from_type && !JREFERENCE_TYPE_P (type))
10118                 {
10119                   parse_error_context
10120                     (qual_wfl, "Attempt to reference field %qs in %<%s %s%>",
10121                      IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
10122                      lang_printable_name (type, 0),
10123                      IDENTIFIER_POINTER (DECL_NAME (decl)));
10124                   return 1;
10125                 }
10126
10127               field_decl = lookup_field_wrapper (type,
10128                                                  EXPR_WFL_NODE (qual_wfl));
10129
10130               /* Maybe what we're trying to access to is an inner
10131                  class, only if decl is a TYPE_DECL. */
10132               if (!field_decl && TREE_CODE (decl) == TYPE_DECL)
10133                 {
10134                   tree ptr, inner_decl;
10135
10136                   BUILD_PTR_FROM_NAME (ptr, EXPR_WFL_NODE (qual_wfl));
10137                   inner_decl = resolve_class (decl, ptr, NULL_TREE, qual_wfl);
10138                   if (inner_decl)
10139                     {
10140                       check_inner_class_access (inner_decl, decl, qual_wfl);
10141                       type = TREE_TYPE (inner_decl);
10142                       decl = inner_decl;
10143                       from_type = 1;
10144                       continue;
10145                     }
10146                 }
10147
10148               if (field_decl == NULL_TREE)
10149                 {
10150                   parse_error_context
10151                     (qual_wfl, "No variable %qs defined in type %qs",
10152                      IDENTIFIER_POINTER (EXPR_WFL_NODE (qual_wfl)),
10153                      GET_TYPE_NAME (type));
10154                   return 1;
10155                 }
10156               if (field_decl == error_mark_node)
10157                 return 1;
10158
10159               /* Layout the type of field_decl, since we may need
10160                  it. Don't do primitive types or loaded classes. The
10161                  situation of non primitive arrays may not handled
10162                  properly here. FIXME */
10163               if (TREE_CODE (TREE_TYPE (field_decl)) == POINTER_TYPE)
10164                 field_decl_type = TREE_TYPE (TREE_TYPE (field_decl));
10165               else
10166                 field_decl_type = TREE_TYPE (field_decl);
10167               if (!JPRIMITIVE_TYPE_P (field_decl_type)
10168                   && !CLASS_LOADED_P (field_decl_type)
10169                   && !TYPE_ARRAY_P (field_decl_type))
10170                 resolve_and_layout (field_decl_type, NULL_TREE);
10171
10172               /* Check on accessibility here */
10173               if (not_accessible_p (current_class, field_decl,
10174                                     *type_found, from_super))
10175                 return not_accessible_field_error (qual_wfl,field_decl);    
10176               check_deprecation (qual_wfl, field_decl);
10177
10178               /* There are things to check when fields are accessed
10179                  from type. There are no restrictions on a static
10180                  declaration of the field when it is accessed from an
10181                  interface */
10182               is_static = FIELD_STATIC (field_decl);
10183               if (!from_super && from_type
10184                   && !TYPE_INTERFACE_P (type)
10185                   && !is_static
10186                   && (current_function_decl
10187                       && METHOD_STATIC (current_function_decl)))
10188                 {
10189                   static_ref_err (qual_wfl, EXPR_WFL_NODE (qual_wfl), type);
10190                   return 1;
10191                 }
10192               from_cast = from_super = 0;
10193
10194               /* It's an access from a type but it isn't static, we
10195                  make it relative to `this'. */
10196               if (!is_static && from_type)
10197                 decl = current_this;
10198
10199               /* If we need to generate something to get a proper
10200                  handle on what this field is accessed from, do it
10201                  now. */
10202               if (!is_static)
10203                 {
10204                   decl = maybe_access_field (decl, *where_found, *type_found);
10205                   if (decl == error_mark_node)
10206                     return 1;
10207                 }
10208
10209               /* We want to keep the location were found it, and the type
10210                  we found. */
10211               *where_found = decl;
10212               *type_found = type;
10213
10214               /* Generate the correct expression for field access from
10215                  qualified this */
10216               if (from_qualified_this)
10217                 {
10218                   field_decl = build_outer_field_access (qual_wfl, field_decl);
10219                   from_qualified_this = 0;
10220                 }
10221
10222               /* This is the decl found and eventually the next one to
10223                  search from */
10224               decl = field_decl;
10225             }
10226           from_type = 0;
10227           type = QUAL_DECL_TYPE (decl);
10228
10229           /* Sneak preview. If decl is qualified by a `new', report
10230              the error here to be accurate on the peculiar construct */
10231           if (TREE_CHAIN (q)
10232               && TREE_CODE (TREE_PURPOSE (TREE_CHAIN (q))) == NEW_CLASS_EXPR
10233               && !JREFERENCE_TYPE_P (type))
10234             {
10235               parse_error_context (qual_wfl, "Attempt to reference field %<new%> in a %qs",
10236                                    lang_printable_name (type, 0));
10237               return 1;
10238             }
10239         }
10240       /* `q' might have changed due to a after package resolution
10241          re-qualification */
10242       if (!q)
10243         break;
10244     }
10245   *found_decl = decl;
10246   return 0;
10247 }
10248
10249 /* 6.6 Qualified name and access control. Returns 1 if MEMBER (a decl)
10250    can't be accessed from REFERENCE (a record type). If MEMBER
10251    features a protected access, we then use WHERE which, if non null,
10252    holds the type of MEMBER's access that is checked against
10253    6.6.2.1. This function should be used when decl is a field or a
10254    method.  */
10255
10256 static int
10257 not_accessible_p (tree reference, tree member, tree where, int from_super)
10258 {
10259   int access_flag = get_access_flags_from_decl (member);
10260   bool is_static = false;
10261  
10262   if (TREE_CODE (member) == FIELD_DECL ||
10263       TREE_CODE (member) == VAR_DECL)
10264     is_static = FIELD_STATIC (member);
10265   else
10266     is_static = METHOD_STATIC (member);
10267
10268   /* Access always granted for members declared public */
10269   if (access_flag & ACC_PUBLIC)
10270     return 0;
10271
10272   /* Check access on protected members */
10273   if (access_flag & ACC_PROTECTED)
10274     {
10275       /* Access granted if it occurs from within the package
10276          containing the class in which the protected member is
10277          declared */
10278       if (class_in_current_package (DECL_CONTEXT (member)))
10279         return 0;
10280
10281       /* If accessed with the form `super.member', then access is granted */
10282       if (from_super)
10283         return 0;
10284
10285       /* If WHERE is active, access was made through a qualifier. For 
10286          non-static members, access is granted if the type of the qualifier 
10287          is or is a sublass of the type the access is made from (6.6.2.1.)  */
10288       if (where && !is_static)
10289         {
10290           while (reference)
10291             {
10292               if (inherits_from_p (where, reference))
10293                 return 0;
10294               if (INNER_CLASS_TYPE_P (reference))
10295                 reference = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (reference)));
10296               else
10297                 break;
10298             }
10299           return 1;
10300         }
10301
10302       /* Otherwise, access is granted if occurring from within the class
10303          where member is declared, or a subclass of it.  */
10304       while (reference)
10305         {
10306           if (inherits_from_p (reference, DECL_CONTEXT (member)))
10307             return 0;
10308           if (INNER_CLASS_TYPE_P (reference))
10309             reference = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (reference)));
10310           else
10311             break;
10312         }
10313       return 1;
10314     }
10315
10316   /* Check access on private members. Access is granted only if it
10317      occurs from within the class in which it is declared -- that does
10318      it for innerclasses too. */
10319   if (access_flag & ACC_PRIVATE)
10320     {
10321       if (reference == DECL_CONTEXT (member) ||
10322           common_enclosing_context_p (DECL_CONTEXT (member), reference))
10323         return 0;
10324       return 1;
10325     }
10326
10327   /* Default access is permitted only when occurring from within the
10328      package in which the context (MEMBER) is declared.  */
10329   return !class_in_current_package (DECL_CONTEXT (member));
10330 }
10331
10332 /* Test deprecated decl access.  */
10333 static void
10334 check_deprecation (tree wfl, tree decl)
10335 {
10336   const char *file;
10337   tree elt;
10338
10339   if (! warn_deprecated)
10340     return;
10341
10342   /* We want to look at the element type of arrays here, so we strip
10343      all surrounding array types.  */
10344   if (TYPE_ARRAY_P (TREE_TYPE (decl)))
10345     {
10346       elt = TREE_TYPE (decl);
10347       while (TYPE_ARRAY_P (elt))
10348         elt = TYPE_ARRAY_ELEMENT (elt);
10349       /* We'll end up with a pointer type, so we use TREE_TYPE to go
10350          to the record.  */
10351       decl = TYPE_NAME (TREE_TYPE (elt));
10352     }
10353   file = DECL_SOURCE_FILE (decl);
10354
10355   /* Complain if the field is deprecated and the file it was defined
10356      in isn't compiled at the same time the file which contains its
10357      use is */
10358   if (DECL_DEPRECATED (decl)
10359       && !IS_A_COMMAND_LINE_FILENAME_P (get_identifier (file)))
10360     {
10361       const char *the;
10362       switch (TREE_CODE (decl))
10363         {
10364         case FUNCTION_DECL:
10365           the = "method";
10366           break;
10367         case FIELD_DECL:
10368         case VAR_DECL:
10369           the = "field";
10370           break;
10371         case TYPE_DECL:
10372           parse_warning_context (wfl, "The class %qs has been deprecated",
10373                                  IDENTIFIER_POINTER (DECL_NAME (decl)));
10374           return;
10375         default:
10376           abort ();
10377         }
10378       /* Don't issue a message if the context as been deprecated as a
10379          whole. */
10380       if (! CLASS_DEPRECATED (TYPE_NAME (DECL_CONTEXT (decl))))
10381         parse_warning_context
10382           (wfl, "The %s %qs in class %qs has been deprecated",
10383            the, lang_printable_name (decl, 0),
10384            IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl)))));
10385     }
10386 }
10387
10388 /* Returns 1 if class was declared in the current package, 0 otherwise */
10389
10390 static GTY(()) tree cicp_cache;
10391 static int
10392 class_in_current_package (tree class)
10393 {
10394   int qualified_flag;
10395   tree left;
10396
10397   if (cicp_cache == class)
10398     return 1;
10399
10400   qualified_flag = QUALIFIED_P (DECL_NAME (TYPE_NAME (class)));
10401
10402   /* If the current package is empty and the name of CLASS is
10403      qualified, class isn't in the current package.  If there is a
10404      current package and the name of the CLASS is not qualified, class
10405      isn't in the current package */
10406   if ((!ctxp->package && qualified_flag) || (ctxp->package && !qualified_flag))
10407     return 0;
10408
10409   /* If there is not package and the name of CLASS isn't qualified,
10410      they belong to the same unnamed package */
10411   if (!ctxp->package && !qualified_flag)
10412     return 1;
10413
10414   /* Compare the left part of the name of CLASS with the package name */
10415   split_qualified_name (&left, NULL, DECL_NAME (TYPE_NAME (class)));
10416   if (ctxp->package == left)
10417     {
10418       cicp_cache = class;
10419       return 1;
10420     }
10421   return 0;
10422 }
10423
10424 /* This function may generate code to access DECL from WHERE. This is
10425    done only if certain conditions meet.  */
10426
10427 static tree
10428 maybe_access_field (tree decl, tree where, tree type)
10429 {
10430   if (TREE_CODE (decl) == FIELD_DECL && decl != current_this
10431       && !FIELD_STATIC (decl))
10432     decl = build_field_ref (where ? where : current_this,
10433                             (type ? type : DECL_CONTEXT (decl)),
10434                             DECL_NAME (decl));
10435   return decl;
10436 }
10437
10438 /* Build a method invocation, by patching PATCH. If non NULL
10439    and according to the situation, PRIMARY and WHERE may be
10440    used. IS_STATIC is set to 1 if the invoked function is static. */
10441
10442 static tree
10443 patch_method_invocation (tree patch, tree primary, tree where, int from_super,
10444                          int *is_static, tree *ret_decl)
10445 {
10446   tree wfl = TREE_OPERAND (patch, 0);
10447   tree args = TREE_OPERAND (patch, 1);
10448   tree name = EXPR_WFL_NODE (wfl);
10449   tree list;
10450   int is_static_flag = 0;
10451   int is_super_init = 0;
10452   tree this_arg = NULL_TREE;
10453   int is_array_clone_call = 0;
10454
10455   /* Should be overridden if everything goes well. Otherwise, if
10456      something fails, it should keep this value. It stop the
10457      evaluation of a bogus assignment. See java_complete_tree,
10458      MODIFY_EXPR: for the reasons why we sometimes want to keep on
10459      evaluating an assignment */
10460   TREE_TYPE (patch) = error_mark_node;
10461
10462   /* Since lookup functions are messing with line numbers, save the
10463      context now.  */
10464   java_parser_context_save_global ();
10465
10466   /* 15.11.1: Compile-Time Step 1: Determine Class or Interface to Search */
10467
10468   /* Resolution of qualified name, excluding constructors */
10469   if (QUALIFIED_P (name) && !CALL_CONSTRUCTOR_P (patch))
10470     {
10471       tree identifier, identifier_wfl, type, resolved;
10472       /* Extract the last IDENTIFIER of the qualified
10473          expression. This is a wfl and we will use it's location
10474          data during error report. */
10475       identifier_wfl = cut_identifier_in_qualified (wfl);
10476       identifier = EXPR_WFL_NODE (identifier_wfl);
10477
10478       /* Given the context, IDENTIFIER is syntactically qualified
10479          as a MethodName. We need to qualify what's before */
10480       qualify_ambiguous_name (wfl);
10481       resolved = resolve_field_access (wfl, NULL, NULL);
10482
10483       if (TREE_CODE (resolved) == VAR_DECL && FIELD_STATIC (resolved)
10484          && FIELD_FINAL (resolved)
10485          && !inherits_from_p (DECL_CONTEXT (resolved), current_class)
10486          && !flag_emit_class_files && !flag_emit_xref)
10487        resolved = build_class_init (DECL_CONTEXT (resolved), resolved);
10488
10489       if (resolved == error_mark_node)
10490         PATCH_METHOD_RETURN_ERROR ();
10491
10492       type = GET_SKIP_TYPE (resolved);
10493       resolve_and_layout (type, NULL_TREE);
10494
10495       if (JPRIMITIVE_TYPE_P (type))
10496         {
10497           parse_error_context
10498             (identifier_wfl,
10499              "Can't invoke a method on primitive type %qs",
10500              IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
10501           PATCH_METHOD_RETURN_ERROR ();
10502         }
10503
10504       list = lookup_method_invoke (0, identifier_wfl, type, identifier, args);
10505       args = nreverse (args);
10506
10507       /* We're resolving a call from a type */
10508       if (TREE_CODE (resolved) == TYPE_DECL)
10509         {
10510           if (CLASS_INTERFACE (resolved))
10511             {
10512               parse_error_context
10513                 (identifier_wfl,
10514                 "Can't make static reference to method %qs in interface %qs",
10515                  IDENTIFIER_POINTER (identifier),
10516                  IDENTIFIER_POINTER (name));
10517               PATCH_METHOD_RETURN_ERROR ();
10518             }
10519           if (list && !METHOD_STATIC (list))
10520             {
10521               char *fct_name = xstrdup (lang_printable_name (list, 2));
10522               parse_error_context
10523                 (identifier_wfl,
10524                  "Can't make static reference to method %<%s %s%> in class %qs",
10525                  lang_printable_name (TREE_TYPE (TREE_TYPE (list)), 0),
10526                  fct_name, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
10527               free (fct_name);
10528               PATCH_METHOD_RETURN_ERROR ();
10529             }
10530         }
10531       else
10532         this_arg = primary = resolved;
10533
10534       if (TYPE_ARRAY_P (type) && identifier == get_identifier ("clone"))
10535         is_array_clone_call = 1;
10536
10537       /* IDENTIFIER_WFL will be used to report any problem further */
10538       wfl = identifier_wfl;
10539     }
10540   /* Resolution of simple names, names generated after a primary: or
10541      constructors */
10542   else
10543     {
10544       tree class_to_search = NULL_TREE;
10545       int lc;                   /* Looking for Constructor */
10546
10547       /* We search constructor in their target class */
10548       if (CALL_CONSTRUCTOR_P (patch))
10549         {
10550           if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10551             class_to_search = EXPR_WFL_NODE (wfl);
10552           else if (EXPR_WFL_NODE (TREE_OPERAND (patch, 0)) ==
10553                    this_identifier_node)
10554             class_to_search = NULL_TREE;
10555           else if (EXPR_WFL_NODE (TREE_OPERAND (patch, 0)) ==
10556                    super_identifier_node)
10557             {
10558               is_super_init = 1;
10559               if (CLASSTYPE_SUPER (current_class))
10560                 class_to_search =
10561                   DECL_NAME (TYPE_NAME (CLASSTYPE_SUPER (current_class)));
10562               else
10563                 {
10564                   parse_error_context (wfl, "Can't invoke super constructor on java.lang.Object");
10565                   PATCH_METHOD_RETURN_ERROR ();
10566                 }
10567             }
10568
10569           /* Class to search is NULL if we're searching the current one */
10570           if (class_to_search)
10571             {
10572               class_to_search = resolve_and_layout (class_to_search, wfl);
10573
10574               if (!class_to_search)
10575                 {
10576                   parse_error_context
10577                     (wfl, "Class %qs not found in type declaration",
10578                      IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10579                   PATCH_METHOD_RETURN_ERROR ();
10580                 }
10581
10582               /* Can't instantiate an abstract class, but we can
10583                  invoke it's constructor. It's use within the `new'
10584                  context is denied here. */
10585               if (CLASS_ABSTRACT (class_to_search)
10586                   && TREE_CODE (patch) == NEW_CLASS_EXPR)
10587                 {
10588                   parse_error_context
10589                     (wfl, "Class %qs is an abstract class. It can't be instantiated",
10590                      IDENTIFIER_POINTER (EXPR_WFL_NODE (wfl)));
10591                   PATCH_METHOD_RETURN_ERROR ();
10592                 }
10593
10594               class_to_search = TREE_TYPE (class_to_search);
10595             }
10596           else
10597             class_to_search = current_class;
10598           lc = 1;
10599         }
10600       /* This is a regular search in the local class, unless an
10601          alternate class is specified. */
10602       else
10603         {
10604           if (where != NULL_TREE)
10605             class_to_search = where;
10606           else if (QUALIFIED_P (name))
10607             class_to_search = current_class;
10608           else
10609             {
10610               class_to_search = current_class;
10611
10612               for (;;)
10613                 {
10614                   if (has_method (class_to_search, name))
10615                     break;
10616                   if (! INNER_CLASS_TYPE_P (class_to_search))
10617                     {
10618                       parse_error_context (wfl,
10619                                            "No method named %qs in scope",
10620                                            IDENTIFIER_POINTER (name));
10621                       PATCH_METHOD_RETURN_ERROR ();
10622                     }
10623                   class_to_search
10624                     = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (class_to_search)));
10625                 }
10626             }
10627           lc = 0;
10628         }
10629
10630       /* NAME is a simple identifier or comes from a primary. Search
10631          in the class whose declaration contain the method being
10632          invoked. */
10633       resolve_and_layout (class_to_search, NULL_TREE);
10634
10635       list = lookup_method_invoke (lc, wfl, class_to_search, name, args);
10636       /* Don't continue if no method were found, as the next statement
10637          can't be executed then. */
10638       if (!list)
10639         PATCH_METHOD_RETURN_ERROR ();
10640
10641       if (TYPE_ARRAY_P (class_to_search)
10642           && DECL_NAME (list) == get_identifier ("clone"))
10643         is_array_clone_call = 1;
10644
10645       /* Check for static reference if non static methods */
10646       if (check_for_static_method_reference (wfl, patch, list,
10647                                              class_to_search, primary))
10648         PATCH_METHOD_RETURN_ERROR ();
10649
10650       /* Check for inner classes creation from illegal contexts */
10651       if (lc && (INNER_CLASS_TYPE_P (class_to_search)
10652                  && !CLASS_STATIC (TYPE_NAME (class_to_search)))
10653           && INNER_ENCLOSING_SCOPE_CHECK (class_to_search)
10654           && !DECL_INIT_P (current_function_decl))
10655         {
10656           parse_error_context
10657             (wfl, "No enclosing instance for inner class %qs is in scope%s",
10658              lang_printable_name (class_to_search, 0),
10659              (!current_this ? "" :
10660               "; an explicit one must be provided when creating this inner class"));
10661           PATCH_METHOD_RETURN_ERROR ();
10662         }
10663
10664       /* Non static methods are called with the current object extra
10665          argument. If patch a `new TYPE()', the argument is the value
10666          returned by the object allocator. If method is resolved as a
10667          primary, use the primary otherwise use the current THIS. */
10668       args = nreverse (args);
10669       if (TREE_CODE (patch) != NEW_CLASS_EXPR)
10670         {
10671           this_arg = primary ? primary : current_this;
10672
10673           /* If we're using an access method, things are different.
10674              There are two family of cases:
10675
10676              1) We're not generating bytecodes:
10677
10678              - LIST is non static. It's invocation is transformed from
10679                x(a1,...,an) into this$<n>.x(a1,....an).
10680              - LIST is static. It's invocation is transformed from
10681                x(a1,...,an) into TYPE_OF(this$<n>).x(a1,....an)
10682
10683              2) We're generating bytecodes:
10684
10685              - LIST is non static. It's invocation is transformed from
10686                x(a1,....,an) into access$<n>(this$<n>,a1,...,an).
10687              - LIST is static. It's invocation is transformed from
10688                x(a1,....,an) into TYPE_OF(this$<n>).x(a1,....an).
10689
10690              Of course, this$<n> can be arbitrarily complex, ranging from
10691              this$0 (the immediate outer context) to
10692              access$0(access$0(...(this$0))).
10693
10694              maybe_use_access_method returns a nonzero value if the
10695              this_arg has to be moved into the (then generated) stub
10696              argument list. In the meantime, the selected function
10697              might have be replaced by a generated stub. */
10698           if (!primary &&
10699               maybe_use_access_method (is_super_init, &list, &this_arg))
10700             {
10701               args = tree_cons (NULL_TREE, this_arg, args);
10702               this_arg = NULL_TREE; /* So it doesn't get chained twice */
10703             }
10704         }
10705     }
10706
10707   /* Merge point of all resolution schemes. If we have nothing, this
10708      is an error, already signaled */
10709   if (!list)
10710     PATCH_METHOD_RETURN_ERROR ();
10711
10712   /* Check accessibility, position the is_static flag, build and
10713      return the call */
10714   if (not_accessible_p (DECL_CONTEXT (current_function_decl), list,
10715                         (primary ? TREE_TYPE (TREE_TYPE (primary)) :
10716                          NULL_TREE), from_super)
10717       /* Calls to clone() on array types are permitted as a special-case. */
10718       && !is_array_clone_call)
10719     {
10720       const char *const fct_name = IDENTIFIER_POINTER (DECL_NAME (list));
10721       const char *const access =
10722         accessibility_string (get_access_flags_from_decl (list));
10723       const char *const klass =
10724         IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (list))));
10725       const char *const refklass =
10726         IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class)));
10727       const char *const what = (DECL_CONSTRUCTOR_P (list)
10728                                 ? "constructor" : "method");
10729       parse_error_context (wfl,
10730                            "Can't access %s %s %<%s.%s%> from %qs",
10731                            access, what, klass, fct_name, refklass);
10732       PATCH_METHOD_RETURN_ERROR ();
10733     }
10734
10735   /* Deprecation check: check whether the method being invoked or the
10736      instance-being-created's type are deprecated.  */
10737   if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10738     check_deprecation (wfl, TYPE_NAME (DECL_CONTEXT (list)));
10739   check_deprecation (wfl, list);
10740
10741   /* If invoking a innerclass constructor, there are hidden parameters
10742      to pass */
10743   if (TREE_CODE (patch) == NEW_CLASS_EXPR
10744       && PURE_INNER_CLASS_TYPE_P (DECL_CONTEXT (list)))
10745     {
10746       /* And make sure we add the accessed local variables to be saved
10747          in field aliases. */
10748       args = build_alias_initializer_parameter_list
10749         (AIPL_FUNCTION_CTOR_INVOCATION, DECL_CONTEXT (list), args, NULL);
10750
10751       /* Secretly pass the current_this/primary as a second argument */
10752       if (primary || current_this)
10753         {
10754           tree extra_arg;
10755           tree this_type = (current_this ?
10756                             TREE_TYPE (TREE_TYPE (current_this)) : NULL_TREE);
10757           /* Method's (list) enclosing context */
10758           tree mec = DECL_CONTEXT (TYPE_NAME (DECL_CONTEXT (list)));
10759           /* If we have a primary, use it. */
10760           if (primary)
10761             extra_arg = primary;
10762           /* The current `this' is an inner class but isn't a direct
10763              enclosing context for the inner class we're trying to
10764              create. Build an access to the proper enclosing context
10765              and use it. */
10766           else if (current_this && PURE_INNER_CLASS_TYPE_P (this_type)
10767                    && this_type != TREE_TYPE (mec))
10768             {
10769
10770               extra_arg = build_access_to_thisn (current_class,
10771                                                  TREE_TYPE (mec), 0);
10772               extra_arg = java_complete_tree (extra_arg);
10773             }
10774           /* Otherwise, just use the current `this' as an enclosing
10775              context. */
10776           else
10777             extra_arg = current_this;
10778           args = tree_cons (NULL_TREE, extra_arg, args);
10779         }
10780       else
10781         args = tree_cons (NULL_TREE, integer_zero_node, args);
10782     }
10783
10784   /* This handles the situation where a constructor invocation needs
10785      to have an enclosing context passed as a second parameter (the
10786      constructor is one of an inner class). */
10787   if ((is_super_init ||
10788        (TREE_CODE (patch) == CALL_EXPR && name == this_identifier_node))
10789       && PURE_INNER_CLASS_TYPE_P (DECL_CONTEXT (list)))
10790     {
10791       tree dest = TYPE_NAME (DECL_CONTEXT (list));
10792       tree extra_arg =
10793         build_access_to_thisn (current_class, DECL_CONTEXT (dest), 0);
10794       extra_arg = java_complete_tree (extra_arg);
10795       args = tree_cons (NULL_TREE, extra_arg, args);
10796     }
10797
10798   is_static_flag = METHOD_STATIC (list);
10799   if (! is_static_flag && this_arg != NULL_TREE)
10800     args = tree_cons (NULL_TREE, this_arg, args);
10801
10802   /* In the context of an explicit constructor invocation, we can't
10803      invoke any method relying on `this'. Exceptions are: we're
10804      invoking a static function, primary exists and is not the current
10805      this, we're creating a new object. */
10806   if (ctxp->explicit_constructor_p
10807       && !is_static_flag
10808       && (!primary || primary == current_this)
10809       && (TREE_CODE (patch) != NEW_CLASS_EXPR))
10810     {
10811       parse_error_context (wfl, "Can't reference %<this%> before the superclass constructor has been called");
10812       PATCH_METHOD_RETURN_ERROR ();
10813     }
10814   java_parser_context_restore_global ();
10815   if (is_static)
10816     *is_static = is_static_flag;
10817   /* Sometimes, we want the decl of the selected method. Such as for
10818      EH checking */
10819   if (ret_decl)
10820     *ret_decl = list;
10821   patch = patch_invoke (patch, list, args);
10822
10823   /* Now is a good time to insert the call to finit$ */
10824   if (is_super_init && CLASS_HAS_FINIT_P (current_class))
10825     {
10826       tree finit_parms, finit_call;
10827
10828       /* Prepare to pass hidden parameters to finit$, if any. */
10829       finit_parms = build_alias_initializer_parameter_list
10830         (AIPL_FUNCTION_FINIT_INVOCATION, current_class, NULL_TREE, NULL);
10831
10832       finit_call =
10833         build_method_invocation (build_wfl_node (finit_identifier_node),
10834                                  finit_parms);
10835
10836       /* Generate the code used to initialize fields declared with an
10837          initialization statement and build a compound statement along
10838          with the super constructor invocation. */
10839       CAN_COMPLETE_NORMALLY (patch) = 1;
10840       patch = build2 (COMPOUND_EXPR, void_type_node, patch,
10841                       java_complete_tree (finit_call));
10842     }
10843   return patch;
10844 }
10845
10846 /* Check that we're not trying to do a static reference to a method in
10847    non static method. Return 1 if it's the case, 0 otherwise. */
10848
10849 static int
10850 check_for_static_method_reference (tree wfl, tree node, tree method,
10851                                    tree where, tree primary)
10852 {
10853   if (METHOD_STATIC (current_function_decl)
10854       && !METHOD_STATIC (method) && !primary && !CALL_CONSTRUCTOR_P (node))
10855     {
10856       char *fct_name = xstrdup (lang_printable_name (method, 0));
10857       parse_error_context
10858         (wfl, "Can't make static reference to method %<%s %s%> in class %qs",
10859          lang_printable_name (TREE_TYPE (TREE_TYPE (method)), 0), fct_name,
10860          IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (where))));
10861       free (fct_name);
10862       return 1;
10863     }
10864   return 0;
10865 }
10866
10867 /* Fix the invocation of *MDECL if necessary in the case of a
10868    invocation from an inner class. *THIS_ARG might be modified
10869    appropriately and an alternative access to *MDECL might be
10870    returned.  */
10871
10872 static int
10873 maybe_use_access_method (int is_super_init, tree *mdecl, tree *this_arg)
10874 {
10875   tree ctx;
10876   tree md = *mdecl, ta = *this_arg;
10877   int to_return = 0;
10878   int non_static_context = !METHOD_STATIC (md);
10879
10880   if (is_super_init
10881       || DECL_CONTEXT (md) == current_class
10882       || !PURE_INNER_CLASS_TYPE_P (current_class)
10883       || DECL_FINIT_P (md)
10884       || DECL_INSTINIT_P (md))
10885     return 0;
10886
10887   /* If we're calling a method found in an enclosing class, generate
10888      what it takes to retrieve the right this. Don't do that if we're
10889      invoking a static method. Note that if MD's type is unrelated to
10890      CURRENT_CLASS, then the current this can be used. */
10891
10892   if (non_static_context && DECL_CONTEXT (md) != object_type_node)
10893     {
10894       ctx = TREE_TYPE (DECL_CONTEXT (TYPE_NAME (current_class)));
10895       if (inherits_from_p (ctx, DECL_CONTEXT (md)))
10896         {
10897           ta = build_current_thisn (current_class);
10898           ta = build_wfl_node (ta);
10899         }
10900       else
10901         {
10902           tree type = ctx;
10903           while (type)
10904             {
10905               maybe_build_thisn_access_method (type);
10906               if (inherits_from_p (type, DECL_CONTEXT (md)))
10907                 {
10908                   ta = build_access_to_thisn (ctx, type, 0);
10909                   break;
10910                 }
10911               type = (DECL_CONTEXT (TYPE_NAME (type)) ?
10912                       TREE_TYPE (DECL_CONTEXT (TYPE_NAME (type))) : NULL_TREE);
10913             }
10914         }
10915       ta = java_complete_tree (ta);
10916     }
10917
10918   /* We might have to use an access method to get to MD. We can
10919      break the method access rule as far as we're not generating
10920      bytecode */
10921   if (METHOD_PRIVATE (md) && flag_emit_class_files)
10922     {
10923       md = build_outer_method_access_method (md);
10924       to_return = 1;
10925     }
10926
10927   *mdecl = md;
10928   *this_arg = ta;
10929
10930   /* Returning a nonzero value indicates we were doing a non static
10931      method invocation that is now a static invocation. It will have
10932      callee displace `this' to insert it in the regular argument
10933      list. */
10934   return (non_static_context && to_return);
10935 }
10936
10937 /* Patch an invoke expression METHOD and ARGS, based on its invocation
10938    mode.  */
10939
10940 static tree
10941 patch_invoke (tree patch, tree method, tree args)
10942 {
10943   tree dtable, func;
10944   tree original_call, t, ta;
10945   tree check = NULL_TREE;
10946
10947   /* Last step for args: convert build-in types. If we're dealing with
10948      a new TYPE() type call, the first argument to the constructor
10949      isn't found in the incoming argument list, but delivered by
10950      `new' */
10951   t = TYPE_ARG_TYPES (TREE_TYPE (method));
10952   if (TREE_CODE (patch) == NEW_CLASS_EXPR)
10953     t = TREE_CHAIN (t);
10954   for (ta = args; t != end_params_node && ta;
10955        t = TREE_CHAIN (t), ta = TREE_CHAIN (ta))
10956     if (JPRIMITIVE_TYPE_P (TREE_TYPE (TREE_VALUE (ta))) &&
10957         TREE_TYPE (TREE_VALUE (ta)) != TREE_VALUE (t))
10958       TREE_VALUE (ta) = convert (TREE_VALUE (t), TREE_VALUE (ta));
10959
10960   /* Resolve unresolved returned type issues */
10961   t = TREE_TYPE (TREE_TYPE (method));
10962   if (TREE_CODE (t) == POINTER_TYPE && !CLASS_LOADED_P (TREE_TYPE (t)))
10963     resolve_and_layout (TREE_TYPE (t), NULL);
10964
10965   if (flag_emit_class_files || flag_emit_xref)
10966     func = method;
10967   else
10968     {
10969       switch (invocation_mode (method, CALL_USING_SUPER (patch)))
10970         {
10971         case INVOKE_VIRTUAL:
10972           dtable = invoke_build_dtable (0, args);
10973           func = build_invokevirtual (dtable, method);
10974           break;
10975
10976         case INVOKE_NONVIRTUAL:
10977           /* If the object for the method call is null, we throw an
10978              exception.  We don't do this if the object is the current
10979              method's `this'.  In other cases we just rely on an
10980              optimization pass to eliminate redundant checks.  */
10981           if (TREE_VALUE (args) != current_this)
10982             {
10983               /* We use a save_expr here to make sure we only evaluate
10984                  the new `self' expression once.  */
10985               tree save_arg = save_expr (TREE_VALUE (args));
10986               TREE_VALUE (args) = save_arg;
10987               check = java_check_reference (save_arg, 1);
10988             }
10989           /* Fall through.  */
10990
10991         case INVOKE_SUPER:
10992         case INVOKE_STATIC:
10993           {
10994             tree signature = build_java_signature (TREE_TYPE (method));
10995             func = build_known_method_ref (method, TREE_TYPE (method),
10996                                            DECL_CONTEXT (method),
10997                                            signature, args);
10998           }
10999           break;
11000
11001         case INVOKE_INTERFACE:
11002           dtable = invoke_build_dtable (1, args);
11003           func = build_invokeinterface (dtable, method);
11004           break;
11005
11006         default:
11007           abort ();
11008         }
11009
11010       /* Ensure self_type is initialized, (invokestatic). FIXME */
11011       func = build1 (NOP_EXPR, build_pointer_type (TREE_TYPE (method)), func);
11012     }
11013
11014   TREE_TYPE (patch) = TREE_TYPE (TREE_TYPE (method));
11015   TREE_OPERAND (patch, 0) = func;
11016   TREE_OPERAND (patch, 1) = args;
11017   patch = check_for_builtin (method, patch);
11018   original_call = patch;
11019
11020   /* We're processing a `new TYPE ()' form. New is called and its
11021      returned value is the first argument to the constructor. We build
11022      a COMPOUND_EXPR and use saved expression so that the overall NEW
11023      expression value is a pointer to a newly created and initialized
11024      class. */
11025   if (TREE_CODE (original_call) == NEW_CLASS_EXPR)
11026     {
11027       tree class = DECL_CONTEXT (method);
11028       tree c1, saved_new, size, new;
11029       tree alloc_node;
11030
11031       if (flag_emit_class_files || flag_emit_xref)
11032         {
11033           TREE_TYPE (patch) = build_pointer_type (class);
11034           return patch;
11035         }
11036       if (!TYPE_SIZE (class))
11037         safe_layout_class (class);
11038       size = size_in_bytes (class);
11039       alloc_node =
11040         (class_has_finalize_method (class) ? alloc_object_node
11041                                            : alloc_no_finalizer_node);
11042       new = build3 (CALL_EXPR, promote_type (class),
11043                     build_address_of (alloc_node),
11044                     build_tree_list (NULL_TREE, build_class_ref (class)),
11045                     NULL_TREE);
11046       saved_new = save_expr (new);
11047       c1 = build_tree_list (NULL_TREE, saved_new);
11048       TREE_CHAIN (c1) = TREE_OPERAND (original_call, 1);
11049       TREE_OPERAND (original_call, 1) = c1;
11050       TREE_SET_CODE (original_call, CALL_EXPR);
11051       patch = build2 (COMPOUND_EXPR, TREE_TYPE (new), patch, saved_new);
11052     }
11053
11054   /* If CHECK is set, then we are building a check to see if the object
11055      is NULL.  */
11056   if (check != NULL_TREE)
11057     {
11058       /* We have to call force_evaluation_order now because creating a
11059          COMPOUND_EXPR wraps the arg list in a way that makes it
11060          unrecognizable by force_evaluation_order later.  Yuk.  */
11061       patch = build2 (COMPOUND_EXPR, TREE_TYPE (patch), check, 
11062                       force_evaluation_order (patch));
11063       TREE_SIDE_EFFECTS (patch) = 1;
11064     }
11065
11066   /* In order to be able to modify PATCH later, we SAVE_EXPR it and
11067      put it as the first expression of a COMPOUND_EXPR. The second
11068      expression being an empty statement to be later patched if
11069      necessary. We remember a TREE_LIST (the PURPOSE is the method,
11070      the VALUE is the compound) in a hashtable and return a
11071      COMPOUND_EXPR built so that the result of the evaluation of the
11072      original PATCH node is returned. */
11073   if (STATIC_CLASS_INIT_OPT_P ()
11074       && current_function_decl && METHOD_STATIC (method))
11075     {
11076       tree list;
11077       tree fndecl = current_function_decl;
11078       /* We have to call force_evaluation_order now because creating a
11079          COMPOUND_EXPR wraps the arg list in a way that makes it
11080          unrecognizable by force_evaluation_order later.  Yuk.  */
11081       tree save = force_evaluation_order (patch);
11082       tree type = TREE_TYPE (patch);
11083
11084       patch = build2 (COMPOUND_EXPR, type, save, build_java_empty_stmt ());
11085       list = tree_cons (method, patch,
11086                         DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (fndecl));
11087
11088       DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND (fndecl) = list;
11089
11090       patch = build2 (COMPOUND_EXPR, type, patch, save);
11091     }
11092
11093   return patch;
11094 }
11095
11096 static int
11097 invocation_mode (tree method, int super)
11098 {
11099   int access = get_access_flags_from_decl (method);
11100
11101   if (super)
11102     return INVOKE_SUPER;
11103
11104   if (access & ACC_STATIC)
11105     return INVOKE_STATIC;
11106
11107   /* We have to look for a constructor before we handle nonvirtual
11108      calls; otherwise the constructor will look nonvirtual.  */
11109   if (DECL_CONSTRUCTOR_P (method))
11110     return INVOKE_STATIC;
11111
11112   if (access & ACC_FINAL || access & ACC_PRIVATE)
11113     return INVOKE_NONVIRTUAL;
11114
11115   if (CLASS_FINAL (TYPE_NAME (DECL_CONTEXT (method))))
11116     return INVOKE_NONVIRTUAL;
11117
11118   if (CLASS_INTERFACE (TYPE_NAME (DECL_CONTEXT (method))))
11119     return INVOKE_INTERFACE;
11120
11121   return INVOKE_VIRTUAL;
11122 }
11123
11124 /* Retrieve a refined list of matching methods. It covers the step
11125    15.11.2 (Compile-Time Step 2) */
11126
11127 static tree
11128 lookup_method_invoke (int lc, tree cl, tree class, tree name, tree arg_list)
11129 {
11130   tree atl = end_params_node;           /* Arg Type List */
11131   tree method, signature, list, node;
11132   const char *candidates;               /* Used for error report */
11133   char *dup;
11134
11135   /* Fix the arguments */
11136   for (node = arg_list; node; node = TREE_CHAIN (node))
11137     {
11138       tree current_arg = TREE_TYPE (TREE_VALUE (node));
11139       /* Non primitive type may have to be resolved */
11140       if (!JPRIMITIVE_TYPE_P (current_arg))
11141         resolve_and_layout (current_arg, NULL_TREE);
11142       /* And promoted */
11143       if (TREE_CODE (current_arg) == RECORD_TYPE)
11144         current_arg = promote_type (current_arg);
11145       atl = tree_cons (NULL_TREE, current_arg, atl);
11146     }
11147
11148   /* Presto. If we're dealing with an anonymous class and a
11149      constructor call, generate the right constructor now, since we
11150      know the arguments' types. */
11151
11152   if (lc && ANONYMOUS_CLASS_P (class))
11153     {
11154       tree mdecl = craft_constructor (TYPE_NAME (class), atl);
11155       /* The anonymous class may have already been laid out, so make sure
11156          the new constructor is laid out here.  */
11157       layout_class_method (class, CLASSTYPE_SUPER (class), mdecl, NULL_TREE);
11158     }
11159
11160   /* Find all candidates and then refine the list, searching for the
11161      most specific method. */
11162   list = find_applicable_accessible_methods_list (lc, class, name, atl);
11163   list = find_most_specific_methods_list (list);
11164   if (list && !TREE_CHAIN (list))
11165     return TREE_VALUE (list);
11166
11167   /* Issue an error. List candidates if any. Candidates are listed
11168      only if accessible (non accessible methods may end-up here for
11169      the sake of a better error report). */
11170   candidates = NULL;
11171   if (list)
11172     {
11173       tree current;
11174       obstack_grow (&temporary_obstack, ". Candidates are:\n", 18);
11175       for (current = list; current; current = TREE_CHAIN (current))
11176         {
11177           tree cm = TREE_VALUE (current);
11178           char string [4096];
11179           if (!cm || not_accessible_p (class, cm, NULL_TREE, 0))
11180             continue;
11181           sprintf
11182             (string, "  '%s' in '%s'%s",
11183              get_printable_method_name (cm),
11184              IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (DECL_CONTEXT (cm)))),
11185              (TREE_CHAIN (current) ? "\n" : ""));
11186           obstack_grow (&temporary_obstack, string, strlen (string));
11187         }
11188       obstack_1grow (&temporary_obstack, '\0');
11189       candidates = obstack_finish (&temporary_obstack);
11190     }
11191   /* Issue the error message */
11192   method = make_node (FUNCTION_TYPE);
11193   TYPE_ARG_TYPES (method) = atl;
11194   signature = build_java_argument_signature (method);
11195   dup = xstrdup (lang_printable_name (class, 0));
11196   parse_error_context (cl, "Can't find %s %<%s(%s)%> in type %qs%s",
11197                        (lc ? "constructor" : "method"),
11198                        (lc ? dup : IDENTIFIER_POINTER (name)),
11199                        IDENTIFIER_POINTER (signature), dup,
11200                        (candidates ? candidates : ""));
11201   free (dup);
11202   return NULL_TREE;
11203 }
11204
11205 /* 15.11.2.1: Find Methods that are Applicable and Accessible. LC is 1
11206    when we're looking for a constructor. */
11207
11208 static tree
11209 find_applicable_accessible_methods_list (int lc, tree class, tree name,
11210                                          tree arglist)
11211 {
11212   static htab_t searched_classes;
11213   static int search_not_done = 0;
11214   tree list = NULL_TREE, all_list = NULL_TREE;
11215   tree base_binfo;
11216   int i;
11217
11218   /* Check the hash table to determine if this class has been searched
11219      already. */
11220   if (searched_classes)
11221     {
11222       if (htab_find (searched_classes, class) != NULL)
11223         return NULL;
11224     }
11225   else
11226     {
11227       searched_classes = htab_create (10, htab_hash_pointer,
11228                                       htab_eq_pointer, NULL);
11229     }
11230
11231   search_not_done++;
11232   *htab_find_slot (searched_classes, class, INSERT) = class;
11233
11234   if (!CLASS_LOADED_P (class))
11235     {
11236       load_class (class, 1);
11237       safe_layout_class (class);
11238     }
11239
11240   /* Search interfaces */
11241   if (TREE_CODE (TYPE_NAME (class)) == TYPE_DECL
11242       && CLASS_INTERFACE (TYPE_NAME (class)))
11243     {
11244       search_applicable_methods_list (lc, TYPE_METHODS (class),
11245                                       name, arglist, &list, &all_list);
11246       for (i = 1; BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
11247         {
11248           tree t = BINFO_TYPE (base_binfo);
11249           tree rlist;
11250           
11251           rlist = find_applicable_accessible_methods_list (lc,  t, name,
11252                                                            arglist);
11253           list = chainon (rlist, list);
11254         }
11255     }
11256   /* Search classes */
11257   else
11258     {
11259       search_applicable_methods_list (lc, TYPE_METHODS (class),
11260                                       name, arglist, &list, &all_list);
11261
11262       /* When looking finit$, class$ or instinit$, we turn LC to 1 so
11263          that we only search in class. Note that we should have found
11264          something at this point. */
11265       if (ID_FINIT_P (name) || ID_CLASSDOLLAR_P (name) || ID_INSTINIT_P (name))
11266         {
11267           lc = 1;
11268           if (!list)
11269             abort ();
11270         }
11271
11272       /* We must search all interfaces of this class */
11273       if (!lc)
11274         {
11275           for (i = 1;
11276                BINFO_BASE_ITERATE (TYPE_BINFO (class), i, base_binfo); i++)
11277             {
11278               tree t = BINFO_TYPE (base_binfo);
11279               if (t != object_type_node)
11280                 {
11281                   tree rlist
11282                     = find_applicable_accessible_methods_list (lc, t,
11283                                                                name, arglist);
11284                   list = chainon (rlist, list);
11285                 }
11286             }
11287         }
11288
11289       /* Search superclass */
11290       if (!lc && CLASSTYPE_SUPER (class) != NULL_TREE)
11291         {
11292           tree rlist;
11293           class = CLASSTYPE_SUPER (class);
11294           rlist = find_applicable_accessible_methods_list (lc, class,
11295                                                            name, arglist);
11296           list = chainon (rlist, list);
11297         }
11298     }
11299
11300   search_not_done--;
11301
11302   /* We're done. Reset the searched classes list and finally search
11303      java.lang.Object if it wasn't searched already. */
11304   if (!search_not_done)
11305     {
11306       if (!lc
11307           && TYPE_METHODS (object_type_node)
11308           && htab_find (searched_classes, object_type_node) == NULL)
11309         {
11310           search_applicable_methods_list (lc,
11311                                           TYPE_METHODS (object_type_node),
11312                                           name, arglist, &list, &all_list);
11313         }
11314       htab_delete (searched_classes);
11315       searched_classes = NULL;
11316     }
11317
11318   /* Either return the list obtained or all selected (but
11319      inaccessible) methods for better error report. */
11320   return (!list ? all_list : list);
11321 }
11322
11323 /* Effectively search for the appropriate method in method */
11324
11325 static void
11326 search_applicable_methods_list (int lc, tree method, tree name, tree arglist,
11327                                 tree *list, tree *all_list)
11328 {
11329   for (; method; method = TREE_CHAIN (method))
11330     {
11331       /* When dealing with constructor, stop here, otherwise search
11332          other classes */
11333       if (lc && !DECL_CONSTRUCTOR_P (method))
11334         continue;
11335       else if (!lc && (DECL_CONSTRUCTOR_P (method)
11336                        || (DECL_NAME (method) != name)))
11337         continue;
11338
11339       if (argument_types_convertible (method, arglist))
11340         {
11341           /* Retain accessible methods only */
11342           if (!not_accessible_p (DECL_CONTEXT (current_function_decl),
11343                                  method, NULL_TREE, 0))
11344             *list = tree_cons (NULL_TREE, method, *list);
11345           else
11346             /* Also retain all selected method here */
11347             *all_list = tree_cons (NULL_TREE, method, *list);
11348         }
11349     }
11350 }
11351
11352 /* 15.11.2.2 Choose the Most Specific Method */
11353
11354 static tree
11355 find_most_specific_methods_list (tree list)
11356 {
11357   int max = 0;
11358   int abstract, candidates;
11359   tree current, new_list = NULL_TREE;
11360   for (current = list; current; current = TREE_CHAIN (current))
11361     {
11362       tree method;
11363       DECL_SPECIFIC_COUNT (TREE_VALUE (current)) = 0;
11364
11365       for (method = list; method; method = TREE_CHAIN (method))
11366         {
11367           tree method_v, current_v;
11368           /* Don't test a method against itself */
11369           if (method == current)
11370             continue;
11371
11372           method_v = TREE_VALUE (method);
11373           current_v = TREE_VALUE (current);
11374
11375           /* Compare arguments and location where methods where declared */
11376           if (argument_types_convertible (method_v, current_v))
11377             {
11378               if (valid_method_invocation_conversion_p
11379                   (DECL_CONTEXT (method_v), DECL_CONTEXT (current_v))
11380                   || (INNER_CLASS_TYPE_P (DECL_CONTEXT (current_v))
11381                       && enclosing_context_p (DECL_CONTEXT (method_v),
11382                                               DECL_CONTEXT (current_v))))
11383                 {
11384                   int v = (DECL_SPECIFIC_COUNT (current_v) +=
11385                     (INNER_CLASS_TYPE_P (DECL_CONTEXT (current_v)) ? 2 : 1));
11386                   max = (v > max ? v : max);
11387                 }
11388             }
11389         }
11390     }
11391
11392   /* Review the list and select the maximally specific methods */
11393   for (current = list, abstract = -1, candidates = -1;
11394        current; current = TREE_CHAIN (current))
11395     if (DECL_SPECIFIC_COUNT (TREE_VALUE (current)) == max)
11396       {
11397         new_list = tree_cons (NULL_TREE, TREE_VALUE (current), new_list);
11398         abstract += (METHOD_ABSTRACT (TREE_VALUE (current)) ? 1 : 0);
11399         candidates++;
11400       }
11401
11402   /* If we have several and they're all abstract, just pick the
11403      closest one. */
11404   if (candidates > 0 && candidates == abstract)
11405     {
11406       /* FIXME: merge the throws clauses.  There is no convenient way
11407          to do this in gcj right now, since ideally we'd like to
11408          introduce a new METHOD_DECL here, but that is really not
11409          possible.  */
11410       new_list = nreverse (new_list);
11411       TREE_CHAIN (new_list) = NULL_TREE;
11412       return new_list;
11413     }
11414
11415   /* We have several (we couldn't find a most specific), all but one
11416      are abstract, we pick the only non abstract one. */
11417   if (candidates > 0 && (candidates == abstract+1))
11418     {
11419       for (current = new_list; current; current = TREE_CHAIN (current))
11420         if (!METHOD_ABSTRACT (TREE_VALUE (current)))
11421           {
11422             TREE_CHAIN (current) = NULL_TREE;
11423             new_list = current;
11424           }
11425     }
11426
11427   /* If we can't find one, lower expectations and try to gather multiple
11428      maximally specific methods */
11429   while (!new_list && max)
11430     {
11431       while (--max > 0)
11432         {
11433           if (DECL_SPECIFIC_COUNT (TREE_VALUE (current)) == max)
11434             new_list = tree_cons (NULL_TREE, TREE_VALUE (current), new_list);
11435         }
11436     }
11437
11438   return new_list;
11439 }
11440
11441 /* Make sure that the type of each M2_OR_ARGLIST arguments can be
11442    converted by method invocation conversion (5.3) to the type of the
11443    corresponding parameter of M1. Implementation expects M2_OR_ARGLIST
11444    to change less often than M1. */
11445
11446 static GTY(()) tree m2_arg_value;
11447 static GTY(()) tree m2_arg_cache;
11448
11449 static int
11450 argument_types_convertible (tree m1, tree m2_or_arglist)
11451 {
11452   tree m1_arg, m2_arg;
11453
11454   SKIP_THIS_AND_ARTIFICIAL_PARMS (m1_arg, m1)
11455
11456   if (m2_arg_value == m2_or_arglist)
11457     m2_arg = m2_arg_cache;
11458   else
11459     {
11460       /* M2_OR_ARGLIST can be a function DECL or a raw list of
11461          argument types */
11462       if (m2_or_arglist && TREE_CODE (m2_or_arglist) == FUNCTION_DECL)
11463         {
11464           m2_arg = TYPE_ARG_TYPES (TREE_TYPE (m2_or_arglist));
11465           if (!METHOD_STATIC (m2_or_arglist))
11466             m2_arg = TREE_CHAIN (m2_arg);
11467         }
11468       else
11469         m2_arg = m2_or_arglist;
11470
11471       m2_arg_value = m2_or_arglist;
11472       m2_arg_cache = m2_arg;
11473     }
11474
11475   while (m1_arg != end_params_node && m2_arg != end_params_node)
11476     {
11477       resolve_and_layout (TREE_VALUE (m1_arg), NULL_TREE);
11478       if (!valid_method_invocation_conversion_p (TREE_VALUE (m1_arg),
11479                                                  TREE_VALUE (m2_arg)))
11480         break;
11481       m1_arg = TREE_CHAIN (m1_arg);
11482       m2_arg = TREE_CHAIN (m2_arg);
11483     }
11484   return m1_arg == end_params_node && m2_arg == end_params_node;
11485 }
11486
11487 /* Qualification routines */
11488
11489 /* Given a name x.y.z, look up x locally.  If it's found, save the
11490    decl.  If it's not found, mark the name as RESOLVE_PACKAGE_NAME_P,
11491    so that we later try and load the appropriate classes.  */
11492 static void
11493 qualify_ambiguous_name (tree id)
11494 {
11495   tree name, decl;
11496
11497   /* We inspect the first item of the qualification list.  As a sanity
11498      check, make sure that it is an identfier node.  */
11499   tree qual = EXPR_WFL_QUALIFICATION (id);
11500   tree qual_wfl = QUAL_WFL (qual);
11501
11502   if (TREE_CODE (qual_wfl) != EXPR_WITH_FILE_LOCATION)
11503     return;
11504
11505   name = EXPR_WFL_NODE (qual_wfl);
11506
11507   /* If we don't have an identifier, or we have a 'this' or 'super',
11508      then field access processing is all we need : there is nothing
11509      for us to do.  */
11510   if (!name || TREE_CODE (name) != IDENTIFIER_NODE ||
11511       name == this_identifier_node ||
11512       name == super_identifier_node)
11513     return;
11514
11515   /* If name appears within the scope of a local variable declaration
11516      or parameter declaration, or is a field within an enclosing
11517      class, then it is an expression name.  Save the decl and let
11518      resolve_field_access do it's work.  */
11519   if ((decl = IDENTIFIER_LOCAL_VALUE (name)) ||
11520       (decl = lookup_field_wrapper (current_class, name)))
11521     {
11522       QUAL_RESOLUTION (qual) = decl;
11523       return;
11524     }
11525
11526   /* If name is a known class name (either declared or imported), mark
11527      us as a type name.  */
11528   if ((decl = resolve_and_layout (name, NULL_TREE)))
11529     {
11530       RESOLVE_TYPE_NAME_P (qual_wfl) = 1;
11531       QUAL_RESOLUTION (qual) = decl;
11532     }
11533
11534   /* Check here that NAME isn't declared by more than one
11535      type-import-on-demand declaration of the compilation unit
11536      containing NAME. FIXME */
11537
11538   /* We couldn't find a declaration for the name.  Assume for now that
11539      we have a qualified class name that needs to be loaded from an
11540      external class file.  */
11541   else
11542     RESOLVE_PACKAGE_NAME_P (qual_wfl) = 1;
11543
11544   /* Propagate the qualification across other components of the
11545      qualified name */
11546   for (qual = TREE_CHAIN (qual); qual;
11547        qual_wfl = QUAL_WFL (qual), qual = TREE_CHAIN (qual))
11548     {
11549       if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
11550         RESOLVE_PACKAGE_NAME_P (QUAL_WFL (qual)) = 1;
11551     }
11552
11553   /* Store the global qualification for the ambiguous part of ID back
11554      into ID fields */
11555   if (RESOLVE_TYPE_NAME_P (qual_wfl))
11556     RESOLVE_TYPE_NAME_P (id) = 1;
11557   else if (RESOLVE_PACKAGE_NAME_P (qual_wfl))
11558     RESOLVE_PACKAGE_NAME_P (id) = 1;
11559 }
11560
11561 /* Patch tree nodes in a function body. When a BLOCK is found, push
11562    local variable decls if present.
11563    Same as java_complete_lhs, but does resolve static finals to values. */
11564
11565 static tree
11566 java_complete_tree (tree node)
11567 {
11568   node = java_complete_lhs (node);
11569   if (JDECL_P (node) && CLASS_FINAL_VARIABLE_P (node)
11570       && DECL_INITIAL (node) != NULL_TREE
11571       && !flag_emit_xref)
11572     {
11573       tree value = fold_constant_for_init (node, node);
11574       if (value != NULL_TREE)
11575         return value;
11576     }
11577   return node;
11578 }
11579
11580 static tree
11581 java_stabilize_reference (tree node)
11582 {
11583   if (TREE_CODE (node) == COMPOUND_EXPR)
11584     {
11585       tree op0 = TREE_OPERAND (node, 0);
11586       tree op1 = TREE_OPERAND (node, 1);
11587       TREE_OPERAND (node, 0) = save_expr (op0);
11588       TREE_OPERAND (node, 1) = java_stabilize_reference (op1);
11589       return node;
11590     }
11591   return stabilize_reference (node);
11592 }
11593
11594 /* Patch tree nodes in a function body. When a BLOCK is found, push
11595    local variable decls if present.
11596    Same as java_complete_tree, but does not resolve static finals to values. */
11597
11598 static tree
11599 java_complete_lhs (tree node)
11600 {
11601   tree nn, cn, wfl_op1, wfl_op2, wfl_op3;
11602   int flag;
11603
11604   /* CONVERT_EXPR always has its type set, even though it needs to be
11605      worked out. */
11606   if (TREE_TYPE (node) && TREE_CODE (node) != CONVERT_EXPR)
11607     return node;
11608
11609   /* The switch block implements cases processing container nodes
11610      first.  Contained nodes are always written back. Leaves come
11611      next and return a value. */
11612   switch (TREE_CODE (node))
11613     {
11614     case BLOCK:
11615
11616       /* 1- Block section.
11617          Set the local values on decl names so we can identify them
11618          faster when they're referenced. At that stage, identifiers
11619          are legal so we don't check for declaration errors. */
11620       for (cn = BLOCK_EXPR_DECLS (node); cn; cn = TREE_CHAIN (cn))
11621         {
11622           DECL_CONTEXT (cn) = current_function_decl;
11623           IDENTIFIER_LOCAL_VALUE (DECL_NAME (cn)) = cn;
11624         }
11625       if (BLOCK_EXPR_BODY (node) == NULL_TREE)
11626           CAN_COMPLETE_NORMALLY (node) = 1;
11627       else
11628         {
11629           tree stmt = BLOCK_EXPR_BODY (node);
11630           tree *ptr;
11631           int error_seen = 0;
11632           if (TREE_CODE (stmt) == COMPOUND_EXPR)
11633             {
11634               /* Re-order from (((A; B); C); ...; Z) to
11635                  (A; (B; (C ; (...; Z)))).
11636                  This makes it easier to scan the statements left-to-right
11637                  without using recursion (which might overflow the stack
11638                  if the block has many statements. */
11639               for (;;)
11640                 {
11641                   tree left = TREE_OPERAND (stmt, 0);
11642                   if (TREE_CODE (left) != COMPOUND_EXPR)
11643                     break;
11644                   TREE_OPERAND (stmt, 0) = TREE_OPERAND (left, 1);
11645                   TREE_OPERAND (left, 1) = stmt;
11646                   stmt = left;
11647                 }
11648               BLOCK_EXPR_BODY (node) = stmt;
11649             }
11650
11651           /* Now do the actual complete, without deep recursion for
11652              long blocks. */
11653           ptr = &BLOCK_EXPR_BODY (node);
11654           while (TREE_CODE (*ptr) == COMPOUND_EXPR
11655                  && !IS_EMPTY_STMT (TREE_OPERAND (*ptr, 1)))
11656             {
11657               tree cur = java_complete_tree (TREE_OPERAND (*ptr, 0));
11658               tree *next = &TREE_OPERAND (*ptr, 1);
11659               TREE_OPERAND (*ptr, 0) = cur;
11660               if (IS_EMPTY_STMT (cur))
11661                 {
11662                   /* Optimization;  makes it easier to detect empty bodies.
11663                      Most useful for <clinit> with all-constant initializer. */
11664                   *ptr = *next;
11665                   continue;
11666                 }
11667               if (TREE_CODE (cur) == ERROR_MARK)
11668                 error_seen++;
11669               else if (! CAN_COMPLETE_NORMALLY (cur))
11670                 {
11671                   wfl_op2 = *next;
11672                   for (;;)
11673                     {
11674                       if (TREE_CODE (wfl_op2) == BLOCK)
11675                         wfl_op2 = BLOCK_EXPR_BODY (wfl_op2);
11676                       else if (TREE_CODE (wfl_op2) == COMPOUND_EXPR)
11677                         wfl_op2 = TREE_OPERAND (wfl_op2, 0);
11678                       else
11679                         break;
11680                     }
11681                   if (TREE_CODE (wfl_op2) != CASE_EXPR
11682                       && TREE_CODE (wfl_op2) != DEFAULT_EXPR)
11683                     unreachable_stmt_error (*ptr);
11684                 }
11685               if (TREE_TYPE (*ptr) == NULL_TREE)
11686                 TREE_TYPE (*ptr) = void_type_node;
11687               ptr = next;
11688             }
11689           *ptr = java_complete_tree (*ptr);
11690
11691           if (TREE_CODE (*ptr) == ERROR_MARK || error_seen > 0)
11692             return error_mark_node;
11693           CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (*ptr);
11694         }
11695       /* Turn local bindings to null */
11696       for (cn = BLOCK_EXPR_DECLS (node); cn; cn = TREE_CHAIN (cn))
11697         IDENTIFIER_LOCAL_VALUE (DECL_NAME (cn)) = NULL_TREE;
11698
11699       TREE_TYPE (node) = void_type_node;
11700       break;
11701
11702       /* 2- They are expressions but ultimately deal with statements */
11703
11704     case THROW_EXPR:
11705       wfl_op1 = TREE_OPERAND (node, 0);
11706       COMPLETE_CHECK_OP_0 (node);
11707       /* 14.19 A throw statement cannot complete normally. */
11708       CAN_COMPLETE_NORMALLY (node) = 0;
11709       return patch_throw_statement (node, wfl_op1);
11710
11711     case SYNCHRONIZED_EXPR:
11712       wfl_op1 = TREE_OPERAND (node, 0);
11713       return patch_synchronized_statement (node, wfl_op1);
11714
11715     case TRY_EXPR:
11716       return patch_try_statement (node);
11717
11718     case TRY_FINALLY_EXPR:
11719       COMPLETE_CHECK_OP_0 (node);
11720       COMPLETE_CHECK_OP_1 (node);
11721       if (IS_EMPTY_STMT (TREE_OPERAND (node, 0)))
11722         /* Reduce try/finally nodes with an empty try block.  */
11723         return TREE_OPERAND (node, 1);
11724       if (IS_EMPTY_STMT (TREE_OPERAND (node, 1)))
11725         /* Likewise for an empty finally block.  */
11726         return TREE_OPERAND (node, 0);
11727       CAN_COMPLETE_NORMALLY (node)
11728         = (CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0))
11729            && CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1)));
11730       TREE_TYPE (node) = TREE_TYPE (TREE_OPERAND (node, 0));
11731       return node;
11732
11733     case LABELED_BLOCK_EXPR:
11734       PUSH_LABELED_BLOCK (node);
11735       if (LABELED_BLOCK_BODY (node))
11736         COMPLETE_CHECK_OP_1 (node);
11737       TREE_TYPE (node) = void_type_node;
11738       POP_LABELED_BLOCK ();
11739
11740       if (IS_EMPTY_STMT (LABELED_BLOCK_BODY (node)))
11741         {
11742           LABELED_BLOCK_BODY (node) = NULL_TREE;
11743           CAN_COMPLETE_NORMALLY (node) = 1;
11744         }
11745       else if (CAN_COMPLETE_NORMALLY (LABELED_BLOCK_BODY (node)))
11746         CAN_COMPLETE_NORMALLY (node) = 1;
11747       return node;
11748
11749     case EXIT_BLOCK_EXPR:
11750       return patch_bc_statement (node);
11751
11752     case CASE_EXPR:
11753       cn = java_complete_tree (TREE_OPERAND (node, 0));
11754       if (cn == error_mark_node)
11755         return cn;
11756
11757       /* First, the case expression must be constant. Values of final
11758          fields are accepted. */
11759       cn = fold (cn);
11760       if ((TREE_CODE (cn) == COMPOUND_EXPR || TREE_CODE (cn) == COMPONENT_REF)
11761           && JDECL_P (TREE_OPERAND (cn, 1))
11762           && FIELD_FINAL (TREE_OPERAND (cn, 1))
11763           && DECL_INITIAL (TREE_OPERAND (cn, 1)))
11764         {
11765           cn = fold_constant_for_init (DECL_INITIAL (TREE_OPERAND (cn, 1)),
11766                                        TREE_OPERAND (cn, 1));
11767         }
11768       /* Accept final locals too. */
11769       else if (TREE_CODE (cn) == VAR_DECL && DECL_FINAL (cn) 
11770                && DECL_INITIAL (cn))
11771         cn = fold_constant_for_init (DECL_INITIAL (cn), cn);
11772
11773       if (!TREE_CONSTANT (cn) && !flag_emit_xref)
11774         {
11775           EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11776           parse_error_context (node, "Constant expression required");
11777           return error_mark_node;
11778         }
11779
11780       nn = ctxp->current_loop;
11781
11782       /* It must be assignable to the type of the switch expression. */
11783       if (!try_builtin_assignconv (NULL_TREE,
11784                                    TREE_TYPE (TREE_OPERAND (nn, 0)), cn))
11785         {
11786           EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11787           parse_error_context
11788             (wfl_operator,
11789              "Incompatible type for case. Can't convert %qs to %<int%>",
11790              lang_printable_name (TREE_TYPE (cn), 0));
11791           return error_mark_node;
11792         }
11793
11794       cn = fold (convert (int_type_node, cn));
11795       TREE_CONSTANT_OVERFLOW (cn) = 0;
11796       CAN_COMPLETE_NORMALLY (cn) = 1;
11797
11798       /* Save the label on a list so that we can later check for
11799          duplicates.  */
11800       case_label_list = tree_cons (node, cn, case_label_list);
11801
11802       /* Multiple instance of a case label bearing the same value is
11803          checked later. The case expression is all right so far. */
11804       if (TREE_CODE (cn) == VAR_DECL)
11805         cn = DECL_INITIAL (cn);
11806       TREE_OPERAND (node, 0) = cn;
11807       TREE_TYPE (node) = void_type_node;
11808       CAN_COMPLETE_NORMALLY (node) = 1;
11809       TREE_SIDE_EFFECTS (node) = 1;
11810       break;
11811
11812     case DEFAULT_EXPR:
11813       nn = ctxp->current_loop;
11814       /* Only one default label is allowed per switch statement */
11815       if (SWITCH_HAS_DEFAULT (nn))
11816         {
11817 #ifdef USE_MAPPED_LOCATION
11818           SET_EXPR_LOCATION (wfl_operator, EXPR_LOCATION (node));
11819 #else
11820           EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
11821 #endif
11822           parse_error_context (wfl_operator,
11823                                "Duplicate case label: %<default%>");
11824           return error_mark_node;
11825         }
11826       else
11827         SWITCH_HAS_DEFAULT (nn) = 1;
11828       TREE_TYPE (node) = void_type_node;
11829       TREE_SIDE_EFFECTS (node) = 1;
11830       CAN_COMPLETE_NORMALLY (node) = 1;
11831       break;
11832
11833     case SWITCH_EXPR:
11834     case LOOP_EXPR:
11835       PUSH_LOOP (node);
11836       /* Check whether the loop was enclosed in a labeled
11837          statement. If not, create one, insert the loop in it and
11838          return the node */
11839       nn = patch_loop_statement (node);
11840
11841       /* Anyways, walk the body of the loop */
11842       if (TREE_CODE (node) == LOOP_EXPR)
11843         TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11844       /* Switch statement: walk the switch expression and the cases */
11845       else
11846         node = patch_switch_statement (node);
11847
11848       if (node == error_mark_node || TREE_OPERAND (node, 0) == error_mark_node)
11849         nn = error_mark_node;
11850       else
11851         {
11852           TREE_TYPE (nn) = TREE_TYPE (node) = void_type_node;
11853           /* If we returned something different, that's because we
11854              inserted a label. Pop the label too. */
11855           if (nn != node)
11856             {
11857               if (CAN_COMPLETE_NORMALLY (node))
11858                 CAN_COMPLETE_NORMALLY (nn) = 1;
11859               POP_LABELED_BLOCK ();
11860             }
11861         }
11862       POP_LOOP ();
11863       return nn;
11864
11865     case EXIT_EXPR:
11866       TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11867       return patch_exit_expr (node);
11868
11869     case COND_EXPR:
11870       /* Condition */
11871       TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
11872       if (TREE_OPERAND (node, 0) == error_mark_node)
11873         return error_mark_node;
11874       /* then-else branches */
11875       TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
11876       if (TREE_OPERAND (node, 1) == error_mark_node)
11877         return error_mark_node;
11878       {
11879         /* This is a special case due to build_assertion().  When
11880            assertions are disabled we build a COND_EXPR in which
11881            Operand 1 is the body of the assertion.  If that happens to
11882            be a string concatenation we'll need to patch it here.  */
11883         tree patched = patch_string (TREE_OPERAND (node, 1));
11884         if (patched)
11885           TREE_OPERAND (node, 1) = patched;
11886       }
11887      TREE_OPERAND (node, 2) = java_complete_tree (TREE_OPERAND (node, 2));
11888       if (TREE_OPERAND (node, 2) == error_mark_node)
11889         return error_mark_node;
11890       return patch_if_else_statement (node);
11891       break;
11892
11893     case CONDITIONAL_EXPR:
11894       /* Condition */
11895       wfl_op1 = TREE_OPERAND (node, 0);
11896       COMPLETE_CHECK_OP_0 (node);
11897       wfl_op2 = TREE_OPERAND (node, 1);
11898       COMPLETE_CHECK_OP_1 (node);
11899       wfl_op3 = TREE_OPERAND (node, 2);
11900       COMPLETE_CHECK_OP_2 (node);
11901       return patch_conditional_expr (node, wfl_op1, wfl_op2);
11902
11903       /* 3- Expression section */
11904     case COMPOUND_EXPR:
11905       wfl_op2 = TREE_OPERAND (node, 1);
11906       TREE_OPERAND (node, 0) = nn =
11907         java_complete_tree (TREE_OPERAND (node, 0));
11908       if (IS_EMPTY_STMT (wfl_op2))
11909         CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (nn);
11910       else
11911         {
11912           if (! CAN_COMPLETE_NORMALLY (nn) && TREE_CODE (nn) != ERROR_MARK)
11913             {
11914               /* An unreachable condition in a do-while statement
11915                  is *not* (technically) an unreachable statement. */
11916               nn = wfl_op2;
11917               if (TREE_CODE (nn) == EXPR_WITH_FILE_LOCATION)
11918                 nn = EXPR_WFL_NODE (nn);
11919               /* NN can be NULL_TREE exactly when UPDATE is, in
11920                  finish_for_loop.  */
11921               if (nn != NULL_TREE && TREE_CODE (nn) != EXIT_EXPR)
11922                 {
11923                   SET_WFL_OPERATOR (wfl_operator, node, wfl_op2);
11924                   if (SUPPRESS_UNREACHABLE_ERROR (nn))
11925                     {
11926                       /* Perhaps this warning should have an
11927                          associated flag.  The code being compiled is
11928                          pedantically correct, but useless.  */
11929                       parse_warning_context (wfl_operator,
11930                                              "Unreachable statement");
11931                     }
11932                   else
11933                     parse_error_context (wfl_operator,
11934                                          "Unreachable statement");
11935                 }
11936             }
11937           TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
11938           if (TREE_OPERAND (node, 1) == error_mark_node)
11939             return error_mark_node;
11940           /* Even though we might allow the case where the first
11941              operand doesn't return normally, we still should compute
11942              CAN_COMPLETE_NORMALLY correctly.  */
11943           CAN_COMPLETE_NORMALLY (node)
11944             = (CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 0))
11945                && CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1)));
11946         }
11947       TREE_TYPE (node) = TREE_TYPE (TREE_OPERAND (node, 1));
11948       break;
11949
11950     case RETURN_EXPR:
11951       /* CAN_COMPLETE_NORMALLY (node) = 0; */
11952       return patch_return (node);
11953
11954     case EXPR_WITH_FILE_LOCATION:
11955       if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
11956           || TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
11957         {
11958           tree wfl = node;
11959           node = resolve_expression_name (node, NULL);
11960           if (node == error_mark_node)
11961             return node;
11962           /* Keep line number information somewhere were it doesn't
11963              disrupt the completion process. */
11964           if (flag_emit_xref && TREE_CODE (node) != CALL_EXPR)
11965             {
11966               EXPR_WFL_NODE (wfl) = TREE_OPERAND (node, 1);
11967               TREE_OPERAND (node, 1) = wfl;
11968             }
11969           CAN_COMPLETE_NORMALLY (node) = 1;
11970         }
11971       else
11972         {
11973           tree body;
11974           location_t save_location = input_location;
11975 #ifdef USE_MAPPED_LOCATION
11976           input_location = EXPR_LOCATION (node);
11977           if (input_location == UNKNOWN_LOCATION)
11978             input_location = save_location;
11979 #else
11980           input_line = EXPR_WFL_LINENO (node);
11981 #endif
11982           body = java_complete_tree (EXPR_WFL_NODE (node));
11983           input_location = save_location;
11984           EXPR_WFL_NODE (node) = body;
11985           TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (body);
11986           CAN_COMPLETE_NORMALLY (node) = CAN_COMPLETE_NORMALLY (body);
11987           if (IS_EMPTY_STMT (body) || TREE_CONSTANT (body))
11988             {
11989               /* Makes it easier to constant fold, detect empty bodies. */
11990               return body;
11991             }
11992           if (body == error_mark_node)
11993             {
11994               /* Its important for the evaluation of assignment that
11995                  this mark on the TREE_TYPE is propagated. */
11996               TREE_TYPE (node) = error_mark_node;
11997               return error_mark_node;
11998             }
11999           else
12000             TREE_TYPE (node) = TREE_TYPE (EXPR_WFL_NODE (node));
12001
12002         }
12003       break;
12004
12005     case NEW_ARRAY_EXPR:
12006       /* Patch all the dimensions */
12007       flag = 0;
12008       for (cn = TREE_OPERAND (node, 1); cn; cn = TREE_CHAIN (cn))
12009         {
12010           int location = EXPR_WFL_LINECOL (TREE_VALUE (cn));
12011           tree dim = convert (int_type_node,
12012                               java_complete_tree (TREE_VALUE (cn)));
12013           if (dim == error_mark_node)
12014             {
12015               flag = 1;
12016               continue;
12017             }
12018           else
12019             {
12020               TREE_VALUE (cn) = dim;
12021               /* Setup the location of the current dimension, for
12022                  later error report. */
12023 #ifdef USE_MAPPED_LOCATION
12024               TREE_PURPOSE (cn) = expr_add_location (NULL_TREE, location, 0);
12025 #else
12026               TREE_PURPOSE (cn) =
12027                 build_expr_wfl (NULL_TREE, input_filename, 0, 0);
12028               EXPR_WFL_LINECOL (TREE_PURPOSE (cn)) = location;
12029 #endif
12030             }
12031         }
12032       /* They complete the array creation expression, if no errors
12033          were found. */
12034       CAN_COMPLETE_NORMALLY (node) = 1;
12035       return (flag ? error_mark_node
12036               : force_evaluation_order (patch_newarray (node)));
12037
12038     case NEW_ANONYMOUS_ARRAY_EXPR:
12039       /* Create the array type if necessary. */
12040       if (ANONYMOUS_ARRAY_DIMS_SIG (node))
12041         {
12042           tree type = ANONYMOUS_ARRAY_BASE_TYPE (node);
12043           if (!(type = resolve_type_during_patch (type)))
12044             return error_mark_node;
12045           type = build_array_from_name (type, NULL_TREE,
12046                                         ANONYMOUS_ARRAY_DIMS_SIG (node), NULL);
12047           ANONYMOUS_ARRAY_BASE_TYPE (node) = build_pointer_type (type);
12048         }
12049       node = patch_new_array_init (ANONYMOUS_ARRAY_BASE_TYPE (node),
12050                                    ANONYMOUS_ARRAY_INITIALIZER (node));
12051       if (node == error_mark_node)
12052         return error_mark_node;
12053       CAN_COMPLETE_NORMALLY (node) = 1;
12054       return node;
12055
12056     case NEW_CLASS_EXPR:
12057     case CALL_EXPR:
12058       /* Complete function's argument(s) first */
12059       if (complete_function_arguments (node))
12060         return error_mark_node;
12061       else
12062         {
12063           tree decl, wfl = TREE_OPERAND (node, 0);
12064           int in_this = CALL_THIS_CONSTRUCTOR_P (node);
12065           int from_super = (EXPR_WFL_NODE (TREE_OPERAND (node, 0)) ==
12066                            super_identifier_node);
12067           tree arguments;
12068 #ifdef USE_MAPPED_LOCATION
12069           source_location location = EXPR_LOCATION (node);
12070 #else
12071           int location = EXPR_WFL_LINECOL (node);
12072 #endif
12073
12074           node = patch_method_invocation (node, NULL_TREE, NULL_TREE,
12075                                           from_super, 0, &decl);
12076           if (node == error_mark_node)
12077             return error_mark_node;
12078
12079           if (TREE_CODE (node) == CALL_EXPR
12080               && TREE_OPERAND (node, 1) != NULL_TREE)
12081             arguments = TREE_VALUE (TREE_OPERAND (node, 1));
12082           else
12083             arguments = NULL_TREE;
12084           check_thrown_exceptions (location, decl, arguments);
12085           /* If we call this(...), register signature and positions */
12086           if (in_this)
12087             DECL_CONSTRUCTOR_CALLS (current_function_decl) =
12088               tree_cons (wfl, decl,
12089                          DECL_CONSTRUCTOR_CALLS (current_function_decl));
12090           CAN_COMPLETE_NORMALLY (node) = 1;
12091           return force_evaluation_order (node);
12092         }
12093
12094     case MODIFY_EXPR:
12095       /* Save potential wfls */
12096       wfl_op1 = TREE_OPERAND (node, 0);
12097       TREE_OPERAND (node, 0) = nn = java_complete_lhs (wfl_op1);
12098
12099       if (MODIFY_EXPR_FROM_INITIALIZATION_P (node)
12100           && TREE_CODE (nn) == VAR_DECL && TREE_STATIC (nn)
12101           && DECL_INITIAL (nn) != NULL_TREE)
12102         {
12103           tree value;
12104
12105           value = fold_constant_for_init (nn, nn);
12106
12107           /* When we have a primitype type, or a string and we're not
12108              emitting a class file, we actually don't want to generate
12109              anything for the assignment. */
12110           if (value != NULL_TREE && 
12111               (JPRIMITIVE_TYPE_P (TREE_TYPE (value)) || 
12112                (TREE_TYPE (value) == string_ptr_type_node &&
12113                 ! flag_emit_class_files)))
12114             {
12115               /* Prepare node for patch_assignment */
12116               TREE_OPERAND (node, 1) = value;
12117               /* Call patch assignment to verify the assignment */
12118               if (patch_assignment (node, wfl_op1) == error_mark_node)
12119                 return error_mark_node;
12120               /* Set DECL_INITIAL properly (a conversion might have
12121                  been decided by patch_assignment) and return the
12122                  empty statement. */
12123               else
12124                 {
12125                   tree patched = patch_string (TREE_OPERAND (node, 1));
12126                   if (patched)
12127                     DECL_INITIAL (nn) = patched;
12128                   else
12129                     DECL_INITIAL (nn) = TREE_OPERAND (node, 1);
12130                   DECL_FIELD_FINAL_IUD (nn) = 1;
12131                   return build_java_empty_stmt ();
12132                 }
12133             }
12134           if (! flag_emit_class_files)
12135             DECL_INITIAL (nn) = NULL_TREE;
12136         }
12137       wfl_op2 = TREE_OPERAND (node, 1);
12138
12139       if (TREE_OPERAND (node, 0) == error_mark_node)
12140         return error_mark_node;
12141
12142       flag = COMPOUND_ASSIGN_P (wfl_op2);
12143       if (flag)
12144         {
12145           /* This might break when accessing outer field from inner
12146              class. TESTME, FIXME */
12147           tree lvalue = java_stabilize_reference (TREE_OPERAND (node, 0));
12148
12149           /* Hand stabilize the lhs on both places */
12150           TREE_OPERAND (node, 0) = lvalue;
12151           TREE_OPERAND (TREE_OPERAND (node, 1), 0) =
12152             (flag_emit_class_files ? lvalue : save_expr (lvalue));
12153
12154           /* 15.25.2.a: Left hand is not an array access. FIXME */
12155           /* Now complete the RHS. We write it back later on. */
12156           nn = java_complete_tree (TREE_OPERAND (node, 1));
12157
12158           if ((cn = patch_string (nn)))
12159             nn = cn;
12160
12161           /* The last part of the rewrite for E1 op= E2 is to have
12162              E1 = (T)(E1 op E2), with T being the type of E1. */
12163           nn = java_complete_tree (build_cast (EXPR_WFL_LINECOL (wfl_op2),
12164                                                TREE_TYPE (lvalue), nn));
12165
12166           /* If the assignment is compound and has reference type,
12167              then ensure the LHS has type String and nothing else.  */
12168           if (JREFERENCE_TYPE_P (TREE_TYPE (lvalue))
12169               && ! JSTRING_TYPE_P (TREE_TYPE (lvalue)))
12170             parse_error_context (wfl_op2,
12171                                  "Incompatible type for %<+=%>. Can't convert %qs to %<java.lang.String%>",
12172                                  lang_printable_name (TREE_TYPE (lvalue), 0));
12173
12174           /* 15.25.2.b: Left hand is an array access. FIXME */
12175         }
12176
12177       /* If we're about to patch a NEW_ARRAY_INIT, we call a special
12178          function to complete this RHS. Note that a NEW_ARRAY_INIT
12179          might have been already fully expanded if created as a result
12180          of processing an anonymous array initializer. We avoid doing
12181          the operation twice by testing whether the node already bears
12182          a type. */
12183       else if (TREE_CODE (wfl_op2) == NEW_ARRAY_INIT && !TREE_TYPE (wfl_op2))
12184         nn = patch_new_array_init (TREE_TYPE (TREE_OPERAND (node, 0)),
12185                                    TREE_OPERAND (node, 1));
12186       /* Otherwise we simply complete the RHS */
12187       else
12188         nn = java_complete_tree (TREE_OPERAND (node, 1));
12189
12190       if (nn == error_mark_node)
12191         return error_mark_node;
12192
12193       /* Write back the RHS as we evaluated it. */
12194       TREE_OPERAND (node, 1) = nn;
12195
12196       /* In case we're handling = with a String as a RHS, we need to
12197          produce a String out of the RHS (it might still be a
12198          STRING_CST or a StringBuffer at this stage */
12199       if ((nn = patch_string (TREE_OPERAND (node, 1))))
12200         TREE_OPERAND (node, 1) = nn;
12201
12202       if ((nn = outer_field_access_fix (wfl_op1, TREE_OPERAND (node, 0),
12203                                         TREE_OPERAND (node, 1))))
12204         {
12205           /* We return error_mark_node if outer_field_access_fix
12206              detects we write into a final. */
12207           if (nn == error_mark_node)
12208             return error_mark_node;
12209           node = nn;
12210         }
12211       else
12212         {
12213           node = patch_assignment (node, wfl_op1);
12214           if (node == error_mark_node)
12215             return error_mark_node;
12216           /* Reorganize the tree if necessary. */
12217           if (flag && (!JREFERENCE_TYPE_P (TREE_TYPE (node))
12218                        || JSTRING_P (TREE_TYPE (node))))
12219             node = java_refold (node);
12220         }
12221
12222       /* Seek to set DECL_INITIAL to a proper value, since it might have
12223          undergone a conversion in patch_assignment. We do that only when
12224          it's necessary to have DECL_INITIAL properly set. */
12225       nn = TREE_OPERAND (node, 0);
12226       if (TREE_CODE (nn) == VAR_DECL
12227           && DECL_INITIAL (nn) && CONSTANT_VALUE_P (DECL_INITIAL (nn))
12228           && FIELD_STATIC (nn) && FIELD_FINAL (nn)
12229           && (JPRIMITIVE_TYPE_P (TREE_TYPE (nn))
12230               || TREE_TYPE (nn) == string_ptr_type_node))
12231         DECL_INITIAL (nn) = TREE_OPERAND (node, 1);
12232
12233       CAN_COMPLETE_NORMALLY (node) = 1;
12234       return node;
12235
12236     case MULT_EXPR:
12237     case PLUS_EXPR:
12238     case MINUS_EXPR:
12239     case LSHIFT_EXPR:
12240     case RSHIFT_EXPR:
12241     case URSHIFT_EXPR:
12242     case BIT_AND_EXPR:
12243     case BIT_XOR_EXPR:
12244     case BIT_IOR_EXPR:
12245     case TRUNC_MOD_EXPR:
12246     case TRUNC_DIV_EXPR:
12247     case RDIV_EXPR:
12248     case TRUTH_ANDIF_EXPR:
12249     case TRUTH_ORIF_EXPR:
12250     case EQ_EXPR:
12251     case NE_EXPR:
12252     case GT_EXPR:
12253     case GE_EXPR:
12254     case LT_EXPR:
12255     case LE_EXPR:
12256       /* Operands 0 and 1 are WFL in certain cases only. patch_binop
12257          knows how to handle those cases. */
12258       wfl_op1 = TREE_OPERAND (node, 0);
12259       wfl_op2 = TREE_OPERAND (node, 1);
12260
12261       CAN_COMPLETE_NORMALLY (node) = 1;
12262       /* Don't complete string nodes if dealing with the PLUS operand. */
12263       if (TREE_CODE (node) != PLUS_EXPR || !JSTRING_P (wfl_op1))
12264         {
12265           nn = java_complete_tree (wfl_op1);
12266           if (nn == error_mark_node)
12267             return error_mark_node;
12268
12269           TREE_OPERAND (node, 0) = nn;
12270         }
12271       if (TREE_CODE (node) != PLUS_EXPR || !JSTRING_P (wfl_op2))
12272         {
12273           nn = java_complete_tree (wfl_op2);
12274           if (nn == error_mark_node)
12275             return error_mark_node;
12276
12277           TREE_OPERAND (node, 1) = nn;
12278         }
12279       return patch_binop (node, wfl_op1, wfl_op2);
12280
12281     case INSTANCEOF_EXPR:
12282       wfl_op1 = TREE_OPERAND (node, 0);
12283       COMPLETE_CHECK_OP_0 (node);
12284       if (flag_emit_xref)
12285         {
12286           TREE_TYPE (node) = boolean_type_node;
12287           return node;
12288         }
12289       return patch_binop (node, wfl_op1, TREE_OPERAND (node, 1));
12290
12291     case UNARY_PLUS_EXPR:
12292     case NEGATE_EXPR:
12293     case TRUTH_NOT_EXPR:
12294     case BIT_NOT_EXPR:
12295     case PREDECREMENT_EXPR:
12296     case PREINCREMENT_EXPR:
12297     case POSTDECREMENT_EXPR:
12298     case POSTINCREMENT_EXPR:
12299     case CONVERT_EXPR:
12300       /* There are cases were wfl_op1 is a WFL. patch_unaryop knows
12301          how to handle those cases. */
12302       wfl_op1 = TREE_OPERAND (node, 0);
12303       CAN_COMPLETE_NORMALLY (node) = 1;
12304       TREE_OPERAND (node, 0) = java_complete_tree (wfl_op1);
12305       if (TREE_OPERAND (node, 0) == error_mark_node)
12306         return error_mark_node;
12307       node = patch_unaryop (node, wfl_op1);
12308       CAN_COMPLETE_NORMALLY (node) = 1;
12309       break;
12310
12311     case ARRAY_REF:
12312       /* There are cases were wfl_op1 is a WFL. patch_array_ref knows
12313          how to handle those cases. */
12314       wfl_op1 = TREE_OPERAND (node, 0);
12315       TREE_OPERAND (node, 0) = java_complete_tree (wfl_op1);
12316       if (TREE_OPERAND (node, 0) == error_mark_node)
12317         return error_mark_node;
12318       if (!flag_emit_class_files && !flag_emit_xref)
12319         TREE_OPERAND (node, 0) = save_expr (TREE_OPERAND (node, 0));
12320       /* The same applies to wfl_op2 */
12321       wfl_op2 = TREE_OPERAND (node, 1);
12322       TREE_OPERAND (node, 1) = java_complete_tree (wfl_op2);
12323       if (TREE_OPERAND (node, 1) == error_mark_node)
12324         return error_mark_node;
12325       if (!flag_emit_class_files && !flag_emit_xref)
12326         TREE_OPERAND (node, 1) = save_expr (TREE_OPERAND (node, 1));
12327       return patch_array_ref (node);
12328
12329     case RECORD_TYPE:
12330       return node;;
12331
12332     case COMPONENT_REF:
12333       /* The first step in the re-write of qualified name handling.  FIXME.
12334          So far, this is only to support PRIMTYPE.class -> PRIMCLASS.TYPE. */
12335       TREE_OPERAND (node, 0) = java_complete_tree (TREE_OPERAND (node, 0));
12336       if (TREE_CODE (TREE_OPERAND (node, 0)) == RECORD_TYPE)
12337         {
12338           tree name = TREE_OPERAND (node, 1);
12339           tree field = lookup_field_wrapper (TREE_OPERAND (node, 0), name);
12340           if (field == NULL_TREE)
12341             {
12342               error ("missing static field %qs", IDENTIFIER_POINTER (name));
12343               return error_mark_node;
12344             }
12345           if (! FIELD_STATIC (field))
12346             {
12347               error ("not a static field %qs", IDENTIFIER_POINTER (name));
12348               return error_mark_node;
12349             }
12350           return field;
12351         }
12352       else
12353         abort ();
12354       break;
12355
12356     case THIS_EXPR:
12357       /* Can't use THIS in a static environment */
12358       if (!current_this)
12359         {
12360           EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12361           parse_error_context (wfl_operator,
12362                                "Keyword %<this%> used outside allowed context");
12363           TREE_TYPE (node) = error_mark_node;
12364           return error_mark_node;
12365         }
12366       if (ctxp->explicit_constructor_p)
12367         {
12368           EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12369           parse_error_context
12370             (wfl_operator, "Can't reference %<this%> or %<super%> before the superclass constructor has been called");
12371           TREE_TYPE (node) = error_mark_node;
12372           return error_mark_node;
12373         }
12374       return current_this;
12375
12376     case CLASS_LITERAL:
12377       CAN_COMPLETE_NORMALLY (node) = 1;
12378       node = patch_incomplete_class_ref (node);
12379       if (node == error_mark_node)
12380         return error_mark_node;
12381       break;
12382
12383     default:
12384       CAN_COMPLETE_NORMALLY (node) = 1;
12385       /* Ok: may be we have a STRING_CST or a crafted `StringBuffer'
12386          and it's time to turn it into the appropriate String object */
12387       if ((nn = patch_string (node)))
12388         node = nn;
12389       else
12390         internal_error ("No case for %s", tree_code_name [TREE_CODE (node)]);
12391     }
12392   return node;
12393 }
12394
12395 /* Complete function call's argument. Return a nonzero value is an
12396    error was found.  */
12397
12398 static int
12399 complete_function_arguments (tree node)
12400 {
12401   int flag = 0;
12402   tree cn;
12403
12404   ctxp->explicit_constructor_p += (CALL_EXPLICIT_CONSTRUCTOR_P (node) ? 1 : 0);
12405   for (cn = TREE_OPERAND (node, 1); cn; cn = TREE_CHAIN (cn))
12406     {
12407       tree wfl = TREE_VALUE (cn), parm, temp;
12408       parm = java_complete_tree (wfl);
12409
12410       if (parm == error_mark_node)
12411         {
12412           flag = 1;
12413           continue;
12414         }
12415       /* If we have a string literal that we haven't transformed yet or a
12416          crafted string buffer, as a result of the use of the String
12417          `+' operator. Build `parm.toString()' and expand it. */
12418       if ((temp = patch_string (parm)))
12419         parm = temp;
12420
12421       TREE_VALUE (cn) = parm;
12422     }
12423   ctxp->explicit_constructor_p -= (CALL_EXPLICIT_CONSTRUCTOR_P (node) ? 1 : 0);
12424   return flag;
12425 }
12426
12427 /* Sometimes (for loops and variable initialized during their
12428    declaration), we want to wrap a statement around a WFL and turn it
12429    debugable.  */
12430
12431 static tree
12432 build_debugable_stmt (int location, tree stmt)
12433 {
12434   if (TREE_CODE (stmt) != EXPR_WITH_FILE_LOCATION)
12435     {
12436 #ifdef USE_MAPPED_LOCATION
12437       stmt = expr_add_location (stmt, location, 1);
12438 #else
12439       stmt = build_expr_wfl (stmt, input_filename, 0, 0);
12440       EXPR_WFL_LINECOL (stmt) = location;
12441       JAVA_MAYBE_GENERATE_DEBUG_INFO (stmt);
12442 #endif
12443     }
12444   return stmt;
12445 }
12446
12447 static tree
12448 build_expr_block (tree body, tree decls)
12449 {
12450   tree node = make_node (BLOCK);
12451   BLOCK_EXPR_DECLS (node) = decls;
12452   BLOCK_EXPR_BODY (node) = body;
12453   if (body)
12454     TREE_TYPE (node) = TREE_TYPE (body);
12455   TREE_SIDE_EFFECTS (node) = 1;
12456   return node;
12457 }
12458
12459 /* Create a new function block and link it appropriately to current
12460    function block chain */
12461
12462 static tree
12463 enter_block (void)
12464 {
12465   tree b = build_expr_block (NULL_TREE, NULL_TREE);
12466
12467   /* Link block B supercontext to the previous block. The current
12468      function DECL is used as supercontext when enter_a_block is called
12469      for the first time for a given function. The current function body
12470      (DECL_FUNCTION_BODY) is set to be block B.  */
12471
12472   tree fndecl = current_function_decl;
12473
12474   if (!fndecl) {
12475     BLOCK_SUPERCONTEXT (b) = current_static_block;
12476     current_static_block = b;
12477   }
12478
12479   else if (!DECL_FUNCTION_BODY (fndecl))
12480     {
12481       BLOCK_SUPERCONTEXT (b) = fndecl;
12482       DECL_FUNCTION_BODY (fndecl) = b;
12483     }
12484   else
12485     {
12486       BLOCK_SUPERCONTEXT (b) = DECL_FUNCTION_BODY (fndecl);
12487       DECL_FUNCTION_BODY (fndecl) = b;
12488     }
12489   return b;
12490 }
12491
12492 /* Exit a block by changing the current function body
12493    (DECL_FUNCTION_BODY) to the current block super context, only if
12494    the block being exited isn't the method's top level one.  */
12495
12496 static tree
12497 exit_block (void)
12498 {
12499   tree b;
12500   if (current_function_decl)
12501     {
12502       b = DECL_FUNCTION_BODY (current_function_decl);
12503       if (BLOCK_SUPERCONTEXT (b) != current_function_decl)
12504         DECL_FUNCTION_BODY (current_function_decl) = BLOCK_SUPERCONTEXT (b);
12505     }
12506   else
12507     {
12508       b = current_static_block;
12509
12510       if (BLOCK_SUPERCONTEXT (b))
12511         current_static_block = BLOCK_SUPERCONTEXT (b);
12512     }
12513   return b;
12514 }
12515
12516 /* Lookup for NAME in the nested function's blocks, all the way up to
12517    the current toplevel one. It complies with Java's local variable
12518    scoping rules.  */
12519
12520 static tree
12521 lookup_name_in_blocks (tree name)
12522 {
12523   tree b = GET_CURRENT_BLOCK (current_function_decl);
12524
12525   while (b != current_function_decl)
12526     {
12527       tree current;
12528
12529       /* Paranoid sanity check. To be removed */
12530       if (TREE_CODE (b) != BLOCK)
12531         abort ();
12532
12533       for (current = BLOCK_EXPR_DECLS (b); current;
12534            current = TREE_CHAIN (current))
12535         if (DECL_NAME (current) == name)
12536           return current;
12537       b = BLOCK_SUPERCONTEXT (b);
12538     }
12539   return NULL_TREE;
12540 }
12541
12542 static void
12543 maybe_absorb_scoping_blocks (void)
12544 {
12545   while (BLOCK_IS_IMPLICIT (GET_CURRENT_BLOCK (current_function_decl)))
12546     {
12547       tree b = exit_block ();
12548       java_method_add_stmt (current_function_decl, b);
12549       SOURCE_FRONTEND_DEBUG (("Absorbing scoping block at line %d", input_line));
12550     }
12551 }
12552
12553 \f
12554 /* This section of the source is reserved to build_* functions that
12555    are building incomplete tree nodes and the patch_* functions that
12556    are completing them.  */
12557
12558 /* Wrap a non WFL node around a WFL.  */
12559
12560 static tree
12561 build_wfl_wrap (tree node, int location)
12562 {
12563   tree wfl, node_to_insert = node;
12564
12565   /* We want to process THIS . xxx symbolically, to keep it consistent
12566      with the way we're processing SUPER. A THIS from a primary as a
12567      different form than a SUPER. Turn THIS into something symbolic */
12568   if (TREE_CODE (node) == THIS_EXPR)
12569     node_to_insert = wfl = build_wfl_node (this_identifier_node);
12570   else
12571 #ifdef USE_MAPPED_LOCATION
12572     wfl = build_unknown_wfl (NULL_TREE);
12573
12574   SET_EXPR_LOCATION (wfl, location);
12575 #else
12576     wfl = build_expr_wfl (NULL_TREE, ctxp->filename, 0, 0);
12577
12578   EXPR_WFL_LINECOL (wfl) = location;
12579 #endif
12580   EXPR_WFL_QUALIFICATION (wfl) = build_tree_list (node_to_insert, NULL_TREE);
12581   return wfl;
12582 }
12583
12584 /* Build a super() constructor invocation. Returns an empty statement if
12585    we're currently dealing with the class java.lang.Object. */
12586
12587 static tree
12588 build_super_invocation (tree mdecl)
12589 {
12590   if (DECL_CONTEXT (mdecl) == object_type_node)
12591     return build_java_empty_stmt ();
12592   else
12593     {
12594       tree super_wfl = build_wfl_node (super_identifier_node);
12595       tree a = NULL_TREE, t;
12596
12597       /* This is called after parsing is done, so the parser context
12598          won't be accurate. Set location info from current_class decl. */
12599       tree class_wfl = lookup_cl (TYPE_NAME (current_class));
12600       EXPR_WFL_LINECOL (super_wfl) = EXPR_WFL_LINECOL (class_wfl);
12601
12602       /* If we're dealing with an anonymous class, pass the arguments
12603          of the crafted constructor along. */
12604       if (ANONYMOUS_CLASS_P (DECL_CONTEXT (mdecl)))
12605         {
12606           SKIP_THIS_AND_ARTIFICIAL_PARMS (t, mdecl);
12607           for (; t != end_params_node; t = TREE_CHAIN (t))
12608             a = tree_cons (NULL_TREE, build_wfl_node (TREE_PURPOSE (t)), a);
12609         }
12610       return build_method_invocation (super_wfl, a);
12611     }
12612 }
12613
12614 /* Build a SUPER/THIS qualified method invocation.  */
12615
12616 static tree
12617 build_this_super_qualified_invocation (int use_this, tree name, tree args,
12618                                        int lloc, int rloc)
12619 {
12620   tree invok;
12621   tree wfl =
12622     build_wfl_node (use_this ? this_identifier_node : super_identifier_node);
12623   EXPR_WFL_LINECOL (wfl) = lloc;
12624   invok = build_method_invocation (name, args);
12625   return make_qualified_primary (wfl, invok, rloc);
12626 }
12627
12628 /* Build an incomplete CALL_EXPR node. */
12629
12630 static tree
12631 build_method_invocation (tree name, tree args)
12632 {
12633   tree call = build3 (CALL_EXPR, NULL_TREE, name, args, NULL_TREE);
12634   TREE_SIDE_EFFECTS (call) = 1;
12635   EXPR_WFL_LINECOL (call) = EXPR_WFL_LINECOL (name);
12636   return call;
12637 }
12638
12639 /* Build an incomplete new xxx(...) node. */
12640
12641 static tree
12642 build_new_invocation (tree name, tree args)
12643 {
12644   tree call = build3 (NEW_CLASS_EXPR, NULL_TREE, name, args, NULL_TREE);
12645   TREE_SIDE_EFFECTS (call) = 1;
12646   EXPR_WFL_LINECOL (call) = EXPR_WFL_LINECOL (name);
12647   return call;
12648 }
12649
12650 /* Build an incomplete assignment expression. */
12651
12652 static tree
12653 build_assignment (int op, int op_location, tree lhs, tree rhs)
12654 {
12655   tree assignment;
12656   /* Build the corresponding binop if we deal with a Compound
12657      Assignment operator. Mark the binop sub-tree as part of a
12658      Compound Assignment expression */
12659   if (op != ASSIGN_TK)
12660     {
12661       rhs = build_binop (BINOP_LOOKUP (op), op_location, lhs, rhs);
12662       COMPOUND_ASSIGN_P (rhs) = 1;
12663     }
12664   assignment = build2 (MODIFY_EXPR, NULL_TREE, lhs, rhs);
12665   TREE_SIDE_EFFECTS (assignment) = 1;
12666   EXPR_WFL_LINECOL (assignment) = op_location;
12667   return assignment;
12668 }
12669
12670 /* Print an INTEGER_CST node as decimal in a static buffer, and return
12671    the buffer.  This is used only for string conversion.  */
12672 static char *
12673 string_convert_int_cst (tree node)
12674 {
12675   /* Long.MIN_VALUE is -9223372036854775808, 20 characters.  */
12676   static char buffer[21];
12677
12678   unsigned HOST_WIDE_INT lo = TREE_INT_CST_LOW (node);
12679   unsigned HOST_WIDE_INT hi = TREE_INT_CST_HIGH (node);
12680   char *p = buffer + sizeof (buffer);
12681   int neg = 0;
12682
12683   unsigned HOST_WIDE_INT hibit = (((unsigned HOST_WIDE_INT) 1)
12684                                   << (HOST_BITS_PER_WIDE_INT - 1));
12685
12686   *--p = '\0';
12687
12688   /* If negative, note the fact and negate the value.  */
12689   if ((hi & hibit))
12690     {
12691       lo = ~lo;
12692       hi = ~hi;
12693       if (++lo == 0)
12694         ++hi;
12695       neg = 1;
12696     }
12697
12698   /* Divide by 10 until there are no bits left.  */
12699   do
12700     {
12701       unsigned HOST_WIDE_INT acc = 0;
12702       unsigned HOST_WIDE_INT outhi = 0, outlo = 0;
12703       unsigned int i;
12704
12705       /* Use long division to compute the result and the remainder.  */
12706       for (i = 0; i < 2 * HOST_BITS_PER_WIDE_INT; ++i)
12707         {
12708           /* Shift a bit into accumulator.  */
12709           acc <<= 1;
12710           if ((hi & hibit))
12711             acc |= 1;
12712
12713           /* Shift the value.  */
12714           hi <<= 1;
12715           if ((lo & hibit))
12716             hi |= 1;
12717           lo <<= 1;
12718
12719           /* Shift the correct bit into the result.  */
12720           outhi <<= 1;
12721           if ((outlo & hibit))
12722             outhi |= 1;
12723           outlo <<= 1;
12724           if (acc >= 10)
12725             {
12726               acc -= 10;
12727               outlo |= 1;
12728             }
12729         }
12730
12731       /* '0' == 060 in Java, but might not be here (think EBCDIC).  */
12732       *--p = '\060' + acc;
12733
12734       hi = outhi;
12735       lo = outlo;
12736     }
12737   while (hi || lo);
12738
12739   if (neg)
12740     *--p = '\055'; /* '-' == 055 in Java, but might not be here.  */
12741
12742   return p;
12743 }
12744
12745 /* Print an INTEGER_CST node in a static buffer, and return the
12746    buffer.  This is used only for error handling.  */
12747 char *
12748 print_int_node (tree node)
12749 {
12750   static char buffer [80];
12751   if (TREE_CONSTANT_OVERFLOW (node))
12752     sprintf (buffer, "<overflow>");
12753
12754   if (TREE_INT_CST_HIGH (node) == 0)
12755     sprintf (buffer, HOST_WIDE_INT_PRINT_UNSIGNED,
12756              TREE_INT_CST_LOW (node));
12757   else if (TREE_INT_CST_HIGH (node) == -1
12758            && TREE_INT_CST_LOW (node) != 0)
12759     sprintf (buffer, "-" HOST_WIDE_INT_PRINT_UNSIGNED,
12760              -TREE_INT_CST_LOW (node));
12761   else
12762     sprintf (buffer, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
12763              TREE_INT_CST_HIGH (node), TREE_INT_CST_LOW (node));
12764
12765   return buffer;
12766 }
12767
12768 \f
12769 /* Return 1 if an assignment to a FINAL is attempted in a non suitable
12770    context.  */
12771
12772 /* 15.25 Assignment operators. */
12773
12774 static tree
12775 patch_assignment (tree node, tree wfl_op1)
12776 {
12777   tree rhs = TREE_OPERAND (node, 1);
12778   tree lvalue = TREE_OPERAND (node, 0), llvalue;
12779   tree lhs_type = NULL_TREE, rhs_type, new_rhs = NULL_TREE;
12780   int error_found = 0;
12781   int lvalue_from_array = 0;
12782   int is_return = 0;
12783
12784   EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
12785
12786   /* Lhs can be a named variable */
12787   if (JDECL_P (lvalue))
12788     {
12789       lhs_type = TREE_TYPE (lvalue);
12790     }
12791   /* Or Lhs can be an array access. */
12792   else if (TREE_CODE (lvalue) == ARRAY_REF)
12793     {
12794       lhs_type = TREE_TYPE (lvalue);
12795       lvalue_from_array = 1;
12796     }
12797   /* Or a field access */
12798   else if (TREE_CODE (lvalue) == COMPONENT_REF)
12799     lhs_type = TREE_TYPE (lvalue);
12800   /* Or a function return slot */
12801   else if (TREE_CODE (lvalue) == RESULT_DECL)
12802     {
12803       /* If the return type is an integral type, then we create the
12804          RESULT_DECL with a promoted type, but we need to do these
12805          checks against the unpromoted type to ensure type safety.  So
12806          here we look at the real type, not the type of the decl we
12807          are modifying.  */
12808       lhs_type = TREE_TYPE (TREE_TYPE (current_function_decl));
12809       is_return = 1;
12810     }
12811   /* Otherwise, we might want to try to write into an optimized static
12812      final, this is an of a different nature, reported further on. */
12813   else if (TREE_CODE (wfl_op1) == EXPR_WITH_FILE_LOCATION
12814            && resolve_expression_name (wfl_op1, &llvalue))
12815     {
12816       lhs_type = TREE_TYPE (lvalue);
12817     }
12818   else
12819     {
12820       parse_error_context (wfl_op1, "Invalid left hand side of assignment");
12821       error_found = 1;
12822     }
12823
12824   rhs_type = TREE_TYPE (rhs);
12825
12826   /* 5.1 Try the assignment conversion for builtin type. */
12827   new_rhs = try_builtin_assignconv (wfl_op1, lhs_type, rhs);
12828
12829   /* 5.2 If it failed, try a reference conversion */
12830   if (!new_rhs)
12831     new_rhs = try_reference_assignconv (lhs_type, rhs);
12832
12833   /* 15.25.2 If we have a compound assignment, convert RHS into the
12834      type of the LHS */
12835   else if (COMPOUND_ASSIGN_P (TREE_OPERAND (node, 1)))
12836     new_rhs = convert (lhs_type, rhs);
12837
12838   /* Explicit cast required. This is an error */
12839   if (!new_rhs)
12840     {
12841       char *t1 = xstrdup (lang_printable_name (TREE_TYPE (rhs), 0));
12842       char *t2 = xstrdup (lang_printable_name (lhs_type, 0));
12843       tree wfl;
12844       char operation [32];      /* Max size known */
12845
12846       /* If the assignment is part of a declaration, we use the WFL of
12847          the declared variable to point out the error and call it a
12848          declaration problem. If the assignment is a genuine =
12849          operator, we call is a operator `=' problem, otherwise we
12850          call it an assignment problem. In both of these last cases,
12851          we use the WFL of the operator to indicate the error. */
12852
12853       if (MODIFY_EXPR_FROM_INITIALIZATION_P (node))
12854         {
12855           wfl = wfl_op1;
12856           strcpy (operation, "declaration");
12857         }
12858       else
12859         {
12860           wfl = wfl_operator;
12861           if (COMPOUND_ASSIGN_P (TREE_OPERAND (node, 1)))
12862             strcpy (operation, "assignment");
12863           else if (is_return)
12864             strcpy (operation, "'return'");
12865           else
12866             strcpy (operation, "'='");
12867         }
12868
12869       if (!valid_cast_to_p (rhs_type, lhs_type))
12870         parse_error_context
12871           (wfl, "Incompatible type for %s. Can't convert %qs to %qs",
12872            operation, t1, t2);
12873       else
12874         parse_error_context (wfl, "Incompatible type for %s. Explicit cast needed to convert %qs to %qs",
12875                              operation, t1, t2);
12876       free (t1); free (t2);
12877       error_found = 1;
12878     }
12879
12880   if (error_found)
12881     return error_mark_node;
12882
12883   /* If we're processing a `return' statement, promote the actual type
12884      to the promoted type.  */
12885   if (is_return)
12886     new_rhs = convert (TREE_TYPE (lvalue), new_rhs);
12887
12888   /* 10.10: Array Store Exception runtime check */
12889   if (!flag_emit_class_files
12890       && !flag_emit_xref
12891       && lvalue_from_array
12892       && JREFERENCE_TYPE_P (TYPE_ARRAY_ELEMENT (lhs_type)))
12893     {
12894       tree array, store_check, base, index_expr;
12895
12896       /* Save RHS so that it doesn't get re-evaluated by the store check. */
12897       new_rhs = save_expr (new_rhs);
12898
12899       /* Get the INDIRECT_REF. */
12900       array = TREE_OPERAND (TREE_OPERAND (lvalue, 0), 0);
12901       /* Get the array pointer expr. */
12902       array = TREE_OPERAND (array, 0);
12903       store_check = build_java_arraystore_check (array, new_rhs);
12904
12905       index_expr = TREE_OPERAND (lvalue, 1);
12906
12907       if (TREE_CODE (index_expr) == COMPOUND_EXPR)
12908         {
12909           /* A COMPOUND_EXPR here is a bounds check. The bounds check must
12910              happen before the store check, so prepare to insert the store
12911              check within the second operand of the existing COMPOUND_EXPR. */
12912           base = index_expr;
12913         }
12914       else
12915         base = lvalue;
12916
12917       index_expr = TREE_OPERAND (base, 1);
12918       TREE_OPERAND (base, 1) = build2 (COMPOUND_EXPR, TREE_TYPE (index_expr),
12919                                        store_check, index_expr);
12920     }
12921
12922   /* Final locals can be used as case values in switch
12923      statement. Prepare them for this eventuality. */
12924   if (TREE_CODE (lvalue) == VAR_DECL
12925       && DECL_FINAL (lvalue)
12926       && TREE_CONSTANT (new_rhs)
12927       && IDENTIFIER_LOCAL_VALUE (DECL_NAME (lvalue))
12928       && JINTEGRAL_TYPE_P (TREE_TYPE (lvalue))
12929       )
12930     {
12931       TREE_CONSTANT (lvalue) = 1;
12932       TREE_INVARIANT (lvalue) = 1;
12933       DECL_INITIAL (lvalue) = new_rhs;
12934     }
12935
12936   /* Copy the rhs if it's a reference.  */
12937   if (! flag_check_references && ! flag_emit_class_files && optimize > 0)
12938     {
12939       switch (TREE_CODE (new_rhs))
12940         {
12941         case ARRAY_REF:
12942         case INDIRECT_REF:
12943         case COMPONENT_REF:
12944           /* Transform a = foo.bar 
12945              into a = ({int tmp; tmp = foo.bar;}).
12946              We need to ensure that if a read from memory fails
12947              because of a NullPointerException, a destination variable
12948              will remain unchanged.  An explicit temporary does what
12949              we need.  
12950
12951              If flag_check_references is set, this is unnecessary
12952              because we'll check each reference before doing any
12953              reads.  If optimize is not set the result will never be
12954              written to a stack slot that contains the LHS.  */
12955           {
12956             tree tmp = build_decl (VAR_DECL, get_identifier ("<tmp>"), 
12957                                    TREE_TYPE (new_rhs));
12958             tree block = make_node (BLOCK);
12959             tree assignment 
12960               = build2 (MODIFY_EXPR, TREE_TYPE (new_rhs), tmp, fold (new_rhs));
12961             DECL_CONTEXT (tmp) = current_function_decl;
12962             TREE_TYPE (block) = TREE_TYPE (new_rhs);
12963             BLOCK_VARS (block) = tmp;
12964             BLOCK_EXPR_BODY (block) = assignment;
12965             TREE_SIDE_EFFECTS (block) = 1;
12966             new_rhs = block;
12967           }
12968           break;
12969         default:
12970           break;
12971         }
12972     }
12973
12974   TREE_OPERAND (node, 0) = lvalue;
12975   TREE_OPERAND (node, 1) = new_rhs;
12976   TREE_TYPE (node) = lhs_type;
12977   return node;
12978 }
12979
12980 /* Check that type SOURCE can be cast into type DEST. If the cast
12981    can't occur at all, return NULL; otherwise, return a possibly
12982    modified rhs.  */
12983
12984 static tree
12985 try_reference_assignconv (tree lhs_type, tree rhs)
12986 {
12987   tree new_rhs = NULL_TREE;
12988   tree rhs_type = TREE_TYPE (rhs);
12989
12990   if (!JPRIMITIVE_TYPE_P (rhs_type) && JREFERENCE_TYPE_P (lhs_type))
12991     {
12992       /* `null' may be assigned to any reference type */
12993       if (rhs == null_pointer_node)
12994         new_rhs = null_pointer_node;
12995       /* Try the reference assignment conversion */
12996       else if (valid_ref_assignconv_cast_p (rhs_type, lhs_type, 0))
12997         new_rhs = rhs;
12998       /* This is a magic assignment that we process differently */
12999       else if (TREE_CODE (rhs) == JAVA_EXC_OBJ_EXPR)
13000         new_rhs = rhs;
13001     }
13002   return new_rhs;
13003 }
13004
13005 /* Check that RHS can be converted into LHS_TYPE by the assignment
13006    conversion (5.2), for the cases of RHS being a builtin type. Return
13007    NULL_TREE if the conversion fails or if because RHS isn't of a
13008    builtin type. Return a converted RHS if the conversion is possible.  */
13009
13010 static tree
13011 try_builtin_assignconv (tree wfl_op1, tree lhs_type, tree rhs)
13012 {
13013   tree new_rhs = NULL_TREE;
13014   tree rhs_type = TREE_TYPE (rhs);
13015
13016   /* Handle boolean specially.  */
13017   if (TREE_CODE (rhs_type) == BOOLEAN_TYPE
13018       || TREE_CODE (lhs_type) == BOOLEAN_TYPE)
13019     {
13020       if (TREE_CODE (rhs_type) == BOOLEAN_TYPE
13021           && TREE_CODE (lhs_type) == BOOLEAN_TYPE)
13022         new_rhs = rhs;
13023     }
13024
13025   /* 5.1.1 Try Identity Conversion,
13026      5.1.2 Try Widening Primitive Conversion */
13027   else if (valid_builtin_assignconv_identity_widening_p (lhs_type, rhs_type))
13028     new_rhs = convert (lhs_type, rhs);
13029
13030   /* Try a narrowing primitive conversion (5.1.3):
13031        - expression is a constant expression of type byte, short, char,
13032          or int, AND
13033        - variable is byte, short or char AND
13034        - The value of the expression is representable in the type of the
13035          variable */
13036   else if ((rhs_type == byte_type_node || rhs_type == short_type_node
13037             || rhs_type == char_type_node || rhs_type == int_type_node)
13038             && TREE_CONSTANT (rhs)
13039            && (lhs_type == byte_type_node || lhs_type == char_type_node
13040                || lhs_type == short_type_node))
13041     {
13042       if (int_fits_type_p (rhs, lhs_type))
13043         new_rhs = convert (lhs_type, rhs);
13044       else if (wfl_op1)         /* Might be called with a NULL */
13045         parse_warning_context
13046           (wfl_op1,
13047            "Constant expression %qs too wide for narrowing primitive conversion to %qs",
13048            print_int_node (rhs), lang_printable_name (lhs_type, 0));
13049       /* Reported a warning that will turn into an error further
13050          down, so we don't return */
13051     }
13052
13053   return new_rhs;
13054 }
13055
13056 /* Return 1 if RHS_TYPE can be converted to LHS_TYPE by identity
13057    conversion (5.1.1) or widening primitive conversion (5.1.2).  Return
13058    0 is the conversion test fails.  This implements parts the method
13059    invocation conversion (5.3).  */
13060
13061 static int
13062 valid_builtin_assignconv_identity_widening_p (tree lhs_type, tree rhs_type)
13063 {
13064   /* 5.1.1: This is the identity conversion part. */
13065   if (lhs_type == rhs_type)
13066     return 1;
13067
13068   /* Reject non primitive types and boolean conversions.  */
13069   if (!JNUMERIC_TYPE_P (lhs_type) || !JNUMERIC_TYPE_P (rhs_type))
13070     return 0;
13071
13072   /* 5.1.2: widening primitive conversion. byte, even if it's smaller
13073      than a char can't be converted into a char. Short can't too, but
13074      the < test below takes care of that */
13075   if (lhs_type == char_type_node && rhs_type == byte_type_node)
13076     return 0;
13077
13078   /* Accept all promoted type here. Note, we can't use <= in the test
13079      below, because we still need to bounce out assignments of short
13080      to char and the likes */
13081   if (lhs_type == int_type_node
13082       && (rhs_type == promoted_byte_type_node
13083           || rhs_type == promoted_short_type_node
13084           || rhs_type == promoted_char_type_node
13085           || rhs_type == promoted_boolean_type_node))
13086     return 1;
13087
13088   /* From here, an integral is widened if its precision is smaller
13089      than the precision of the LHS or if the LHS is a floating point
13090      type, or the RHS is a float and the RHS a double. */
13091   if ((JINTEGRAL_TYPE_P (rhs_type) && JINTEGRAL_TYPE_P (lhs_type)
13092        && (TYPE_PRECISION (rhs_type) < TYPE_PRECISION (lhs_type)))
13093       || (JINTEGRAL_TYPE_P (rhs_type) && JFLOAT_TYPE_P (lhs_type))
13094       || (rhs_type == float_type_node && lhs_type == double_type_node))
13095     return 1;
13096
13097   return 0;
13098 }
13099
13100 /* Check that something of SOURCE type can be assigned or cast to
13101    something of DEST type at runtime. Return 1 if the operation is
13102    valid, 0 otherwise. If CAST is set to 1, we're treating the case
13103    were SOURCE is cast into DEST, which borrows a lot of the
13104    assignment check. */
13105
13106 static int
13107 valid_ref_assignconv_cast_p (tree source, tree dest, int cast)
13108 {
13109   /* SOURCE or DEST might be null if not from a declared entity. */
13110   if (!source || !dest)
13111     return 0;
13112   if (JNULLP_TYPE_P (source))
13113     return 1;
13114   if (TREE_CODE (source) == POINTER_TYPE)
13115     source = TREE_TYPE (source);
13116   if (TREE_CODE (dest) == POINTER_TYPE)
13117     dest = TREE_TYPE (dest);
13118
13119   /* If source and dest are being compiled from bytecode, they may need to
13120      be loaded. */
13121   if (CLASS_P (source) && !CLASS_LOADED_P (source))
13122     {
13123       load_class (source, 1);
13124       safe_layout_class (source);
13125     }
13126   if (CLASS_P (dest) && !CLASS_LOADED_P (dest))
13127     {
13128       load_class (dest, 1);
13129       safe_layout_class (dest);
13130     }
13131
13132   /* Case where SOURCE is a class type */
13133   if (TYPE_CLASS_P (source))
13134     {
13135       if (TYPE_CLASS_P (dest))
13136         return  (source == dest
13137                  || inherits_from_p (source, dest)
13138                  || (cast && inherits_from_p (dest, source)));
13139       if (TYPE_INTERFACE_P (dest))
13140         {
13141           /* If doing a cast and SOURCE is final, the operation is
13142              always correct a compile time (because even if SOURCE
13143              does not implement DEST, a subclass of SOURCE might). */
13144           if (cast && !CLASS_FINAL (TYPE_NAME (source)))
13145             return 1;
13146           /* Otherwise, SOURCE must implement DEST */
13147           return interface_of_p (dest, source);
13148         }
13149       /* DEST is an array, cast permitted if SOURCE is of Object type */
13150       return (cast && source == object_type_node ? 1 : 0);
13151     }
13152   if (TYPE_INTERFACE_P (source))
13153     {
13154       if (TYPE_CLASS_P (dest))
13155         {
13156           /* If not casting, DEST must be the Object type */
13157           if (!cast)
13158             return dest == object_type_node;
13159           /* We're doing a cast. The cast is always valid is class
13160              DEST is not final, otherwise, DEST must implement SOURCE */
13161           else if (!CLASS_FINAL (TYPE_NAME (dest)))
13162             return 1;
13163           else
13164             return interface_of_p (source, dest);
13165         }
13166       if (TYPE_INTERFACE_P (dest))
13167         {
13168           /* If doing a cast, then if SOURCE and DEST contain method
13169              with the same signature but different return type, then
13170              this is a (compile time) error */
13171           if (cast)
13172             {
13173               tree method_source, method_dest;
13174               tree source_type;
13175               tree source_sig;
13176               tree source_name;
13177               for (method_source = TYPE_METHODS (source); method_source;
13178                    method_source = TREE_CHAIN (method_source))
13179                 {
13180                   source_sig =
13181                     build_java_argument_signature (TREE_TYPE (method_source));
13182                   source_type = TREE_TYPE (TREE_TYPE (method_source));
13183                   source_name = DECL_NAME (method_source);
13184                   for (method_dest = TYPE_METHODS (dest);
13185                        method_dest; method_dest = TREE_CHAIN (method_dest))
13186                     if (source_sig ==
13187                         build_java_argument_signature (TREE_TYPE (method_dest))
13188                         && source_name == DECL_NAME (method_dest)
13189                         && source_type != TREE_TYPE (TREE_TYPE (method_dest)))
13190                       return 0;
13191                 }
13192               return 1;
13193             }
13194           else
13195             return source == dest || interface_of_p (dest, source);
13196         }
13197       else
13198         {
13199           /* Array */
13200           return (cast
13201                   && (DECL_NAME (TYPE_NAME (source))
13202                       == java_lang_cloneable_identifier_node
13203                       || (DECL_NAME (TYPE_NAME (source))
13204                           == java_io_serializable_identifier_node)));
13205         }
13206     }
13207   if (TYPE_ARRAY_P (source))
13208     {
13209       if (TYPE_CLASS_P (dest))
13210         return dest == object_type_node;
13211       /* Can't cast an array to an interface unless the interface is
13212          java.lang.Cloneable or java.io.Serializable.  */
13213       if (TYPE_INTERFACE_P (dest))
13214         return (DECL_NAME (TYPE_NAME (dest))
13215                 == java_lang_cloneable_identifier_node
13216                 || (DECL_NAME (TYPE_NAME (dest))
13217                     == java_io_serializable_identifier_node));
13218       else                      /* Arrays */
13219         {
13220           tree source_element_type = TYPE_ARRAY_ELEMENT (source);
13221           tree dest_element_type = TYPE_ARRAY_ELEMENT (dest);
13222
13223           /* In case of severe errors, they turn out null */
13224           if (!dest_element_type || !source_element_type)
13225             return 0;
13226           if (source_element_type == dest_element_type)
13227             return 1;
13228           return valid_ref_assignconv_cast_p (source_element_type,
13229                                               dest_element_type, cast);
13230         }
13231       return 0;
13232     }
13233   return 0;
13234 }
13235
13236 static int
13237 valid_cast_to_p (tree source, tree dest)
13238 {
13239   if (TREE_CODE (source) == POINTER_TYPE)
13240     source = TREE_TYPE (source);
13241   if (TREE_CODE (dest) == POINTER_TYPE)
13242     dest = TREE_TYPE (dest);
13243
13244   if (TREE_CODE (source) == RECORD_TYPE && TREE_CODE (dest) == RECORD_TYPE)
13245     return valid_ref_assignconv_cast_p (source, dest, 1);
13246
13247   else if (JNUMERIC_TYPE_P (source) && JNUMERIC_TYPE_P (dest))
13248     return 1;
13249
13250   else if (TREE_CODE (source) == BOOLEAN_TYPE
13251            && TREE_CODE (dest) == BOOLEAN_TYPE)
13252     return 1;
13253
13254   return 0;
13255 }
13256
13257 static tree
13258 do_unary_numeric_promotion (tree arg)
13259 {
13260   tree type = TREE_TYPE (arg);
13261   if ((TREE_CODE (type) == INTEGER_TYPE && TYPE_PRECISION (type) < 32)
13262       || TREE_CODE (type) == CHAR_TYPE)
13263     arg = convert (int_type_node, arg);
13264   return arg;
13265 }
13266
13267 /* Return a nonzero value if SOURCE can be converted into DEST using
13268    the method invocation conversion rule (5.3).  */
13269 static int
13270 valid_method_invocation_conversion_p (tree dest, tree source)
13271 {
13272   return ((JPRIMITIVE_TYPE_P (source) && JPRIMITIVE_TYPE_P (dest)
13273            && valid_builtin_assignconv_identity_widening_p (dest, source))
13274           || ((JREFERENCE_TYPE_P (source) || JNULLP_TYPE_P (source))
13275               && (JREFERENCE_TYPE_P (dest) || JNULLP_TYPE_P (dest))
13276               && valid_ref_assignconv_cast_p (source, dest, 0)));
13277 }
13278
13279 /* Build an incomplete binop expression. */
13280
13281 static tree
13282 build_binop (enum tree_code op, int op_location, tree op1, tree op2)
13283 {
13284   tree binop = build2 (op, NULL_TREE, op1, op2);
13285   TREE_SIDE_EFFECTS (binop) = 1;
13286   /* Store the location of the operator, for better error report. The
13287      string of the operator will be rebuild based on the OP value. */
13288   EXPR_WFL_LINECOL (binop) = op_location;
13289   return binop;
13290 }
13291
13292 /* Build the string of the operator retained by NODE. If NODE is part
13293    of a compound expression, add an '=' at the end of the string. This
13294    function is called when an error needs to be reported on an
13295    operator. The string is returned as a pointer to a static character
13296    buffer. */
13297
13298 static char *
13299 operator_string (tree node)
13300 {
13301 #define BUILD_OPERATOR_STRING(S)                                        \
13302   {                                                                     \
13303     sprintf (buffer, "%s%s", S, (COMPOUND_ASSIGN_P (node) ? "=" : "")); \
13304     return buffer;                                                      \
13305   }
13306
13307   static char buffer [10];
13308   switch (TREE_CODE (node))
13309     {
13310     case MULT_EXPR: BUILD_OPERATOR_STRING ("*");
13311     case RDIV_EXPR: BUILD_OPERATOR_STRING ("/");
13312     case TRUNC_MOD_EXPR: BUILD_OPERATOR_STRING ("%");
13313     case PLUS_EXPR: BUILD_OPERATOR_STRING ("+");
13314     case MINUS_EXPR: BUILD_OPERATOR_STRING ("-");
13315     case LSHIFT_EXPR: BUILD_OPERATOR_STRING ("<<");
13316     case RSHIFT_EXPR: BUILD_OPERATOR_STRING (">>");
13317     case URSHIFT_EXPR: BUILD_OPERATOR_STRING (">>>");
13318     case BIT_AND_EXPR: BUILD_OPERATOR_STRING ("&");
13319     case BIT_XOR_EXPR: BUILD_OPERATOR_STRING ("^");
13320     case BIT_IOR_EXPR: BUILD_OPERATOR_STRING ("|");
13321     case TRUTH_ANDIF_EXPR: BUILD_OPERATOR_STRING ("&&");
13322     case TRUTH_ORIF_EXPR: BUILD_OPERATOR_STRING ("||");
13323     case EQ_EXPR: BUILD_OPERATOR_STRING ("==");
13324     case NE_EXPR: BUILD_OPERATOR_STRING ("!=");
13325     case GT_EXPR: BUILD_OPERATOR_STRING (">");
13326     case GE_EXPR: BUILD_OPERATOR_STRING (">=");
13327     case LT_EXPR: BUILD_OPERATOR_STRING ("<");
13328     case LE_EXPR: BUILD_OPERATOR_STRING ("<=");
13329     case UNARY_PLUS_EXPR: BUILD_OPERATOR_STRING ("+");
13330     case NEGATE_EXPR: BUILD_OPERATOR_STRING ("-");
13331     case TRUTH_NOT_EXPR: BUILD_OPERATOR_STRING ("!");
13332     case BIT_NOT_EXPR: BUILD_OPERATOR_STRING ("~");
13333     case PREINCREMENT_EXPR:     /* Fall through */
13334     case POSTINCREMENT_EXPR: BUILD_OPERATOR_STRING ("++");
13335     case PREDECREMENT_EXPR:     /* Fall through */
13336     case POSTDECREMENT_EXPR: BUILD_OPERATOR_STRING ("--");
13337     default:
13338       internal_error ("unregistered operator %s",
13339                       tree_code_name [TREE_CODE (node)]);
13340     }
13341   return NULL;
13342 #undef BUILD_OPERATOR_STRING
13343 }
13344
13345 /* Return 1 if VAR_ACCESS1 is equivalent to VAR_ACCESS2.  */
13346
13347 static int
13348 java_decl_equiv (tree var_acc1, tree var_acc2)
13349 {
13350   if (JDECL_P (var_acc1))
13351     return (var_acc1 == var_acc2);
13352
13353   return (TREE_CODE (var_acc1) == COMPONENT_REF
13354           && TREE_CODE (var_acc2) == COMPONENT_REF
13355           && TREE_OPERAND (TREE_OPERAND (var_acc1, 0), 0)
13356              == TREE_OPERAND (TREE_OPERAND (var_acc2, 0), 0)
13357           && TREE_OPERAND (var_acc1, 1) == TREE_OPERAND (var_acc2, 1));
13358 }
13359
13360 /* Return a nonzero value if CODE is one of the operators that can be
13361    used in conjunction with the `=' operator in a compound assignment.  */
13362
13363 static int
13364 binop_compound_p (enum tree_code code)
13365 {
13366   int i;
13367   for (i = 0; i < BINOP_COMPOUND_CANDIDATES; i++)
13368     if (binop_lookup [i] == code)
13369       break;
13370
13371   return i < BINOP_COMPOUND_CANDIDATES;
13372 }
13373
13374 /* Reorganize after a fold to get SAVE_EXPR to generate what we want.  */
13375
13376 static tree
13377 java_refold (tree t)
13378 {
13379   tree c, b, ns, decl;
13380
13381   if (TREE_CODE (t) != MODIFY_EXPR)
13382     return t;
13383
13384   c = TREE_OPERAND (t, 1);
13385   if (! (c && TREE_CODE (c) == COMPOUND_EXPR
13386          && TREE_CODE (TREE_OPERAND (c, 0)) == MODIFY_EXPR
13387          && binop_compound_p (TREE_CODE (TREE_OPERAND (c, 1)))))
13388     return t;
13389
13390   /* Now the left branch of the binary operator. */
13391   b = TREE_OPERAND (TREE_OPERAND (c, 1), 0);
13392   if (! (b && TREE_CODE (b) == NOP_EXPR
13393          && TREE_CODE (TREE_OPERAND (b, 0)) == SAVE_EXPR))
13394     return t;
13395
13396   ns = TREE_OPERAND (TREE_OPERAND (b, 0), 0);
13397   if (! (ns && TREE_CODE (ns) == NOP_EXPR
13398          && TREE_CODE (TREE_OPERAND (ns, 0)) == SAVE_EXPR))
13399     return t;
13400
13401   decl = TREE_OPERAND (TREE_OPERAND (ns, 0), 0);
13402   if ((JDECL_P (decl) || TREE_CODE (decl) == COMPONENT_REF)
13403       /* It's got to be the an equivalent decl */
13404       && java_decl_equiv (decl, TREE_OPERAND (TREE_OPERAND (c, 0), 0)))
13405     {
13406       /* Shorten the NOP_EXPR/SAVE_EXPR path. */
13407       TREE_OPERAND (TREE_OPERAND (c, 1), 0) = TREE_OPERAND (ns, 0);
13408       /* Substitute the COMPOUND_EXPR by the BINOP_EXPR */
13409       TREE_OPERAND (t, 1) = TREE_OPERAND (c, 1);
13410       /* Change the right part of the BINOP_EXPR */
13411       TREE_OPERAND (TREE_OPERAND (t, 1), 1) = TREE_OPERAND (c, 0);
13412     }
13413
13414   return t;
13415 }
13416
13417 /* Binary operators (15.16 up to 15.18). We return error_mark_node on
13418    errors but we modify NODE so that it contains the type computed
13419    according to the expression, when it's fixed. Otherwise, we write
13420    error_mark_node as the type. It allows us to further the analysis
13421    of remaining nodes and detects more errors in certain cases.  */
13422
13423 static tree
13424 patch_binop (tree node, tree wfl_op1, tree wfl_op2)
13425 {
13426   tree op1 = TREE_OPERAND (node, 0);
13427   tree op2 = TREE_OPERAND (node, 1);
13428   tree op1_type = TREE_TYPE (op1);
13429   tree op2_type = TREE_TYPE (op2);
13430   tree prom_type = NULL_TREE, cn;
13431   enum tree_code code = TREE_CODE (node);
13432
13433   /* If 1, tell the routine that we have to return error_mark_node
13434      after checking for the initialization of the RHS */
13435   int error_found = 0;
13436
13437   EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
13438
13439   /* If either op<n>_type are NULL, this might be early signs of an
13440      error situation, unless it's too early to tell (in case we're
13441      handling a `+', `==', `!=' or `instanceof'.) We want to set op<n>_type
13442      correctly so the error can be later on reported accurately. */
13443   if (! (code == PLUS_EXPR || code == NE_EXPR
13444          || code == EQ_EXPR || code == INSTANCEOF_EXPR))
13445     {
13446       tree n;
13447       if (! op1_type)
13448         {
13449           n = java_complete_tree (op1);
13450           op1_type = TREE_TYPE (n);
13451         }
13452       if (! op2_type)
13453         {
13454           n = java_complete_tree (op2);
13455           op2_type = TREE_TYPE (n);
13456         }
13457     }
13458
13459   switch (code)
13460     {
13461     /* 15.16 Multiplicative operators */
13462     case MULT_EXPR:             /* 15.16.1 Multiplication Operator * */
13463     case RDIV_EXPR:             /* 15.16.2 Division Operator / */
13464     case TRUNC_DIV_EXPR:        /* 15.16.2 Integral type Division Operator / */
13465     case TRUNC_MOD_EXPR:        /* 15.16.3 Remainder operator % */
13466       if (!JNUMERIC_TYPE_P (op1_type) || !JNUMERIC_TYPE_P (op2_type))
13467         {
13468           if (!JNUMERIC_TYPE_P (op1_type))
13469             ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13470           if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13471             ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13472           TREE_TYPE (node) = error_mark_node;
13473           error_found = 1;
13474           break;
13475         }
13476       prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13477
13478       /* Detect integral division by zero */
13479       if ((code == RDIV_EXPR || code == TRUNC_MOD_EXPR)
13480           && TREE_CODE (prom_type) == INTEGER_TYPE
13481           && (op2 == integer_zero_node || op2 == long_zero_node ||
13482               (TREE_CODE (op2) == INTEGER_CST &&
13483                ! TREE_INT_CST_LOW (op2)  && ! TREE_INT_CST_HIGH (op2))))
13484         {
13485           parse_warning_context
13486             (wfl_operator,
13487              "Evaluating this expression will result in an arithmetic exception being thrown");
13488           TREE_CONSTANT (node) = 0;
13489           TREE_INVARIANT (node) = 0;
13490         }
13491
13492       /* Change the division operator if necessary */
13493       if (code == RDIV_EXPR && TREE_CODE (prom_type) == INTEGER_TYPE)
13494         TREE_SET_CODE (node, TRUNC_DIV_EXPR);
13495
13496       /* Before divisions as is disappear, try to simplify and bail if
13497          applicable, otherwise we won't perform even simple
13498          simplifications like (1-1)/3. We can't do that with floating
13499          point number, folds can't handle them at this stage. */
13500       if (code == RDIV_EXPR && TREE_CONSTANT (op1) && TREE_CONSTANT (op2)
13501           && JINTEGRAL_TYPE_P (op1) && JINTEGRAL_TYPE_P (op2))
13502         {
13503           TREE_TYPE (node) = prom_type;
13504           node = fold (node);
13505           if (TREE_CODE (node) != code)
13506             return node;
13507         }
13508
13509       if (TREE_CODE (prom_type) == INTEGER_TYPE
13510           && flag_use_divide_subroutine
13511           && ! flag_emit_class_files
13512           && (code == RDIV_EXPR || code == TRUNC_MOD_EXPR))
13513         return build_java_soft_divmod (TREE_CODE (node), prom_type, op1, op2);
13514
13515       /* This one is more complicated. FLOATs are processed by a
13516          function call to soft_fmod. Duplicate the value of the
13517          COMPOUND_ASSIGN_P flag. */
13518       if (code == TRUNC_MOD_EXPR)
13519         {
13520           tree mod = build_java_binop (TRUNC_MOD_EXPR, prom_type, op1, op2);
13521           COMPOUND_ASSIGN_P (mod) = COMPOUND_ASSIGN_P (node);
13522           return mod;
13523         }
13524       break;
13525
13526     /* 15.17 Additive Operators */
13527     case PLUS_EXPR:             /* 15.17.1 String Concatenation Operator + */
13528
13529       /* Operation is valid if either one argument is a string
13530          constant, a String object or a StringBuffer crafted for the
13531          purpose of the a previous usage of the String concatenation
13532          operator */
13533
13534       if (TREE_CODE (op1) == STRING_CST
13535           || TREE_CODE (op2) == STRING_CST
13536           || JSTRING_TYPE_P (op1_type)
13537           || JSTRING_TYPE_P (op2_type)
13538           || IS_CRAFTED_STRING_BUFFER_P (op1)
13539           || IS_CRAFTED_STRING_BUFFER_P (op2))
13540         return build_string_concatenation (op1, op2);
13541
13542     case MINUS_EXPR:            /* 15.17.2 Additive Operators (+ and -) for
13543                                    Numeric Types */
13544       if (!JNUMERIC_TYPE_P (op1_type) || !JNUMERIC_TYPE_P (op2_type))
13545         {
13546           if (!JNUMERIC_TYPE_P (op1_type))
13547             ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13548           if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13549             ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13550           TREE_TYPE (node) = error_mark_node;
13551           error_found = 1;
13552           break;
13553         }
13554       prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13555       break;
13556
13557     /* 15.18 Shift Operators */
13558     case LSHIFT_EXPR:
13559     case RSHIFT_EXPR:
13560     case URSHIFT_EXPR:
13561       if (!JINTEGRAL_TYPE_P (op1_type) || !JINTEGRAL_TYPE_P (op2_type))
13562         {
13563           if (!JINTEGRAL_TYPE_P (op1_type))
13564             ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op1_type);
13565           else
13566             {
13567               if (JNUMERIC_TYPE_P (op2_type))
13568                 parse_error_context (wfl_operator,
13569                                      "Incompatible type for %qs. Explicit cast needed to convert shift distance from %qs to integral",
13570                                      operator_string (node),
13571                                      lang_printable_name (op2_type, 0));
13572               else
13573                 parse_error_context (wfl_operator,
13574                                      "Incompatible type for %qs. Can't convert shift distance from %qs to integral",
13575                                      operator_string (node),
13576                                      lang_printable_name (op2_type, 0));
13577             }
13578           TREE_TYPE (node) = error_mark_node;
13579           error_found = 1;
13580           break;
13581         }
13582
13583       /* Unary numeric promotion (5.6.1) is performed on each operand
13584          separately */
13585       op1 = do_unary_numeric_promotion (op1);
13586       op2 = do_unary_numeric_promotion (op2);
13587
13588       /* If the right hand side is of type `long', first cast it to
13589          `int'.  */
13590       if (TREE_TYPE (op2) == long_type_node)
13591         op2 = build1 (CONVERT_EXPR, int_type_node, op2);
13592
13593       /* The type of the shift expression is the type of the promoted
13594          type of the left-hand operand */
13595       prom_type = TREE_TYPE (op1);
13596
13597       /* Shift int only up to 0x1f and long up to 0x3f */
13598       if (prom_type == int_type_node)
13599         op2 = fold (build2 (BIT_AND_EXPR, int_type_node, op2,
13600                             build_int_cst (NULL_TREE, 0x1f)));
13601       else
13602         op2 = fold (build2 (BIT_AND_EXPR, int_type_node, op2,
13603                             build_int_cst (NULL_TREE, 0x3f)));
13604
13605       /* The >>> operator is a >> operating on unsigned quantities */
13606       if (code == URSHIFT_EXPR && ! flag_emit_class_files)
13607         {
13608           tree to_return;
13609           tree utype = java_unsigned_type (prom_type);
13610           op1 = convert (utype, op1);
13611           TREE_SET_CODE (node, RSHIFT_EXPR);
13612           TREE_OPERAND (node, 0) = op1;
13613           TREE_OPERAND (node, 1) = op2;
13614           TREE_TYPE (node) = utype;
13615           to_return = convert (prom_type, node);
13616           /* Copy the original value of the COMPOUND_ASSIGN_P flag */
13617           COMPOUND_ASSIGN_P (to_return) = COMPOUND_ASSIGN_P (node);
13618           TREE_SIDE_EFFECTS (to_return)
13619             = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13620           return to_return;
13621         }
13622       break;
13623
13624       /* 15.19.1 Type Comparison Operator instanceof */
13625     case INSTANCEOF_EXPR:
13626
13627       TREE_TYPE (node) = boolean_type_node;
13628
13629       /* OP1_TYPE might be NULL when OP1 is a string constant.  */
13630       if ((cn = patch_string (op1)))
13631         {
13632           op1 = cn;
13633           op1_type = TREE_TYPE (op1);
13634         }
13635       if (op1_type == NULL_TREE)
13636         abort ();
13637
13638       if (!(op2_type = resolve_type_during_patch (op2)))
13639         return error_mark_node;
13640
13641       /* The first operand must be a reference type or the null type */
13642       if (!JREFERENCE_TYPE_P (op1_type) && op1 != null_pointer_node)
13643         error_found = 1;        /* Error reported further below */
13644
13645       /* The second operand must be a reference type */
13646       if (!JREFERENCE_TYPE_P (op2_type))
13647         {
13648           SET_WFL_OPERATOR (wfl_operator, node, wfl_op2);
13649           parse_error_context
13650             (wfl_operator, "Invalid argument %qs for %<instanceof%>",
13651              lang_printable_name (op2_type, 0));
13652           error_found = 1;
13653         }
13654
13655       if (!error_found && valid_ref_assignconv_cast_p (op1_type, op2_type, 1))
13656         {
13657           /* If the first operand is null, the result is always false */
13658           if (op1 == null_pointer_node)
13659             return boolean_false_node;
13660           else if (flag_emit_class_files)
13661             {
13662               TREE_OPERAND (node, 1) = op2_type;
13663               TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op1);
13664               return node;
13665             }
13666           /* Otherwise we have to invoke instance of to figure it out */
13667           else
13668             return build_instanceof (op1, op2_type);
13669         }
13670       /* There is no way the expression operand can be an instance of
13671          the type operand. This is a compile time error. */
13672       else
13673         {
13674           char *t1 = xstrdup (lang_printable_name (op1_type, 0));
13675           SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
13676           parse_error_context
13677             (wfl_operator, "Impossible for %qs to be instance of %qs",
13678              t1, lang_printable_name (op2_type, 0));
13679           free (t1);
13680           error_found = 1;
13681         }
13682
13683       break;
13684
13685       /* 15.21 Bitwise and Logical Operators */
13686     case BIT_AND_EXPR:
13687     case BIT_XOR_EXPR:
13688     case BIT_IOR_EXPR:
13689       if (JINTEGRAL_TYPE_P (op1_type) && JINTEGRAL_TYPE_P (op2_type))
13690         /* Binary numeric promotion is performed on both operand and the
13691            expression retain that type */
13692         prom_type = binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13693
13694       else if (TREE_CODE (op1_type) == BOOLEAN_TYPE
13695                && TREE_CODE (op1_type) == BOOLEAN_TYPE)
13696         /* The type of the bitwise operator expression is BOOLEAN */
13697         prom_type = boolean_type_node;
13698       else
13699         {
13700           if (!JINTEGRAL_TYPE_P (op1_type))
13701             ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op1_type);
13702           if (!JINTEGRAL_TYPE_P (op2_type) && (op1_type != op2_type))
13703             ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op2_type);
13704           TREE_TYPE (node) = error_mark_node;
13705           error_found = 1;
13706           /* Insert a break here if adding thing before the switch's
13707              break for this case */
13708         }
13709       break;
13710
13711       /* 15.22 Conditional-And Operator */
13712     case TRUTH_ANDIF_EXPR:
13713       /* 15.23 Conditional-Or Operator */
13714     case TRUTH_ORIF_EXPR:
13715       /* Operands must be of BOOLEAN type */
13716       if (TREE_CODE (op1_type) != BOOLEAN_TYPE ||
13717           TREE_CODE (op2_type) != BOOLEAN_TYPE)
13718         {
13719           if (TREE_CODE (op1_type) != BOOLEAN_TYPE)
13720             ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op1_type);
13721           if (TREE_CODE (op2_type) != BOOLEAN_TYPE && (op1_type != op2_type))
13722             ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op2_type);
13723           TREE_TYPE (node) = boolean_type_node;
13724           error_found = 1;
13725           break;
13726         }
13727       else if (integer_zerop (op1))
13728         {
13729           return code == TRUTH_ANDIF_EXPR ? op1 : op2;
13730         }
13731       else if (integer_onep (op1))
13732         {
13733           return code == TRUTH_ANDIF_EXPR ? op2 : op1;
13734         }
13735       /* The type of the conditional operators is BOOLEAN */
13736       prom_type = boolean_type_node;
13737       break;
13738
13739       /* 15.19.1 Numerical Comparison Operators <, <=, >, >= */
13740     case LT_EXPR:
13741     case GT_EXPR:
13742     case LE_EXPR:
13743     case GE_EXPR:
13744       /* The type of each of the operands must be a primitive numeric
13745          type */
13746       if (!JNUMERIC_TYPE_P (op1_type) || ! JNUMERIC_TYPE_P (op2_type))
13747         {
13748           if (!JNUMERIC_TYPE_P (op1_type))
13749             ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op1_type);
13750           if (!JNUMERIC_TYPE_P (op2_type) && (op1_type != op2_type))
13751             ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op2_type);
13752           TREE_TYPE (node) = boolean_type_node;
13753           error_found = 1;
13754           break;
13755         }
13756       /* Binary numeric promotion is performed on the operands */
13757       binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13758       /* The type of the relation expression is always BOOLEAN */
13759       prom_type = boolean_type_node;
13760       break;
13761
13762       /* 15.20 Equality Operator */
13763     case EQ_EXPR:
13764     case NE_EXPR:
13765       /* It's time for us to patch the strings. */
13766       if ((cn = patch_string (op1)))
13767        {
13768          op1 = cn;
13769          op1_type = TREE_TYPE (op1);
13770        }
13771       if ((cn = patch_string (op2)))
13772        {
13773          op2 = cn;
13774          op2_type = TREE_TYPE (op2);
13775        }
13776
13777       /* 15.20.1 Numerical Equality Operators == and != */
13778       /* Binary numeric promotion is performed on the operands */
13779       if (JNUMERIC_TYPE_P (op1_type) && JNUMERIC_TYPE_P (op2_type))
13780         binary_numeric_promotion (op1_type, op2_type, &op1, &op2);
13781
13782       /* 15.20.2 Boolean Equality Operators == and != */
13783       else if (TREE_CODE (op1_type) == BOOLEAN_TYPE &&
13784           TREE_CODE (op2_type) == BOOLEAN_TYPE)
13785         ;                       /* Nothing to do here */
13786
13787       /* 15.20.3 Reference Equality Operators == and != */
13788       /* Types have to be either references or the null type. If
13789          they're references, it must be possible to convert either
13790          type to the other by casting conversion. */
13791       else if (op1 == null_pointer_node || op2 == null_pointer_node
13792                || (JREFERENCE_TYPE_P (op1_type) && JREFERENCE_TYPE_P (op2_type)
13793                    && (valid_ref_assignconv_cast_p (op1_type, op2_type, 1)
13794                        || valid_ref_assignconv_cast_p (op2_type,
13795                                                        op1_type, 1))))
13796         ;                       /* Nothing to do here */
13797
13798       /* Else we have an error figure what can't be converted into
13799          what and report the error */
13800       else
13801         {
13802           char *t1;
13803           t1 = xstrdup (lang_printable_name (op1_type, 0));
13804           parse_error_context
13805             (wfl_operator,
13806              "Incompatible type for %qs. Can't convert %qs to %qs",
13807              operator_string (node), t1,
13808              lang_printable_name (op2_type, 0));
13809           free (t1);
13810           TREE_TYPE (node) = boolean_type_node;
13811           error_found = 1;
13812           break;
13813         }
13814       prom_type = boolean_type_node;
13815       break;
13816     default:
13817       abort ();
13818     }
13819
13820   if (error_found)
13821     return error_mark_node;
13822
13823   TREE_OPERAND (node, 0) = op1;
13824   TREE_OPERAND (node, 1) = op2;
13825   TREE_TYPE (node) = prom_type;
13826   TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13827
13828   if (flag_emit_xref)
13829     return node;
13830
13831   /* fold does not respect side-effect order as required for Java but not C.
13832    * Also, it sometimes create SAVE_EXPRs which are bad when emitting
13833    * bytecode.
13834    */
13835   if (flag_emit_class_files ? (TREE_CONSTANT (op1) && TREE_CONSTANT (op2))
13836       : ! TREE_SIDE_EFFECTS (node))
13837     node = fold (node);
13838   return node;
13839 }
13840
13841 /* Concatenate the STRING_CST CSTE and STRING. When AFTER is a non
13842    zero value, the value of CSTE comes after the valude of STRING */
13843
13844 static tree
13845 do_merge_string_cste (tree cste, const char *string, int string_len, int after)
13846 {
13847   const char *old = TREE_STRING_POINTER (cste);
13848   int old_len = TREE_STRING_LENGTH (cste);
13849   int len = old_len + string_len;
13850   char *new = alloca (len+1);
13851
13852   if (after)
13853     {
13854       memcpy (new, string, string_len);
13855       memcpy (&new [string_len], old, old_len);
13856     }
13857   else
13858     {
13859       memcpy (new, old, old_len);
13860       memcpy (&new [old_len], string, string_len);
13861     }
13862   new [len] = '\0';
13863   return build_string (len, new);
13864 }
13865
13866 /* Tries to merge OP1 (a STRING_CST) and OP2 (if suitable). Return a
13867    new STRING_CST on success, NULL_TREE on failure.  */
13868
13869 static tree
13870 merge_string_cste (tree op1, tree op2, int after)
13871 {
13872   /* Handle two string constants right away.  */
13873   if (TREE_CODE (op2) == STRING_CST)
13874     return do_merge_string_cste (op1, TREE_STRING_POINTER (op2),
13875                                  TREE_STRING_LENGTH (op2), after);
13876
13877   /* Reasonable integer constant can be treated right away.  */
13878   if (TREE_CODE (op2) == INTEGER_CST && !TREE_CONSTANT_OVERFLOW (op2))
13879     {
13880       static const char *const boolean_true = "true";
13881       static const char *const boolean_false = "false";
13882       static const char *const null_pointer = "null";
13883       char ch[4];
13884       const char *string;
13885
13886       if (op2 == boolean_true_node)
13887         string = boolean_true;
13888       else if (op2 == boolean_false_node)
13889         string = boolean_false;
13890       else if (op2 == null_pointer_node
13891                || (integer_zerop (op2)
13892                    && TREE_CODE (TREE_TYPE (op2)) == POINTER_TYPE))
13893         /* FIXME: null is not a compile-time constant, so it is only safe to
13894            merge if the overall expression is non-constant. However, this
13895            code always merges without checking the overall expression.  */
13896         string = null_pointer;
13897       else if (TREE_TYPE (op2) == char_type_node)
13898         {
13899           /* Convert the character into UTF-8.  */
13900           unsigned int c = (unsigned int) TREE_INT_CST_LOW (op2);
13901           unsigned char *p = (unsigned char *) ch;
13902           if (0x01 <= c && c <= 0x7f)
13903             *p++ = (unsigned char) c;
13904           else if (c < 0x7ff)
13905             {
13906               *p++ = (unsigned char) (c >> 6 | 0xc0);
13907               *p++ = (unsigned char) ((c & 0x3f) | 0x80);
13908             }
13909           else
13910             {
13911               *p++ = (unsigned char) (c >> 12 | 0xe0);
13912               *p++ = (unsigned char) (((c >> 6) & 0x3f) | 0x80);
13913               *p++ = (unsigned char) ((c & 0x3f) | 0x80);
13914             }
13915           *p = '\0';
13916
13917           string = ch;
13918         }
13919       else
13920         string = string_convert_int_cst (op2);
13921
13922       return do_merge_string_cste (op1, string, strlen (string), after);
13923     }
13924   return NULL_TREE;
13925 }
13926
13927 /* Tries to statically concatenate OP1 and OP2 if possible. Either one
13928    has to be a STRING_CST and the other part must be a STRING_CST or a
13929    INTEGRAL constant. Return a new STRING_CST if the operation
13930    succeed, NULL_TREE otherwise.
13931
13932    If the case we want to optimize for space, we might want to return
13933    NULL_TREE for each invocation of this routine. FIXME */
13934
13935 static tree
13936 string_constant_concatenation (tree op1, tree op2)
13937 {
13938   if (TREE_CODE (op1) == STRING_CST || (TREE_CODE (op2) == STRING_CST))
13939     {
13940       tree string, rest;
13941       int invert;
13942
13943       string = (TREE_CODE (op1) == STRING_CST ? op1 : op2);
13944       rest   = (string == op1 ? op2 : op1);
13945       invert = (string == op1 ? 0 : 1 );
13946
13947       /* Walk REST, only if it looks reasonable */
13948       if (TREE_CODE (rest) != STRING_CST
13949           && !IS_CRAFTED_STRING_BUFFER_P (rest)
13950           && !JSTRING_TYPE_P (TREE_TYPE (rest))
13951           && TREE_CODE (rest) == EXPR_WITH_FILE_LOCATION)
13952         {
13953           rest = java_complete_tree (rest);
13954           if (rest == error_mark_node)
13955             return error_mark_node;
13956           rest = fold (rest);
13957         }
13958       return merge_string_cste (string, rest, invert);
13959     }
13960   return NULL_TREE;
13961 }
13962
13963 /* Implement the `+' operator. Does static optimization if possible,
13964    otherwise create (if necessary) and append elements to a
13965    StringBuffer. The StringBuffer will be carried around until it is
13966    used for a function call or an assignment. Then toString() will be
13967    called on it to turn it into a String object. */
13968
13969 static tree
13970 build_string_concatenation (tree op1, tree op2)
13971 {
13972   tree result;
13973   int side_effects = TREE_SIDE_EFFECTS (op1) | TREE_SIDE_EFFECTS (op2);
13974
13975   if (flag_emit_xref)
13976     return build2 (PLUS_EXPR, string_type_node, op1, op2);
13977
13978   /* Try to do some static optimization */
13979   if ((result = string_constant_concatenation (op1, op2)))
13980     return result;
13981
13982   /* Discard empty strings on either side of the expression */
13983   if (TREE_CODE (op1) == STRING_CST && TREE_STRING_LENGTH (op1) == 0)
13984     {
13985       op1 = op2;
13986       op2 = NULL_TREE;
13987     }
13988   else if (TREE_CODE (op2) == STRING_CST && TREE_STRING_LENGTH (op2) == 0)
13989     op2 = NULL_TREE;
13990
13991   /* If operands are string constant, turn then into object references */
13992   if (TREE_CODE (op1) == STRING_CST)
13993     op1 = patch_string_cst (op1);
13994   if (op2 && TREE_CODE (op2) == STRING_CST)
13995     op2 = patch_string_cst (op2);
13996
13997   /* If either one of the constant is null and the other non null
13998      operand is a String constant, return it. */
13999   if ((TREE_CODE (op1) == STRING_CST) && !op2)
14000     return op1;
14001
14002   /* If OP1 isn't already a StringBuffer, create and
14003      initialize a new one */
14004   if (!IS_CRAFTED_STRING_BUFFER_P (op1))
14005     {
14006       /* Two solutions here:
14007          1) OP1 is a constant string reference, we call new StringBuffer(OP1)
14008          2) OP1 is something else, we call new StringBuffer().append(OP1).  */
14009       if (TREE_CONSTANT (op1) && JSTRING_TYPE_P (TREE_TYPE (op1)))
14010         op1 = BUILD_STRING_BUFFER (op1);
14011       else
14012         {
14013           tree aNew = BUILD_STRING_BUFFER (NULL_TREE);
14014           op1 = make_qualified_primary (aNew, BUILD_APPEND (op1), 0);
14015         }
14016     }
14017
14018   if (op2)
14019     {
14020       /* OP1 is no longer the last node holding a crafted StringBuffer */
14021       IS_CRAFTED_STRING_BUFFER_P (op1) = 0;
14022       /* Create a node for `{new...,xxx}.append (op2)' */
14023       if (op2)
14024         op1 = make_qualified_primary (op1, BUILD_APPEND (op2), 0);
14025     }
14026
14027   /* Mark the last node holding a crafted StringBuffer */
14028   IS_CRAFTED_STRING_BUFFER_P (op1) = 1;
14029
14030   TREE_SIDE_EFFECTS (op1) = side_effects;
14031   return op1;
14032 }
14033
14034 /* Patch the string node NODE. NODE can be a STRING_CST of a crafted
14035    StringBuffer. If no string were found to be patched, return
14036    NULL. */
14037
14038 static tree
14039 patch_string (tree node)
14040 {
14041   if (node == error_mark_node)
14042     return error_mark_node;
14043   if (TREE_CODE (node) == STRING_CST)
14044     return patch_string_cst (node);
14045   else if (IS_CRAFTED_STRING_BUFFER_P (node))
14046     {
14047       int saved = ctxp->explicit_constructor_p;
14048       tree invoke = build_method_invocation (wfl_to_string, NULL_TREE);
14049       tree ret;
14050       /* Temporary disable forbid the use of `this'. */
14051       ctxp->explicit_constructor_p = 0;
14052       ret = java_complete_tree (make_qualified_primary (node, invoke, 0));
14053       /* String concatenation arguments must be evaluated in order too. */
14054       ret = force_evaluation_order (ret);
14055       /* Restore it at its previous value */
14056       ctxp->explicit_constructor_p = saved;
14057       return ret;
14058     }
14059   return NULL_TREE;
14060 }
14061
14062 /* Build the internal representation of a string constant.  */
14063
14064 static tree
14065 patch_string_cst (tree node)
14066 {
14067   int location;
14068   if (! flag_emit_class_files)
14069     {
14070       node = get_identifier (TREE_STRING_POINTER (node));
14071       location = alloc_name_constant (CONSTANT_String, node);
14072       node = build_ref_from_constant_pool (location);
14073     }
14074   TREE_CONSTANT (node) = 1;
14075   TREE_INVARIANT (node) = 1;
14076
14077   /* ??? Guessing that the class file code can't handle casts.  */
14078   if (! flag_emit_class_files)
14079     node = convert (string_ptr_type_node, node);
14080   else
14081     TREE_TYPE (node) = string_ptr_type_node;
14082
14083   return node;
14084 }
14085
14086 /* Build an incomplete unary operator expression. */
14087
14088 static tree
14089 build_unaryop (int op_token, int op_location, tree op1)
14090 {
14091   enum tree_code op;
14092   tree unaryop;
14093   switch (op_token)
14094     {
14095     case PLUS_TK: op = UNARY_PLUS_EXPR; break;
14096     case MINUS_TK: op = NEGATE_EXPR; break;
14097     case NEG_TK: op = TRUTH_NOT_EXPR; break;
14098     case NOT_TK: op = BIT_NOT_EXPR; break;
14099     default: abort ();
14100     }
14101
14102   unaryop = build1 (op, NULL_TREE, op1);
14103   TREE_SIDE_EFFECTS (unaryop) = 1;
14104   /* Store the location of the operator, for better error report. The
14105      string of the operator will be rebuild based on the OP value. */
14106   EXPR_WFL_LINECOL (unaryop) = op_location;
14107   return unaryop;
14108 }
14109
14110 /* Special case for the ++/-- operators, since they require an extra
14111    argument to build, which is set to NULL and patched
14112    later. IS_POST_P is 1 if the operator, 0 otherwise.  */
14113
14114 static tree
14115 build_incdec (int op_token, int op_location, tree op1, int is_post_p)
14116 {
14117   static const enum tree_code lookup [2][2] =
14118     {
14119       { PREDECREMENT_EXPR, PREINCREMENT_EXPR, },
14120       { POSTDECREMENT_EXPR, POSTINCREMENT_EXPR, },
14121     };
14122   tree node = build2 (lookup [is_post_p][(op_token - DECR_TK)],
14123                       NULL_TREE, op1, NULL_TREE);
14124   TREE_SIDE_EFFECTS (node) = 1;
14125   /* Store the location of the operator, for better error report. The
14126      string of the operator will be rebuild based on the OP value. */
14127   EXPR_WFL_LINECOL (node) = op_location;
14128   return node;
14129 }
14130
14131 /* Build an incomplete cast operator, based on the use of the
14132    CONVERT_EXPR. Note that TREE_TYPE of the constructed node is
14133    set. java_complete_tree is trained to walk a CONVERT_EXPR even
14134    though its type is already set.  */
14135
14136 static tree
14137 build_cast (int location, tree type, tree exp)
14138 {
14139   tree node = build1 (CONVERT_EXPR, type, exp);
14140   EXPR_WFL_LINECOL (node) = location;
14141   return node;
14142 }
14143
14144 /* Build an incomplete class reference operator.  */
14145 static tree
14146 build_incomplete_class_ref (int location, tree class_name)
14147 {
14148   tree node = build1 (CLASS_LITERAL, NULL_TREE, class_name);
14149   tree class_decl = GET_CPC ();
14150   tree this_class = TREE_TYPE (class_decl);
14151
14152   /* Generate the synthetic static method `class$'.  (Previously we
14153      deferred this, causing different method tables to be emitted
14154      for native code and bytecode.)  */
14155   if (!TYPE_DOT_CLASS (this_class)
14156       && !JPRIMITIVE_TYPE_P (class_name)
14157       && !(TREE_CODE (class_name) == VOID_TYPE))
14158     {
14159       tree cpc_list = GET_CPC_LIST();
14160       tree cpc = cpc_list;
14161       tree target_class;
14162
14163       /* For inner classes, add a 'class$' method to their outermost
14164          context, creating it if necessary.  */
14165       
14166       while (GET_NEXT_ENCLOSING_CPC(cpc))
14167         cpc = GET_NEXT_ENCLOSING_CPC(cpc);
14168       class_decl = TREE_VALUE (cpc);
14169
14170       target_class = TREE_TYPE (class_decl);
14171
14172       if (CLASS_INTERFACE (TYPE_NAME (target_class)))
14173         {
14174           /* For interfaces, adding a static 'class$' method directly 
14175              is illegal.  So create an inner class to contain the new
14176              method.  Empirically this matches the behavior of javac.  */
14177           tree t, inner;
14178           /* We want the generated inner class inside the outermost class. */
14179           GET_CPC_LIST() = cpc;
14180           t = build_wfl_node (DECL_NAME (TYPE_NAME (object_type_node)));
14181           inner = create_anonymous_class (t);
14182           target_class = TREE_TYPE (inner);
14183           end_class_declaration (1);
14184           GET_CPC_LIST() = cpc_list;
14185         }
14186
14187       if (TYPE_DOT_CLASS (target_class) == NULL_TREE)
14188         build_dot_class_method (target_class);
14189
14190       if (this_class != target_class)
14191         TYPE_DOT_CLASS (this_class) = TYPE_DOT_CLASS (target_class);
14192     }
14193
14194   EXPR_WFL_LINECOL (node) = location;
14195   return node;
14196 }
14197
14198 /* Complete an incomplete class reference operator.  */
14199 static tree
14200 patch_incomplete_class_ref (tree node)
14201 {
14202   tree type = TREE_OPERAND (node, 0);
14203   tree ref_type;
14204
14205   if (!(ref_type = resolve_type_during_patch (type)))
14206     return error_mark_node;
14207
14208   /* If we're not emitting class files and we know ref_type is a
14209      compiled class, build a direct reference.  */
14210   if ((! flag_emit_class_files && is_compiled_class (ref_type))
14211       || JPRIMITIVE_TYPE_P (ref_type)
14212       || TREE_CODE (ref_type) == VOID_TYPE)
14213     {
14214       tree dot = build_class_ref (ref_type);
14215       /* A class referenced by `foo.class' is initialized.  */
14216       if (!flag_emit_class_files)
14217        dot = build_class_init (ref_type, dot);
14218       return java_complete_tree (dot);
14219     }
14220
14221   /* If we're emitting class files and we have to deal with non
14222      primitive types, we invoke the synthetic static method `class$'.  */
14223   ref_type = build_dot_class_method_invocation (current_class, ref_type);
14224   return java_complete_tree (ref_type);
14225 }
14226
14227 /* 15.14 Unary operators. We return error_mark_node in case of error,
14228    but preserve the type of NODE if the type is fixed.  */
14229
14230 static tree
14231 patch_unaryop (tree node, tree wfl_op)
14232 {
14233   tree op = TREE_OPERAND (node, 0);
14234   tree op_type = TREE_TYPE (op);
14235   tree prom_type = NULL_TREE, value, decl;
14236   int outer_field_flag = 0;
14237   int code = TREE_CODE (node);
14238   int error_found = 0;
14239
14240   EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14241
14242   switch (code)
14243     {
14244       /* 15.13.2 Postfix Increment Operator ++ */
14245     case POSTINCREMENT_EXPR:
14246       /* 15.13.3 Postfix Increment Operator -- */
14247     case POSTDECREMENT_EXPR:
14248       /* 15.14.1 Prefix Increment Operator ++ */
14249     case PREINCREMENT_EXPR:
14250       /* 15.14.2 Prefix Decrement Operator -- */
14251     case PREDECREMENT_EXPR:
14252       op = decl = strip_out_static_field_access_decl (op);
14253       outer_field_flag = outer_field_expanded_access_p (op, NULL, NULL, NULL);
14254       /* We might be trying to change an outer field accessed using
14255          access method. */
14256       if (outer_field_flag)
14257         {
14258           /* Retrieve the decl of the field we're trying to access. We
14259              do that by first retrieving the function we would call to
14260              access the field. It has been already verified that this
14261              field isn't final */
14262           if (flag_emit_class_files)
14263             decl = TREE_OPERAND (op, 0);
14264           else
14265             decl = TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (op, 0), 0), 0);
14266           decl = DECL_FUNCTION_ACCESS_DECL (decl);
14267         }
14268       /* We really should have a JAVA_ARRAY_EXPR to avoid this */
14269       else if (!JDECL_P (decl)
14270           && TREE_CODE (decl) != COMPONENT_REF
14271           && !(flag_emit_class_files && TREE_CODE (decl) == ARRAY_REF)
14272           && TREE_CODE (decl) != INDIRECT_REF
14273           && !(TREE_CODE (decl) == COMPOUND_EXPR
14274                && TREE_OPERAND (decl, 1)
14275                && (TREE_CODE (TREE_OPERAND (decl, 1)) == INDIRECT_REF)))
14276         {
14277           TREE_TYPE (node) = error_mark_node;
14278           error_found = 1;
14279         }
14280
14281       /* From now on, we know that op if a variable and that it has a
14282          valid wfl. We use wfl_op to locate errors related to the
14283          ++/-- operand. */
14284       if (!JNUMERIC_TYPE_P (op_type))
14285         {
14286           parse_error_context
14287             (wfl_op, "Invalid argument type %qs to %qs",
14288              lang_printable_name (op_type, 0), operator_string (node));
14289           TREE_TYPE (node) = error_mark_node;
14290           error_found = 1;
14291         }
14292       else
14293         {
14294           /* Before the addition, binary numeric promotion is performed on
14295              both operands, if really necessary */
14296           if (JINTEGRAL_TYPE_P (op_type))
14297             {
14298               value = build_int_cst (op_type, 1);
14299               TREE_TYPE (node) = op_type;
14300             }
14301           else
14302             {
14303               value = build_int_cst (NULL_TREE, 1);
14304               TREE_TYPE (node) =
14305                 binary_numeric_promotion (op_type,
14306                                           TREE_TYPE (value), &op, &value);
14307             }
14308
14309           /* We remember we might be accessing an outer field */
14310           if (outer_field_flag)
14311             {
14312               /* We re-generate an access to the field */
14313               value = build2 (PLUS_EXPR, TREE_TYPE (op),
14314                               build_outer_field_access (wfl_op, decl), value);
14315
14316               /* And we patch the original access$() into a write
14317                  with plus_op as a rhs */
14318               return outer_field_access_fix (node, op, value);
14319             }
14320
14321           /* And write back into the node. */
14322           TREE_OPERAND (node, 0) = op;
14323           TREE_OPERAND (node, 1) = value;
14324           /* Convert the overall back into its original type, if
14325              necessary, and return */
14326           if (JINTEGRAL_TYPE_P (op_type))
14327             return fold (node);
14328           else
14329             return fold (convert (op_type, node));
14330         }
14331       break;
14332
14333       /* 15.14.3 Unary Plus Operator + */
14334     case UNARY_PLUS_EXPR:
14335       /* 15.14.4 Unary Minus Operator - */
14336     case NEGATE_EXPR:
14337       if (!JNUMERIC_TYPE_P (op_type))
14338         {
14339           ERROR_CANT_CONVERT_TO_NUMERIC (wfl_operator, node, op_type);
14340           TREE_TYPE (node) = error_mark_node;
14341           error_found = 1;
14342         }
14343       /* Unary numeric promotion is performed on operand */
14344       else
14345         {
14346           op = do_unary_numeric_promotion (op);
14347           prom_type = TREE_TYPE (op);
14348           if (code == UNARY_PLUS_EXPR)
14349             return fold (op);
14350         }
14351       break;
14352
14353       /* 15.14.5 Bitwise Complement Operator ~ */
14354     case BIT_NOT_EXPR:
14355       if (!JINTEGRAL_TYPE_P (op_type))
14356         {
14357           ERROR_CAST_NEEDED_TO_INTEGRAL (wfl_operator, node, op_type);
14358           TREE_TYPE (node) = error_mark_node;
14359           error_found = 1;
14360         }
14361       else
14362         {
14363           op = do_unary_numeric_promotion (op);
14364           prom_type = TREE_TYPE (op);
14365         }
14366       break;
14367
14368       /* 15.14.6 Logical Complement Operator ! */
14369     case TRUTH_NOT_EXPR:
14370       if (TREE_CODE (op_type) != BOOLEAN_TYPE)
14371         {
14372           ERROR_CANT_CONVERT_TO_BOOLEAN (wfl_operator, node, op_type);
14373           /* But the type is known. We will report an error if further
14374              attempt of a assignment is made with this rhs */
14375           TREE_TYPE (node) = boolean_type_node;
14376           error_found = 1;
14377         }
14378       else
14379         prom_type = boolean_type_node;
14380       break;
14381
14382       /* 15.15 Cast Expression */
14383     case CONVERT_EXPR:
14384       value = patch_cast (node, wfl_operator);
14385       if (value == error_mark_node)
14386         {
14387           /* If this cast is part of an assignment, we tell the code
14388              that deals with it not to complain about a mismatch,
14389              because things have been cast, anyways */
14390           TREE_TYPE (node) = error_mark_node;
14391           error_found = 1;
14392         }
14393       else
14394         {
14395           value = fold (value);
14396           return value;
14397         }
14398       break;
14399     }
14400
14401   if (error_found)
14402     return error_mark_node;
14403
14404   /* There are cases where node has been replaced by something else
14405      and we don't end up returning here: UNARY_PLUS_EXPR,
14406      CONVERT_EXPR, {POST,PRE}{INCR,DECR}EMENT_EXPR. */
14407   TREE_OPERAND (node, 0) = fold (op);
14408   TREE_TYPE (node) = prom_type;
14409   TREE_SIDE_EFFECTS (node) = TREE_SIDE_EFFECTS (op);
14410   return fold (node);
14411 }
14412
14413 /* Generic type resolution that sometimes takes place during node
14414    patching. Returned the resolved type or generate an error
14415    message. Return the resolved type or NULL_TREE.  */
14416
14417 static tree
14418 resolve_type_during_patch (tree type)
14419 {
14420   if (unresolved_type_p (type, NULL))
14421     {
14422       tree type_decl = resolve_and_layout (EXPR_WFL_NODE (type), type);
14423       if (!type_decl)
14424         {
14425           parse_error_context (type,
14426                                "Class %qs not found in type declaration",
14427                                IDENTIFIER_POINTER (EXPR_WFL_NODE (type)));
14428           return NULL_TREE;
14429         }
14430
14431       check_deprecation (type, type_decl);
14432
14433       return TREE_TYPE (type_decl);
14434     }
14435   return type;
14436 }
14437
14438 /* 5.5 Casting Conversion. error_mark_node is returned if an error is
14439    found. Otherwise NODE or something meant to replace it is returned.  */
14440
14441 static tree
14442 patch_cast (tree node, tree wfl_op)
14443 {
14444   tree op = TREE_OPERAND (node, 0);
14445   tree cast_type = TREE_TYPE (node);
14446   tree patched, op_type;
14447   char *t1;
14448
14449   /* Some string patching might be necessary at this stage */
14450   if ((patched = patch_string (op)))
14451     TREE_OPERAND (node, 0) = op = patched;
14452   op_type = TREE_TYPE (op);
14453
14454   /* First resolve OP_TYPE if unresolved */
14455   if (!(cast_type = resolve_type_during_patch (cast_type)))
14456     return error_mark_node;
14457
14458   /* Check on cast that are proven correct at compile time */
14459   if (JNUMERIC_TYPE_P (cast_type) && JNUMERIC_TYPE_P (op_type))
14460     {
14461       /* Same type */
14462       if (cast_type == op_type)
14463         return node;
14464
14465       /* A narrowing conversion from a floating-point number to an
14466          integral type requires special handling (5.1.3).  */
14467       if (JFLOAT_TYPE_P (op_type) && JINTEGRAL_TYPE_P (cast_type))
14468         if (cast_type != long_type_node)
14469           op = convert (integer_type_node, op);
14470
14471       /* Try widening/narrowing conversion.  Potentially, things need
14472          to be worked out in gcc so we implement the extreme cases
14473          correctly.  fold_convert() needs to be fixed.  */
14474       return convert (cast_type, op);
14475     }
14476
14477   /* It's also valid to cast a boolean into a boolean */
14478   if (op_type == boolean_type_node && cast_type == boolean_type_node)
14479     return node;
14480
14481   /* null can be casted to references */
14482   if (op == null_pointer_node && JREFERENCE_TYPE_P (cast_type))
14483     return build_null_of_type (cast_type);
14484
14485   /* The remaining legal casts involve conversion between reference
14486      types. Check for their compile time correctness. */
14487   if (JREFERENCE_TYPE_P (op_type) && JREFERENCE_TYPE_P (cast_type)
14488       && valid_ref_assignconv_cast_p (op_type, cast_type, 1))
14489     {
14490       TREE_TYPE (node) = promote_type (cast_type);
14491       /* Now, the case can be determined correct at compile time if
14492          OP_TYPE can be converted into CAST_TYPE by assignment
14493          conversion (5.2) */
14494
14495       if (valid_ref_assignconv_cast_p (op_type, cast_type, 0))
14496         {
14497           TREE_SET_CODE (node, NOP_EXPR);
14498           return node;
14499         }
14500
14501       if (flag_emit_class_files)
14502         {
14503           TREE_SET_CODE (node, CONVERT_EXPR);
14504           return node;
14505         }
14506
14507       /* The cast requires a run-time check */
14508       return build3 (CALL_EXPR, promote_type (cast_type),
14509                      build_address_of (soft_checkcast_node),
14510                      tree_cons (NULL_TREE, build_class_ref (cast_type),
14511                                 build_tree_list (NULL_TREE, op)),
14512                      NULL_TREE);
14513     }
14514
14515   /* Any other casts are proven incorrect at compile time */
14516   t1 = xstrdup (lang_printable_name (op_type, 0));
14517   parse_error_context (wfl_op, "Invalid cast from %qs to %qs",
14518                        t1, lang_printable_name (cast_type, 0));
14519   free (t1);
14520   return error_mark_node;
14521 }
14522
14523 /* Build a null constant and give it the type TYPE.  */
14524
14525 static tree
14526 build_null_of_type (tree type)
14527 {
14528   tree node = build_int_cst (promote_type (type), 0);
14529   return node;
14530 }
14531
14532 /* Build an ARRAY_REF incomplete tree node. Note that operand 1 isn't
14533    a list of indices. */
14534 static tree
14535 build_array_ref (int location, tree array, tree index)
14536 {
14537   tree node = build4 (ARRAY_REF, NULL_TREE, array, index,
14538                       NULL_TREE, NULL_TREE);
14539   EXPR_WFL_LINECOL (node) = location;
14540   return node;
14541 }
14542
14543 /* 15.12 Array Access Expression */
14544
14545 static tree
14546 patch_array_ref (tree node)
14547 {
14548   tree array = TREE_OPERAND (node, 0);
14549   tree array_type  = TREE_TYPE (array);
14550   tree index = TREE_OPERAND (node, 1);
14551   tree index_type = TREE_TYPE (index);
14552   int error_found = 0;
14553
14554   EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14555
14556   if (TREE_CODE (array_type) == POINTER_TYPE)
14557     array_type = TREE_TYPE (array_type);
14558
14559   /* The array reference must be an array */
14560   if (!TYPE_ARRAY_P (array_type))
14561     {
14562       parse_error_context
14563         (wfl_operator,
14564          "%<[]%> can only be applied to arrays. It can't be applied to %qs",
14565          lang_printable_name (array_type, 0));
14566       TREE_TYPE (node) = error_mark_node;
14567       error_found = 1;
14568     }
14569
14570   /* The array index undergoes unary numeric promotion. The promoted
14571      type must be int */
14572   index = do_unary_numeric_promotion (index);
14573   if (TREE_TYPE (index) != int_type_node)
14574     {
14575       if (valid_cast_to_p (index_type, int_type_node))
14576         parse_error_context (wfl_operator,
14577    "Incompatible type for %<[]%>. Explicit cast needed to convert %qs to %<int%>",
14578                              lang_printable_name (index_type, 0));
14579       else
14580         parse_error_context (wfl_operator,
14581           "Incompatible type for %<[]%>. Can't convert %qs to %<int%>",
14582                              lang_printable_name (index_type, 0));
14583       TREE_TYPE (node) = error_mark_node;
14584       error_found = 1;
14585     }
14586
14587   if (error_found)
14588     return error_mark_node;
14589
14590   array_type = TYPE_ARRAY_ELEMENT (array_type);
14591
14592   if (flag_emit_class_files || flag_emit_xref)
14593     {
14594       TREE_OPERAND (node, 0) = array;
14595       TREE_OPERAND (node, 1) = index;
14596     }
14597   else
14598     node = build_java_arrayaccess (array, array_type, index);
14599   TREE_TYPE (node) = array_type;
14600   return node;
14601 }
14602
14603 /* 15.9 Array Creation Expressions */
14604
14605 static tree
14606 build_newarray_node (tree type, tree dims, int extra_dims)
14607 {
14608   tree node = build3 (NEW_ARRAY_EXPR, NULL_TREE, type,
14609                       nreverse (dims),
14610                       build_int_cst (NULL_TREE, extra_dims));
14611   return node;
14612 }
14613
14614 static tree
14615 patch_newarray (tree node)
14616 {
14617   tree type = TREE_OPERAND (node, 0);
14618   tree dims = TREE_OPERAND (node, 1);
14619   tree cdim, array_type;
14620   int error_found = 0;
14621   int ndims = 0;
14622   int xdims = TREE_INT_CST_LOW (TREE_OPERAND (node, 2));
14623
14624   /* Dimension types are verified. It's better for the types to be
14625      verified in order. */
14626   for (cdim = dims, ndims = 0; cdim; cdim = TREE_CHAIN (cdim), ndims++ )
14627     {
14628       int dim_error = 0;
14629       tree dim = TREE_VALUE (cdim);
14630
14631       /* Dim might have been saved during its evaluation */
14632       dim = (TREE_CODE (dim) == SAVE_EXPR ? TREE_OPERAND (dim, 0) : dim);
14633
14634       /* The type of each specified dimension must be an integral type. */
14635       if (!JINTEGRAL_TYPE_P (TREE_TYPE (dim)))
14636         dim_error = 1;
14637
14638       /* Each expression undergoes an unary numeric promotion (5.6.1) and the
14639          promoted type must be int. */
14640       else
14641         {
14642           dim = do_unary_numeric_promotion (dim);
14643           if (TREE_TYPE (dim) != int_type_node)
14644             dim_error = 1;
14645         }
14646
14647       /* Report errors on types here */
14648       if (dim_error)
14649         {
14650           parse_error_context
14651             (TREE_PURPOSE (cdim),
14652              "Incompatible type for dimension in array creation expression. %s convert %qs to %<int%>",
14653              (valid_cast_to_p (TREE_TYPE (dim), int_type_node) ?
14654               "Explicit cast needed to" : "Can't"),
14655              lang_printable_name (TREE_TYPE (dim), 0));
14656           error_found = 1;
14657         }
14658
14659       TREE_PURPOSE (cdim) = NULL_TREE;
14660     }
14661
14662   /* Resolve array base type if unresolved */
14663   if (!(type = resolve_type_during_patch (type)))
14664     error_found = 1;
14665
14666   if (error_found)
14667     {
14668       /* We don't want further evaluation of this bogus array creation
14669          operation */
14670       TREE_TYPE (node) = error_mark_node;
14671       return error_mark_node;
14672     }
14673
14674   /* Set array_type to the actual (promoted) array type of the result. */
14675   if (TREE_CODE (type) == RECORD_TYPE)
14676     type = build_pointer_type (type);
14677   while (--xdims >= 0)
14678     {
14679       type = promote_type (build_java_array_type (type, -1));
14680     }
14681   dims = nreverse (dims);
14682   array_type = type;
14683   for (cdim = dims; cdim; cdim = TREE_CHAIN (cdim))
14684     {
14685       type = array_type;
14686       array_type
14687         = build_java_array_type (type,
14688                                  TREE_CODE (cdim) == INTEGER_CST
14689                                  ? (HOST_WIDE_INT) TREE_INT_CST_LOW (cdim)
14690                                  : -1);
14691       array_type = promote_type (array_type);
14692     }
14693   dims = nreverse (dims);
14694
14695   /* The node is transformed into a function call. Things are done
14696      differently according to the number of dimensions. If the number
14697      of dimension is equal to 1, then the nature of the base type
14698      (primitive or not) matters. */
14699   if (ndims == 1)
14700     return build_new_array (type, TREE_VALUE (dims));
14701
14702   /* Can't reuse what's already written in expr.c because it uses the
14703      JVM stack representation. Provide a build_multianewarray. FIXME */
14704   return build3 (CALL_EXPR, array_type,
14705                  build_address_of (soft_multianewarray_node),
14706                  tree_cons (NULL_TREE,
14707                             build_class_ref (TREE_TYPE (array_type)),
14708                             tree_cons (NULL_TREE,
14709                                        build_int_cst (NULL_TREE, ndims),
14710                                        dims)),
14711                  NULL_TREE);
14712 }
14713
14714 /* 10.6 Array initializer.  */
14715
14716 /* Build a wfl for array element that don't have one, so we can
14717    pin-point errors.  */
14718
14719 static tree
14720 maybe_build_array_element_wfl (tree node)
14721 {
14722   if (TREE_CODE (node) != EXPR_WITH_FILE_LOCATION)
14723     {
14724       /* FIXME - old code used "prev_lc.line" and "elc.prev_col */
14725       return build_expr_wfl (NULL_TREE,
14726 #ifdef USE_MAPPED_LOCATION
14727                              input_location
14728 #else
14729                              ctxp->filename,
14730                              ctxp->lexer->token_start.line,
14731                              ctxp->lexer->token_start.col
14732 #endif
14733                              );
14734     }
14735   else
14736     return NULL_TREE;
14737 }
14738
14739 /* Build a NEW_ARRAY_INIT that features a CONSTRUCTOR node. This makes
14740    identification of initialized arrays easier to detect during walk
14741    and expansion.  */
14742
14743 static tree
14744 build_new_array_init (int location, tree values)
14745 {
14746   tree constructor = build_constructor (NULL_TREE, values);
14747   tree to_return = build1 (NEW_ARRAY_INIT, NULL_TREE, constructor);
14748   EXPR_WFL_LINECOL (to_return) = location;
14749   return to_return;
14750 }
14751
14752 /* Expand a NEW_ARRAY_INIT node. Return error_mark_node if an error
14753    occurred.  Otherwise return NODE after having set its type
14754    appropriately.  */
14755
14756 static tree
14757 patch_new_array_init (tree type, tree node)
14758 {
14759   int error_seen = 0;
14760   tree current, element_type;
14761   HOST_WIDE_INT length;
14762   int all_constant = 1;
14763   tree init = TREE_OPERAND (node, 0);
14764
14765   if (TREE_CODE (type) != POINTER_TYPE || ! TYPE_ARRAY_P (TREE_TYPE (type)))
14766     {
14767       parse_error_context (node,
14768                            "Invalid array initializer for non-array type %qs",
14769                            lang_printable_name (type, 1));
14770       return error_mark_node;
14771     }
14772   type = TREE_TYPE (type);
14773   element_type = TYPE_ARRAY_ELEMENT (type);
14774
14775   CONSTRUCTOR_ELTS (init) = nreverse (CONSTRUCTOR_ELTS (init));
14776
14777   for (length = 0, current = CONSTRUCTOR_ELTS (init);
14778        current;  length++, current = TREE_CHAIN (current))
14779     {
14780       tree elt = TREE_VALUE (current);
14781       if (elt == NULL_TREE || TREE_CODE (elt) != NEW_ARRAY_INIT)
14782         {
14783           error_seen |= array_constructor_check_entry (element_type, current);
14784           elt = TREE_VALUE (current);
14785           /* When compiling to native code, STRING_CST is converted to
14786              INDIRECT_REF, but still with a TREE_CONSTANT flag. */
14787           if (! TREE_CONSTANT (elt) || TREE_CODE (elt) == INDIRECT_REF)
14788             all_constant = 0;
14789         }
14790       else
14791         {
14792           TREE_VALUE (current) = patch_new_array_init (element_type, elt);
14793           TREE_PURPOSE (current) = NULL_TREE;
14794           all_constant = 0;
14795         }
14796       if (elt && TREE_CODE (elt) == TREE_LIST
14797           && TREE_VALUE (elt) == error_mark_node)
14798         error_seen = 1;
14799     }
14800
14801   if (error_seen)
14802     return error_mark_node;
14803
14804   /* Create a new type. We can't reuse the one we have here by
14805      patching its dimension because it originally is of dimension -1
14806      hence reused by gcc. This would prevent triangular arrays. */
14807   type = build_java_array_type (element_type, length);
14808   TREE_TYPE (init) = TREE_TYPE (TREE_CHAIN (TREE_CHAIN (TYPE_FIELDS (type))));
14809   TREE_TYPE (node) = promote_type (type);
14810   TREE_CONSTANT (init) = all_constant;
14811   TREE_INVARIANT (init) = all_constant;
14812   TREE_CONSTANT (node) = all_constant;
14813   TREE_INVARIANT (node) = all_constant;
14814   return node;
14815 }
14816
14817 /* Verify that one entry of the initializer element list can be
14818    assigned to the array base type. Report 1 if an error occurred, 0
14819    otherwise.  */
14820
14821 static int
14822 array_constructor_check_entry (tree type, tree entry)
14823 {
14824   char *array_type_string = NULL;       /* For error reports */
14825   tree value, type_value, new_value, wfl_value, patched;
14826   int error_seen = 0;
14827
14828   new_value = NULL_TREE;
14829   wfl_value = TREE_VALUE (entry);
14830
14831   value = java_complete_tree (TREE_VALUE (entry));
14832   /* patch_string return error_mark_node if arg is error_mark_node */
14833   if ((patched = patch_string (value)))
14834     value = patched;
14835   if (value == error_mark_node)
14836     return 1;
14837
14838   type_value = TREE_TYPE (value);
14839
14840   /* At anytime, try_builtin_assignconv can report a warning on
14841      constant overflow during narrowing. */
14842   SET_WFL_OPERATOR (wfl_operator, TREE_PURPOSE (entry), wfl_value);
14843   new_value = try_builtin_assignconv (wfl_operator, type, value);
14844   if (!new_value && (new_value = try_reference_assignconv (type, value)))
14845     type_value = promote_type (type);
14846
14847   /* Check and report errors */
14848   if (!new_value)
14849     {
14850       const char *const msg = (!valid_cast_to_p (type_value, type) ?
14851                    "Can't" : "Explicit cast needed to");
14852       if (!array_type_string)
14853         array_type_string = xstrdup (lang_printable_name (type, 1));
14854       parse_error_context
14855         (wfl_operator, "Incompatible type for array. %s convert %qs to %qs",
14856          msg, lang_printable_name (type_value, 1), array_type_string);
14857       error_seen = 1;
14858     }
14859
14860   if (new_value)
14861     TREE_VALUE (entry) = new_value;
14862
14863   if (array_type_string)
14864     free (array_type_string);
14865
14866   TREE_PURPOSE (entry) = NULL_TREE;
14867   return error_seen;
14868 }
14869
14870 static tree
14871 build_this (int location)
14872 {
14873   tree node = build_wfl_node (this_identifier_node);
14874   TREE_SET_CODE (node, THIS_EXPR);
14875   EXPR_WFL_LINECOL (node) = location;
14876   return node;
14877 }
14878
14879 /* 14.15 The return statement. It builds a modify expression that
14880    assigns the returned value to the RESULT_DECL that hold the value
14881    to be returned. */
14882
14883 static tree
14884 build_return (int location, tree op)
14885 {
14886   tree node = build1 (RETURN_EXPR, NULL_TREE, op);
14887   EXPR_WFL_LINECOL (node) = location;
14888   node = build_debugable_stmt (location, node);
14889   return node;
14890 }
14891
14892 static tree
14893 patch_return (tree node)
14894 {
14895   tree return_exp = TREE_OPERAND (node, 0);
14896   tree meth = current_function_decl;
14897   tree mtype = TREE_TYPE (TREE_TYPE (current_function_decl));
14898   int error_found = 0;
14899
14900   TREE_TYPE (node) = error_mark_node;
14901   EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14902
14903   /* It's invalid to have a return value within a function that is
14904      declared with the keyword void or that is a constructor */
14905   if (return_exp && (mtype == void_type_node || DECL_CONSTRUCTOR_P (meth)))
14906     error_found = 1;
14907
14908   /* It's invalid to use a return statement in a static block */
14909   if (DECL_CLINIT_P (current_function_decl))
14910     error_found = 1;
14911
14912   /* It's invalid to have a no return value within a function that
14913      isn't declared with the keyword `void' */
14914   if (!return_exp && (mtype != void_type_node && !DECL_CONSTRUCTOR_P (meth)))
14915     error_found = 2;
14916
14917   if (DECL_INSTINIT_P (current_function_decl))
14918     error_found = 1;
14919
14920   if (error_found)
14921     {
14922       if (DECL_INSTINIT_P (current_function_decl))
14923         parse_error_context (wfl_operator,
14924                              "%<return%> inside instance initializer");
14925
14926       else if (DECL_CLINIT_P (current_function_decl))
14927         parse_error_context (wfl_operator,
14928                              "%<return%> inside static initializer");
14929
14930       else if (!DECL_CONSTRUCTOR_P (meth))
14931         {
14932           char *t = xstrdup (lang_printable_name (mtype, 0));
14933           parse_error_context (wfl_operator,
14934                                "%<return%> with%s value from %<%s %s%>",
14935                                (error_found == 1 ? "" : "out"),
14936                                t, lang_printable_name (meth, 2));
14937           free (t);
14938         }
14939       else
14940         parse_error_context (wfl_operator,
14941                              "%<return%> with value from constructor %qs",
14942                              lang_printable_name (meth, 2));
14943       return error_mark_node;
14944     }
14945
14946   /* If we have a return_exp, build a modify expression and expand
14947      it. Note: at that point, the assignment is declared valid, but we
14948      may want to carry some more hacks */
14949   if (return_exp)
14950     {
14951       tree exp = java_complete_tree (return_exp);
14952       tree modify, patched;
14953
14954       if ((patched = patch_string (exp)))
14955         exp = patched;
14956
14957       modify = build2 (MODIFY_EXPR, NULL_TREE, DECL_RESULT (meth), exp);
14958       EXPR_WFL_LINECOL (modify) = EXPR_WFL_LINECOL (node);
14959       modify = java_complete_tree (modify);
14960
14961       if (modify != error_mark_node)
14962         {
14963           TREE_SIDE_EFFECTS (modify) = 1;
14964           TREE_OPERAND (node, 0) = modify;
14965         }
14966       else
14967         return error_mark_node;
14968     }
14969   TREE_TYPE (node) = void_type_node;
14970   TREE_SIDE_EFFECTS (node) = 1;
14971   return node;
14972 }
14973
14974 /* 14.8 The if Statement */
14975
14976 static tree
14977 build_if_else_statement (int location, tree expression, tree if_body,
14978                          tree else_body)
14979 {
14980   tree node;
14981   if (!else_body)
14982     else_body = build_java_empty_stmt ();
14983   node = build3 (COND_EXPR, NULL_TREE, expression, if_body, else_body);
14984   EXPR_WFL_LINECOL (node) = location;
14985   node = build_debugable_stmt (location, node);
14986   return node;
14987 }
14988
14989 static tree
14990 patch_if_else_statement (tree node)
14991 {
14992   tree expression = TREE_OPERAND (node, 0);
14993   int can_complete_normally
14994     = (CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1))
14995        | CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 2)));
14996
14997   TREE_TYPE (node) = error_mark_node;
14998   EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
14999
15000   /* The type of expression must be boolean */
15001   if (TREE_TYPE (expression) != boolean_type_node
15002       && TREE_TYPE (expression) != promoted_boolean_type_node)
15003     {
15004       parse_error_context
15005         (wfl_operator,
15006          "Incompatible type for %<if%>. Can't convert %qs to %<boolean%>",
15007          lang_printable_name (TREE_TYPE (expression), 0));
15008       return error_mark_node;
15009     }
15010
15011   TREE_TYPE (node) = void_type_node;
15012   TREE_SIDE_EFFECTS (node) = 1;
15013   CAN_COMPLETE_NORMALLY (node) = can_complete_normally;
15014   return node;
15015 }
15016
15017 /* 14.6 Labeled Statements */
15018
15019 /* Action taken when a labeled statement is parsed. a new
15020    LABELED_BLOCK_EXPR is created. No statement is attached to the
15021    label, yet.  LABEL can be NULL_TREE for artificially-generated blocks. */
15022
15023 static tree
15024 build_labeled_block (int location, tree label)
15025 {
15026   tree label_name ;
15027   tree label_decl, node;
15028   if (label == NULL_TREE || label == continue_identifier_node)
15029     label_name = label;
15030   else
15031     {
15032       label_name = merge_qualified_name (label_id, label);
15033       /* Issue an error if we try to reuse a label that was previously
15034          declared */
15035       if (IDENTIFIER_LOCAL_VALUE (label_name))
15036         {
15037           EXPR_WFL_LINECOL (wfl_operator) = location;
15038           parse_error_context (wfl_operator,
15039             "Declaration of %qs shadows a previous label declaration",
15040                                IDENTIFIER_POINTER (label));
15041           EXPR_WFL_LINECOL (wfl_operator) =
15042             EXPR_WFL_LINECOL (IDENTIFIER_LOCAL_VALUE (label_name));
15043           parse_error_context (wfl_operator,
15044             "This is the location of the previous declaration of label %qs",
15045                                IDENTIFIER_POINTER (label));
15046           java_error_count--;
15047         }
15048     }
15049
15050   label_decl = create_label_decl (label_name);
15051   node = build2 (LABELED_BLOCK_EXPR, NULL_TREE, label_decl, NULL_TREE);
15052   EXPR_WFL_LINECOL (node) = location;
15053   TREE_SIDE_EFFECTS (node) = 1;
15054   return node;
15055 }
15056
15057 /* A labeled statement LBE is attached a statement.  */
15058
15059 static tree
15060 finish_labeled_statement (tree lbe, /* Labeled block expr */
15061                           tree statement)
15062 {
15063   /* In anyways, tie the loop to its statement */
15064   LABELED_BLOCK_BODY (lbe) = statement;
15065   pop_labeled_block ();
15066   POP_LABELED_BLOCK ();
15067   return lbe;
15068 }
15069
15070 /* 14.10, 14.11, 14.12 Loop Statements */
15071
15072 /* Create an empty LOOP_EXPR and make it the last in the nested loop
15073    list. */
15074
15075 static tree
15076 build_new_loop (tree loop_body)
15077 {
15078   tree loop = build1 (LOOP_EXPR, NULL_TREE, loop_body);
15079   TREE_SIDE_EFFECTS (loop) = 1;
15080   PUSH_LOOP (loop);
15081   return loop;
15082 }
15083
15084 /* Create a loop body according to the following structure:
15085      COMPOUND_EXPR
15086        COMPOUND_EXPR            (loop main body)
15087          EXIT_EXPR              (this order is for while/for loops.
15088          LABELED_BLOCK_EXPR      the order is reversed for do loops)
15089            LABEL_DECL           (a continue occurring here branches at the
15090            BODY                  end of this labeled block)
15091        INCREMENT                (if any)
15092
15093   REVERSED, if nonzero, tells that the loop condition expr comes
15094   after the body, like in the do-while loop.
15095
15096   To obtain a loop, the loop body structure described above is
15097   encapsulated within a LOOP_EXPR surrounded by a LABELED_BLOCK_EXPR:
15098
15099    LABELED_BLOCK_EXPR
15100      LABEL_DECL                   (use this label to exit the loop)
15101      LOOP_EXPR
15102        <structure described above> */
15103
15104 static tree
15105 build_loop_body (int location, tree condition, int reversed)
15106 {
15107   tree first, second, body;
15108
15109   condition = build1 (EXIT_EXPR, NULL_TREE, condition); /* Force walk */
15110   EXPR_WFL_LINECOL (condition) = location; /* For accurate error report */
15111   condition = build_debugable_stmt (location, condition);
15112   TREE_SIDE_EFFECTS (condition) = 1;
15113
15114   body = build_labeled_block (0, continue_identifier_node);
15115   first = (reversed ? body : condition);
15116   second = (reversed ? condition : body);
15117   return build2 (COMPOUND_EXPR, NULL_TREE,
15118                  build2 (COMPOUND_EXPR, NULL_TREE, first, second),
15119                  build_java_empty_stmt ());
15120 }
15121
15122 /* Install CONDITION (if any) and loop BODY (using REVERSED to tell
15123    their order) on the current loop. Unlink the current loop from the
15124    loop list.  */
15125
15126 static tree
15127 finish_loop_body (int location, tree condition, tree body, int reversed)
15128 {
15129   tree to_return = ctxp->current_loop;
15130   tree loop_body = LOOP_EXPR_BODY (to_return);
15131   if (condition)
15132     {
15133       tree cnode = LOOP_EXPR_BODY_CONDITION_EXPR (loop_body, reversed);
15134       /* We wrapped the EXIT_EXPR around a WFL so we can debug it.
15135          The real EXIT_EXPR is one operand further. */
15136       EXPR_WFL_LINECOL (cnode) = location;
15137       if (TREE_CODE (cnode) == EXPR_WITH_FILE_LOCATION)
15138         {
15139           cnode = EXPR_WFL_NODE (cnode);
15140           /* This one is for accurate error reports */
15141           EXPR_WFL_LINECOL (cnode) = location;
15142         }
15143       TREE_OPERAND (cnode, 0) = condition;
15144     }
15145   LOOP_EXPR_BODY_BODY_EXPR (loop_body, reversed) = body;
15146   POP_LOOP ();
15147   return to_return;
15148 }
15149
15150 /* Tailored version of finish_loop_body for FOR loops, when FOR
15151    loops feature the condition part */
15152
15153 static tree
15154 finish_for_loop (int location, tree condition, tree update, tree body)
15155 {
15156   /* Put the condition and the loop body in place */
15157   tree loop = finish_loop_body (location, condition, body, 0);
15158   /* LOOP is the current loop which has been now popped of the loop
15159      stack.  Mark the update block as reachable and install it.  We do
15160      this because the (current interpretation of the) JLS requires
15161      that the update expression be considered reachable even if the
15162      for loop's body doesn't complete normally.  */
15163   if (update != NULL_TREE && !IS_EMPTY_STMT (update))
15164     {
15165       tree up2 = update;
15166       if (TREE_CODE (up2) == EXPR_WITH_FILE_LOCATION)
15167         up2 = EXPR_WFL_NODE (up2);
15168       /* It is possible for the update expression to be an
15169          EXPR_WFL_NODE wrapping nothing.  */
15170       if (up2 != NULL_TREE && !IS_EMPTY_STMT (up2))
15171         {
15172           /* Try to detect constraint violations.  These would be
15173              programming errors somewhere.  */
15174           if (! EXPR_P (up2) || TREE_CODE (up2) == LOOP_EXPR)
15175             abort ();
15176           SUPPRESS_UNREACHABLE_ERROR (up2) = 1;
15177         }
15178     }
15179   LOOP_EXPR_BODY_UPDATE_BLOCK (LOOP_EXPR_BODY (loop)) = update;
15180   return loop;
15181 }
15182
15183 /* Try to find the loop a block might be related to. This comprises
15184    the case where the LOOP_EXPR is found as the second operand of a
15185    COMPOUND_EXPR, because the loop happens to have an initialization
15186    part, then expressed as the first operand of the COMPOUND_EXPR. If
15187    the search finds something, 1 is returned. Otherwise, 0 is
15188    returned. The search is assumed to start from a
15189    LABELED_BLOCK_EXPR's block.  */
15190
15191 static tree
15192 search_loop (tree statement)
15193 {
15194   if (TREE_CODE (statement) == LOOP_EXPR)
15195     return statement;
15196
15197   if (TREE_CODE (statement) == BLOCK)
15198     statement = BLOCK_SUBBLOCKS (statement);
15199   else
15200     return NULL_TREE;
15201
15202   if (statement && TREE_CODE (statement) == COMPOUND_EXPR)
15203     while (statement && TREE_CODE (statement) == COMPOUND_EXPR)
15204       statement = TREE_OPERAND (statement, 1);
15205
15206   return (TREE_CODE (statement) == LOOP_EXPR
15207           && FOR_LOOP_P (statement) ? statement : NULL_TREE);
15208 }
15209
15210 /* Return 1 if LOOP can be found in the labeled block BLOCK. 0 is
15211    returned otherwise.  */
15212
15213 static int
15214 labeled_block_contains_loop_p (tree block, tree loop)
15215 {
15216   if (!block)
15217     return 0;
15218
15219   if (LABELED_BLOCK_BODY (block) == loop)
15220     return 1;
15221
15222   if (FOR_LOOP_P (loop) && search_loop (LABELED_BLOCK_BODY (block)) == loop)
15223     return 1;
15224
15225   return 0;
15226 }
15227
15228 /* If the loop isn't surrounded by a labeled statement, create one and
15229    insert LOOP as its body.  */
15230
15231 static tree
15232 patch_loop_statement (tree loop)
15233 {
15234   tree loop_label;
15235
15236   TREE_TYPE (loop) = void_type_node;
15237   if (labeled_block_contains_loop_p (ctxp->current_labeled_block, loop))
15238     return loop;
15239
15240   loop_label = build_labeled_block (0, NULL_TREE);
15241   /* LOOP is an EXPR node, so it should have a valid EXPR_WFL_LINECOL
15242      that LOOP_LABEL could enquire about, for a better accuracy. FIXME */
15243   LABELED_BLOCK_BODY (loop_label) = loop;
15244   PUSH_LABELED_BLOCK (loop_label);
15245   return loop_label;
15246 }
15247
15248 /* 14.13, 14.14: break and continue Statements */
15249
15250 /* Build a break or a continue statement. a null NAME indicates an
15251    unlabeled break/continue statement.  */
15252
15253 static tree
15254 build_bc_statement (int location, int is_break, tree name)
15255 {
15256   tree break_continue, label_block_expr = NULL_TREE;
15257
15258   if (name)
15259     {
15260       if (!(label_block_expr = IDENTIFIER_LOCAL_VALUE
15261             (merge_qualified_name (label_id, EXPR_WFL_NODE (name)))))
15262         /* Null means that we don't have a target for this named
15263            break/continue. In this case, we make the target to be the
15264            label name, so that the error can be reported accurately in
15265            patch_bc_statement. */
15266         label_block_expr = EXPR_WFL_NODE (name);
15267     }
15268   /* Unlabeled break/continue will be handled during the
15269      break/continue patch operation */
15270   break_continue = build1 (EXIT_BLOCK_EXPR, NULL_TREE, label_block_expr);
15271
15272   IS_BREAK_STMT_P (break_continue) = is_break;
15273   TREE_SIDE_EFFECTS (break_continue) = 1;
15274   EXPR_WFL_LINECOL (break_continue) = location;
15275   break_continue = build_debugable_stmt (location, break_continue);
15276   return break_continue;
15277 }
15278
15279 /* Verification of a break/continue statement. */
15280
15281 static tree
15282 patch_bc_statement (tree node)
15283 {
15284   tree bc_label = EXIT_BLOCK_LABELED_BLOCK (node), target_stmt;
15285   tree labeled_block = ctxp->current_labeled_block;
15286   EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15287
15288   /* Having an identifier here means that the target is unknown. */
15289   if (bc_label != NULL_TREE && TREE_CODE (bc_label) == IDENTIFIER_NODE)
15290     {
15291       parse_error_context (wfl_operator, "No label definition found for %qs",
15292                            IDENTIFIER_POINTER (bc_label));
15293       return error_mark_node;
15294     }
15295   if (! IS_BREAK_STMT_P (node))
15296     {
15297       /* It's a continue statement. */
15298       for (;; labeled_block = TREE_CHAIN (labeled_block))
15299         {
15300           if (labeled_block == NULL_TREE)
15301             {
15302               if (bc_label == NULL_TREE)
15303                 parse_error_context (wfl_operator,
15304                                      "%<continue%> must be in loop");
15305               else
15306                 parse_error_context
15307                   (wfl_operator, "continue label %qs does not name a loop",
15308                    IDENTIFIER_POINTER (bc_label));
15309               return error_mark_node;
15310             }
15311           if ((DECL_NAME (LABELED_BLOCK_LABEL (labeled_block))
15312                == continue_identifier_node)
15313               && (bc_label == NULL_TREE
15314                   || TREE_CHAIN (labeled_block) == bc_label))
15315             {
15316               bc_label = labeled_block;
15317               break;
15318             }
15319         }
15320     }
15321   else if (!bc_label)
15322     {
15323       for (;; labeled_block = TREE_CHAIN (labeled_block))
15324         {
15325           if (labeled_block == NULL_TREE)
15326             {
15327               parse_error_context (wfl_operator,
15328                                      "%<break%> must be in loop or switch");
15329               return error_mark_node;
15330             }
15331           target_stmt = LABELED_BLOCK_BODY (labeled_block);
15332           if (TREE_CODE (target_stmt) == SWITCH_EXPR
15333               || search_loop (target_stmt))
15334             {
15335               bc_label = labeled_block;
15336               break;
15337             }
15338         }
15339     }
15340
15341   EXIT_BLOCK_LABELED_BLOCK (node) = bc_label;
15342   CAN_COMPLETE_NORMALLY (bc_label) = 1;
15343
15344   /* Our break/continue don't return values. */
15345   TREE_TYPE (node) = void_type_node;
15346   /* Encapsulate the break within a compound statement so that it's
15347      expanded all the times by expand_expr (and not clobbered
15348      sometimes, like after a if statement) */
15349   node = add_stmt_to_compound (NULL_TREE, void_type_node, node);
15350   TREE_SIDE_EFFECTS (node) = 1;
15351   return node;
15352 }
15353
15354 /* Process the exit expression belonging to a loop. Its type must be
15355    boolean.  */
15356
15357 static tree
15358 patch_exit_expr (tree node)
15359 {
15360   tree expression = TREE_OPERAND (node, 0);
15361   TREE_TYPE (node) = error_mark_node;
15362   EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15363
15364   /* The type of expression must be boolean */
15365   if (TREE_TYPE (expression) != boolean_type_node)
15366     {
15367       parse_error_context
15368         (wfl_operator,
15369     "Incompatible type for loop conditional. Can't convert %qs to %<boolean%>",
15370          lang_printable_name (TREE_TYPE (expression), 0));
15371       return error_mark_node;
15372     }
15373   /* Now we know things are allright, invert the condition, fold and
15374      return */
15375   TREE_OPERAND (node, 0) =
15376     fold (build1 (TRUTH_NOT_EXPR, boolean_type_node, expression));
15377
15378   if (! integer_zerop (TREE_OPERAND (node, 0))
15379       && ctxp->current_loop != NULL_TREE
15380       && TREE_CODE (ctxp->current_loop) == LOOP_EXPR)
15381     CAN_COMPLETE_NORMALLY (ctxp->current_loop) = 1;
15382   if (! integer_onep (TREE_OPERAND (node, 0)))
15383     CAN_COMPLETE_NORMALLY (node) = 1;
15384
15385
15386   TREE_TYPE (node) = void_type_node;
15387   return node;
15388 }
15389
15390 /* 14.9 Switch statement */
15391
15392 static tree
15393 patch_switch_statement (tree node)
15394 {
15395   tree se = TREE_OPERAND (node, 0), se_type;
15396   tree save, iter;
15397
15398   /* Complete the switch expression */
15399   se = TREE_OPERAND (node, 0) = java_complete_tree (se);
15400   se_type = TREE_TYPE (se);
15401   /* The type of the switch expression must be char, byte, short or
15402      int */
15403   if (! JINTEGRAL_TYPE_P (se_type) || se_type == long_type_node)
15404     {
15405       EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (node);
15406       parse_error_context (wfl_operator,
15407           "Incompatible type for %<switch%>. Can't convert %qs to %<int%>",
15408                            lang_printable_name (se_type, 0));
15409       /* This is what java_complete_tree will check */
15410       TREE_OPERAND (node, 0) = error_mark_node;
15411       return error_mark_node;
15412     }
15413
15414   /* Save and restore the outer case label list.  */
15415   save = case_label_list;
15416   case_label_list = NULL_TREE;
15417
15418   TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1));
15419
15420   /* See if we've found a duplicate label.  We can't leave this until
15421      code generation, because in `--syntax-only' and `-C' modes we
15422      don't do ordinary code generation.  */
15423   for (iter = case_label_list; iter != NULL_TREE; iter = TREE_CHAIN (iter))
15424     {
15425       HOST_WIDE_INT val = TREE_INT_CST_LOW (TREE_VALUE (iter));
15426       tree subiter;
15427       for (subiter = TREE_CHAIN (iter);
15428            subiter != NULL_TREE;
15429            subiter = TREE_CHAIN (subiter))
15430         {
15431           HOST_WIDE_INT subval = TREE_INT_CST_LOW (TREE_VALUE (subiter));
15432           if (val == subval)
15433             {
15434               EXPR_WFL_LINECOL (wfl_operator)
15435                 = EXPR_WFL_LINECOL (TREE_PURPOSE (iter));
15436               /* The case_label_list is in reverse order, so print the
15437                  outer label first.  */
15438               parse_error_context (wfl_operator, "duplicate case label: %<"
15439                                    HOST_WIDE_INT_PRINT_DEC "%>", subval);
15440               EXPR_WFL_LINECOL (wfl_operator)
15441                 = EXPR_WFL_LINECOL (TREE_PURPOSE (subiter));
15442               parse_error_context (wfl_operator, "original label is here");
15443
15444               break;
15445             }
15446         }
15447     }
15448
15449   case_label_list = save;
15450
15451   /* Ready to return */
15452   if (TREE_CODE (TREE_OPERAND (node, 1)) == ERROR_MARK)
15453     {
15454       TREE_TYPE (node) = error_mark_node;
15455       return error_mark_node;
15456     }
15457   TREE_TYPE (node) = void_type_node;
15458   TREE_SIDE_EFFECTS (node) = 1;
15459   CAN_COMPLETE_NORMALLY (node)
15460     = CAN_COMPLETE_NORMALLY (TREE_OPERAND (node, 1))
15461       || ! SWITCH_HAS_DEFAULT (node);
15462   return node;
15463 }
15464
15465 /* Assertions.  */
15466
15467 /* Build an assertion expression for `assert CONDITION : VALUE'; VALUE
15468    might be NULL_TREE.  */
15469 static tree
15470 build_assertion (
15471 #ifdef USE_MAPPED_LOCATION
15472                  source_location location,
15473 #else
15474                  int location,
15475 #endif
15476                  tree condition, tree value)
15477 {
15478   tree node;
15479   tree klass = GET_CPC ();
15480
15481   if (! enable_assertions (klass))
15482     {
15483       condition = build2 (TRUTH_ANDIF_EXPR, NULL_TREE,
15484                           boolean_false_node, condition);
15485       if (value == NULL_TREE)
15486         value = build_java_empty_stmt ();
15487       return build_if_else_statement (location, condition,
15488                                       value, NULL_TREE);
15489     }
15490
15491   if (! CLASS_USES_ASSERTIONS (klass))
15492     {
15493       tree field, classdollar, id, call;
15494       tree class_type = TREE_TYPE (klass);
15495
15496       field = add_field (class_type,
15497                          get_identifier ("$assertionsDisabled"),
15498                          boolean_type_node,
15499                          ACC_PRIVATE | ACC_STATIC | ACC_FINAL);
15500       MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (field);
15501       FIELD_SYNTHETIC (field) = 1;
15502
15503       classdollar = build_incomplete_class_ref (location, class_type);
15504
15505       /* Call CLASS.desiredAssertionStatus().  */
15506       id = build_wfl_node (get_identifier ("desiredAssertionStatus"));
15507       call = build3 (CALL_EXPR, NULL_TREE, id, NULL_TREE, NULL_TREE);
15508       call = make_qualified_primary (classdollar, call, location);
15509       TREE_SIDE_EFFECTS (call) = 1;
15510
15511       /* Invert to obtain !CLASS.desiredAssertionStatus().  This may
15512          seem odd, but we do it to generate code identical to that of
15513          the JDK.  */
15514       call = build1 (TRUTH_NOT_EXPR, NULL_TREE, call);
15515       TREE_SIDE_EFFECTS (call) = 1;
15516       DECL_INITIAL (field) = call;
15517
15518       /* Record the initializer in the initializer statement list.  */
15519       call = build2 (MODIFY_EXPR, NULL_TREE, field, call);
15520       TREE_CHAIN (call) = CPC_STATIC_INITIALIZER_STMT (ctxp);
15521       SET_CPC_STATIC_INITIALIZER_STMT (ctxp, call);
15522       MODIFY_EXPR_FROM_INITIALIZATION_P (call) = 1;
15523
15524       CLASS_USES_ASSERTIONS (klass) = 1;
15525     }
15526
15527   if (value != NULL_TREE)
15528     value = tree_cons (NULL_TREE, value, NULL_TREE);
15529
15530   node = build_wfl_node (get_identifier ("java"));
15531   node = make_qualified_name (node, build_wfl_node (get_identifier ("lang")),
15532                               location);
15533   node = make_qualified_name (node, build_wfl_node (get_identifier ("AssertionError")),
15534                               location);
15535
15536   node = build3 (NEW_CLASS_EXPR, NULL_TREE, node, value, NULL_TREE);
15537   TREE_SIDE_EFFECTS (node) = 1;
15538   /* It is too early to use BUILD_THROW.  */
15539   node = build1 (THROW_EXPR, NULL_TREE, node);
15540   TREE_SIDE_EFFECTS (node) = 1;
15541
15542   /* We invert the condition; if we just put NODE as the `else' part
15543      then we generate weird-looking bytecode.  */
15544   condition = build1 (TRUTH_NOT_EXPR, NULL_TREE, condition);
15545   /* Check $assertionsDisabled.  */
15546   condition
15547     = build2 (TRUTH_ANDIF_EXPR, NULL_TREE,
15548               build1 (TRUTH_NOT_EXPR, NULL_TREE,
15549                       build_wfl_node (get_identifier ("$assertionsDisabled"))),
15550               condition);
15551   node = build_if_else_statement (location, condition, node, NULL_TREE);
15552   return node;
15553 }
15554
15555 /* 14.18 The try/catch statements */
15556
15557 /* Encapsulate TRY_STMTS' in a try catch sequence. The catch clause
15558    catches TYPE and executes CATCH_STMTS.  */
15559
15560 static tree
15561 encapsulate_with_try_catch (int location, tree type_or_name, tree try_stmts,
15562                             tree catch_stmts)
15563 {
15564   tree try_block, catch_clause_param, catch_block, catch;
15565
15566   /* First build a try block */
15567   try_block = build_expr_block (try_stmts, NULL_TREE);
15568
15569   /* Build a catch block: we need a catch clause parameter */
15570   if (TREE_CODE (type_or_name) == EXPR_WITH_FILE_LOCATION)
15571     {
15572       tree catch_type = obtain_incomplete_type (type_or_name);
15573       jdep *dep;
15574       catch_clause_param = build_decl (VAR_DECL, wpv_id, catch_type);
15575       register_incomplete_type (JDEP_VARIABLE, type_or_name,
15576                                 catch_clause_param, catch_type);
15577       dep = CLASSD_LAST (ctxp->classd_list);
15578       JDEP_GET_PATCH (dep) = &TREE_TYPE (catch_clause_param);
15579     }
15580   else
15581     catch_clause_param = build_decl (VAR_DECL, wpv_id,
15582                                      build_pointer_type (type_or_name));
15583
15584   /* And a block */
15585   catch_block = build_expr_block (NULL_TREE, catch_clause_param);
15586
15587   /* Initialize the variable and store in the block */
15588   catch = build2 (MODIFY_EXPR, NULL_TREE, catch_clause_param,
15589                   build0 (JAVA_EXC_OBJ_EXPR, ptr_type_node));
15590   add_stmt_to_block (catch_block, NULL_TREE, catch);
15591
15592   /* Add the catch statements */
15593   add_stmt_to_block (catch_block, NULL_TREE, catch_stmts);
15594
15595   /* Now we can build a JAVA_CATCH_EXPR */
15596   catch_block = build1 (JAVA_CATCH_EXPR, NULL_TREE, catch_block);
15597
15598   return build_try_statement (location, try_block, catch_block);
15599 }
15600
15601 static tree
15602 build_try_statement (int location, tree try_block, tree catches)
15603 {
15604   tree node = build2 (TRY_EXPR, NULL_TREE, try_block, catches);
15605   EXPR_WFL_LINECOL (node) = location;
15606   return node;
15607 }
15608
15609 static tree
15610 build_try_finally_statement (int location, tree try_block, tree finally)
15611 {
15612   tree node = build2 (TRY_FINALLY_EXPR, NULL_TREE, try_block, finally);
15613   EXPR_WFL_LINECOL (node) = location;
15614   return node;
15615 }
15616
15617 static tree
15618 patch_try_statement (tree node)
15619 {
15620   int error_found = 0;
15621   tree try = TREE_OPERAND (node, 0);
15622   /* Exception handlers are considered in left to right order */
15623   tree catch = nreverse (TREE_OPERAND (node, 1));
15624   tree current, caught_type_list = NULL_TREE;
15625
15626   /* Check catch clauses, if any. Every time we find an error, we try
15627      to process the next catch clause. We process the catch clause before
15628      the try block so that when processing the try block we can check thrown
15629      exceptions against the caught type list. */
15630   for (current = catch; current; current = TREE_CHAIN (current))
15631     {
15632       tree carg_decl, carg_type;
15633       tree sub_current, catch_block, catch_clause;
15634       int unreachable;
15635
15636       /* At this point, the structure of the catch clause is
15637            JAVA_CATCH_EXPR              (catch node)
15638              BLOCK              (with the decl of the parameter)
15639                COMPOUND_EXPR
15640                  MODIFY_EXPR   (assignment of the catch parameter)
15641                  BLOCK          (catch clause block)
15642        */
15643       catch_clause = TREE_OPERAND (current, 0);
15644       carg_decl = BLOCK_EXPR_DECLS (catch_clause);
15645       carg_type = TREE_TYPE (TREE_TYPE (carg_decl));
15646
15647       /* Catch clauses can't have more than one parameter declared,
15648          but it's already enforced by the grammar. Make sure that the
15649          only parameter of the clause statement in of class Throwable
15650          or a subclass of Throwable, but that was done earlier. The
15651          catch clause parameter type has also been resolved. */
15652
15653       /* Just make sure that the catch clause parameter type inherits
15654          from java.lang.Throwable */
15655       if (!inherits_from_p (carg_type, throwable_type_node))
15656         {
15657           EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (current);
15658           parse_error_context (wfl_operator,
15659                                "Can't catch class %qs. Catch clause parameter type must be a subclass of class %<java.lang.Throwable%>",
15660                                lang_printable_name (carg_type, 0));
15661           error_found = 1;
15662           continue;
15663         }
15664
15665       /* Partial check for unreachable catch statement: The catch
15666          clause is reachable iff is no earlier catch block A in
15667          the try statement such that the type of the catch
15668          clause's parameter is the same as or a subclass of the
15669          type of A's parameter */
15670       unreachable = 0;
15671       for (sub_current = catch;
15672            sub_current != current; sub_current = TREE_CHAIN (sub_current))
15673         {
15674           tree sub_catch_clause, decl;
15675           sub_catch_clause = TREE_OPERAND (sub_current, 0);
15676           decl = BLOCK_EXPR_DECLS (sub_catch_clause);
15677
15678           if (inherits_from_p (carg_type, TREE_TYPE (TREE_TYPE (decl))))
15679             {
15680               EXPR_WFL_LINECOL (wfl_operator) = EXPR_WFL_LINECOL (current);
15681               parse_error_context
15682                 (wfl_operator,
15683                  "%<catch%> not reached because of the catch clause at line %d",
15684                  EXPR_WFL_LINENO (sub_current));
15685               unreachable = error_found = 1;
15686               break;
15687             }
15688         }
15689       /* Complete the catch clause block */
15690       catch_block = java_complete_tree (TREE_OPERAND (current, 0));
15691       if (catch_block == error_mark_node)
15692         {
15693           error_found = 1;
15694           continue;
15695         }
15696       if (CAN_COMPLETE_NORMALLY (catch_block))
15697         CAN_COMPLETE_NORMALLY (node) = 1;
15698       TREE_OPERAND (current, 0) = catch_block;
15699
15700       if (unreachable)
15701         continue;
15702
15703       /* Things to do here: the exception must be thrown */
15704
15705       /* Link this type to the caught type list */
15706       caught_type_list = tree_cons (NULL_TREE, carg_type, caught_type_list);
15707     }
15708
15709   PUSH_EXCEPTIONS (caught_type_list);
15710   if ((try = java_complete_tree (try)) == error_mark_node)
15711     error_found = 1;
15712   if (CAN_COMPLETE_NORMALLY (try))
15713     CAN_COMPLETE_NORMALLY (node) = 1;
15714   POP_EXCEPTIONS ();
15715
15716   /* Verification ends here */
15717   if (error_found)
15718     return error_mark_node;
15719
15720   TREE_OPERAND (node, 0) = try;
15721   TREE_OPERAND (node, 1) = catch;
15722   TREE_TYPE (node) = void_type_node;
15723   return node;
15724 }
15725
15726 /* 14.17 The synchronized Statement */
15727
15728 static tree
15729 patch_synchronized_statement (tree node, tree wfl_op1)
15730 {
15731   tree expr = java_complete_tree (TREE_OPERAND (node, 0));
15732   tree block = TREE_OPERAND (node, 1);
15733
15734   tree tmp, enter, exit, expr_decl, assignment;
15735
15736   if (expr == error_mark_node)
15737     {
15738       block = java_complete_tree (block);
15739       return expr;
15740     }
15741
15742   /* We might be trying to synchronize on a STRING_CST */
15743   if ((tmp = patch_string (expr)))
15744     expr = tmp;
15745
15746   /* The TYPE of expr must be a reference type */
15747   if (!JREFERENCE_TYPE_P (TREE_TYPE (expr)))
15748     {
15749       SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15750       parse_error_context (wfl_operator, "Incompatible type for %<synchronized%>. Can't convert %qs to %<java.lang.Object%>",
15751                            lang_printable_name (TREE_TYPE (expr), 0));
15752       return error_mark_node;
15753     }
15754
15755   if (flag_emit_xref)
15756     {
15757       TREE_OPERAND (node, 0) = expr;
15758       TREE_OPERAND (node, 1) = java_complete_tree (block);
15759       CAN_COMPLETE_NORMALLY (node) = 1;
15760       return node;
15761     }
15762
15763   /* Generate a try-finally for the synchronized statement, except
15764      that the handler that catches all throw exception calls
15765      _Jv_MonitorExit and then rethrow the exception.
15766      The synchronized statement is then implemented as:
15767      TRY
15768        {
15769          _Jv_MonitorEnter (expression)
15770          synchronized_block
15771          _Jv_MonitorExit (expression)
15772        }
15773      CATCH_ALL
15774        {
15775          e = _Jv_exception_info ();
15776          _Jv_MonitorExit (expression)
15777          Throw (e);
15778        } */
15779
15780   expr_decl = build_decl (VAR_DECL, generate_name (), TREE_TYPE (expr));
15781   BUILD_MONITOR_ENTER (enter, expr_decl);
15782   BUILD_MONITOR_EXIT (exit, expr_decl);
15783   CAN_COMPLETE_NORMALLY (enter) = 1;
15784   CAN_COMPLETE_NORMALLY (exit) = 1;
15785   assignment = build2 (MODIFY_EXPR, NULL_TREE, expr_decl, expr);
15786   TREE_SIDE_EFFECTS (assignment) = 1;
15787   node = build2 (COMPOUND_EXPR, NULL_TREE,
15788                  build2 (COMPOUND_EXPR, NULL_TREE, assignment, enter),
15789                  build2 (TRY_FINALLY_EXPR, NULL_TREE, block, exit));
15790   node = build_expr_block (node, expr_decl);
15791
15792   return java_complete_tree (node);
15793 }
15794
15795 /* 14.16 The throw Statement */
15796
15797 static tree
15798 patch_throw_statement (tree node, tree wfl_op1)
15799 {
15800   tree expr = TREE_OPERAND (node, 0);
15801   tree type = TREE_TYPE (expr);
15802   int unchecked_ok = 0, tryblock_throws_ok = 0;
15803
15804   /* Thrown expression must be assignable to java.lang.Throwable */
15805   if (!try_reference_assignconv (throwable_type_node, expr))
15806     {
15807       SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15808       parse_error_context (wfl_operator,
15809     "Can't throw %qs; it must be a subclass of class %<java.lang.Throwable%>",
15810                            lang_printable_name (type, 0));
15811       /* If the thrown expression was a reference, we further the
15812          compile-time check. */
15813       if (!JREFERENCE_TYPE_P (type))
15814         return error_mark_node;
15815     }
15816
15817   /* At least one of the following must be true */
15818
15819   /* The type of the throw expression is a not checked exception,
15820      i.e. is a unchecked expression. */
15821   unchecked_ok = IS_UNCHECKED_EXCEPTION_P (TREE_TYPE (type));
15822
15823   SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
15824   /* An instance can't throw a checked exception unless that exception
15825      is explicitly declared in the `throws' clause of each
15826      constructor. This doesn't apply to anonymous classes, since they
15827      don't have declared constructors. */
15828   if (!unchecked_ok
15829       && DECL_INSTINIT_P (current_function_decl)
15830       && !ANONYMOUS_CLASS_P (current_class))
15831     {
15832       tree current;
15833       for (current = TYPE_METHODS (current_class); current;
15834            current = TREE_CHAIN (current))
15835         if (DECL_CONSTRUCTOR_P (current)
15836             && !check_thrown_exceptions_do (TREE_TYPE (expr)))
15837           {
15838             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)",
15839                                  lang_printable_name (TREE_TYPE (expr), 0));
15840             return error_mark_node;
15841           }
15842     }
15843
15844   /* Throw is contained in a try statement and at least one catch
15845      clause can receive the thrown expression or the current method is
15846      declared to throw such an exception. Or, the throw statement is
15847      contained in a method or constructor declaration and the type of
15848      the Expression is assignable to at least one type listed in the
15849      throws clause the declaration. */
15850   if (!unchecked_ok)
15851     tryblock_throws_ok = check_thrown_exceptions_do (TREE_TYPE (expr));
15852   if (!(unchecked_ok || tryblock_throws_ok))
15853     {
15854       /* If there is a surrounding try block that has no matching
15855          clatch clause, report it first. A surrounding try block exits
15856          only if there is something after the list of checked
15857          exception thrown by the current function (if any). */
15858       if (IN_TRY_BLOCK_P ())
15859         parse_error_context (wfl_operator, "Checked exception %qs can't be caught by any of the catch clause(s) of the surrounding %<try%> block",
15860                              lang_printable_name (type, 0));
15861       /* If we have no surrounding try statement and the method doesn't have
15862          any throws, report it now. FIXME */
15863
15864       /* We report that the exception can't be throw from a try block
15865          in all circumstances but when the `throw' is inside a static
15866          block. */
15867       else if (!EXCEPTIONS_P (currently_caught_type_list)
15868                && !tryblock_throws_ok)
15869         {
15870           if (DECL_CLINIT_P (current_function_decl))
15871             parse_error_context (wfl_operator,
15872                    "Checked exception %qs can't be thrown in initializer",
15873                                  lang_printable_name (type, 0));
15874           else
15875             parse_error_context (wfl_operator,
15876                    "Checked exception %qs isn't thrown from a %<try%> block",
15877                                  lang_printable_name (type, 0));
15878         }
15879       /* Otherwise, the current method doesn't have the appropriate
15880          throws declaration */
15881       else
15882         parse_error_context (wfl_operator, "Checked exception %qs doesn't match any of current method's %<throws%> declaration(s)",
15883                              lang_printable_name (type, 0));
15884       return error_mark_node;
15885     }
15886
15887   if (! flag_emit_class_files && ! flag_emit_xref)
15888     BUILD_THROW (node, expr);
15889
15890   /* If doing xrefs, keep the location where the `throw' was seen. */
15891   if (flag_emit_xref)
15892     EXPR_WFL_LINECOL (node) = EXPR_WFL_LINECOL (wfl_op1);
15893   return node;
15894 }
15895
15896 /* Check that exception said to be thrown by method DECL can be
15897    effectively caught from where DECL is invoked.  THIS_EXPR is the
15898    expression that computes `this' for the method call.  */
15899 static void
15900 check_thrown_exceptions (
15901 #ifdef USE_MAPPED_LOCATION
15902                          source_location location,
15903 #else
15904
15905                          int location,
15906 #endif
15907                          tree decl, tree this_expr)
15908 {
15909   tree throws;
15910   int is_array_call = 0;
15911
15912   /* Skip check within generated methods, such as access$<n>.  */
15913   if (OUTER_FIELD_ACCESS_IDENTIFIER_P (DECL_NAME (current_function_decl)))
15914     return;
15915
15916   if (this_expr != NULL_TREE
15917       && TREE_CODE (TREE_TYPE (this_expr)) == POINTER_TYPE
15918       && TYPE_ARRAY_P (TREE_TYPE (TREE_TYPE (this_expr))))
15919     is_array_call = 1;
15920
15921   /* For all the unchecked exceptions thrown by DECL.  */
15922   for (throws = DECL_FUNCTION_THROWS (decl); throws;
15923        throws = TREE_CHAIN (throws))
15924     if (!check_thrown_exceptions_do (TREE_VALUE (throws)))
15925       {
15926         /* Suppress errors about cloning arrays.  */
15927         if (is_array_call && DECL_NAME (decl) == get_identifier ("clone"))
15928           continue;
15929
15930 #ifdef USE_MAPPED_LOCATION
15931         SET_EXPR_LOCATION (wfl_operator, location);
15932 #else
15933         EXPR_WFL_LINECOL (wfl_operator) = location;
15934 #endif
15935         if (DECL_FINIT_P (current_function_decl))
15936           parse_error_context
15937             (wfl_operator, "Exception %qs can't be thrown in initializer",
15938              lang_printable_name (TREE_VALUE (throws), 0));
15939         else
15940           {
15941             parse_error_context
15942               (wfl_operator, "Exception %qs must be caught, or it must be declared in the %<throws%> clause of %qs",
15943                lang_printable_name (TREE_VALUE (throws), 0),
15944                (DECL_INIT_P (current_function_decl) ?
15945                 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (current_class))) :
15946                 IDENTIFIER_POINTER (DECL_NAME (current_function_decl))));
15947           }
15948       }
15949 }
15950
15951 /* Return 1 if checked EXCEPTION is caught at the current nesting level of
15952    try-catch blocks, OR is listed in the `throws' clause of the
15953    current method.  */
15954
15955 static int
15956 check_thrown_exceptions_do (tree exception)
15957 {
15958   tree list = currently_caught_type_list;
15959   resolve_and_layout (exception, NULL_TREE);
15960   /* First, all the nested try-catch-finally at that stage. The
15961      last element contains `throws' clause exceptions, if any. */
15962   if (IS_UNCHECKED_EXCEPTION_P (exception))
15963     return 1;
15964   while (list)
15965     {
15966       tree caught;
15967       for (caught = TREE_VALUE (list); caught; caught = TREE_CHAIN (caught))
15968         if (valid_ref_assignconv_cast_p (exception, TREE_VALUE (caught), 0))
15969           return 1;
15970       list = TREE_CHAIN (list);
15971     }
15972   return 0;
15973 }
15974
15975 static void
15976 purge_unchecked_exceptions (tree mdecl)
15977 {
15978   tree throws = DECL_FUNCTION_THROWS (mdecl);
15979   tree new = NULL_TREE;
15980
15981   while (throws)
15982     {
15983       tree next = TREE_CHAIN (throws);
15984       if (!IS_UNCHECKED_EXCEPTION_P (TREE_VALUE (throws)))
15985         {
15986           TREE_CHAIN (throws) = new;
15987           new = throws;
15988         }
15989       throws = next;
15990     }
15991   /* List is inverted here, but it doesn't matter */
15992   DECL_FUNCTION_THROWS (mdecl) = new;
15993 }
15994
15995 /* This function goes over all of CLASS_TYPE ctors and checks whether
15996    each of them features at least one unchecked exception in its
15997    `throws' clause. If it's the case, it returns `true', `false'
15998    otherwise.  */
15999
16000 static bool
16001 ctors_unchecked_throws_clause_p (tree class_type)
16002 {
16003   tree current;
16004
16005   for (current = TYPE_METHODS (class_type); current;
16006        current = TREE_CHAIN (current))
16007     {
16008       bool ctu = false; /* Ctor Throws Unchecked */
16009       if (DECL_CONSTRUCTOR_P (current))
16010         {
16011           tree throws;
16012           for (throws = DECL_FUNCTION_THROWS (current); throws && !ctu;
16013                throws = TREE_CHAIN (throws))
16014             if (inherits_from_p (TREE_VALUE (throws), exception_type_node))
16015               ctu = true;
16016         }
16017       /* We return false as we found one ctor that is unfit. */
16018       if (!ctu && DECL_CONSTRUCTOR_P (current))
16019         return false;
16020     }
16021   /* All ctors feature at least one unchecked exception in their
16022      `throws' clause. */
16023   return true;
16024 }
16025
16026 /* 15.24 Conditional Operator ?: */
16027
16028 static tree
16029 patch_conditional_expr (tree node, tree wfl_cond, tree wfl_op1)
16030 {
16031   tree cond = TREE_OPERAND (node, 0);
16032   tree op1 = TREE_OPERAND (node, 1);
16033   tree op2 = TREE_OPERAND (node, 2);
16034   tree resulting_type = NULL_TREE;
16035   tree t1, t2, patched;
16036   int error_found = 0;
16037
16038   /* Operands of ?: might be StringBuffers crafted as a result of a
16039      string concatenation. Obtain a descent operand here.  */
16040   if ((patched = patch_string (op1)))
16041     TREE_OPERAND (node, 1) = op1 = patched;
16042   if ((patched = patch_string (op2)))
16043     TREE_OPERAND (node, 2) = op2 = patched;
16044
16045   t1 = TREE_TYPE (op1);
16046   t2 = TREE_TYPE (op2);
16047
16048   /* The first expression must be a boolean */
16049   if (TREE_TYPE (cond) != boolean_type_node)
16050     {
16051       SET_WFL_OPERATOR (wfl_operator, node, wfl_cond);
16052       parse_error_context (wfl_operator,
16053                "Incompatible type for %<?:%>. Can't convert %qs to %<boolean%>",
16054                            lang_printable_name (TREE_TYPE (cond), 0));
16055       error_found = 1;
16056     }
16057
16058   /* Second and third can be numeric, boolean (i.e. primitive),
16059      references or null. Anything else results in an error */
16060   if (!((JNUMERIC_TYPE_P (t1) && JNUMERIC_TYPE_P (t2))
16061         || ((JREFERENCE_TYPE_P (t1) || op1 == null_pointer_node)
16062             && (JREFERENCE_TYPE_P (t2) || op2 == null_pointer_node))
16063         || (t1 == boolean_type_node && t2 == boolean_type_node)))
16064     error_found = 1;
16065
16066   /* Determine the type of the conditional expression. Same types are
16067      easy to deal with */
16068   else if (t1 == t2)
16069     resulting_type = t1;
16070
16071   /* There are different rules for numeric types */
16072   else if (JNUMERIC_TYPE_P (t1))
16073     {
16074       /* if byte/short found, the resulting type is short */
16075       if ((t1 == byte_type_node && t2 == short_type_node)
16076           || (t1 == short_type_node && t2 == byte_type_node))
16077         resulting_type = short_type_node;
16078
16079       /* If t1 is a constant int and t2 is of type byte, short or char
16080          and t1's value fits in t2, then the resulting type is t2 */
16081       else if ((t1 == int_type_node && TREE_CONSTANT (TREE_OPERAND (node, 1)))
16082           && JBSC_TYPE_P (t2) && int_fits_type_p (TREE_OPERAND (node, 1), t2))
16083         resulting_type = t2;
16084
16085       /* If t2 is a constant int and t1 is of type byte, short or char
16086          and t2's value fits in t1, then the resulting type is t1 */
16087       else if ((t2 == int_type_node && TREE_CONSTANT (TREE_OPERAND (node, 2)))
16088           && JBSC_TYPE_P (t1) && int_fits_type_p (TREE_OPERAND (node, 2), t1))
16089         resulting_type = t1;
16090
16091       /* Otherwise, binary numeric promotion is applied and the
16092          resulting type is the promoted type of operand 1 and 2 */
16093       else
16094         resulting_type = binary_numeric_promotion (t1, t2,
16095                                                    &TREE_OPERAND (node, 1),
16096                                                    &TREE_OPERAND (node, 2));
16097     }
16098
16099   /* Cases of a reference and a null type */
16100   else if (JREFERENCE_TYPE_P (t1) && op2 == null_pointer_node)
16101     resulting_type = t1;
16102
16103   else if (JREFERENCE_TYPE_P (t2) && op1 == null_pointer_node)
16104     resulting_type = t2;
16105
16106   /* Last case: different reference types. If a type can be converted
16107      into the other one by assignment conversion, the latter
16108      determines the type of the expression */
16109   else if ((resulting_type = try_reference_assignconv (t1, op2)))
16110     resulting_type = promote_type (t1);
16111
16112   else if ((resulting_type = try_reference_assignconv (t2, op1)))
16113     resulting_type = promote_type (t2);
16114
16115   /* If we don't have any resulting type, we're in trouble */
16116   if (!resulting_type)
16117     {
16118       char *t = xstrdup (lang_printable_name (t1, 0));
16119       SET_WFL_OPERATOR (wfl_operator, node, wfl_op1);
16120       parse_error_context (wfl_operator,
16121                  "Incompatible type for %<?:%>. Can't convert %qs to %qs",
16122                            t, lang_printable_name (t2, 0));
16123       free (t);
16124       error_found = 1;
16125     }
16126
16127   if (error_found)
16128     {
16129       TREE_TYPE (node) = error_mark_node;
16130       return error_mark_node;
16131     }
16132
16133   TREE_TYPE (node) = resulting_type;
16134   TREE_SET_CODE (node, COND_EXPR);
16135   CAN_COMPLETE_NORMALLY (node) = 1;
16136   return node;
16137 }
16138
16139 /* Wrap EXPR with code to initialize DECL's class, if appropriate. */
16140
16141 static tree
16142 maybe_build_class_init_for_field (tree decl, tree expr)
16143 {
16144   tree clas = DECL_CONTEXT (decl);
16145   if (flag_emit_class_files || flag_emit_xref)
16146     return expr;
16147
16148   if (TREE_CODE (decl) == VAR_DECL && FIELD_STATIC (decl)
16149       && FIELD_FINAL (decl))
16150     {
16151       tree init = DECL_INITIAL (decl);
16152       if (init != NULL_TREE)
16153         init = fold_constant_for_init (init, decl);
16154       if (init != NULL_TREE && CONSTANT_VALUE_P (init))
16155         return expr;
16156     }
16157
16158   return build_class_init (clas, expr);
16159 }
16160
16161 /* Try to constant fold NODE.
16162    If NODE is not a constant expression, return NULL_EXPR.
16163    CONTEXT is a static final VAR_DECL whose initializer we are folding. */
16164
16165 static tree
16166 fold_constant_for_init (tree node, tree context)
16167 {
16168   tree op0, op1, val;
16169   enum tree_code code = TREE_CODE (node);
16170
16171   switch (code)
16172     {
16173     case INTEGER_CST:
16174       if (node == null_pointer_node)
16175         return NULL_TREE;
16176     case STRING_CST:
16177     case REAL_CST:
16178       return node;
16179
16180     case PLUS_EXPR:
16181     case MINUS_EXPR:
16182     case MULT_EXPR:
16183     case TRUNC_MOD_EXPR:
16184     case RDIV_EXPR:
16185     case LSHIFT_EXPR:
16186     case RSHIFT_EXPR:
16187     case URSHIFT_EXPR:
16188     case BIT_AND_EXPR:
16189     case BIT_XOR_EXPR:
16190     case BIT_IOR_EXPR:
16191     case TRUTH_ANDIF_EXPR:
16192     case TRUTH_ORIF_EXPR:
16193     case EQ_EXPR:
16194     case NE_EXPR:
16195     case GT_EXPR:
16196     case GE_EXPR:
16197     case LT_EXPR:
16198     case LE_EXPR:
16199       op0 = TREE_OPERAND (node, 0);
16200       op1 = TREE_OPERAND (node, 1);
16201       val = fold_constant_for_init (op0, context);
16202       if (val == NULL_TREE || ! TREE_CONSTANT (val))
16203         return NULL_TREE;
16204       TREE_OPERAND (node, 0) = val;
16205       val = fold_constant_for_init (op1, context);
16206       if (val == NULL_TREE || ! TREE_CONSTANT (val))
16207         return NULL_TREE;
16208       TREE_OPERAND (node, 1) = val;
16209       return patch_binop (node, op0, op1);
16210
16211     case UNARY_PLUS_EXPR:
16212     case NEGATE_EXPR:
16213     case TRUTH_NOT_EXPR:
16214     case BIT_NOT_EXPR:
16215     case CONVERT_EXPR:
16216       op0 = TREE_OPERAND (node, 0);
16217       val = fold_constant_for_init (op0, context);
16218       if (val == NULL_TREE || ! TREE_CONSTANT (val))
16219         return NULL_TREE;
16220       TREE_OPERAND (node, 0) = val;
16221       val = patch_unaryop (node, op0);
16222       if (! TREE_CONSTANT (val))
16223         return NULL_TREE;
16224       return val;
16225
16226       break;
16227
16228     case COND_EXPR:
16229       val = fold_constant_for_init (TREE_OPERAND (node, 0), context);
16230       if (val == NULL_TREE || ! TREE_CONSTANT (val))
16231         return NULL_TREE;
16232       TREE_OPERAND (node, 0) = val;
16233       val = fold_constant_for_init (TREE_OPERAND (node, 1), context);
16234       if (val == NULL_TREE || ! TREE_CONSTANT (val))
16235         return NULL_TREE;
16236       TREE_OPERAND (node, 1) = val;
16237       val = fold_constant_for_init (TREE_OPERAND (node, 2), context);
16238       if (val == NULL_TREE || ! TREE_CONSTANT (val))
16239         return NULL_TREE;
16240       TREE_OPERAND (node, 2) = val;
16241       return integer_zerop (TREE_OPERAND (node, 0)) ? TREE_OPERAND (node, 1)
16242         : TREE_OPERAND (node, 2);
16243
16244     case VAR_DECL:
16245     case FIELD_DECL:
16246       if (! FIELD_FINAL (node)
16247           || DECL_INITIAL (node) == NULL_TREE)
16248         return NULL_TREE;
16249       val = DECL_INITIAL (node);
16250       /* Guard against infinite recursion. */
16251       DECL_INITIAL (node) = NULL_TREE;
16252       val = fold_constant_for_init (val, node);
16253       if (val != NULL_TREE && TREE_CODE (val) != STRING_CST)
16254         val = try_builtin_assignconv (NULL_TREE, TREE_TYPE (node), val);
16255       DECL_INITIAL (node) = val;
16256       return val;
16257
16258     case EXPR_WITH_FILE_LOCATION:
16259       /* Compare java_complete_tree and resolve_expression_name. */
16260       if (!EXPR_WFL_NODE (node) /* Or a PRIMARY flag ? */
16261           || TREE_CODE (EXPR_WFL_NODE (node)) == IDENTIFIER_NODE)
16262         {
16263           tree name = EXPR_WFL_NODE (node);
16264           tree decl;
16265           if (PRIMARY_P (node))
16266             return NULL_TREE;
16267           else if (! QUALIFIED_P (name))
16268             {
16269               decl = lookup_field_wrapper (DECL_CONTEXT (context), name);
16270               if (decl == NULL_TREE
16271                   || (! FIELD_STATIC (decl) && ! FIELD_FINAL (decl)))
16272                 return NULL_TREE;
16273               return fold_constant_for_init (decl, decl);
16274             }
16275           else
16276             {
16277               tree r = NULL_TREE;
16278               /* Install the proper context for the field resolution.  */
16279               tree saved_current_class = current_class;
16280               /* Wait until the USE_COMPONENT_REF re-write.  FIXME. */
16281               current_class = DECL_CONTEXT (context);
16282               qualify_ambiguous_name (node);
16283               r = resolve_field_access (node, &decl, NULL);
16284               /* Restore prior context.  */
16285               current_class = saved_current_class;
16286               if (r != error_mark_node && decl != NULL_TREE)
16287                 return fold_constant_for_init (decl, decl);
16288               return NULL_TREE;
16289             }
16290         }
16291       else
16292         {
16293           op0 = TREE_OPERAND (node, 0);
16294           val = fold_constant_for_init (op0, context);
16295           if (val == NULL_TREE || ! TREE_CONSTANT (val))
16296             return NULL_TREE;
16297           TREE_OPERAND (node, 0) = val;
16298           return val;
16299         }
16300
16301 #ifdef USE_COMPONENT_REF
16302     case IDENTIFIER:
16303     case COMPONENT_REF:
16304       ?;
16305 #endif
16306
16307     default:
16308       return NULL_TREE;
16309     }
16310 }
16311
16312 #ifdef USE_COMPONENT_REF
16313 /* Context is 'T' for TypeName, 'P' for PackageName,
16314    'M' for MethodName, 'E' for ExpressionName, and 'A' for AmbiguousName. */
16315
16316 tree
16317 resolve_simple_name (tree name, int context)
16318 {
16319 }
16320
16321 tree
16322 resolve_qualified_name (tree name, int context)
16323 {
16324 }
16325 #endif
16326
16327 void
16328 init_src_parse (void)
16329 {
16330   /* Sanity check; we've been bit by this before.  */
16331   if (ARRAY_SIZE (ctxp->modifier_ctx) != MODIFIER_TK - PUBLIC_TK)
16332     abort ();
16333 }
16334
16335 \f
16336
16337 /* This section deals with the functions that are called when tables
16338    recording class initialization information are traversed.  */
16339
16340 /* Attach to PTR (a block) the declaration found in ENTRY. */
16341
16342 static int
16343 attach_init_test_initialization_flags (void **entry, void *ptr)
16344 {
16345   tree block = (tree)ptr;
16346   struct treetreehash_entry *ite = (struct treetreehash_entry *) *entry;
16347
16348   if (block != error_mark_node)
16349     {
16350       tree body = BLOCK_SUBBLOCKS (block);
16351       TREE_CHAIN (ite->value) = BLOCK_EXPR_DECLS (block);
16352       BLOCK_EXPR_DECLS (block) = ite->value;
16353       body = build2 (COMPOUND_EXPR, void_type_node,
16354                      build1 (DECL_EXPR, void_type_node, ite->value), body);
16355       BLOCK_SUBBLOCKS (block) = body;
16356     }
16357   return true;
16358 }
16359
16360 /* This function is called for each class that is known definitely
16361    initialized when a given static method was called. This function
16362    augments a compound expression (INFO) storing all assignment to
16363    initialized static class flags if a flag already existed, otherwise
16364    a new one is created.  */
16365
16366 static int
16367 emit_test_initialization (void **entry_p, void *info)
16368 {
16369   tree l = (tree) info;
16370   tree decl, init;
16371   tree key = (tree) *entry_p;
16372   tree *ite;
16373   htab_t cf_ht = DECL_FUNCTION_INIT_TEST_TABLE (current_function_decl);
16374
16375   /* If we haven't found a flag and we're dealing with self registered
16376      with current_function_decl, then don't do anything. Self is
16377      always added as definitely initialized but this information is
16378      valid only if used outside the current function. */
16379   if (current_function_decl == TREE_PURPOSE (l)
16380       && java_treetreehash_find (cf_ht, key) == NULL)
16381     return true;
16382
16383   ite = java_treetreehash_new (cf_ht, key);
16384
16385   /* If we don't have a variable, create one and install it. */
16386   if (*ite == NULL)
16387     {
16388       tree block;
16389
16390       decl = build_decl (VAR_DECL, NULL_TREE, boolean_type_node);
16391       MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC (decl);
16392       LOCAL_CLASS_INITIALIZATION_FLAG (decl) = 1;
16393       DECL_CONTEXT (decl) = current_function_decl;
16394       DECL_INITIAL (decl) = boolean_true_node;
16395       /* Don't emit any symbolic debugging info for this decl.  */
16396       DECL_IGNORED_P (decl) = 1;
16397
16398       /* The trick is to find the right context for it. */
16399       block = BLOCK_SUBBLOCKS (GET_CURRENT_BLOCK (current_function_decl));
16400       TREE_CHAIN (decl) = BLOCK_EXPR_DECLS (block);
16401       BLOCK_EXPR_DECLS (block) = decl;
16402       *ite = decl;
16403     }
16404   else
16405     decl = *ite;
16406
16407   /* Now simply augment the compound that holds all the assignments
16408      pertaining to this method invocation. */
16409   init = build2 (MODIFY_EXPR, boolean_type_node, decl, boolean_true_node);
16410   TREE_SIDE_EFFECTS (init) = 1;
16411   TREE_VALUE (l) = add_stmt_to_compound (TREE_VALUE (l), void_type_node, init);
16412   TREE_SIDE_EFFECTS (TREE_VALUE (l)) = 1;
16413
16414   return true;
16415 }
16416
16417 #ifdef __XGETTEXT__
16418 /* Depending on the version of Bison used to compile this grammar,
16419    it may issue generic diagnostics spelled "syntax error" or
16420    "parse error".  To prevent this from changing the translation
16421    template randomly, we list all the variants of this particular
16422    diagnostic here.  Translators: there is no fine distinction
16423    between diagnostics with "syntax error" in them, and diagnostics
16424    with "parse error" in them.  It's okay to give them both the same
16425    translation.  */
16426 const char d1[] = N_("syntax error");
16427 const char d2[] = N_("parse error");
16428 const char d3[] = N_("syntax error; also virtual memory exhausted");
16429 const char d4[] = N_("parse error; also virtual memory exhausted");
16430 const char d5[] = N_("syntax error: cannot back up");
16431 const char d6[] = N_("parse error: cannot back up");
16432 #endif
16433
16434 #include "gt-java-parse.h"
16435 #include "gtype-java.h"